diff --git a/list_methods.py b/list_methods.py new file mode 100644 index 0000000..a41001d --- /dev/null +++ b/list_methods.py @@ -0,0 +1,44 @@ +import re + +def parse_class_structure(filepath): + with open(filepath, 'r', encoding='utf-8') as f: + content = f.read() + + # Simple regex to match method declarations in Dart: + # e.g., void methodName(...) or Future methodName(...) or type methodName(...) + # Let's find any sequence of word characters, optionally preceded by types, followed by open parentheses + # Let's filter methods that are inside the class + # Method pattern: (type|void)? methodName(args) { or => + # Better approach: match lines that look like method declarations: + # e.g., " ReturnType methodName(" + # Let's find all methods inside the class by matching line patterns + lines = content.split('\n') + methods = [] + variables = [] + + # Simple scanner for declarations + for i, line in enumerate(lines): + line_stripped = line.strip() + # Skip comments, annotations, imports + if line_stripped.startswith('//') or line_stripped.startswith('/*') or line_stripped.startswith('*') or line_stripped.startswith('@'): + continue + + # Match variables: e.g., final type name = ... or type name; + # Match methods: e.g., void name(...) or Future name(...) or name(...) { + # Method declaration regex: + # Match methods with curly braces or arrow syntax on the same line or next + method_match = re.match(r'^(?:[a-zA-Z0-9_<>\?]+)?\s*([a-zA-Z0-9_]+)\s*\(([^)]*)\)\s*(?:async)?\s*[\{{=]', line_stripped) + if method_match: + methods.append((i+1, method_match.group(1), method_match.group(2).strip())) + elif line_stripped.startswith('Rx') or line_stripped.startswith('final ') or line_stripped.startswith('bool ') or line_stripped.startswith('String ') or line_stripped.startswith('int ') or line_stripped.startswith('double ') or line_stripped.startswith('Map '): + variables.append((i+1, line_stripped)) + + print(f"--- Methods in {filepath} ---") + for line_num, name, args in methods: + print(f"Line {line_num:4d}: {name}({args})") + + print(f"\n--- Key Variables in {filepath} ---") + for line_num, var in variables[:30]: + print(f"Line {line_num:4d}: {var}") + +parse_class_structure('siro_rider/lib/controller/home/map/ride_lifecycle_controller.dart') diff --git a/scratch/align_and_generate_driver_translations.py b/scratch/align_and_generate_driver_translations.py new file mode 100644 index 0000000..1766431 --- /dev/null +++ b/scratch/align_and_generate_driver_translations.py @@ -0,0 +1,153 @@ +import json +import re +import os + +def parse_dart_map(filepath): + translations = {} + if not os.path.exists(filepath): + return translations + with open(filepath, 'r', encoding='utf-8') as f: + content = f.read() + + # Matches maps of form: "key": "value" or 'key': 'value' + # Handles escapes and multi-line content matched on single lines + pattern = re.compile(r'^\s*([\'"])(.*?)\1\s*:\s*([\'"])(.*?)\3\s*,?\s*$', re.MULTILINE) + matches = pattern.findall(content) + for match in matches: + key = match[1] + val = match[3] + # Unescape simple sequences (single and double quotes) + key = key.replace('\\"', '"').replace("\\'", "'") + val = val.replace('\\"', '"').replace("\\'", "'") + translations[key] = val + + return translations + +def to_dart_string(s): + # Escape characters to be safe inside double quotes in Dart source code + result = [] + for char in s: + if char == '\\': + result.append('\\\\') + elif char == '"': + result.append('\\"') + elif char == '$': + result.append('\\$') + elif char == '\n': + result.append('\\n') + elif char == '\r': + result.append('\\r') + elif char == '\t': + result.append('\\t') + else: + result.append(char) + return "".join(result) + +# Load current Arabic files +ar_eg = parse_dart_map("siro_driver/lib/controller/local/ar_eg.dart") +ar_jo = parse_dart_map("siro_driver/lib/controller/local/ar_jo.dart") +ar_sy = parse_dart_map("siro_driver/lib/controller/local/ar_sy.dart") + +# Load JSON data +with open("siro_driver_translations_data.json", "r", encoding="utf-8") as f: + json_data = json.load(f) + +existing_syrian = json_data.get('existing_syrian', {}) +missing_keys = json_data.get('missing_keys', []) + +# Load legacy non-Arabic languages +with open("scratch/legacy_extracted_languages.json", "r", encoding="utf-8") as f: + legacy_extracted = json.load(f) + +# Compute master keys +master_keys = set(ar_sy.keys()) +master_keys.update(ar_jo.keys()) +master_keys.update(ar_eg.keys()) +master_keys.update(existing_syrian.keys()) +master_keys.update(missing_keys) + +master_keys = sorted(list(master_keys)) +print(f"Master keys count: {len(master_keys)}") + +# Let's build translation maps +aligned_maps = { + 'ar-EG': {}, + 'ar-JO': {}, + 'ar-SY': {}, + 'en': {}, + 'de': {}, + 'el': {}, + 'es': {}, + 'fa': {}, + 'fr': {}, + 'hi': {}, + 'it': {}, + 'ru': {}, + 'tr': {}, + 'ur': {}, + 'zh': {} +} + +for key in master_keys: + # 1. English is always the key itself + aligned_maps['en'][key] = key + + # 2. Syrian Arabic (ar-SY) + val_sy = ar_sy.get(key) + if not val_sy: + val_sy = existing_syrian.get(key) + if not val_sy: + val_sy = ar_jo.get(key) + if not val_sy: + val_sy = ar_eg.get(key) + if not val_sy: + val_sy = key # fallback to key + aligned_maps['ar-SY'][key] = val_sy + + # 3. Jordanian Arabic (ar-JO) + val_jo = ar_jo.get(key) + if not val_jo: + val_jo = val_sy # fallback to Syrian + aligned_maps['ar-JO'][key] = val_jo + + # 4. Egyptian Arabic (ar-EG) + val_eg = ar_eg.get(key) + if not val_eg: + val_eg = val_jo # fallback to Jordanian/Syrian + aligned_maps['ar-EG'][key] = val_eg + + # 5. Non-Arabic languages + for lang in ['de', 'el', 'es', 'fa', 'fr', 'hi', 'it', 'ru', 'tr', 'ur', 'zh']: + val_lang = legacy_extracted.get(lang, {}).get(key) + if not val_lang: + val_lang = key # fallback to English + aligned_maps[lang][key] = val_lang + +# Directories and file writes +output_dir = "siro_driver/lib/controller/local" + +def write_dart_file(filename, map_name, data_map): + filepath = os.path.join(output_dir, filename) + with open(filepath, 'w', encoding='utf-8') as f: + # Write final Map map_name = { ... }; + f.write(f"final Map {map_name} = {{\n") + for k, v in data_map.items(): + k_escaped = to_dart_string(k) + v_escaped = to_dart_string(v) + f.write(f' "{k_escaped}": "{v_escaped}",\n') + f.write("};\n") + print(f"Wrote {filepath} with {len(data_map)} keys.") + +# Write Arabic dialects +write_dart_file("ar_eg.dart", "ar_eg", aligned_maps['ar-EG']) +write_dart_file("ar_jo.dart", "ar_jo", aligned_maps['ar-JO']) +write_dart_file("ar_sy.dart", "ar_sy", aligned_maps['ar-SY']) + +# Write English +write_dart_file("en.dart", "en", aligned_maps['en']) + +# Write non-Arabic languages +for lang in ['de', 'el', 'es', 'fa', 'fr', 'hi', 'it', 'ru', 'tr', 'ur', 'zh']: + write_dart_file(f"{lang}.dart", lang, aligned_maps[lang]) + +print("Alignment and file writing complete.") diff --git a/scratch/analyze_driver_translations.py b/scratch/analyze_driver_translations.py new file mode 100644 index 0000000..42091ca --- /dev/null +++ b/scratch/analyze_driver_translations.py @@ -0,0 +1,17 @@ +import re + +def parse_translations_file(filepath): + with open(filepath, 'r', encoding='utf-8') as f: + content = f.read() + + # Let's find language maps like: "en": { ... }, "fr": { ... } + # Look for patterns like "lang": { or 'lang': { + pattern = re.compile(r'[\'"]([a-zA-Z\-]+)[\'"]\s*:\s*\{') + matches = pattern.findall(content) + return matches + +print("Legacy translations.dart languages:") +print(parse_translations_file("scratch/legacy_translations.dart")) + +print("\nLegacy driver_translations.dart languages:") +print(parse_translations_file("scratch/legacy_driver_translations.dart")) diff --git a/scratch/extract_legacy_languages.py b/scratch/extract_legacy_languages.py new file mode 100644 index 0000000..6d99c47 --- /dev/null +++ b/scratch/extract_legacy_languages.py @@ -0,0 +1,60 @@ +import re +import json + +def extract_language_maps(filepath): + with open(filepath, 'r', encoding='utf-8') as f: + content = f.read() + + # Let's find language blocks like: "en": { ... }, "fr": { ... } + # To parse these blocks, we find the starting position of each language identifier + # and scan until the matching closing brace. + languages = ['tr', 'fr', 'de', 'es', 'fa', 'el', 'ur', 'hi', 'ru', 'it', 'zh'] + extracted = {} + + for lang in languages: + # Regex to find: "lang": { or 'lang': { + pattern = re.compile(r'[\'"]' + lang + r'[\'"]\s*:\s*\{') + match = pattern.search(content) + if not match: + print(f"Language {lang} map start not found!") + continue + + start_idx = match.end() + # Find matching closing brace + brace_count = 1 + current_idx = start_idx + while brace_count > 0 and current_idx < len(content): + char = content[current_idx] + if char == '{': + brace_count += 1 + elif char == '}': + brace_count -= 1 + current_idx += 1 + + block = content[start_idx:current_idx-1] + + # Now parse the key-value pairs inside the block + # Example: "key": "value", or 'key': 'value', + # Handle escaped quotes. + # Pattern: (['"])(.*?)\1\s*:\s*(['"])(.*?)\3\s*(?:,|$) + kv_pattern = re.compile(r'^\s*([\'"])(.*?)\1\s*:\s*([\'"])(.*?)\3\s*,?\s*$', re.MULTILINE) + kv_matches = kv_pattern.findall(block) + + lang_map = {} + for kv in kv_matches: + key = kv[1] + val = kv[3] + # Unescape quotes + key = key.replace('\\"', '"').replace("\\'", "'") + val = val.replace('\\"', '"').replace("\\'", "'") + lang_map[key] = val + + extracted[lang] = lang_map + print(f"Extracted {lang}: {len(lang_map)} keys") + + return extracted + +extracted = extract_language_maps("scratch/legacy_translations.dart") +with open("scratch/legacy_extracted_languages.json", "w", encoding="utf-8") as f: + json.dump(extracted, f, ensure_ascii=False, indent=2) +print("Saved legacy extracted languages to JSON.") diff --git a/scratch/inspect_keys.py b/scratch/inspect_keys.py new file mode 100644 index 0000000..9baf20b --- /dev/null +++ b/scratch/inspect_keys.py @@ -0,0 +1,42 @@ +import json +import re +import os + +def parse_dart_map(filepath): + translations = {} + if not os.path.exists(filepath): + return translations + with open(filepath, 'r', encoding='utf-8') as f: + content = f.read() + + pattern = re.compile(r'^\s*([\'"])(.*?)\1\s*:\s*([\'"])(.*?)\3\s*,?\s*$', re.MULTILINE) + matches = pattern.findall(content) + for match in matches: + key = match[1] + val = match[3] + key = key.replace('\\"', '"').replace("\\'", "'") + val = val.replace('\\"', '"').replace("\\'", "'") + translations[key] = val + + return translations + +ar_eg = parse_dart_map("siro_driver/lib/controller/local/ar_eg.dart") +ar_jo = parse_dart_map("siro_driver/lib/controller/local/ar_jo.dart") +ar_sy = parse_dart_map("siro_driver/lib/controller/local/ar_sy.dart") + +with open("siro_driver_translations_data.json", "r", encoding="utf-8") as f: + json_data = json.load(f) + +missing_keys_list = json_data.get('missing_keys', []) + +ar_sy_keys = set(ar_sy.keys()) +ar_jo_keys = set(ar_jo.keys()) +ar_eg_keys = set(ar_eg.keys()) +missing_keys_set = set(missing_keys_list) + +all_keys = ar_sy_keys.union(ar_jo_keys).union(ar_eg_keys).union(missing_keys_set) +print(f"Total unique keys in union: {len(all_keys)}") + +print(f"Keys in ar_eg not in ar_sy: {ar_eg_keys - ar_sy_keys}") +print(f"Keys in ar_sy not in ar_jo: {ar_sy_keys - ar_jo_keys}") +print(f"Keys in ar_jo not in ar_sy: {ar_jo_keys - ar_sy_keys}") diff --git a/scratch/legacy_extracted_languages.json b/scratch/legacy_extracted_languages.json new file mode 100644 index 0000000..70b479e --- /dev/null +++ b/scratch/legacy_extracted_languages.json @@ -0,0 +1,14072 @@ +{ + "tr": { + "About Intaleq": "Intaleq Hakkında", + "Chat with us anytime": "İstediğiniz zaman bizimle sohbet edin", + "Direct talk with our team": "Ekibimizle doğrudan görüşün", + "Email Support": "E-posta Desteği", + "For official inquiries": "Resmi sorular için", + "Intaleq Support": "Intaleq Destek", + "Reach out to us via": "Bize şuradan ulaşın", + "Support is Away": "Destek şu an uzakta", + "Support is currently Online": "Destek şu an çevrimiçi", + "Voice Call": "Sesli Arama", + "We're here to help you 24/7": "7/24 size yardımcı olmaya hazırız", + "Working Hours:": "Çalışma Saatleri:", + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "Bu süreden sonra\\nİptal edemezsiniz!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "Merhaba! Seni Intaleq'i denemeye davet ediyorum.", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "Suriye", + "SYP": "SYP", + "Order": "Sipariş", + "OrderVIP": "VIP Sipariş", + "Cancel Trip": "Yolculuğu İptal Et", + "Passenger Cancel Trip": "Yolcu Yolculuğu İptal Etti", + "VIP Order": "VIP Sipariş", + "The driver accepted your trip": "Sürücü yolculuğunu kabul etti", + "message From passenger": "Yolcumuzdan mesaj", + "Cancel": "İptal", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Yolculuk iptal edildi. Ücret cüzdanınıza eklenecektir.", + "token change": "Token değişikliği", + "Changed my mind": "Fikrimi değiştirdim", + "Please write the reason...": "Lütfen nedeni yazın...", + "Found another transport": "Başka bir ulaşım aracı buldum", + "Driver is taking too long": "Sürücü çok uzun sürüyor", + "Driver asked me to cancel": "Sürücü iptal etmemi istedi", + "Wrong pickup location": "Yanlış alış noktası", + "Other": "Diğer", + "Don't Cancel": "İptal Etme", + "No Drivers Found": "Sürücü Bulunamadı", + "Sorry, there are no cars available of this type right now.": "Üzgünüz, şu an bu tipte uygun araç yok.", + "Refresh Map": "Haritayı Yenile", + "face detect": "Yüz Algılama", + "Face Detection Result": "Yüz Algılama Sonucu", + "similar": "Benzer", + "not similar": "Benzer Değil", + "Searching for nearby drivers...": "Yakındaki sürücüler aranıyor...", + "Error": "Hata", + "Failed to search, please try again later": "Arama başarısız oldu, lütfen daha sonra tekrar deneyin", + "Connection Error": "Bağlantı Hatası", + "Please check your internet connection": "Lütfen internet bağlantınızı kontrol edin", + "Sorry 😔": "Üzgünüz 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "Sürücü yolculuğu acil bir nedenle iptal etti.\\nHemen başka bir sürücü aramak ister misiniz?", + "Search for another driver": "Başka sürücü ara", + "We apologize 😔": "Özür dileriz 😔", + "No drivers found at the moment.\\nPlease try again later.": "Şu anda sürücü bulunamadı.\\nLütfen daha sonra tekrar deneyin.", + "Hi ,I will go now": "Selam, şimdi yola çıkıyorum", + "Passenger come to you": "Yolcu size geliyor", + "Call Income": "Gelen Arama", + "Call Income from Passenger": "Yolcumuzdan Gelen Arama", + "Criminal Document Required": "Adli Sicil Kaydı Gerekli", + "You should have upload it .": "Bunu yüklemeniz gerekiyor.", + "Call End": "Arama Sonlandı", + "The order has been accepted by another driver.": "Sipariş başka bir sürücü tarafından kabul edildi.", + "The order Accepted by another Driver": "Sipariş Başka Sürücü Tarafından Kabul Edildi", + "We regret to inform you that another driver has accepted this order.": "Üzgünüz, bu siparişi başka bir sürücü kabul etti.", + "Driver Applied the Ride for You": "Sürücü Sizin İçin Yolculuk Başlattı", + "Applied": "Başvuruldu", + "Please go to Car Driver": "Lütfen Sürücüye Gidin", + "Ok I will go now.": "Tamam, şimdi gidiyorum.", + "Accepted Ride": "Kabul Edilen Yolculuk", + "Driver Accepted the Ride for You": "Sürücü Sizin İçin Yolculuğu Kabul Etti", + "Promo": "Promosyon", + "Show latest promo": "Son promosyonları göster", + "Trip Monitoring": "Yolculuk Takibi", + "Driver Is Going To Passenger": "Sürücü Yolcuya Gidiyor", + "Please stay on the picked point.": "Lütfen seçilen noktada bekleyin.", + "message From Driver": "Sürücüden Mesaj", + "Trip is Begin": "Yolculuk Başlıyor", + "Cancel Trip from driver": "Sürücü tarafından iptal", + "We will look for a new driver.\\nPlease wait.": "Yeni bir sürücü arıyoruz.\\nLütfen bekleyin.", + "The driver canceled your ride.": "Sürücü yolculuğunuzu iptal etti.", + "Driver Finish Trip": "Sürücü Yolculuğu Bitirdi", + "you will pay to Driver": "Sürücüye ödeyeceksiniz", + "Don’t forget your personal belongings.": "Eşyalarınızı unutmayın.", + "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": "Lütfen eşyalarınızı kontrol edin ve kalan ücretin cüzdanınıza eklendiğinden emin olun. Teşekkürler.", + "Finish Monitor": "İzlemeyi Bitir", + "Trip finished": "Yolculuk bitti", + "Call Income from Driver": "Sürücüden Gelen Arama", + "Driver Cancelled Your Trip": "Sürücü Yolculuğunuzu İptal Etti", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "Sürücünün zaman maliyetini ödeyeceksiniz, Intaleq Cüzdanınıza bakın", + "Order Applied": "Sipariş Alındı", + "welcome to intaleq": "Intaleq'e Hoş Geldiniz", + "login or register subtitle": "Giriş yapmak veya kayıt olmak için numaranızı girin", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Bu yolculuk için şikayet oluşturulamaz. Tamamlanmamış veya başlamamış olabilir.", + "phone number label": "Telefon Numarası", + "phone number required": "Telefon numarası gerekli", + "send otp button": "Doğrulama Kodu Gönder", + "verify your number title": "Numaranızı Doğrulayın", + "otp sent subtitle": "5 haneli kod şuraya gönderildi:\\n@phoneNumber", + "verify and continue button": "Doğrula ve Devam Et", + "enter otp validation": "Lütfen 5 haneli doğrulama kodunu girin", + "one last step title": "Son bir adım", + "complete profile subtitle": "Başlamak için profilinizi tamamlayın", + "first name label": "Ad", + "first name required": "Ad gerekli", + "last name label": "Soyad", + "Verify OTP": "Kodu Doğrula", + "Verification Code": "Doğrulama Kodu", + "We have sent a verification code to your mobile number:": "Cep telefonu numaranıza bir doğrulama kodu gönderdik:", + "Verify": "Doğrula", + "Resend Code": "Kodu Tekrar Gönder", + "You can resend in": "Tekrar gönderim süresi:", + "seconds": "saniye", + "Please enter the complete 6-digit code.": "Lütfen 6 haneli kodu eksiksiz girin.", + "last name required": "Soyad gerekli", + "email optional label": "E-posta (İsteğe Bağlı)", + "complete registration button": "Kaydı Tamamla", + "User with this phone number or email already exists.": "Bu telefon veya e-posta ile kayıtlı bir kullanıcı zaten var.", + "otp sent success": "Kod WhatsApp'a başarıyla gönderildi.", + "failed to send otp": "Kod gönderilemedi.", + "server error try again": "Sunucu hatası, tekrar deneyin.", + "an error occurred": "Bir hata oluştu: @error", + "otp verification failed": "Kod doğrulaması başarısız.", + "registration failed": "Kayıt başarısız.", + "welcome user": "Hoş geldin, @firstName!", + "Don't forget your personal belongings.": "Kişisel eşyalarınızı unutmayın.", + "Share App": "Uygulamayı Paylaş", + "Wallet": "Cüzdan", + "Balance": "Bakiye", + "Profile": "Profil", + "Contact Support": "Destekle İletişime Geç", + "Session expired. Please log in again.": "Oturum süresi doldu. Lütfen tekrar giriş yapın.", + "Security Warning": "⚠️ Güvenlik Uyarısı", + "Potential security risks detected. The application may not function correctly.": "Potansiyel güvenlik riski algılandı. Uygulama düzgün çalışmayabilir.", + "please order now": "Şimdi sipariş ver", + "Where to": "Nereye?", + "Where are you going?": "Nereye gidiyorsunuz?", + "Quick Actions": "Hızlı İşlemler", + "My Balance": "Bakiyem", + "Order History": "Sipariş Geçmişi", + "Contact Us": "Bize Ulaşın", + "Driver": "Sürücü", + "Complaint": "Şikayet", + "Promos": "Promosyonlar", + "Recent Places": "Son Gidilen Yerler", + "From": "Nereden", + "WhatsApp Location Extractor": "WhatsApp Konum Çıkarıcı", + "Location Link": "Konum Linki", + "Paste location link here": "Konum linkini buraya yapıştırın", + "Go to this location": "Bu konuma git", + "Paste WhatsApp location link": "WhatsApp konum linkini yapıştır", + "Select Order Type": "Sipariş Türünü Seç", + "Choose who this order is for": "Bu sipariş kimin için?", + "I want to order for myself": "Kendim için", + "I want to order for someone else": "Başka biri için", + "Order for someone else": "Başkası için sipariş ver", + "Order for myself": "Kendim için sipariş ver", + "Are you want to go this site": "Bu konuma gitmek istiyor musunuz?", + "No": "Hayır", + "Intaleq Wallet": "Intaleq Cüzdan", + "Have a promo code?": "Promosyon kodunuz var mı?", + "Your Wallet balance is ": "Cüzdan bakiyeniz: ", + "Cash": "Nakit", + "Pay directly to the captain": "Doğrudan Kaptana öde", + "Top up Wallet to continue": "Devam etmek için Cüzdanı doldur", + "Or pay with Cash instead": "Veya Nakit öde", + "Confirm & Find a Ride": "Onayla & Araç Bul", + "Balance:": "Bakiye:", + "Alerts": "Uyarılar", + "Welcome Back!": "Tekrar Hoş Geldiniz!", + "Current Balance": "Güncel Bakiye", + "Set Wallet Phone Number": "Cüzdan Numarası Ayarla", + "Link a phone number for transfers": "Transferler için numara bağla", + "Payment History": "Ödeme Geçmişi", + "View your past transactions": "Geçmiş işlemleri görüntüle", + "Top up Wallet": "Cüzdanı Doldur", + "Add funds using our secure methods": "Güvenli yöntemlerle bakiye ekle", + "Increase Fare": "Ücreti Artır", + "No drivers accepted your request yet": "Henüz hiçbir sürücü isteğinizi kabul etmedi", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Ücreti artırmak daha fazla sürücü çekebilir. Fiyatı artırmak ister misiniz?", + "Please make sure not to leave any personal belongings in the car.": "Lütfen araçta kişisel eşya bırakmadığınızdan emin olun.", + "Cancel Ride": "Yolculuğu İptal Et", + "Route Not Found": "Rota Bulunamadı", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "Bu hedefe geçerli bir rota bulamadık. Lütfen farklı bir nokta seçin.", + "You can call or record audio during this trip.": "Bu yolculuk sırasında arama yapabilir veya ses kaydedebilirsiniz.", + "Warning: Speeding detected!": "Uyarı: Hız sınırı aşıldı!", + "Comfort": "Konfor", + "Intaleq Balance": "Intaleq Bakiyesi", + "Electric": "Elektrikli", + "Lady": "Kadın", + "Van": "Geniş Araç", + "Rayeh Gai": "Gidiş-Dönüş", + "Join Intaleq as a driver using my referral code!": "Referans kodumla Intaleq sürücüsü ol!", + "Use code:": "Kodu kullan:", + "Download the Intaleq Driver app now and earn rewards!": "Intaleq Sürücü uygulamasını indir ve kazan!", + "Get a discount on your first Intaleq ride!": "İlk Intaleq yolculuğunda indirim kazan!", + "Use my referral code:": "Referans kodumu kullan:", + "Download the Intaleq app now and enjoy your ride!": "Intaleq uygulamasını indir ve yolculuğun tadını çıkar!", + "Contacts Loaded": "Kişiler Yüklendi", + "Showing": "Gösteriliyor", + "of": "/", + "Customer not found": "Müşteri bulunamadı", + "Wallet is blocked": "Cüzdan bloke edildi", + "Customer phone is not active": "Müşteri telefonu aktif değil", + "Balance not enough": "Bakiye yetersiz", + "Balance limit exceeded": "Bakiye limiti aşıldı", + "Incorrect sms code": "⚠️ Hatalı SMS kodu. Lütfen tekrar deneyin.", + "contacts. Others were hidden because they don't have a phone number.": "kişi. Diğerleri numarası olmadığı için gizlendi.", + "No contacts found": "Kişi bulunamadı", + "No contacts with phone numbers were found on your device.": "Cihazınızda telefon numarası olan kişi bulunamadı.", + "Permission denied": "İzin reddedildi", + "Contact permission is required to pick contacts": "Kişileri seçmek için rehber izni gerekli.", + "An error occurred while picking contacts:": "Kişi seçilirken hata oluştu:", + "Please enter a correct phone": "Lütfen geçerli bir telefon girin", + "Success": "Başarılı", + "Invite sent successfully": "Davet başarıyla gönderildi", + "Use my invitation code to get a special gift on your first ride!": "İlk yolculuğunda özel hediye için davet kodumu kullan!", + "Your personal invitation code is:": "Kişisel davet kodun:", + "Be sure to use it quickly! This code expires at": "Hızlı kullan! Kodun son kullanma tarihi:", + "Download the app now:": "Uygulamayı hemen indir:", + "See you on the road!": "Yollarda görüşmek üzere!", + "This phone number has already been invited.": "Bu numara zaten davet edilmiş.", + "An unexpected error occurred. Please try again.": "Beklenmedik bir hata oluştu. Lütfen tekrar deneyin.", + "You deserve the gift": "Hediyeyi hak ettiniz", + "Claim your 20 LE gift for inviting": "Davet için 20 TL hediyeni al", + "You have got a gift for invitation": "Davet için hediye kazandınız", + "You have earned 20": "20 kazandınız", + "LE": "TL", + "Vibration feedback for all buttons": "Tüm butonlar için titreşim geri bildirimi", + "Share with friends and earn rewards": "Arkadaşlarınla paylaş ve ödül kazan", + "Gift Already Claimed": "Hediye Zaten Alındı", + "You have already received your gift for inviting": "Davet hediyenizi zaten aldınız", + "Keep it up!": "Böyle devam et!", + "has completed": "tamamladı", + "trips": "yolculuk", + "Personal Information": "Kişisel Bilgiler", + "Name": "Ad", + "Not set": "Ayarlanmadı", + "Gender": "Cinsiyet", + "Education": "Eğitim", + "Work & Contact": "İş & İletişim", + "Employment Type": "İstihdam Türü", + "Marital Status": "Medeni Durum", + "SOS Phone": "Acil Durum Telefonu", + "Sign Out": "Çıkış Yap", + "Delete My Account": "Hesabımı Sil", + "Update Gender": "Cinsiyeti Güncelle", + "Update": "Güncelle", + "Update Education": "Eğitimi Güncelle", + "Are you sure? This action cannot be undone.": "Emin misiniz? Bu işlem geri alınamaz.", + "Confirm your Email": "E-postanızı Onaylayın", + "Type your Email": "E-postanızı Yazın", + "Delete Permanently": "Kalıcı Olarak Sil", + "Male": "Erkek", + "Female": "Kadın", + "High School Diploma": "Lise Diploması", + "Associate Degree": "Önlisans", + "Bachelor's Degree": "Lisans", + "Master's Degree": "Yüksek Lisans", + "Doctoral Degree": "Doktora", + "Select your preferred language for the app interface.": "Uygulama arayüzü için dil seçin.", + "Language Options": "Dil Seçenekleri", + "You can claim your gift once they complete 2 trips.": "Onlar 2 yolculuk tamamlayınca hediyeni alabilirsin.", + "Closest & Cheapest": "En Yakın & En Ucuz", + "Comfort choice": "Konfor seçimi", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Modern, sessiz elektrikli araçla seyahat edin. Pürüzsüz bir yolculuk için premium, çevre dostu seçim.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Aileler ve gruplar için ideal geniş araç hizmeti. Rahat, güvenli ve ekonomik.", + "Quiet & Eco-Friendly": "Sessiz & Çevre Dostu", + "Lady Captain for girls": "Kadınlar için Kadın Sürücü", + "Van for familly": "Aile için Geniş Araç", + "Are you sure to delete this location?": "Bu konumu silmek istediğinize emin misiniz?", + "Submit a Complaint": "Şikayet Gönder", + "Submit Complaint": "Şikayeti Gönder", + "No trip history found": "Yolculuk geçmişi bulunamadı", + "Your past trips will appear here.": "Geçmiş yolculuklarınız burada görünecek.", + "1. Describe Your Issue": "1. Sorununuzu Açıklayın", + "Enter your complaint here...": "Şikayetinizi buraya girin...", + "2. Attach Recorded Audio": "2. Kayıtlı Ses Dosyası Ekle", + "No audio files found.": "Ses dosyası bulunamadı.", + "Confirm Attachment": "Eki Onayla", + "Attach this audio file?": "Bu ses dosyasını ekle?", + "Uploaded": "Yüklendi", + "3. Review Details & Response": "3. Detayları ve Yanıtı İncele", + "Date": "Tarih", + "Today's Promos": "Günün Fırsatları", + "No promos available right now.": "Şu an uygun promosyon yok.", + "Check back later for new offers!": "Yeni teklifler için sonra tekrar kontrol et!", + "Valid Until:": "Son Geçerlilik:", + "CODE": "KOD", + "I Agree": "Kabul Ediyorum", + "Continue": "Devam Et", + "Enable Location": "Konumu Etkinleştir", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Size en iyi deneyimi sunmak için nerede olduğunuzu bilmemiz gerek. Konumunuz yakın sürücüleri bulmak için kullanılır.", + "Allow Location Access": "Konum Erişimine İzin Ver", + "Welcome to Intaleq!": "Intaleq'e Hoş Geldiniz!", + "Before we start, please review our terms.": "Başlamadan önce lütfen şartlarımızı inceleyin.", + "Your journey starts here": "Yolculuğunuz burada başlıyor", + "Cancel Search": "Aramayı İptal Et", + "Set pickup location": "Alım noktasını ayarla", + "Move the map to adjust the pin": "İğneyi ayarlamak için haritayı kaydırın", + "Searching for the nearest captain...": "En yakın kaptan aranıyor...", + "No one accepted? Try increasing the fare.": "Kimse kabul etmedi mi? Ücreti artırmayı deneyin.", + "Increase Your Trip Fee (Optional)": "Yolculuk Ücretini Artır (İsteğe Bağlı)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Henüz sürücü bulunamadı. Teklifinizi daha cazip hale getirmek için ücreti artırmayı düşünün.", + "No, thanks": "Hayır, teşekkürler", + "Increase Fee": "Ücreti Artır", + "Copy": "Kopyala", + "Promo Copied!": "Promosyon Kopyalandı!", + "Code": "Kod", + "Send Intaleq app to him": "Ona Intaleq uygulamasını gönder", + "No passenger found for the given phone number": "Verilen numara için yolcu bulunamadı", + "No user found for the given phone number": "Verilen numara için kullanıcı bulunamadı", + "This price is": "Bu fiyat:", + "Work": "İş", + "Add Home": "Ev Ekle", + "Notifications": "Bildirimler", + "💳 Pay with Credit Card": "💳 Kredi Kartı ile Öde", + "⚠️ You need to choose an amount!": "⚠️ Bir tutar seçmelisiniz!", + "💰 Pay with Wallet": "💰 Cüzdan ile Öde", + "You must restart the app to change the language.": "Dili değiştirmek için uygulamayı yeniden başlatmalısınız.", + "joined": "katıldı", + "Driver joined the channel": "Sürücü kanala katıldı", + "Driver left the channel": "Sürücü kanaldan ayrıldı", + "Call Page": "Arama Sayfası", + "Call Left": "Kalan Arama", + " Next as Cash !": " Sonraki Nakit!", + "To use Wallet charge it": "Cüzdanı kullanmak için yükleme yapın", + "We are searching for the nearest driver to you": "Size en yakın sürücüyü arıyoruz", + "Best choice for cities": "Şehirler için en iyi seçim", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Gidiş-Dönüş: Şehirler arası rahat seyahat için kolay ve güvenilir hizmet.", + "This trip is for women only": "Bu yolculuk sadece kadınlar içindir", + "Total budgets on month": "Aylık toplam bütçe", + "You have call from driver": "Sürücüden aramanız var", + "Intaleq": "Intaleq", + "passenger agreement": "yolcu sözleşmesi", + "To become a passenger, you must review and agree to the ": "Yolcu olmak için şunları inceleyip kabul etmelisiniz: ", + "agreement subtitle": "Devam etmek için Kullanım Şartları ve Gizlilik Politikasını kabul etmelisiniz.", + "terms of use": "kullanım şartları", + " and acknowledge our Privacy Policy.": " ve Gizlilik Politikamızı kabul edin.", + "and acknowledge our": "ve şunu kabul edin:", + "privacy policy": "gizlilik politikası.", + "i agree": "kabul ediyorum", + "Driver already has 2 trips within the specified period.": "Sürücünün belirtilen sürede zaten 2 yolculuğu var.", + "The invitation was sent successfully": "Davet başarıyla gönderildi", + "You should select your country": "Ülkenizi seçmelisiniz", + "Scooter": "Scooter", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Ön rezervasyonlu yolculuk, en iyi kaptanları ve araçları seçmenize olanak tanır.", + "Mishwar Vip": "Mishwar VIP", + "The driver waiting you in picked location .": "Sürücü sizi seçilen konumda bekliyor.", + "About Us": "Hakkımızda", + "You can change the vibration feedback for all buttons": "Tüm butonlar için titreşimi değiştirebilirsiniz", + "Most Secure Methods": "En Güvenli Yöntemler", + "In-App VOIP Calls": "Uygulama İçi VOIP Aramalar", + "Recorded Trips for Safety": "Güvenlik İçin Kaydedilen Yolculuklar", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nAyrıca uygun fiyat önceliğimizdir, rekabetçi fiyatlarla yolculuğu erişilebilir kılıyoruz.", + "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, güvenliğiniz ve bütçeniz düşünülerek tasarlanmış bir araç paylaşım uygulamasıdır. Sizi bölgenizdeki güvenilir sürücülerle buluşturuyoruz.", + "Sign In by Apple": "Apple ile Giriş Yap", + "Sign In by Google": "Google ile Giriş Yap", + "How do I request a ride?": "Nasıl yolculuk isterim?", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Intaleq uygulaması üzerinden yolculuk isteme adımları.", + "What types of vehicles are available?": "Hangi araç türleri mevcut?", + "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 ihtiyaçlarınıza uygun ekonomi, konfor ve lüks dahil çeşitli araç seçenekleri sunar.", + "How can I pay for my ride?": "Yolculuğumu nasıl öderim?", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq nakit veya kredi/banka kartı ile ödeme seçenekleri sunar.", + "Can I cancel my ride?": "Yolculuğumu iptal edebilir miyim?", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Evet, belirli koşullar altında (örneğin sürücü atanmadan önce) yolculuğunuzu iptal edebilirsiniz. Ayrıntılar için Intaleq iptal politikasına bakın.", + "Driver Registration & Requirements": "Sürücü Kaydı & Gereksinimler", + "How can I register as a driver?": "Sürücü olarak nasıl kayıt olurum?", + "What are the requirements to become a driver?": "Sürücü olma şartları nelerdir?", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Bilgi için web sitemizi ziyaret edin veya destek ile iletişime geçin.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq, yolculuk sırasında iletişim kurmanız için uygulama içi sohbet sunar.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq güvenliğinizi önceler. Sürücü doğrulama, takip ve acil durum seçenekleri sunar.", + "Frequently Questions": "Sıkça Sorulan Sorular", + "User does not exist.": "Kullanıcı mevcut değil.", + "We need your phone number to contact you and to help you.": "Size ulaşmak ve yardım etmek için numaranıza ihtiyacımız var.", + "You will recieve code in sms message": "Kodu SMS ile alacaksınız", + "Please enter": "Lütfen girin", + "We need your phone number to contact you and to help you receive orders.": "Sipariş alabilmeniz ve iletişim için numaranıza ihtiyacımız var.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Adli sicil kaydındaki isim ehliyetinizle eşleşmiyor. Lütfen doğrulayın.", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Ehliyetinizdeki T.C. kimlik no kimliğinizle eşleşmiyor.", + "Capture an Image of Your Criminal Record": "Adli Sicil Kaydınızın Fotoğrafını Çekin", + "IssueDate": "Veriliş Tarihi", + "Capture an Image of Your car license front": "Ruhsatınızın Ön Yüzünün Fotoğrafını Çekin", + "Capture an Image of Your ID Document front": "Kimliğinizin Ön Yüzünün Fotoğrafını Çekin", + "NationalID": "T.C. Kimlik No", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Uygulamayı paylaşın ve kodunuzla yapılan yolculuklardan ödül kazanın.", + "FullName": "Tam Ad", + "No invitation found yet!": "Henüz davet bulunamadı!", + "InspectionResult": "Muayene Sonucu", + "Criminal Record": "Adli Sicil Kaydı", + "The email or phone number is already registered.": "E-posta veya telefon numarası zaten kayıtlı.", + "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.": "Sürücü olmak için ehliyet, kimlik ve ruhsatınızı yüklemelisiniz. Yapay zekamız 2-3 dakikada doğrular. Sahte belge yüklemek yasal sonuçlar doğurur.", + "Documents check": "Belge Kontrolü", + "Driver's License": "Sürücü Belgesi (Ehliyet)", + "for your first registration!": "ilk kaydınız için!", + "Get it Now!": "Hemen Al!", + "before": "önce", + "Code not approved": "Kod onaylanmadı", + "3000 LE": "3000 TL", + "Do you have an invitation code from another driver?": "Başka bir sürücüden davet kodunuz var mı?", + "Paste the code here": "Kodu buraya yapıştır", + "No, I don't have a code": "Hayır, kodum yok", + "Audio uploaded successfully.": "Ses başarıyla yüklendi.", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "En yeni model araçlar ve rota özgürlüğü isteyen yolcular için mükemmel", + "Share this code with your friends and earn rewards when they use it!": "Bu kodu arkadaşlarınla paylaş ve kullandıklarında ödül kazan!", + "Enter phone": "Telefon gir", + "complete, you can claim your gift": "tamamlandı, hediyeni alabilirsin", + "When": "Ne zaman", + "Enter driver's phone": "Sürücü telefonunu gir", + "Send Invite": "Davet Gönder", + "Show Invitations": "Davetleri Göster", + "License Type": "Ehliyet Sınıfı", + "National Number": "T.C. Kimlik No", + "Name (Arabic)": "Ad (Arapça)", + "Name (English)": "Ad (İngilizce)", + "Address": "Adres", + "Issue Date": "Veriliş Tarihi", + "Expiry Date": "Geçerlilik Tarihi", + "License Categories": "Ehliyet Kategorileri", + "driver_license": "ehliyet", + "Capture an Image of Your Driver License": "Ehliyetinizin Fotoğrafını Çekin", + "ID Documents Back": "Kimlik Arka Yüzü", + "National ID": "T.C. Kimlik", + "Occupation": "Meslek", + "Religion": "Din", + "Full Name (Marital)": "Tam Ad", + "Expiration Date": "Son Kullanma Tarihi", + "Capture an Image of Your ID Document Back": "Kimliğinizin Arka Yüzünün Fotoğrafını Çekin", + "ID Documents Front": "Kimlik Ön Yüzü", + "First Name": "Ad", + "CardID": "Kart No", + "Vehicle Details Front": "Araç Detayları Ön", + "Plate Number": "Plaka No", + "Owner Name": "Ruhsat Sahibi", + "Vehicle Details Back": "Araç Detayları Arka", + "Make": "Marka", + "Model": "Model", + "Year": "Yıl", + "Chassis": "Şasi No", + "Color": "Renk", + "Displacement": "Motor Hacmi", + "Fuel": "Yakıt", + "Tax Expiry Date": "Vergi Bitiş Tarihi", + "Inspection Date": "Muayene Tarihi", + "Capture an Image of Your car license back": "Ruhsatınızın Arka Yüzünün Fotoğrafını Çekin", + "Capture an Image of Your Driver's License": "Ehliyetinizin Fotoğrafını Çekin", + "Sign in with Google for easier email and name entry": "Daha kolay giriş için Google ile bağlanın", + "You will choose allow all the time to be ready receive orders": "Sipariş almak için 'Her zaman izin ver'i seçmelisiniz", + "Get to your destination quickly and easily.": "Hedefinize hızlı ve kolayca ulaşın.", + "Enjoy a safe and comfortable ride.": "Güvenli ve konforlu bir yolculuğun tadını çıkarın.", + "Choose Language": "Dil Seçin", + "Pay with Wallet": "Cüzdan ile Öde", + "Invalid MPIN": "Geçersiz MPIN", + "Invalid OTP": "Geçersiz Kod", + "Enter your email address": "E-posta adresinizi girin", + "Please enter Your Email.": "Lütfen e-postanızı girin.", + "Enter your phone number": "Telefon numaranızı girin", + "Please enter your phone number.": "Lütfen telefon numaranızı girin.", + "Please enter Your Password.": "Lütfen şifrenizi girin.", + "if you dont have account": "hesabınız yoksa", + "Register": "Kayıt Ol", + "Accept Ride's Terms & Review Privacy Notice": "Şartları Kabul Et & Gizliliği İncele", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Aşağıdaki 'Kabul Ediyorum' seçeneği ile şartları kabul etmiş ve 18 yaşından büyük olduğumu onaylamış olurum.", + "First name": "Ad", + "Enter your first name": "Adınızı girin", + "Please enter your first name.": "Lütfen adınızı girin.", + "Last name": "Soyad", + "Enter your last name": "Soyadınızı girin", + "Please enter your last name.": "Lütfen soyadınızı girin.", + "City": "Şehir", + "Please enter your City.": "Lütfen Şehrinizi girin.", + "Verify Email": "E-postayı Doğrula", + "We sent 5 digit to your Email provided": "E-postanıza 5 haneli kod gönderdik", + "5 digit": "5 haneli", + "Send Verification Code": "Doğrulama Kodu Gönder", + "Your Ride Duration is ": "Yolculuk Süreniz: ", + "You will be thier in": "Şu sürede orada olacaksınız:", + "You trip distance is": "Yolculuk mesafesi:", + "Fee is": "Ücret:", + "From : ": "Nereden: ", + "To : ": "Nereye: ", + "Add Promo": "Promosyon Ekle", + "Confirm Selection": "Seçimi Onayla", + "distance is": "mesafe:", + "Privacy Policy": "Gizlilik Politikası", + "Intaleq LLC": "Intaleq Ltd. Şti.", + "Syria'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.": "Türkiye'nin öncü araç paylaşım hizmeti.", + "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, sizi en yakın sürücülerle buluşturan ilk uygulamadır.", + "Why Choose Intaleq?": "Neden Intaleq?", + "Closest to You": "Size En Yakın", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Daha hızlı alım ve yolculuk için sizi en yakın sürücülere bağlıyoruz.", + "Uncompromising Security": "Tavizsiz Güvenlik", + "Lady Captains Available": "Kadın Kaptanlar Mevcut", + "Recorded Trips (Voice & AI Analysis)": "Kaydedilen Yolculuklar (Ses & YZ Analizi)", + "Fastest Complaint Response": "En Hızlı Şikayet Yanıtı", + "Our dedicated customer service team ensures swift resolution of any issues.": "Müşteri hizmetleri ekibimiz sorunları hızla çözer.", + "Affordable for Everyone": "Herkes İçin Uygun Fiyatlı", + "Frequently Asked Questions": "Sıkça Sorulan Sorular", + "Getting Started": "Başlarken", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Uygulamayı açın, hedefi girin ve \"Yolculuk İste\"ye dokunun.", + "Vehicle Options": "Araç Seçenekleri", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq; Ekonomi, Konfor ve Lüks gibi çeşitli seçenekler sunar.", + "Payments": "Ödemeler", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Nakit veya kartla ödeyebilirsiniz. Onaylamadan önce yöntemi seçin.", + "Ride Management": "Yolculuk Yönetimi", + "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "Evet, iptal edebilirsiniz ancak iptal ücreti uygulanabilir.", + "For Drivers": "Sürücüler İçin", + "Driver Registration": "Sürücü Kaydı", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Sürücü olmak için web sitemizi ziyaret edin veya destekle görüşün.", + "Visit Website/Contact Support": "Web Sitesini Ziyaret Et/Desteğe Ulaş", + "Close": "Kapat", + "We are searching for the nearest driver": "En yakın sürücüyü arıyoruz", + "Communication": "İletişim", + "How do I communicate with the other party (passenger/driver)?": "Diğer taraf (yolcu/sürücü) ile nasıl iletişim kurarım?", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Yolculuk onaylandığında uygulama içi sohbeti kullanabilirsiniz.", + "Safety & Security": "Güvenlik & Emniyet", + "What safety measures does Intaleq offer?": "Intaleq hangi güvenlik önlemlerini sunuyor?", + "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.": "Sürücü doğrulama, yolculuk takibi ve acil durum kişileri gibi özellikler sunuyoruz.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Tüm seçeneklerde rekabetçi fiyatların tadını çıkarın.", + "Variety of Trip Choices": "Yolculuk Seçeneği Çeşitliliği", + "Choose the trip option that perfectly suits your needs and preferences.": "İhtiyaçlarınıza mükemmel uyan seçeneği tercih edin.", + "Your Choice, Our Priority": "Sizin Seçiminiz, Bizim Önceliğimiz", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Size yakın olduğumuz için en uygun yolculuğu seçme esnekliğine sahipsiniz.", + "duration is": "süre:", + "Setting": "Ayar", + "Find answers to common questions": "Sık sorulan soruların cevaplarını bul", + "I don't need a ride anymore": "Artık yolculuğa ihtiyacım yok", + "I was just trying the application": "Sadece uygulamayı deniyordum", + "No driver accepted my request": "Hiçbir sürücü isteğimi kabul etmedi", + "I added the wrong pick-up/drop-off location": "Yanlış konum ekledim", + "I don't have a reason": "Bir sebebim yok", + "Can we know why you want to cancel Ride ?": "Neden iptal etmek istediğinizi öğrenebilir miyiz?", + "Add Payment Method": "Ödeme Yöntemi Ekle", + "Ride Wallet": "Yolculuk Cüzdanı", + "Payment Method": "Ödeme Yöntemi", + "Type here Place": "Yeri buraya yaz", + "Are You sure to ride to": "Şuraya gitmek istediğinize emin misiniz:", + "Confirm": "Onayla", + "You are Delete": "Siliyorsunuz", + "Deleted": "Silindi", + "You Dont Have Any places yet !": "Henüz kayıtlı yeriniz yok!", + "From : Current Location": "Nereden: Mevcut Konum", + "My Cared": "Kartlarım", + "Add Card": "Kart Ekle", + "Add Credit Card": "Kredi Kartı Ekle", + "Please enter the cardholder name": "Kart sahibinin adını girin", + "Please enter the expiry date": "Son kullanma tarihini girin", + "Please enter the CVV code": "CVV kodunu girin", + "Go To Favorite Places": "Favori Yerlere Git", + "Go to this Target": "Bu Hedefe Git", + "My Profile": "Profilim", + "Are you want to go to this site": "Bu konuma gitmek istiyor musunuz?", + "MyLocation": "Konumum", + "my location": "konumum", + "Target": "Hedef", + "You Should choose rate figure": "Puan seçmelisiniz", + "Login Captin": "Kaptan Girişi", + "Register Captin": "Kaptan Kaydı", + "Send Verfication Code": "Doğrulama Kodu Gönder", + "KM": "KM", + "End Ride": "Yolculuğu Bitir", + "Minute": "Dakika", + "Go to passenger Location now": "Yolcu Konumuna Git", + "Duration of the Ride is ": "Yolculuk Süresi: ", + "Distance of the Ride is ": "Yolculuk Mesafesi: ", + "Name of the Passenger is ": "Yolcunun Adı: ", + "Hello this is Captain": "Merhaba, ben Kaptan", + "Start the Ride": "Yolculuğu Başlat", + "Please Wait If passenger want To Cancel!": "Lütfen Bekleyin, yolcu iptal etmek isteyebilir!", + "Total Duration:": "Toplam Süre:", + "Active Duration:": "Aktif Süre:", + "Waiting for Captin ...": "Kaptan Bekleniyor...", + "Age is ": "Yaş: ", + "Rating is ": "Puan: ", + " to arrive you.": " size ulaşmak için.", + "Tariff": "Tarife", + "Settings": "Ayarlar", + "Feed Back": "Geri Bildirim", + "Please enter a valid 16-digit card number": "Lütfen geçerli 16 haneli kart numarasını girin", + "Add Phone": "Telefon Ekle", + "Please enter a phone number": "Lütfen bir telefon numarası girin", + "You dont Add Emergency Phone Yet!": "Henüz Acil Durum Telefonu Eklemediniz!", + "You will arrive to your destination after ": "Hedefe varış süreniz: ", + "You can cancel Ride now": "Yolculuğu şimdi iptal edebilirsiniz", + "You Can cancel Ride After Captain did not come in the time": "Kaptan zamanında gelmezse iptal edebilirsiniz", + "If you in Car Now. Press Start The Ride": "Şu an araçtaysanız, Yolculuğu Başlat'a basın", + "You Dont Have Any amount in": "Hiç bakiyeniz yok:", + "Wallet!": "Cüzdan!", + "You Have": "Bakiyeniz:", + "Save Credit Card": "Kredi Kartını Kaydet", + "Show Promos": "Promosyonları Göster", + "10 and get 4% discount": "10 ve %4 indirim al", + "20 and get 6% discount": "20 ve %6 indirim al", + "40 and get 8% discount": "40 ve %8 indirim al", + "100 and get 11% discount": "100 ve %11 indirim al", + "Pay with Your PayPal": "PayPal ile Öde", + "You will choose one of above !": "Yukarıdakilerden birini seçmelisiniz!", + "Edit Profile": "Profili Düzenle", + "Copy this Promo to use it in your Ride!": "Bu Promosyonu kopyalayıp kullanın!", + "To change some Settings": "Bazı Ayarları değiştirmek için", + "Order Request Page": "Sipariş İstek Sayfası", + "Rouats of Trip": "Yolculuk Rotaları", + "Passenger Name is ": "Yolcu Adı: ", + "Total From Passenger is ": "Yolcu Tutarı: ", + "Duration To Passenger is ": "Yolcuya Varış Süresi: ", + "Distance To Passenger is ": "Yolcuya Mesafe: ", + "Total For You is ": "Size Ödenecek: ", + "Distance is ": "Mesafe: ", + " KM": " KM", + "Duration of Trip is ": "Yolculuk Süresi: ", + " Minutes": " Dakika", + "Apply Order": "Siparişi Kabul Et", + "Refuse Order": "Siparişi Reddet", + "Rate Captain": "Kaptanı Puanla", + "Enter your Note": "Notunu gir", + "Type something...": "Bir şeyler yaz...", + "Submit rating": "Puanı gönder", + "Rate Passenger": "Yolcuyu Puanla", + "Ride Summary": "Yolculuk Özeti", + "welcome_message": "Intaleq'e Hoş Geldiniz!", + "app_description": "Intaleq güvenli, güvenilir ve erişilebilir bir araç çağırma uygulamasıdır.", + "get_to_destination": "Hedefinize hızlı ve kolay ulaşın.", + "get_a_ride": "Intaleq ile dakikalar içinde araç bulun.", + "safe_and_comfortable": "Güvenli ve konforlu yolculuğun tadını çıkarın.", + "committed_to_safety": "Güvenliğe önem veriyoruz, tüm kaptanlarımız kontrolden geçer.", + "your ride is Accepted": "yolculuğunuz Kabul Edildi", + "Driver is waiting at pickup.": "Sürücü alım noktasında bekliyor.", + "Driver is on the way": "Sürücü yolda", + "Contact Options": "İletişim Seçenekleri", + "Send a custom message": "Özel mesaj gönder", + "Type your message": "Mesajını yaz", + "I will go now": "Şimdi gidiyorum", + "You Have Tips": "Bahşişiniz var", + " tips\\nTotal is": " bahşiş\\nToplam:", + "Your fee is ": "Ücretiniz: ", + "Do you want to pay Tips for this Driver": "Bu Sürücüye Bahşiş vermek ister misiniz?", + "Tip is ": "Bahşiş: ", + "Are you want to wait drivers to accept your order": "Sürücülerin siparişinizi kabul etmesini beklemek ister misiniz?", + "This price is fixed even if the route changes for the driver.": "Bu fiyat rota değişse bile sabittir.", + "The price may increase if the route changes.": "Rota değişirse fiyat artabilir.", + "The captain is responsible for the route.": "Rota sorumluluğu kaptandadır.", + "We are search for nearst driver": "En yakın sürücüyü arıyoruz", + "Your order is being prepared": "Siparişiniz hazırlanıyor", + "The drivers are reviewing your request": "Sürücüler isteğinizi inceliyor", + "Your order sent to drivers": "Siparişiniz sürücülere gönderildi", + "You can call or record audio of this trip": "Arama yapabilir veya ses kaydedebilirsiniz", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Yolculuk başladı! Acil numaraları aramaktan, yolculuğu paylaşmaktan veya ses kaydı almaktan çekinmeyin.", + "Camera Access Denied.": "Kamera Erişimi Reddedildi.", + "Open Settings": "Ayarları Aç", + "GPS Required Allow !.": "GPS Gerekli, İzin Ver!", + "Your Account is Deleted": "Hesabınız Silindi", + "Are you sure to delete your account?": "Hesabınızı silmek istediğinize emin misiniz?", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Verileriniz 2 hafta sonra silinecek\\nVe 1 ay sonra uygulamayı kullanamayacaksınız", + "Enter Your First Name": "Adınızı Girin", + "Are you Sure to LogOut?": "Çıkış Yapmak İstediğinize Emin misiniz?", + "Email Wrong": "E-posta Yanlış", + "Email you inserted is Wrong.": "Girdiğiniz e-posta yanlış.", + "You have finished all times ": "Tüm haklarınızı doldurdunuz ", + "if you want help you can email us here": "yardım isterseniz bize e-posta atabilirsiniz", + "Thanks": "Teşekkürler", + "Email Us": "Bize E-posta Gönder", + "I cant register in your app in face detection ": "Yüz algılamada sorun yaşıyorum, kayıt olamıyorum", + "Hi": "Selam", + "No face detected": "Yüz algılanmadı", + "Image detecting result is ": "Görüntü algılama sonucu: ", + "from 3 times Take Attention": "3 denemeden, Dikkat Edin", + "Be sure for take accurate images please\\nYou have": "Lütfen net fotoğraflar çekin\\nKalan hakkınız:", + "image verified": "görüntü doğrulandı", + "Next": "İleri", + "There is no help Question here": "Burada yardım sorusu yok", + "You dont have Points": "Puanınız yok", + "You Are Stopped For this Day !": "Bugünlük durduruldunuz!", + "You must be charge your Account": "Hesabınıza yükleme yapmalısınız", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Bugün 3 yolculuğu reddettiniz, sebep bu \\nYarın görüşürüz!", + "Recharge my Account": "Hesabımı Doldur", + "Ok , See you Tomorrow": "Tamam, Yarın Görüşürüz", + "You are Stopped": "Durduruldunuz", + "Connected": "Bağlı", + "Not Connected": "Bağlı Değil", + "Your are far from passenger location": "Yolcu konumundan uzaksınız", + "go to your passenger location before\\nPassenger cancel trip": "yolcu iptal etmeden konumuna gidin", + "You will get cost of your work for this trip": "Bu yolculuk için emeğinizin karşılığını alacaksınız", + " in your wallet": " cüzdanınızda", + "you gain": "kazandınız", + "Order Cancelled by Passenger": "Sipariş Yolcu Tarafından İptal Edildi", + "Feedback data saved successfully": "Geri bildirim başarıyla kaydedildi", + "No Promo for today .": "Bugün için Promosyon yok.", + "Select your destination": "Varış noktasını seç", + "Search for your Start point": "Başlangıç noktasını ara", + "Search for waypoint": "Ara nokta ara", + "Current Location": "Mevcut Konum", + "Add Location 1": "Konum 1 Ekle", + "You must Verify email !.": "E-postayı doğrulamalısınız!", + "Cropper": "Kırpıcı", + "Saved Sucssefully": "Başarıyla Kaydedildi", + "Select Date": "Tarih Seç", + "Birth Date": "Doğum Tarihi", + "Ok": "Tamam", + "the 500 points equal 30 JOD": "500 puan 30 TL eder", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "500 puan senin için 30 TL eder \\nHadi paranı kazan", + "token updated": "token güncellendi", + "Add Location 2": "Konum 2 Ekle", + "Add Location 3": "Konum 3 Ekle", + "Add Location 4": "Konum 4 Ekle", + "Waiting for your location": "Konumunuz bekleniyor", + "Search for your destination": "Varış yerini ara", + "Hi! This is": "Merhaba! Bu", + " I am using": " kullanıyorum", + " to ride with": " şununla yolculuk yapmak için:", + " as the driver.": " sürücü olarak.", + "is driving a ": "bir araç kullanıyor: ", + " with license plate ": " plaka: ", + " I am currently located at ": " Şu anki konumum: ", + "Please go to Car now ": "Lütfen şimdi Araca gidin ", + "You will receive a code in WhatsApp Messenger": "WhatsApp üzerinden bir kod alacaksınız", + "If you need assistance, contact us": "Yardıma ihtiyacınız varsa bize ulaşın", + "Promo Ended": "Promosyon Sona Erdi", + "Enter the promo code and get": "Promosyon kodunu gir ve kazan:", + "DISCOUNT": "İNDİRİM", + "No wallet record found": "Cüzdan kaydı bulunamadı", + "for": "için", + "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, kaptanlar ve yolcular için birçok özellik sunan en güvenli araç paylaşım uygulamasıdır. Sadece %8 komisyon oranıyla en iyi değeri almanızı sağlıyoruz. En iyi kaptanlar için sigorta, düzenli araç bakımı ve yol yardımı hizmetleri sunuyoruz.", + "You can contact us during working hours from 12:00 - 19:00.": "Bize 12:00 - 19:00 saatleri arasında ulaşabilirsiniz.", + "Choose a contact option": "İletişim seçeneği belirleyin", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Çalışma saatleri 12:00 - 19:00.\\nWhatsApp mesajı veya e-posta gönderebilirsiniz.", + "Promo code copied to clipboard!": "Promosyon kodu panoya kopyalandı!", + "Copy Code": "Kodu Kopyala", + "Your invite code was successfully applied!": "Davet kodunuz başarıyla uygulandı!", + "Payment Options": "Ödeme Seçenekleri", + "wait 1 minute to receive message": "mesajı almak için 1 dakika bekleyin", + "You have copied the promo code.": "Promosyon kodunu kopyaladınız.", + "Select Payment Amount": "Ödeme Tutarını Seç", + "The promotion period has ended.": "Promosyon süresi doldu.", + "Promo Code Accepted": "Promosyon Kodu Kabul Edildi", + "Tap on the promo code to copy it!": "Kopyalamak için koda dokunun!", + "Lowest Price Achieved": "En Düşük Fiyata Ulaşıldı", + "Cannot apply further discounts.": "Daha fazla indirim uygulanamaz.", + "Promo Already Used": "Promosyon Zaten Kullanıldı", + "Invitation Used": "Davet Kullanıldı", + "You have already used this promo code.": "Bu promosyon kodunu zaten kullandınız.", + "Insert Your Promo Code": "Promosyon Kodunu Gir", + "Enter promo code here": "Promosyon kodunu buraya girin", + "Please enter a valid promo code": "Lütfen geçerli bir promosyon kodu girin", + "Awfar Car": "Ekonomik Araç", + "Old and affordable, perfect for budget rides.": "Eski ve uygun fiyatlı, bütçe dostu yolculuklar için mükemmel.", + " If you need to reach me, please contact the driver directly at": " Bana ulaşmanız gerekirse, lütfen sürücüyle şu numaradan iletişime geçin:", + "No Car or Driver Found in your area.": "Bölgenizde Araç veya Sürücü Bulunamadı.", + "Please Try anther time ": "Lütfen başka zaman deneyin ", + "There no Driver Aplly your order sorry for that ": "Siparişinize başvuran sürücü yok, üzgünüz ", + "Trip Cancelled": "Yolculuk İptal Edildi", + "The Driver Will be in your location soon .": "Sürücü yakında konumunuzda olacak.", + "The distance less than 500 meter.": "Mesafe 500 metreden az.", + "Promo End !": "Promosyon Bitti!", + "There is no notification yet": "Henüz bildirim yok", + "Use Touch ID or Face ID to confirm payment": "Ödemeyi onaylamak için Touch ID veya Face ID kullanın", + "Contact us for any questions on your order.": "Siparişinizle ilgili sorular için bize ulaşın.", + "Pyament Cancelled .": "Ödeme İptal Edildi.", + "type here": "buraya yazın", + "Scan Driver License": "Ehliyeti Tara", + "Please put your licence in these border": "Lütfen ehliyetinizi bu çerçeveye yerleştirin", + "Camera not initialized yet": "Kamera henüz başlatılmadı", + "Take Image": "Fotoğraf Çek", + "AI Page": "YZ Sayfası", + "Take Picture Of ID Card": "Kimlik Kartı Fotoğrafı Çek", + "Take Picture Of Driver License Card": "Ehliyet Fotoğrafı Çek", + "We are process picture please wait ": "Fotoğrafı işliyoruz lütfen bekleyin ", + "There is no data yet.": "Henüz veri yok.", + "Name :": "Ad:", + "Drivers License Class: ": "Ehliyet Sınıfı: ", + "Document Number: ": "Belge No: ", + "Address: ": "Adres: ", + "Height: ": "Boy: ", + "Expiry Date: ": "Son Kullanma Tarihi: ", + "Date of Birth: ": "Doğum Tarihi: ", + "You can't continue with us .\\nYou should renew Driver license": "Bizimle devam edemezsiniz.\\nEhliyetinizi yenilemelisiniz", + "Detect Your Face ": "Yüzünüzü Algılayın ", + "Go to next step\\nscan Car License.": "Sonraki adıma git\\nRuhsatı tara.", + "Name in arabic": "Arapça Ad", + "Drivers License Class": "Ehliyet Sınıfı", + "Selected Date": "Seçilen Tarih", + "Select Time": "Zaman Seç", + "Selected Time": "Seçilen Zaman", + "Selected Date and Time": "Seçilen Tarih ve Saat", + "Lets check Car license ": "Hadi Ruhsatı kontrol edelim ", + "Car": "Araç", + "Plate": "Plaka", + "Rides": "Yolculuklar", + "Selected driver": "Seçilen sürücü", + "Lets check License Back Face": "Hadi Ehliyet Arka Yüzünü kontrol edelim", + "Car License Card": "Ruhsat Kartı", + "No image selected yet": "Henüz resim seçilmedi", + "Made :": "Marka:", + "model :": "Model:", + "VIN :": "Şasi No:", + "year :": "Yıl:", + "ُExpire Date": "Son Kullanma Tarihi", + "Login Driver": "Sürücü Girişi", + "Password must br at least 6 character.": "Şifre en az 6 karakter olmalıdır.", + "if you don't have account": "hesabınız yoksa", + "Here recorded trips audio": "Burada kaydedilen yolculuk sesleri", + "Register as Driver": "Sürücü olarak Kayıt Ol", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Aşağıdaki \"Kabul Ediyorum\" seçeneği ile Kullanım Şartlarını inceleyip kabul ettiğimi ve şunu onayladığımı beyan ederim: ", + "Log Out Page": "Çıkış Sayfası", + "Log Off": "Oturumu Kapat", + "Register Driver": "Sürücü Kaydı", + "Verify Email For Driver": "Sürücü İçin E-postayı Doğrula", + "Admin DashBoard": "Yönetici Paneli", + "Your name": "Adınız", + "your ride is applied": "yolculuğunuz başvuruldu", + "H and": "S ve", + "JOD": "TL", + "m": "dk", + "We search nearst Driver to you": "Size en yakın sürücüyü arıyoruz", + "please wait till driver accept your order": "sürücü siparişinizi kabul edene kadar bekleyin", + "No accepted orders? Try raising your trip fee to attract riders.": "Kabul eden yok mu? Ücreti artırmayı deneyin.", + "You should select one": "Birini seçmelisiniz", + "The driver accept your order for": "Sürücü siparişinizi şu fiyata kabul etti:", + "The driver on your way": "Sürücü yolda", + "Total price from ": "Toplam fiyat: ", + "Order Details Intaleq": "Sipariş Detayları Intaleq", + "Selected file:": "Seçilen dosya:", + "Your trip cost is": "Yolculuk maliyetiniz:", + "this will delete all files from your device": "bu işlem cihazınızdaki tüm dosyaları silecek", + "Exclusive offers and discounts always with the Intaleq app": "Özel teklifler ve indirimler her zaman Intaleq uygulamasında", + "Submit Question": "Soru Gönder", + "Please enter your Question.": "Lütfen Sorunuzu girin.", + "Help Details": "Yardım Detayları", + "No trip yet found": "Henüz yolculuk bulunamadı", + "No Response yet.": "Henüz Yanıt yok.", + " You Earn today is ": " Bugün Kazandığınız: ", + " You Have in": " Hesabınızdaki:", + "Total points is ": "Toplam puan: ", + "Total Connection Duration:": "Toplam Bağlantı Süresi:", + "Passenger name : ": "Yolcu adı: ", + "Cost Of Trip IS ": "Yolculuk Maliyeti: ", + "Arrival time": "Varış zamanı", + "arrival time to reach your point": "noktanıza varış zamanı", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Intaleq ve scooter yolculukları için fiyat dinamiktir. Konfor için zaman ve mesafeye dayalıdır.", + "Hello this is Driver": "Merhaba ben Sürücü", + "Is the Passenger in your Car ?": "Yolcu Aracınızda mı?", + "Please wait for the passenger to enter the car before starting the trip.": "Lütfen yolculuğu başlatmadan önce yolcunun araca binmesini bekleyin.", + "No ,still Waiting.": "Hayır, hâlâ bekliyorum.", + "I arrive you": "Sana ulaştım", + "I Arrive your site": "Konumunuza ulaştım", + "You are not in near to passenger location": "Yolcu konumuna yakın değilsiniz", + "please go to picker location exactly": "lütfen tam olarak alım noktasına gidin", + "You Can Cancel Trip And get Cost of Trip From": "Yolculuğu İptal Edip Ücretini Şuradan Alabilirsiniz:", + "Are you sure to cancel?": "İptal etmek istediğinize emin misiniz?", + "Insert Emergincy Number": "Acil Durum Numarası Gir", + "Best choice for comfort car and flexible route and stops point": "Konforlu araç ve esnek rota için en iyi seçim", + "Insert": "Ekle", + "This is for scooter or a motorcycle.": "Bu scooter veya motosiklet içindir.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Sabit fiyatlı doğrudan yolculuk. Sürücü planlanan rotayı izlemelidir.", + "You can decline a request without any cost": "Bir isteği ücretsiz reddedebilirsiniz", + "Perfect for adventure seekers who want to experience something new and exciting": "Yeni ve heyecanlı bir şey denemek isteyen maceraperestler için mükemmel", + "My current location is:": "Mevcut konumum:", + "and I have a trip on": "ve şurada bir yolculuğum var:", + "App with Passenger": "Yolcu ile Uygulama", + "You will be pay the cost to driver or we will get it from you on next trip": "Sürücüye ödeme yapacaksınız veya bir sonraki yolculukta sizden alacağız", + "Trip has Steps": "Yolculuğun Adımları Var", + "Distance from Passenger to destination is ": "Yolcudan hedefe mesafe: ", + "price is": "fiyat:", + "This ride type does not allow changes to the destination or additional stops": "Bu yolculuk türü hedef değişikliğine veya ek duraklara izin vermez", + "This price may be changed": "Bu fiyat değişebilir", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "SIM kart yok mu, sorun değil! Uygulamamız üzerinden sürücünüzü doğrudan arayın.", + "This ride type allows changes, but the price may increase": "Bu tür değişikliklere izin verir ancak fiyat artabilir", + "Select one message": "Bir mesaj seç", + "I'm waiting for you": "Sizi bekliyorum", + "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.": "Intaleq aracının 100 km/s hızını aştığını fark ettik. Lütfen yavaşlayın.", + "Warning: Intaleqing detected!": "Uyarı: Hız tespit edildi!", + "Please help! Contact me as soon as possible.": "Lütfen yardım edin! Bana hemen ulaşın.", + "Share Trip Details": "Yolculuk Detaylarını Paylaş", + "Car Plate is ": "Araç Plakası: ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 puan senin için 300 TL eder \\nHadi paranı kazan", + "the 300 points equal 300 L.E": "300 puan 300 TL eder", + "The payment was not approved. Please try again.": "Ödeme onaylanmadı. Lütfen tekrar deneyin.", + "Payment Failed": "Ödeme Başarısız", + "This is a scheduled notification.": "Bu planlanmış bir bildirimdir.", + "An error occurred during the payment process.": "Ödeme işlemi sırasında bir hata oluştu.", + "The payment was approved.": "Ödeme onaylandı.", + "Payment Successful": "Ödeme Başarılı", + "No ride found yet": "Henüz araç bulunamadı", + "Accept Order": "Siparişi Kabul Et", + "Bottom Bar Example": "Alt Çubuk Örneği", + "Driver phone": "Sürücü telefonu", + "Statistics": "İstatistikler", + "Origin": "Başlangıç", + "Destination": "Varış", + "Driver Name": "Sürücü Adı", + "Driver Car Plate": "Sürücü Plakası", + "Available for rides": "Yolculuklar için müsait", + "Scan Id": "Kimlik Tara", + "Camera not initilaized yet": "Kamera henüz başlatılmadı", + "Scan ID MklGoogle": "Kimlik Tara MklGoogle", + "Language": "Dil", + "Jordan": "Ürdün", + "USA": "ABD", + "Egypt": "Mısır", + "Turkey": "Türkiye", + "Saudi Arabia": "Suudi Arabistan", + "Qatar": "Katar", + "Bahrain": "Bahreyn", + "Kuwait": "Kuveyt", + "But you have a negative salary of": "Ancak negatif maaşınız var:", + "Promo Code": "Promosyon Kodu", + "Your trip distance is": "Yolculuk mesafeniz:", + "Enter promo code": "Promosyon kodu gir", + "You have promo!": "Promosyonun var!", + "Cost Duration": "Maliyet Süresi", + "Duration is": "Süre:", + "Leave": "Ayrıl", + "Join": "Katıl", + "Heading your way now. Please be ready.": "Sana doğru geliyorum. Lütfen hazır ol.", + "Approaching your area. Should be there in 3 minutes.": "Bölgene yaklaşıyorum. 3 dakika içinde orada olmalıyım.", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Burada trafik yoğun. Alternatif bir alım noktası önerebilir misin?", + "This ride is already taken by another driver.": "Bu yolculuk başka bir sürücü tarafından alınmış.", + "You Should be select reason.": "Bir sebep seçmelisiniz.", + "Waiting for Driver ...": "Sürücü Bekleniyor...", + "Latest Recent Trip": "En Son Yolculuk", + "from your list": "listenden", + "Do you want to change Work location": "İş konumunu değiştirmek istiyor musunuz?", + "Do you want to change Home location": "Ev konumunu değiştirmek istiyor musunuz?", + "We Are Sorry That we dont have cars in your Location!": "Üzgünüz, konumunuzda aracımız yok!", + "Choose from Map": "Haritadan Seç", + "Pick your ride location on the map - Tap to confirm": "Haritada konumunu seç - Onaylamak için dokun", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq güvenli, güvenilir ve erişilebilir araç çağırma uygulamasıdır.", + "With Intaleq, you can get a ride to your destination in minutes.": "Intaleq ile dakikalar içinde hedefinize araç bulabilirsiniz.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq güvenliğe önem verir, tüm kaptanlarımız dikkatle incelenir.", + "Pick from map": "Haritadan seç", + "No Car in your site. Sorry!": "Konumunuzda araç yok. Üzgünüz!", + "Nearest Car for you about ": "Size en yakın araç yaklaşık: ", + "From :": "Nereden:", + "Get Details of Trip": "Yolculuk Detaylarını Al", + "If you want add stop click here": "Durak eklemek istiyorsanız buraya tıklayın", + "Where you want go ": "Nereye gitmek istiyorsunuz ", + "My Card": "Kartım", + "Start Record": "Kaydı Başlat", + "History of Trip": "Yolculuk Geçmişi", + "Helping Center": "Yardım Merkezi", + "Record saved": "Kayıt kaydedildi", + "Trips recorded": "Kaydedilen Yolculuklar", + "Select Your Country": "Ülkenizi Seçin", + "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.": "En doğru bilgiyi almak için lütfen ülkenizi seçin.", + "Are you sure to delete recorded files": "Kayıtlı dosyaları silmek istediğinize emin misiniz?", + "Select recorded trip": "Kaydedilen yolculuğu seç", + "Card Number": "Kart Numarası", + "Hi, Where to ": "Selam, Nereye ", + "Pick your destination from Map": "Haritadan varış yerini seç", + "Add Stops": "Durak Ekle", + "Get Direction": "Yol Tarifi Al", + "Add Location": "Konum Ekle", + "Switch Rider": "Yolcuyu Değiştir", + "You will arrive to your destination after timer end.": "Süre bittikten sonra hedefe varacaksınız.", + "You can cancel trip": "Yolculuğu iptal edebilirsiniz", + "The driver waitting you in picked location .": "Sürücü sizi seçilen konumda bekliyor.", + "Pay with Your": "Şununla Öde:", + "Pay with Credit Card": "Kredi Kartı ile Öde", + "Show Promos to Charge": "Yükleme için Promosyonları Göster", + "Point": "Puan", + "How many hours would you like to wait?": "Kaç saat beklemek istersiniz?", + "Driver Wallet": "Sürücü Cüzdanı", + "Choose between those Type Cars": "Bu Araç Tipleri Arasından Seçin", + "hour": "saat", + "Select Waiting Hours": "Bekleme Süresini Seç", + "Total Points is": "Toplam Puan:", + "You will receive a code in SMS message": "SMS ile bir kod alacaksınız", + "Done": "Bitti", + "Total Budget from trips is ": "Yolculuklardan Toplam Bütçe: ", + "Total Amount:": "Toplam Tutar:", + "Total Budget from trips by\\nCredit card is ": "Kredi kartı ile yolculuklardan\\nToplam Bütçe: ", + "This amount for all trip I get from Passengers": "Yolculardan aldığım tüm yolculuk tutarı", + "Pay from my budget": "Bütçemden öde", + "This amount for all trip I get from Passengers and Collected For me in": "Bu tutar yolculardan aldığım ve benim için toplanan", + "You can buy points from your budget": "Bütçenizden puan satın alabilirsiniz", + "insert amount": "tutar girin", + "You can buy Points to let you online\\nby this list below": "Çevrimiçi kalmak için Puan satın alabilirsiniz\\naşağıdaki listeden", + "Create Wallet to receive your money": "Paranızı almak için Cüzdan oluşturun", + "Enter your feedback here": "Geri bildiriminizi buraya girin", + "Please enter your feedback.": "Lütfen geri bildiriminizi girin.", + "Feedback": "Geri Bildirim", + "Submit ": "Gönder ", + "Click here to Show it in Map": "Haritada Göstermek için Tıkla", + "Canceled": "İptal Edildi", + "No I want": "Hayır istiyorum", + "Email is": "E-posta:", + "Phone Number is": "Telefon:", + "Date of Birth is": "Doğum Tarihi:", + "Sex is ": "Cinsiyet: ", + "Car Details": "Araç Detayları", + "VIN is": "Şasi No:", + "Color is ": "Renk: ", + "Make is ": "Marka: ", + "Model is": "Model:", + "Year is": "Yıl:", + "Expiration Date ": "Son Kullanma Tarihi: ", + "Edit Your data": "Verilerini Düzenle", + "write vin for your car": "aracın şasi numarasını yaz", + "VIN": "Şasi No", + "Please verify your identity": "Lütfen kimliğinizi doğrulayın", + "write Color for your car": "aracın rengini yaz", + "write Make for your car": "aracın markasını yaz", + "write Model for your car": "aracın modelini yaz", + "write Year for your car": "aracın yılını yaz", + "write Expiration Date for your car": "aracın son kullanma tarihini yaz", + "Tariffs": "Tarifeler", + "Minimum fare": "Minimum ücret", + "Maximum fare": "Maksimum ücret", + "Flag-down fee": "Açılış ücreti", + "Including Tax": "Vergi Dahil", + "BookingFee": "Rezervasyon Ücreti", + "Morning": "Sabah", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30'dan 10:30'a kadar", + "Evening": "Akşam", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00'den 15:00'e kadar", + "Night": "Gece", + "You have in account": "Hesabınızda var", + "Select Country": "Ülke Seç", + "Ride Today : ": "Bugünkü Yolculuk: ", + "from 23:59 till 05:30": "23:59'dan 05:30'a kadar", + "Rate Driver": "Sürücüyü Puanla", + "Total Cost is ": "Toplam Maliyet: ", + "Write note": "Not yaz", + "Time to arrive": "Varış zamanı", + "Ride Summaries": "Yolculuk Özetleri", + "Total Cost": "Toplam Maliyet", + "Average of Hours of": "Şu saatlerin ortalaması:", + " is ON for this month": " bu ay için AÇIK", + "Days": "Günler", + "Total Hours on month": "Aydaki Toplam Saat", + "Counts of Hours on days": "Günlerdeki Saat Sayısı", + "OrderId": "Sipariş No", + "created time": "oluşturulma zamanı", + "Intaleq Over": "Intaleq Bitti", + "I will slow down": "Yavaşlayacağım", + "Map Passenger": "Yolcu Haritası", + "Be Slowly": "Yavaş Ol", + "If you want to make Google Map App run directly when you apply order": "Siparişi uyguladığınızda Google Haritalar'ın direkt açılmasını istiyorsanız", + "You can change the language of the app": "Uygulamanın dilini değiştirebilirsiniz", + "Your Budget less than needed": "Bütçeniz gerekenden az", + "You can change the Country to get all features": "Tüm özellikleri almak için Ülkeyi değiştirebilirsiniz", + "There is no Car or Driver in your area.": "Bölgenizde araç veya sürücü bulunmamaktadır.", + "Change Country": "Ülke Değiştir" + }, + "fr": { + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "Après cette période\\nVous ne pouvez plus annuler !", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "Bonjour ! Je vous invite à essayer Intaleq.", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "Syrie", + "SYP": "SYP", + "Order": "Commande", + "OrderVIP": "Commande VIP", + "Cancel Trip": "Annuler le trajet", + "Passenger Cancel Trip": "Le passager a annulé le trajet", + "VIP Order": "Commande VIP", + "The driver accepted your trip": "Le chauffeur a accepté votre trajet", + "message From passenger": "Message du passager", + "Cancel": "Annuler", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Trajet annulé. Les frais seront crédités sur votre portefeuille.", + "token change": "Changement de jeton", + "Changed my mind": "J'ai changé d'avis", + "Please write the reason...": "Veuillez écrire la raison...", + "Found another transport": "J'ai trouvé un autre transport", + "Driver is taking too long": "Le chauffeur met trop de temps", + "Driver asked me to cancel": "Le chauffeur m'a demandé d'annuler", + "Wrong pickup location": "Mauvais lieu de prise en charge", + "Other": "Autre", + "Don't Cancel": "N'annulez pas", + "No Drivers Found": "Aucun chauffeur trouvé", + "Sorry, there are no cars available of this type right now.": "Désolé, aucune voiture de ce type n'est disponible pour le moment.", + "Refresh Map": "Actualiser la carte", + "face detect": "Détection de visage", + "Face Detection Result": "Résultat de la détection de visage", + "similar": "Similaire", + "not similar": "Non similaire", + "Searching for nearby drivers...": "Recherche de chauffeurs à proximité...", + "Error": "Erreur", + "Failed to search, please try again later": "Échec de la recherche, veuillez réessayer plus tard", + "Connection Error": "Erreur de connexion", + "Please check your internet connection": "Veuillez vérifier votre connexion Internet", + "Sorry 😔": "Désolé 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "Le chauffeur a annulé le trajet pour une raison d'urgence.\\nVoulez-vous chercher un autre chauffeur immédiatement ?", + "Search for another driver": "Chercher un autre chauffeur", + "We apologize 😔": "Nous nous excusons 😔", + "No drivers found at the moment.\\nPlease try again later.": "Aucun chauffeur trouvé pour le moment.\\nVeuillez réessayer plus tard.", + "Hi ,I will go now": "Bonjour, je pars maintenant", + "Passenger come to you": "Le passager vient vers vous", + "Call Income": "Appel entrant", + "Call Income from Passenger": "Appel entrant du passager", + "Criminal Document Required": "Extrait de casier judiciaire requis", + "You should have upload it .": "Vous devez le télécharger.", + "Call End": "Fin de l'appel", + "The order has been accepted by another driver.": "La commande a été acceptée par un autre chauffeur.", + "The order Accepted by another Driver": "Commande acceptée par un autre chauffeur", + "We regret to inform you that another driver has accepted this order.": "Nous regrettons de vous informer qu'un autre chauffeur a accepté cette commande.", + "Driver Applied the Ride for You": "Le chauffeur a demandé le trajet pour vous", + "Applied": "Demandé", + "Please go to Car Driver": "Veuillez rejoindre le chauffeur", + "Ok I will go now.": "D'accord, j'y vais maintenant.", + "Accepted Ride": "Trajet accepté", + "Driver Accepted the Ride for You": "Le chauffeur a accepté le trajet pour vous", + "Promo": "Promo", + "Show latest promo": "Voir les dernières promos", + "Trip Monitoring": "Suivi du trajet", + "Driver Is Going To Passenger": "Le chauffeur se rend vers le passager", + "Please stay on the picked point.": "Veuillez rester au point de prise en charge.", + "message From Driver": "Message du chauffeur", + "Trip is Begin": "Le trajet commence", + "Cancel Trip from driver": "Annuler le trajet (Chauffeur)", + "We will look for a new driver.\\nPlease wait.": "Nous cherchons un nouveau chauffeur.\\nVeuillez patienter.", + "The driver canceled your ride.": "Le chauffeur a annulé votre course.", + "Driver Finish Trip": "Le chauffeur a terminé la course", + "you will pay to Driver": "Vous paierez au chauffeur", + "Don’t forget your personal belongings.": "N'oubliez pas vos effets personnels.", + "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": "Veuillez vérifier que vous avez tous vos effets personnels et que tout solde restant a été ajouté à votre portefeuille. Merci d'avoir choisi Intaleq.", + "Finish Monitor": "Terminer la surveillance", + "Trip finished": "Trajet terminé", + "Call Income from Driver": "Appel entrant du chauffeur", + "Driver Cancelled Your Trip": "Le chauffeur a annulé votre trajet", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "Vous paierez le temps du chauffeur, consultez votre portefeuille Intaleq", + "Order Applied": "Commande passée", + "welcome to intaleq": "Bienvenue chez Intaleq", + "login or register subtitle": "Entrez votre numéro de mobile pour vous connecter ou vous inscrire", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Impossible de déposer une plainte pour ce trajet. Il n'a peut-être pas été terminé ou commencé.", + "phone number label": "Numéro de téléphone", + "phone number required": "Numéro de téléphone requis", + "send otp button": "Envoyer le code OTP", + "verify your number title": "Vérifiez votre numéro", + "otp sent subtitle": "Un code à 5 chiffres a été envoyé au\\n@phoneNumber", + "verify and continue button": "Vérifier et continuer", + "enter otp validation": "Veuillez entrer le code OTP à 5 chiffres", + "one last step title": "Une dernière étape", + "complete profile subtitle": "Complétez votre profil pour commencer", + "first name label": "Prénom", + "first name required": "Prénom requis", + "last name label": "Nom", + "Verify OTP": "Vérifier l'OTP", + "Verification Code": "Code de vérification", + "We have sent a verification code to your mobile number:": "Nous avons envoyé un code de vérification à votre numéro de mobile :", + "Verify": "Vérifier", + "Resend Code": "Renvoyer le code", + "You can resend in": "Vous pouvez renvoyer dans", + "seconds": "secondes", + "Please enter the complete 6-digit code.": "Veuillez entrer le code complet à 6 chiffres.", + "last name required": "Nom requis", + "email optional label": "Email (Optionnel)", + "complete registration button": "Terminer l'inscription", + "User with this phone number or email already exists.": "Un utilisateur avec ce numéro ou cet email existe déjà.", + "otp sent success": "Code OTP envoyé avec succès.", + "failed to send otp": "Échec de l'envoi du code OTP.", + "server error try again": "Erreur serveur, veuillez réessayer.", + "an error occurred": "Une erreur s'est produite : @error", + "otp verification failed": "Échec de la vérification OTP.", + "registration failed": "Échec de l'inscription.", + "welcome user": "Bienvenue, @firstName !", + "Don't forget your personal belongings.": "N'oubliez pas vos effets personnels.", + "Share App": "Partager l'application", + "Wallet": "Portefeuille", + "Balance": "Solde", + "Profile": "Profil", + "Contact Support": "Contacter le support", + "Session expired. Please log in again.": "Session expirée. Veuillez vous reconnecter.", + "Security Warning": "⚠️ Avertissement de sécurité", + "Potential security risks detected. The application may not function correctly.": "Risques de sécurité potentiels détectés. L'application peut ne pas fonctionner correctement.", + "please order now": "Commandez maintenant", + "Where to": "Où allez-vous ?", + "Where are you going?": "Où allez-vous ?", + "Quick Actions": "Actions rapides", + "My Balance": "Mon solde", + "Order History": "Historique des commandes", + "Contact Us": "Nous contacter", + "Driver": "Chauffeur", + "Complaint": "Réclamation", + "Promos": "Promos", + "Recent Places": "Lieux récents", + "From": "De", + "WhatsApp Location Extractor": "Extracteur de localisation WhatsApp", + "Location Link": "Lien de localisation", + "Paste location link here": "Collez le lien de localisation ici", + "Go to this location": "Aller à cet endroit", + "Paste WhatsApp location link": "Coller le lien de localisation WhatsApp", + "Select Order Type": "Sélectionner le type de commande", + "Choose who this order is for": "Pour qui est cette commande ?", + "I want to order for myself": "Je commande pour moi-même", + "I want to order for someone else": "Je commande pour quelqu'un d'autre", + "Order for someone else": "Commander pour autrui", + "Order for myself": "Commander pour moi", + "Are you want to go this site": "Voulez-vous aller à cet endroit ?", + "No": "Non", + "Intaleq Wallet": "Portefeuille Intaleq", + "Have a promo code?": "Avez-vous un code promo ?", + "Your Wallet balance is ": "Le solde de votre portefeuille est ", + "Cash": "Espèces", + "Pay directly to the captain": "Payer directement au chauffeur", + "Top up Wallet to continue": "Rechargez votre portefeuille pour continuer", + "Or pay with Cash instead": "Ou payez en espèces", + "Confirm & Find a Ride": "Confirmer et trouver un trajet", + "Balance:": "Solde :", + "Alerts": "Alertes", + "Welcome Back!": "Bon retour !", + "Current Balance": "Solde actuel", + "Set Wallet Phone Number": "Définir le numéro du portefeuille", + "Link a phone number for transfers": "Lier un numéro pour les transferts", + "Payment History": "Historique des paiements", + "View your past transactions": "Voir vos transactions passées", + "Top up Wallet": "Recharger le portefeuille", + "Add funds using our secure methods": "Ajouter des fonds via nos méthodes sécurisées", + "Increase Fare": "Augmenter le tarif", + "No drivers accepted your request yet": "Aucun chauffeur n'a encore accepté votre demande", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Augmenter le tarif pourrait attirer plus de chauffeurs. Voulez-vous augmenter le prix ?", + "Please make sure not to leave any personal belongings in the car.": "Veuillez vous assurer de ne rien laisser dans la voiture.", + "Cancel Ride": "Annuler la course", + "Route Not Found": "Itinéraire introuvable", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "Impossible de trouver un itinéraire valide vers cette destination. Veuillez sélectionner un autre point.", + "You can call or record audio during this trip.": "Vous pouvez appeler ou enregistrer l'audio pendant ce trajet.", + "Warning: Speeding detected!": "Attention : Excès de vitesse détecté !", + "Comfort": "Confort", + "Intaleq Balance": "Solde Intaleq", + "Electric": "Électrique", + "Lady": "Dame", + "Van": "Van", + "Rayeh Gai": "Aller-Retour", + "Join Intaleq as a driver using my referral code!": "Rejoignez Intaleq comme chauffeur avec mon code de parrainage !", + "Use code:": "Utilisez le code :", + "Download the Intaleq Driver app now and earn rewards!": "Téléchargez l'appli Chauffeur Intaleq et gagnez des récompenses !", + "Get a discount on your first Intaleq ride!": "Obtenez une réduction sur votre premier trajet Intaleq !", + "Use my referral code:": "Utilisez mon code de parrainage :", + "Download the Intaleq app now and enjoy your ride!": "Téléchargez Intaleq maintenant et profitez du trajet !", + "Contacts Loaded": "Contacts chargés", + "Showing": "Affichage de", + "of": "sur", + "Customer not found": "Client introuvable", + "Wallet is blocked": "Portefeuille bloqué", + "Customer phone is not active": "Le téléphone du client n'est pas actif", + "Balance not enough": "Solde insuffisant", + "Balance limit exceeded": "Limite de solde dépassée", + "Incorrect sms code": "⚠️ Code SMS incorrect. Veuillez réessayer.", + "contacts. Others were hidden because they don't have a phone number.": "contacts. Les autres sont masqués car ils n'ont pas de numéro.", + "No contacts found": "Aucun contact trouvé", + "No contacts with phone numbers were found on your device.": "Aucun contact avec numéro de téléphone trouvé sur votre appareil.", + "Permission denied": "Permission refusée", + "Contact permission is required to pick contacts": "La permission d'accès aux contacts est requise.", + "An error occurred while picking contacts:": "Une erreur est survenue lors de la sélection des contacts :", + "Please enter a correct phone": "Veuillez entrer un numéro valide", + "Success": "Succès", + "Invite sent successfully": "Invitation envoyée avec succès", + "Use my invitation code to get a special gift on your first ride!": "Utilisez mon code pour un cadeau spécial lors de votre premier trajet !", + "Your personal invitation code is:": "Votre code d'invitation personnel est :", + "Be sure to use it quickly! This code expires at": "Utilisez-le vite ! Ce code expire le", + "Download the app now:": "Téléchargez l'application :", + "See you on the road!": "À bientôt sur la route !", + "This phone number has already been invited.": "Ce numéro a déjà été invité.", + "An unexpected error occurred. Please try again.": "Une erreur inattendue s'est produite. Réessayez.", + "You deserve the gift": "Vous méritez le cadeau", + "Claim your 20 LE gift for inviting": "Réclamez votre cadeau de 20 € pour l'invitation", + "You have got a gift for invitation": "Vous avez reçu un cadeau pour l'invitation", + "You have earned 20": "Vous avez gagné 20", + "LE": "€", + "Vibration feedback for all buttons": "Vibration pour tous les boutons", + "Share with friends and earn rewards": "Partagez avec des amis et gagnez des récompenses", + "Gift Already Claimed": "Cadeau déjà réclamé", + "You have already received your gift for inviting": "Vous avez déjà reçu votre cadeau pour cette invitation", + "Keep it up!": "Continuez comme ça !", + "has completed": "a terminé", + "trips": "trajets", + "Personal Information": "Informations personnelles", + "Name": "Nom", + "Not set": "Non défini", + "Gender": "Sexe", + "Education": "Éducation", + "Work & Contact": "Travail et Contact", + "Employment Type": "Type d'emploi", + "Marital Status": "État civil", + "SOS Phone": "Téléphone SOS", + "Sign Out": "Se déconnecter", + "Delete My Account": "Supprimer mon compte", + "Update Gender": "Mettre à jour le sexe", + "Update": "Mettre à jour", + "Update Education": "Mettre à jour l'éducation", + "Are you sure? This action cannot be undone.": "Êtes-vous sûr ? Cette action est irréversible.", + "Confirm your Email": "Confirmez votre email", + "Type your Email": "Tapez votre email", + "Delete Permanently": "Supprimer définitivement", + "Male": "Homme", + "Female": "Femme", + "High School Diploma": "Baccalauréat", + "Associate Degree": "BTS / DUT", + "Bachelor's Degree": "Licence", + "Master's Degree": "Master", + "Doctoral Degree": "Doctorat", + "Select your preferred language for the app interface.": "Sélectionnez votre langue préférée pour l'interface.", + "Language Options": "Options de langue", + "You can claim your gift once they complete 2 trips.": "Vous pourrez réclamer votre cadeau après qu'ils aient terminé 2 trajets.", + "Closest & Cheapest": "Le plus proche et le moins cher", + "Comfort choice": "Choix confort", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Voyagez dans une voiture électrique moderne et silencieuse. Un choix premium et écologique.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Service de van spacieux idéal pour les familles et groupes. Confortable, sûr et économique.", + "Quiet & Eco-Friendly": "Calme et Écologique", + "Lady Captain for girls": "Chauffeur femme pour dames", + "Van for familly": "Van pour la famille", + "Are you sure to delete this location?": "Voulez-vous vraiment supprimer ce lieu ?", + "Submit a Complaint": "Déposer une réclamation", + "Submit Complaint": "Envoyer la réclamation", + "No trip history found": "Aucun historique de trajet", + "Your past trips will appear here.": "Vos trajets passés apparaîtront ici.", + "1. Describe Your Issue": "1. Décrivez votre problème", + "Enter your complaint here...": "Entrez votre réclamation ici...", + "2. Attach Recorded Audio": "2. Joindre l'audio enregistré", + "No audio files found.": "Aucun fichier audio trouvé.", + "Confirm Attachment": "Confirmer la pièce jointe", + "Attach this audio file?": "Joindre ce fichier audio ?", + "Uploaded": "Téléchargé", + "3. Review Details & Response": "3. Revoir les détails et la réponse", + "Date": "Date", + "Today's Promos": "Promos du jour", + "No promos available right now.": "Aucune promo disponible pour le moment.", + "Check back later for new offers!": "Revenez plus tard pour de nouvelles offres !", + "Valid Until:": "Valable jusqu'au :", + "CODE": "CODE", + "I Agree": "J'accepte", + "Continue": "Continuer", + "Enable Location": "Activer la localisation", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Pour vous offrir la meilleure expérience, nous devons savoir où vous êtes. Votre position est utilisée pour trouver des chauffeurs à proximité.", + "Allow Location Access": "Autoriser l'accès à la localisation", + "Welcome to Intaleq!": "Bienvenue sur Intaleq !", + "Before we start, please review our terms.": "Avant de commencer, veuillez consulter nos conditions.", + "Your journey starts here": "Votre voyage commence ici", + "Cancel Search": "Annuler la recherche", + "Set pickup location": "Définir le lieu de prise en charge", + "Move the map to adjust the pin": "Déplacez la carte pour ajuster l'épingle", + "Searching for the nearest captain...": "Recherche du chauffeur le plus proche...", + "No one accepted? Try increasing the fare.": "Personne n'a accepté ? Essayez d'augmenter le tarif.", + "Increase Your Trip Fee (Optional)": "Augmentez le prix de votre trajet (Optionnel)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Nous n'avons pas encore trouvé de chauffeurs. Pensez à augmenter votre tarif pour rendre votre offre plus attractive.", + "No, thanks": "Non, merci", + "Increase Fee": "Augmenter le tarif", + "Copy": "Copier", + "Promo Copied!": "Promo copiée !", + "Code": "Code", + "Send Intaleq app to him": "Lui envoyer l'appli Intaleq", + "No passenger found for the given phone number": "Aucun passager trouvé pour ce numéro", + "No user found for the given phone number": "Aucun utilisateur trouvé pour ce numéro", + "This price is": "Ce prix est", + "Work": "Travail", + "Add Home": "Ajouter Maison", + "Notifications": "Notifications", + "💳 Pay with Credit Card": "💳 Payer par carte de crédit", + "⚠️ You need to choose an amount!": "⚠️ Vous devez choisir un montant !", + "💰 Pay with Wallet": "💰 Payer avec le portefeuille", + "You must restart the app to change the language.": "Vous devez redémarrer l'application pour changer la langue.", + "joined": "a rejoint", + "Driver joined the channel": "Le chauffeur a rejoint le canal", + "Driver left the channel": "Le chauffeur a quitté le canal", + "Call Page": "Page d'appel", + "Call Left": "Appels restants", + " Next as Cash !": " Suivant en espèces !", + "To use Wallet charge it": "Pour utiliser le portefeuille, rechargez-le", + "We are searching for the nearest driver to you": "Nous cherchons le chauffeur le plus proche", + "Best choice for cities": "Meilleur choix pour la ville", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai : Service aller-retour pratique pour voyager entre les villes.", + "This trip is for women only": "Ce trajet est réservé aux femmes", + "Total budgets on month": "Budgets totaux du mois", + "You have call from driver": "Vous avez un appel du chauffeur", + "Intaleq": "Intaleq", + "passenger agreement": "accord passager", + "To become a passenger, you must review and agree to the ": "Pour devenir passager, vous devez accepter les ", + "agreement subtitle": "Pour continuer, vous devez accepter les conditions d'utilisation et la politique de confidentialité.", + "terms of use": "conditions d'utilisation", + " and acknowledge our Privacy Policy.": " et reconnaître notre Politique de Confidentialité.", + "and acknowledge our": "et reconnaître notre", + "privacy policy": "politique de confidentialité.", + "i agree": "j'accepte", + "Driver already has 2 trips within the specified period.": "Le chauffeur a déjà 2 trajets dans la période spécifiée.", + "The invitation was sent successfully": "L'invitation a été envoyée avec succès", + "You should select your country": "Vous devez sélectionner votre pays", + "Scooter": "Scooter", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Un trajet avec réservation préalable, vous permettant de choisir les meilleurs chauffeurs et voitures.", + "Mishwar Vip": "Trajet VIP", + "The driver waiting you in picked location .": "Le chauffeur vous attend au lieu de prise en charge.", + "About Us": "À propos de nous", + "You can change the vibration feedback for all buttons": "Vous pouvez changer le retour de vibration pour tous les boutons", + "Most Secure Methods": "Méthodes les plus sécurisées", + "In-App VOIP Calls": "Appels VOIP intégrés", + "Recorded Trips for Safety": "Trajets enregistrés pour la sécurité", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nNous privilégions aussi l'accessibilité, offrant des prix compétitifs.", + "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 est une application de covoiturage conçue pour votre sécurité et votre budget. Nous vous connectons avec des chauffeurs fiables dans votre région.", + "Sign In by Apple": "Connexion via Apple", + "Sign In by Google": "Connexion via Google", + "How do I request a ride?": "Comment demander un trajet ?", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Instructions étape par étape pour demander un trajet.", + "What types of vehicles are available?": "Quels types de véhicules sont disponibles ?", + "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 offre diverses options de véhicules incluant éco, confort et luxe.", + "How can I pay for my ride?": "Comment payer mon trajet ?", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offre plusieurs méthodes de paiement. Choisissez entre espèces ou carte lors de la confirmation.", + "Can I cancel my ride?": "Puis-je annuler mon trajet ?", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Oui, vous pouvez annuler votre trajet sous certaines conditions (par exemple, avant l'attribution d'un chauffeur). Consultez la politique d'annulation d'Intaleq pour plus de détails.", + "Driver Registration & Requirements": "Inscription Chauffeur & Requis", + "How can I register as a driver?": "Comment s'inscrire comme chauffeur ?", + "What are the requirements to become a driver?": "Quelles sont les conditions pour devenir chauffeur ?", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visitez notre site web ou contactez le support pour plus d'infos.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq fournit une fonction de chat pour communiquer avec votre chauffeur ou passager.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq priorise votre sécurité avec la vérification des chauffeurs et le suivi des trajets.", + "Frequently Questions": "Questions Fréquentes", + "User does not exist.": "L'utilisateur n'existe pas.", + "We need your phone number to contact you and to help you.": "Nous avons besoin de votre numéro pour vous contacter et vous aider.", + "You will recieve code in sms message": "Vous recevrez un code par SMS", + "Please enter": "Veuillez entrer", + "We need your phone number to contact you and to help you receive orders.": "Nous avons besoin de votre numéro pour vous aider à recevoir des commandes.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Le nom sur le casier judiciaire ne correspond pas à celui du permis. Veuillez vérifier.", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Le numéro national sur votre permis ne correspond pas à votre pièce d'identité.", + "Capture an Image of Your Criminal Record": "Prendre une photo de votre casier judiciaire", + "IssueDate": "Date d'émission", + "Capture an Image of Your car license front": "Photo recto de la carte grise", + "Capture an Image of Your ID Document front": "Photo recto de la pièce d'identité", + "NationalID": "Numéro National / CNI", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Partagez Intaleq avec vos amis et gagnez des récompenses.", + "FullName": "Nom complet", + "No invitation found yet!": "Aucune invitation trouvée !", + "InspectionResult": "Résultat de l'inspection", + "Criminal Record": "Casier judiciaire", + "The email or phone number is already registered.": "L'email ou le numéro de téléphone est déjà enregistré.", + "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.": "Pour devenir chauffeur sur Intaleq, téléchargez votre permis, pièce d'identité et carte grise. Notre IA vérifiera leur authenticité en quelques minutes. La soumission de faux documents entraînera une résiliation immédiate.", + "Documents check": "Vérification des documents", + "Driver's License": "Permis de conduire", + "for your first registration!": "pour votre première inscription !", + "Get it Now!": "Obtenez-le maintenant !", + "before": "avant", + "Code not approved": "Code non approuvé", + "3000 LE": "30 €", + "Do you have an invitation code from another driver?": "Avez-vous un code d'invitation d'un autre chauffeur ?", + "Paste the code here": "Collez le code ici", + "No, I don't have a code": "Non, je n'ai pas de code", + "Audio uploaded successfully.": "Audio téléchargé avec succès.", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Parfait pour les passagers cherchant des voitures récentes avec liberté d'itinéraire", + "Share this code with your friends and earn rewards when they use it!": "Partagez ce code et gagnez des récompenses !", + "Enter phone": "Entrer téléphone", + "complete, you can claim your gift": "terminé, vous pouvez réclamer votre cadeau", + "When": "Quand", + "Enter driver's phone": "Entrer tél. du chauffeur", + "Send Invite": "Envoyer l'invitation", + "Show Invitations": "Afficher les invitations", + "License Type": "Type de permis", + "National Number": "Numéro National", + "Name (Arabic)": "Nom (Arabe)", + "Name (English)": "Nom (Français/Anglais)", + "Address": "Adresse", + "Issue Date": "Date de délivrance", + "Expiry Date": "Date d'expiration", + "License Categories": "Catégories de permis", + "driver_license": "permis_de_conduire", + "Capture an Image of Your Driver License": "Prendre une photo de votre permis", + "ID Documents Back": "Verso de la pièce d'identité", + "National ID": "CNI / Numéro National", + "Occupation": "Profession", + "Religion": "Religion", + "Full Name (Marital)": "Nom complet", + "Expiration Date": "Date d'expiration", + "Capture an Image of Your ID Document Back": "Photo verso de la pièce d'identité", + "ID Documents Front": "Recto de la pièce d'identité", + "First Name": "Prénom", + "CardID": "Numéro de Carte", + "Vehicle Details Front": "Détails du véhicule (Avant)", + "Plate Number": "Numéro d'immatriculation", + "Owner Name": "Nom du propriétaire", + "Vehicle Details Back": "Détails du véhicule (Arrière)", + "Make": "Marque", + "Model": "Modèle", + "Year": "Année", + "Chassis": "Châssis", + "Color": "Couleur", + "Displacement": "Cylindrée", + "Fuel": "Carburant", + "Tax Expiry Date": "Date d'expiration de la taxe", + "Inspection Date": "Date d'inspection", + "Capture an Image of Your car license back": "Photo verso de la carte grise", + "Capture an Image of Your Driver's License": "Photo de votre permis de conduire", + "Sign in with Google for easier email and name entry": "Connectez-vous avec Google pour faciliter la saisie", + "You will choose allow all the time to be ready receive orders": "Choisissez 'Toujours autoriser' pour recevoir des commandes", + "Get to your destination quickly and easily.": "Arrivez à destination rapidement et facilement.", + "Enjoy a safe and comfortable ride.": "Profitez d'un trajet sûr et confortable.", + "Choose Language": "Choisir la langue", + "Pay with Wallet": "Payer avec le portefeuille", + "Invalid MPIN": "MPIN invalide", + "Invalid OTP": "OTP invalide", + "Enter your email address": "Entrez votre adresse email", + "Please enter Your Email.": "Veuillez entrer votre email.", + "Enter your phone number": "Entrez votre numéro de téléphone", + "Please enter your phone number.": "Veuillez entrer votre numéro de téléphone.", + "Please enter Your Password.": "Veuillez entrer votre mot de passe.", + "if you dont have account": "si vous n'avez pas de compte", + "Register": "S'inscrire", + "Accept Ride's Terms & Review Privacy Notice": "Accepter les conditions et la confidentialité", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "En sélectionnant 'J'accepte', je reconnais avoir lu et accepté les conditions d'utilisation et la politique de confidentialité. J'ai au moins 18 ans.", + "First name": "Prénom", + "Enter your first name": "Entrez votre prénom", + "Please enter your first name.": "Veuillez entrer votre prénom.", + "Last name": "Nom", + "Enter your last name": "Entrez votre nom", + "Please enter your last name.": "Veuillez entrer votre nom.", + "City": "Ville", + "Please enter your City.": "Veuillez entrer votre ville.", + "Verify Email": "Vérifier l'email", + "We sent 5 digit to your Email provided": "Nous avons envoyé 5 chiffres à votre email", + "5 digit": "5 chiffres", + "Send Verification Code": "Envoyer le code de vérification", + "Your Ride Duration is ": "La durée de votre trajet est ", + "You will be thier in": "Vous y serez dans", + "You trip distance is": "La distance de votre trajet est", + "Fee is": "Les frais sont", + "From : ": "De : ", + "To : ": "À : ", + "Add Promo": "Ajouter Promo", + "Confirm Selection": "Confirmer la sélection", + "distance is": "la distance est", + "Privacy Policy": "Politique de confidentialité", + "Intaleq LLC": "Intaleq LLC", + "Syria'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.": "Service de covoiturage pionnier en France. Nous priorisons la proximité avec vous.", + "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 est la première appli de covoiturage en France, conçue pour vous connecter aux chauffeurs les plus proches.", + "Why Choose Intaleq?": "Pourquoi choisir Intaleq ?", + "Closest to You": "Le plus proche de vous", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Nous vous connectons aux chauffeurs les plus proches pour des trajets plus rapides.", + "Uncompromising Security": "Sécurité sans compromis", + "Lady Captains Available": "Chauffeurs femmes disponibles", + "Recorded Trips (Voice & AI Analysis)": "Trajets enregistrés (Analyse vocale & IA)", + "Fastest Complaint Response": "Réponse rapide aux plaintes", + "Our dedicated customer service team ensures swift resolution of any issues.": "Notre service client assure une résolution rapide des problèmes.", + "Affordable for Everyone": "Abordable pour tous", + "Frequently Asked Questions": "Questions Fréquemment Posées", + "Getting Started": "Commencer", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Ouvrez simplement l'appli Intaleq, entrez votre destination et appuyez sur \"Commander\".", + "Vehicle Options": "Options de véhicule", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offre diverses options incluant Éco, Confort et Luxe pour s'adapter à vos besoins.", + "Payments": "Paiements", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Vous pouvez payer en espèces ou par carte. Sélectionnez votre méthode préférée avant de confirmer.", + "Ride Management": "Gestion des trajets", + "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "Oui, vous pouvez annuler, mais des frais peuvent s'appliquer.", + "For Drivers": "Pour les chauffeurs", + "Driver Registration": "Inscription Chauffeur", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Pour s'inscrire comme chauffeur, visitez notre site ou contactez le support.", + "Visit Website/Contact Support": "Visiter le site / Contacter le support", + "Close": "Fermer", + "We are searching for the nearest driver": "Nous cherchons le chauffeur le plus proche", + "Communication": "Communication", + "How do I communicate with the other party (passenger/driver)?": "Comment communiquer avec l'autre partie ?", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Vous pouvez communiquer via le chat intégré une fois le trajet confirmé.", + "Safety & Security": "Sûreté et Sécurité", + "What safety measures does Intaleq offer?": "Quelles mesures de sécurité offre Intaleq ?", + "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 offre la vérification des chauffeurs, le suivi des trajets et les contacts d'urgence.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Profitez de prix compétitifs sur tous les trajets.", + "Variety of Trip Choices": "Variété de choix de trajets", + "Choose the trip option that perfectly suits your needs and preferences.": "Choisissez l'option de trajet qui vous convient parfaitement.", + "Your Choice, Our Priority": "Votre Choix, Notre Priorité", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Parce que nous sommes proches, vous avez la flexibilité de choisir le meilleur trajet.", + "duration is": "la durée est", + "Setting": "Paramètre", + "Find answers to common questions": "Trouver des réponses aux questions courantes", + "I don't need a ride anymore": "Je n'ai plus besoin de trajet", + "I was just trying the application": "J'essayais juste l'application", + "No driver accepted my request": "Aucun chauffeur n'a accepté ma demande", + "I added the wrong pick-up/drop-off location": "J'ai mis le mauvais lieu de prise en charge/dépose", + "I don't have a reason": "Je n'ai pas de raison", + "Can we know why you want to cancel Ride ?": "Pouvons-nous savoir pourquoi vous voulez annuler ?", + "Add Payment Method": "Ajouter une méthode de paiement", + "Ride Wallet": "Portefeuille Trajet", + "Payment Method": "Méthode de paiement", + "Type here Place": "Tapez le lieu ici", + "Are You sure to ride to": "Êtes-vous sûr d'aller à", + "Confirm": "Confirmer", + "You are Delete": "Vous supprimez", + "Deleted": "Supprimé", + "You Dont Have Any places yet !": "Vous n'avez pas encore de lieux !", + "From : Current Location": "De : Position actuelle", + "My Cared": "Mes Cartes", + "Add Card": "Ajouter une carte", + "Add Credit Card": "Ajouter une carte de crédit", + "Please enter the cardholder name": "Veuillez entrer le nom du titulaire", + "Please enter the expiry date": "Veuillez entrer la date d'expiration", + "Please enter the CVV code": "Veuillez entrer le code CVV", + "Go To Favorite Places": "Aller aux lieux favoris", + "Go to this Target": "Aller à cette destination", + "My Profile": "Mon Profil", + "Are you want to go to this site": "Voulez-vous aller à ce site", + "MyLocation": "MaPosition", + "my location": "ma position", + "Target": "Destination", + "You Should choose rate figure": "Vous devez choisir une note", + "Login Captin": "Connexion Chauffeur", + "Register Captin": "Inscription Chauffeur", + "Send Verfication Code": "Envoyer le code de vérification", + "KM": "KM", + "End Ride": "Fin du trajet", + "Minute": "Minute", + "Go to passenger Location now": "Allez à la position du passager maintenant", + "Duration of the Ride is ": "La durée du trajet est ", + "Distance of the Ride is ": "La distance du trajet est ", + "Name of the Passenger is ": "Le nom du passager est ", + "Hello this is Captain": "Bonjour c'est le Chauffeur", + "Start the Ride": "Démarrer la course", + "Please Wait If passenger want To Cancel!": "Veuillez patienter si le passager veut annuler !", + "Total Duration:": "Durée totale :", + "Active Duration:": "Durée active :", + "Waiting for Captin ...": "En attente du chauffeur...", + "Age is ": "L'âge est ", + "Rating is ": "La note est ", + " to arrive you.": " pour arriver à vous.", + "Tariff": "Tarif", + "Settings": "Paramètres", + "Feed Back": "Avis", + "Please enter a valid 16-digit card number": "Veuillez entrer un numéro de carte valide à 16 chiffres", + "Add Phone": "Ajouter téléphone", + "Please enter a phone number": "Veuillez entrer un numéro de téléphone", + "You dont Add Emergency Phone Yet!": "Vous n'avez pas encore ajouté de téléphone d'urgence !", + "You will arrive to your destination after ": "Vous arriverez à destination après ", + "You can cancel Ride now": "Vous pouvez annuler le trajet maintenant", + "You Can cancel Ride After Captain did not come in the time": "Vous pouvez annuler si le chauffeur ne vient pas à temps", + "If you in Car Now. Press Start The Ride": "Si vous êtes en voiture, appuyez sur Démarrer", + "You Dont Have Any amount in": "Vous n'avez aucun montant dans", + "Wallet!": "Portefeuille !", + "You Have": "Vous avez", + "Save Credit Card": "Enregistrer la carte", + "Show Promos": "Voir les Promos", + "10 and get 4% discount": "10 et obtenez 4% de réduction", + "20 and get 6% discount": "20 et obtenez 6% de réduction", + "40 and get 8% discount": "40 et obtenez 8% de réduction", + "100 and get 11% discount": "100 et obtenez 11% de réduction", + "Pay with Your PayPal": "Payer avec PayPal", + "You will choose one of above !": "Vous devez choisir l'un des choix ci-dessus !", + "Edit Profile": "Modifier le profil", + "Copy this Promo to use it in your Ride!": "Copiez cette promo pour l'utiliser !", + "To change some Settings": "Pour changer certains paramètres", + "Order Request Page": "Page de demande de commande", + "Rouats of Trip": "Itinéraires du trajet", + "Passenger Name is ": "Le nom du passager est ", + "Total From Passenger is ": "Total du passager est ", + "Duration To Passenger is ": "Durée vers le passager est ", + "Distance To Passenger is ": "Distance vers le passager est ", + "Total For You is ": "Total pour vous est ", + "Distance is ": "Distance est ", + " KM": " KM", + "Duration of Trip is ": "Durée du trajet est ", + " Minutes": " Minutes", + "Apply Order": "Accepter la commande", + "Refuse Order": "Refuser la commande", + "Rate Captain": "Noter le chauffeur", + "Enter your Note": "Entrez votre note", + "Type something...": "Tapez quelque chose...", + "Submit rating": "Envoyer la note", + "Rate Passenger": "Noter le passager", + "Ride Summary": "Résumé du trajet", + "welcome_message": "Bienvenue sur Intaleq !", + "app_description": "Intaleq est une appli de covoiturage fiable et sûre.", + "get_to_destination": "Arrivez à destination rapidement.", + "get_a_ride": "Avec Intaleq, obtenez un trajet en quelques minutes.", + "safe_and_comfortable": "Profitez d'un trajet sûr et confortable.", + "committed_to_safety": "Intaleq s'engage pour la sécurité.", + "your ride is Accepted": "votre trajet est Accepté", + "Driver is waiting at pickup.": "Le chauffeur attend au point de rendez-vous.", + "Driver is on the way": "Le chauffeur est en route", + "Contact Options": "Options de contact", + "Send a custom message": "Envoyer un message personnalisé", + "Type your message": "Tapez votre message", + "I will go now": "J'y vais maintenant", + "You Have Tips": "Vous avez des pourboires", + " tips\\nTotal is": " pourboires\\nLe total est", + "Your fee is ": "Vos frais sont ", + "Do you want to pay Tips for this Driver": "Voulez-vous donner un pourboire ?", + "Tip is ": "Le pourboire est ", + "Are you want to wait drivers to accept your order": "Voulez-vous attendre que les chauffeurs acceptent ?", + "This price is fixed even if the route changes for the driver.": "Ce prix est fixe même si l'itinéraire change.", + "The price may increase if the route changes.": "Le prix peut augmenter si l'itinéraire change.", + "The captain is responsible for the route.": "Le chauffeur est responsable de l'itinéraire.", + "We are search for nearst driver": "Nous cherchons le chauffeur le plus proche", + "Your order is being prepared": "Votre commande est en préparation", + "The drivers are reviewing your request": "Les chauffeurs examinent votre demande", + "Your order sent to drivers": "Votre commande a été envoyée aux chauffeurs", + "You can call or record audio of this trip": "Vous pouvez appeler ou enregistrer l'audio", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Le trajet a commencé ! N'hésitez pas à contacter les urgences ou partager votre trajet.", + "Camera Access Denied.": "Accès caméra refusé.", + "Open Settings": "Ouvrir les paramètres", + "GPS Required Allow !.": "GPS requis, autorisez-le !", + "Your Account is Deleted": "Votre compte est supprimé", + "Are you sure to delete your account?": "Êtes-vous sûr de supprimer votre compte ?", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Vos données seront effacées après 2 semaines\\nVous ne pourrez plus utiliser l'appli après 1 mois ", + "Enter Your First Name": "Entrez votre prénom", + "Are you Sure to LogOut?": "Êtes-vous sûr de vous déconnecter ?", + "Email Wrong": "Email incorrect", + "Email you inserted is Wrong.": "L'email inséré est incorrect.", + "You have finished all times ": "Vous avez épuisé toutes les tentatives ", + "if you want help you can email us here": "si vous voulez de l'aide, écrivez-nous ici", + "Thanks": "Merci", + "Email Us": "Envoyez-nous un email", + "I cant register in your app in face detection ": "Je ne peux pas m'inscrire à cause de la détection faciale ", + "Hi": "Bonjour", + "No face detected": "Aucun visage détecté", + "Image detecting result is ": "Le résultat de détection d'image est ", + "from 3 times Take Attention": "sur 3 fois, faites attention", + "Be sure for take accurate images please\\nYou have": "Assurez-vous de prendre des images précises svp\\nVous avez", + "image verified": "image vérifiée", + "Next": "Suivant", + "There is no help Question here": "Il n'y a pas de question d'aide ici", + "You dont have Points": "Vous n'avez pas de points", + "You Are Stopped For this Day !": "Vous êtes arrêté pour aujourd'hui !", + "You must be charge your Account": "Vous devez recharger votre compte", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Vous avez refusé 3 trajets aujourd'hui \\nÀ demain !", + "Recharge my Account": "Recharger mon compte", + "Ok , See you Tomorrow": "Ok, à demain", + "You are Stopped": "Vous êtes arrêté", + "Connected": "Connecté", + "Not Connected": "Non connecté", + "Your are far from passenger location": "Vous êtes loin du passager", + "go to your passenger location before\\nPassenger cancel trip": "allez vers le passager avant qu'il n'annule", + "You will get cost of your work for this trip": "Vous serez payé pour ce trajet", + " in your wallet": " dans votre portefeuille", + "you gain": "vous gagnez", + "Order Cancelled by Passenger": "Commande annulée par le passager", + "Feedback data saved successfully": "Données d'avis enregistrées avec succès", + "No Promo for today .": "Pas de promo pour aujourd'hui.", + "Select your destination": "Sélectionnez votre destination", + "Search for your Start point": "Recherchez votre point de départ", + "Search for waypoint": "Recherchez un point de passage", + "Current Location": "Position actuelle", + "Add Location 1": "Ajouter Lieu 1", + "You must Verify email !.": "Vous devez vérifier l'email !", + "Cropper": "Recadrer", + "Saved Sucssefully": "Enregistré avec succès", + "Select Date": "Sélectionner la date", + "Birth Date": "Date de naissance", + "Ok": "Ok", + "the 500 points equal 30 JOD": "les 500 points égalent 30 €", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "les 500 points égalent 30 € pour vous \\nAlors allez gagner votre argent", + "token updated": "jeton mis à jour", + "Add Location 2": "Ajouter Lieu 2", + "Add Location 3": "Ajouter Lieu 3", + "Add Location 4": "Ajouter Lieu 4", + "Waiting for your location": "En attente de votre position", + "Search for your destination": "Recherchez votre destination", + "Hi! This is": "Salut ! C'est", + " I am using": " J'utilise", + " to ride with": " pour rouler avec", + " as the driver.": " comme chauffeur.", + "is driving a ": "conduit une ", + " with license plate ": " immatriculée ", + " I am currently located at ": " Je suis actuellement à ", + "Please go to Car now ": "Veuillez aller à la voiture maintenant ", + "You will receive a code in WhatsApp Messenger": "Vous recevrez un code sur WhatsApp", + "If you need assistance, contact us": "Si vous avez besoin d'aide, contactez-nous", + "Promo Ended": "Promo terminée", + "Enter the promo code and get": "Entrez le code promo et obtenez", + "DISCOUNT": "REMISE", + "No wallet record found": "Aucun enregistrement de portefeuille trouvé", + "for": "pour", + "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 est l'appli de covoiturage la plus sûre avec de nombreuses fonctionnalités. Nous offrons le taux de commission le plus bas de seulement 8%.", + "You can contact us during working hours from 12:00 - 19:00.": "Vous pouvez nous contacter de 12h00 à 19h00.", + "Choose a contact option": "Choisissez une option de contact", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Heures de travail de 12h00 à 19h00.\\nVous pouvez envoyer un WhatsApp ou email.", + "Promo code copied to clipboard!": "Code promo copié !", + "Copy Code": "Copier le code", + "Your invite code was successfully applied!": "Votre code d'invitation a été appliqué !", + "Payment Options": "Options de paiement", + "wait 1 minute to receive message": "attendez 1 minute pour recevoir le message", + "You have copied the promo code.": "Vous avez copié le code promo.", + "Select Payment Amount": "Sélectionner le montant du paiement", + "The promotion period has ended.": "La période de promotion est terminée.", + "Promo Code Accepted": "Code promo accepté", + "Tap on the promo code to copy it!": "Appuyez sur le code promo pour le copier !", + "Lowest Price Achieved": "Prix le plus bas atteint", + "Cannot apply further discounts.": "Impossible d'appliquer plus de remises.", + "Promo Already Used": "Promo déjà utilisée", + "Invitation Used": "Invitation utilisée", + "You have already used this promo code.": "Vous avez déjà utilisé ce code promo.", + "Insert Your Promo Code": "Insérez votre code promo", + "Enter promo code here": "Entrez le code promo ici", + "Please enter a valid promo code": "Veuillez entrer un code promo valide", + "Awfar Car": "Voiture Éco", + "Old and affordable, perfect for budget rides.": "Abordable, parfait pour les petits budgets.", + " If you need to reach me, please contact the driver directly at": " Si vous devez me joindre, contactez le chauffeur au", + "No Car or Driver Found in your area.": "Aucune voiture ou chauffeur trouvé dans votre zone.", + "Please Try anther time ": "Veuillez réessayer une autre fois ", + "There no Driver Aplly your order sorry for that ": "Aucun chauffeur n'a pris votre commande, désolé ", + "Trip Cancelled": "Trajet annulé", + "The Driver Will be in your location soon .": "Le chauffeur sera bientôt là.", + "The distance less than 500 meter.": "La distance est inférieure à 500 mètres.", + "Promo End !": "Fin de la promo !", + "There is no notification yet": "Il n'y a pas encore de notification", + "Use Touch ID or Face ID to confirm payment": "Utilisez Touch ID ou Face ID pour confirmer", + "Contact us for any questions on your order.": "Contactez-nous pour toute question.", + "Pyament Cancelled .": "Paiement annulé.", + "type here": "tapez ici", + "Scan Driver License": "Scanner le permis", + "Please put your licence in these border": "Veuillez mettre votre permis dans ce cadre", + "Camera not initialized yet": "Caméra non initialisée", + "Take Image": "Prendre une photo", + "AI Page": "Page IA", + "Take Picture Of ID Card": "Photo de la pièce d'identité", + "Take Picture Of Driver License Card": "Photo du permis de conduire", + "We are process picture please wait ": "Traitement de l'image en cours, veuillez patienter ", + "There is no data yet.": "Il n'y a pas encore de données.", + "Name :": "Nom :", + "Drivers License Class: ": "Classe de permis :", + "Document Number: ": "Numéro de document :", + "Address: ": "Adresse :", + "Height: ": "Taille :", + "Expiry Date: ": "Date d'expiration :", + "Date of Birth: ": "Date de naissance :", + "You can't continue with us .\\nYou should renew Driver license": "Vous ne pouvez pas continuer.\\nVous devez renouveler votre permis", + "Detect Your Face ": "Détecter votre visage ", + "Go to next step\\nscan Car License.": "Étape suivante\\nscanner la carte grise.", + "Name in arabic": "Nom en arabe", + "Drivers License Class": "Classe de permis", + "Selected Date": "Date sélectionnée", + "Select Time": "Sélectionner l'heure", + "Selected Time": "Heure sélectionnée", + "Selected Date and Time": "Date et heure sélectionnées", + "Lets check Car license ": "Vérifions la carte grise ", + "Car": "Voiture", + "Plate": "Plaque", + "Rides": "Trajets", + "Selected driver": "Chauffeur sélectionné", + "Lets check License Back Face": "Vérifions le verso du permis", + "Car License Card": "Carte Grise", + "No image selected yet": "Aucune image sélectionnée", + "Made :": "Marque :", + "model :": "Modèle :", + "VIN :": "VIN :", + "year :": "Année :", + "ُExpire Date": "Date d'expiration", + "Login Driver": "Connexion Chauffeur", + "Password must br at least 6 character.": "Le mot de passe doit avoir au moins 6 caractères.", + "if you don't have account": "si vous n'avez pas de compte", + "Here recorded trips audio": "Ici l'audio des trajets enregistrés", + "Register as Driver": "S'inscrire comme chauffeur", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "En sélectionnant \"J'accepte\", j'accepte les conditions d'utilisation et reconnais ", + "Log Out Page": "Page de déconnexion", + "Log Off": "Déconnexion", + "Register Driver": "Inscrire Chauffeur", + "Verify Email For Driver": "Vérifier l'email pour le chauffeur", + "Admin DashBoard": "Tableau de bord Admin", + "Your name": "Votre nom", + "your ride is applied": "votre trajet est demandé", + "H and": "H et", + "JOD": "€", + "m": "m", + "We search nearst Driver to you": "Nous cherchons le chauffeur le plus proche", + "please wait till driver accept your order": "veuillez attendre que le chauffeur accepte", + "No accepted orders? Try raising your trip fee to attract riders.": "Pas de commande acceptée ? Essayez d'augmenter votre tarif.", + "You should select one": "Vous devez en sélectionner un", + "The driver accept your order for": "Le chauffeur accepte votre commande pour", + "The driver on your way": "Le chauffeur est en route", + "Total price from ": "Prix total de ", + "Order Details Intaleq": "Détails Commande Intaleq", + "Selected file:": "Fichier sélectionné :", + "Your trip cost is": "Le coût de votre trajet est", + "this will delete all files from your device": "cela supprimera tous les fichiers de votre appareil", + "Exclusive offers and discounts always with the Intaleq app": "Offres exclusives et remises toujours avec l'appli Intaleq", + "Submit Question": "Soumettre une question", + "Please enter your Question.": "Veuillez entrer votre question.", + "Help Details": "Détails de l'aide", + "No trip yet found": "Aucun trajet trouvé", + "No Response yet.": "Pas encore de réponse.", + " You Earn today is ": " Vous avez gagné aujourd'hui ", + " You Have in": " Vous avez dans", + "Total points is ": "Total des points est ", + "Total Connection Duration:": "Durée totale de connexion :", + "Passenger name : ": "Nom du passager : ", + "Cost Of Trip IS ": "Le coût du trajet est ", + "Arrival time": "Heure d'arrivée", + "arrival time to reach your point": "heure d'arrivée pour atteindre votre point", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Pour Intaleq et scooter, le prix est dynamique. Pour Confort, basé sur le temps et la distance.", + "Hello this is Driver": "Bonjour c'est le chauffeur", + "Is the Passenger in your Car ?": "Le passager est-il dans votre voiture ?", + "Please wait for the passenger to enter the car before starting the trip.": "Veuillez attendre que le passager monte avant de démarrer.", + "No ,still Waiting.": "Non, j'attends toujours.", + "I arrive you": "Je suis arrivé", + "I Arrive your site": "Je suis arrivé à votre emplacement", + "You are not in near to passenger location": "Vous n'êtes pas proche du passager", + "please go to picker location exactly": "veuillez aller exactement au lieu de prise en charge", + "You Can Cancel Trip And get Cost of Trip From": "Vous pouvez annuler et obtenir le coût de", + "Are you sure to cancel?": "Êtes-vous sûr d'annuler ?", + "Insert Emergincy Number": "Insérer numéro d'urgence", + "Best choice for comfort car and flexible route and stops point": "Meilleur choix pour voiture confort et itinéraire flexible", + "Insert": "Insérer", + "This is for scooter or a motorcycle.": "Ceci est pour un scooter ou une moto.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Trajet direct à prix fixe. Le chauffeur doit suivre l'itinéraire.", + "You can decline a request without any cost": "Vous pouvez refuser une demande sans frais", + "Perfect for adventure seekers who want to experience something new and exciting": "Parfait pour les amateurs d'aventure", + "My current location is:": "Ma position actuelle est :", + "and I have a trip on": "et j'ai un trajet sur", + "App with Passenger": "Appli avec Passager", + "You will be pay the cost to driver or we will get it from you on next trip": "Vous paierez le chauffeur ou nous le récupérerons au prochain trajet", + "Trip has Steps": "Le trajet a des étapes", + "Distance from Passenger to destination is ": "La distance du passager à la destination est ", + "price is": "le prix est", + "This ride type does not allow changes to the destination or additional stops": "Ce type de trajet ne permet pas de changements", + "This price may be changed": "Ce prix peut changer", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Pas de SIM ? Appelez votre chauffeur via l'appli.", + "This ride type allows changes, but the price may increase": "Ce type permet des changements, mais le prix peut augmenter", + "Select one message": "Sélectionnez un message", + "I'm waiting for you": "Je vous attends", + "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.": "Nous avons remarqué une vitesse excessive (>100 km/h). Ralentissez svp.", + "Warning: Intaleqing detected!": "Attention : Intaleqing détecté !", + "Please help! Contact me as soon as possible.": "Aidez-moi ! Contactez-moi dès que possible.", + "Share Trip Details": "Partager les détails du trajet", + "Car Plate is ": "La plaque est ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "les 300 points égalent 300 € pour vous \\nAlors allez gagner votre argent", + "the 300 points equal 300 L.E": "les 300 points égalent 300 €", + "The payment was not approved. Please try again.": "Le paiement n'a pas été approuvé. Réessayez.", + "Payment Failed": "Paiement échoué", + "This is a scheduled notification.": "Ceci est une notification programmée.", + "An error occurred during the payment process.": "Une erreur est survenue durant le paiement.", + "The payment was approved.": "Le paiement a été approuvé.", + "Payment Successful": "Paiement réussi", + "No ride found yet": "Aucun trajet trouvé", + "Accept Order": "Accepter la commande", + "Bottom Bar Example": "Exemple de barre inférieure", + "Driver phone": "Tél. du chauffeur", + "Statistics": "Statistiques", + "Origin": "Origine", + "Destination": "Destination", + "Driver Name": "Nom du chauffeur", + "Driver Car Plate": "Plaque du chauffeur", + "Available for rides": "Disponible pour des trajets", + "Scan Id": "Scanner ID", + "Camera not initilaized yet": "Caméra non initialisée", + "Scan ID MklGoogle": "Scan ID MklGoogle", + "Language": "Langue", + "Jordan": "Jordanie", + "USA": "USA", + "Egypt": "Égypte", + "Turkey": "Turquie", + "Saudi Arabia": "Arabie Saoudite", + "Qatar": "Qatar", + "Bahrain": "Bahreïn", + "Kuwait": "Koweït", + "But you have a negative salary of": "Mais vous avez un salaire négatif de", + "Promo Code": "Code Promo", + "Your trip distance is": "Votre distance de trajet est", + "Enter promo code": "Entrer code promo", + "You have promo!": "Vous avez une promo !", + "Cost Duration": "Coût Durée", + "Duration is": "La durée est", + "Leave": "Quitter", + "Join": "Rejoindre", + "Heading your way now. Please be ready.": "J'arrive. Soyez prêt svp.", + "Approaching your area. Should be there in 3 minutes.": "J'approche. Là dans 3 minutes.", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Trafic dense ici. Pouvez-vous suggérer un autre point ?", + "This ride is already taken by another driver.": "Ce trajet est déjà pris.", + "You Should be select reason.": "Vous devez sélectionner une raison.", + "Waiting for Driver ...": "En attente du chauffeur...", + "Latest Recent Trip": "Dernier trajet récent", + "from your list": "de votre liste", + "Do you want to change Work location": "Voulez-vous changer le lieu de travail", + "Do you want to change Home location": "Voulez-vous changer le domicile", + "We Are Sorry That we dont have cars in your Location!": "Désolé, pas de voitures dans votre zone !", + "Choose from Map": "Choisir sur la carte", + "Pick your ride location on the map - Tap to confirm": "Choisissez votre lieu sur la carte - Appuyez pour confirmer", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq est l'appli de transport sûre et fiable.", + "With Intaleq, you can get a ride to your destination in minutes.": "Avec Intaleq, obtenez un trajet en quelques minutes.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq s'engage pour la sécurité, tous nos chauffeurs sont vérifiés.", + "Pick from map": "Choisir sur la carte", + "No Car in your site. Sorry!": "Pas de voiture à votre emplacement. Désolé !", + "Nearest Car for you about ": "Voiture la plus proche à environ ", + "From :": "De :", + "Get Details of Trip": "Obtenir les détails du trajet", + "If you want add stop click here": "Si vous voulez ajouter un arrêt cliquez ici", + "Where you want go ": "Où voulez-vous aller ", + "My Card": "Ma Carte", + "Start Record": "Démarrer l'enregistrement", + "History of Trip": "Historique du trajet", + "Helping Center": "Centre d'aide", + "Record saved": "Enregistrement sauvegardé", + "Trips recorded": "Trajets enregistrés", + "Select Your Country": "Sélectionnez votre pays", + "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.": "Pour assurer des infos précises, sélectionnez votre pays.", + "Are you sure to delete recorded files": "Êtes-vous sûr de supprimer les fichiers ?", + "Select recorded trip": "Sélectionner le trajet enregistré", + "Card Number": "Numéro de carte", + "Hi, Where to ": "Salut, on va où ", + "Pick your destination from Map": "Choisissez votre destination sur la carte", + "Add Stops": "Ajouter des arrêts", + "Get Direction": "Obtenir l'itinéraire", + "Add Location": "Ajouter un lieu", + "Switch Rider": "Changer de passager", + "You will arrive to your destination after timer end.": "Vous arriverez après la fin du minuteur.", + "You can cancel trip": "Vous pouvez annuler le trajet", + "The driver waitting you in picked location .": "Le chauffeur vous attend au lieu choisi.", + "Pay with Your": "Payer avec votre", + "Pay with Credit Card": "Payer par carte de crédit", + "Show Promos to Charge": "Afficher les promos pour recharger", + "Point": "Point", + "How many hours would you like to wait?": "Combien d'heures voulez-vous attendre ?", + "Driver Wallet": "Portefeuille Chauffeur", + "Choose between those Type Cars": "Choisissez parmi ces types de voitures", + "hour": "heure", + "Select Waiting Hours": "Sélectionner les heures d'attente", + "Total Points is": "Total des points est", + "You will receive a code in SMS message": "Vous recevrez un code par SMS", + "Done": "Fait", + "Total Budget from trips is ": "Budget total des trajets est ", + "Total Amount:": "Montant total :", + "Total Budget from trips by\\nCredit card is ": "Budget total par\\nCarte de crédit est ", + "This amount for all trip I get from Passengers": "Ce montant pour tous les trajets des passagers", + "Pay from my budget": "Payer de mon budget", + "This amount for all trip I get from Passengers and Collected For me in": "Ce montant collecté pour moi dans", + "You can buy points from your budget": "Vous pouvez acheter des points de votre budget", + "insert amount": "insérer le montant", + "You can buy Points to let you online\\nby this list below": "Vous pouvez acheter des points pour rester en ligne\\nvia cette liste", + "Create Wallet to receive your money": "Créer un portefeuille pour recevoir votre argent", + "Enter your feedback here": "Entrez votre avis ici", + "Please enter your feedback.": "Veuillez entrer votre avis.", + "Feedback": "Avis", + "Submit ": "Envoyer ", + "Click here to Show it in Map": "Cliquez ici pour voir sur la carte", + "Canceled": "Annulé", + "No I want": "Non je veux", + "Email is": "L'email est :", + "Phone Number is": "Le numéro est :", + "Date of Birth is": "Date de naissance :", + "Sex is ": "Le sexe est : ", + "Car Details": "Détails de la voiture", + "VIN is": "VIN est :", + "Color is ": "La couleur est : ", + "Make is ": "La marque est : ", + "Model is": "Le modèle est :", + "Year is": "L'année est :", + "Expiration Date ": "Date d'expiration : ", + "Edit Your data": "Modifier vos données", + "write vin for your car": "écrire le VIN de votre voiture", + "VIN": "VIN", + "Please verify your identity": "Veuillez vérifier votre identité", + "write Color for your car": "écrire la couleur de votre voiture", + "write Make for your car": "écrire la marque de votre voiture", + "write Model for your car": "écrire le modèle de votre voiture", + "write Year for your car": "écrire l'année de votre voiture", + "write Expiration Date for your car": "écrire la date d'expiration", + "Tariffs": "Tarifs", + "Minimum fare": "Tarif minimum", + "Maximum fare": "Tarif maximum", + "Flag-down fee": "Prise en charge", + "Including Tax": "Taxes incluses", + "BookingFee": "Frais de réservation", + "Morning": "Matin", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "de 07:30 à 10:30", + "Evening": "Soir", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "de 12:00 à 15:00", + "Night": "Nuit", + "You have in account": "Vous avez sur le compte", + "Select Country": "Sélectionner le pays", + "Ride Today : ": "Trajet Aujourd'hui : ", + "from 23:59 till 05:30": "de 23:59 à 05:30", + "Rate Driver": "Noter le chauffeur", + "Total Cost is ": "Coût total est ", + "Write note": "Écrire une note", + "Time to arrive": "Heure d'arrivée", + "Ride Summaries": "Résumés des trajets", + "Total Cost": "Coût Total", + "Average of Hours of": "Moyenne des heures de", + " is ON for this month": " est ON pour ce mois", + "Days": "Jours", + "Total Hours on month": "Heures totales sur le mois", + "Counts of Hours on days": "Comptes des heures sur les jours", + "OrderId": "ID Commande", + "created time": "heure de création", + "Intaleq Over": "Intaleq Terminé", + "I will slow down": "Je vais ralentir", + "Map Passenger": "Carte Passager", + "Be Slowly": "Doucement", + "If you want to make Google Map App run directly when you apply order": "Si vous voulez lancer Google Maps directement", + "You can change the language of the app": "Vous pouvez changer la langue de l'appli", + "Your Budget less than needed": "Votre budget est insuffisant", + "You can change the Country to get all features": "Changez de pays pour toutes les fonctionnalités", + "There is no Car or Driver in your area.": "Il n'y a pas de voiture ou de chauffeur dans votre zone.", + "Change Country": "Changer de pays" + }, + "de": { + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "Nach diesem Zeitraum\\nkönnen Sie nicht mehr stornieren!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "Hallo! Ich lade Sie ein, Intaleq auszuprobieren.", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "Syrien", + "SYP": "SYP", + "Order": "Bestellung", + "OrderVIP": "VIP-Bestellung", + "Cancel Trip": "Fahrt stornieren", + "Passenger Cancel Trip": "Fahrgast hat die Fahrt storniert", + "VIP Order": "VIP-Bestellung", + "The driver accepted your trip": "Der Fahrer hat Ihre Fahrt angenommen", + "message From passenger": "Nachricht vom Fahrgast", + "Cancel": "Abbrechen", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Fahrt storniert. Die Kosten der Fahrt werden Ihrem Portemonnaie hinzugefügt.", + "token change": "Token-Änderung", + "Changed my mind": "Ich habe es mir anders überlegt", + "Please write the reason...": "Bitte geben Sie den Grund an...", + "Found another transport": "Ich habe ein anderes Transportmittel gefunden", + "Driver is taking too long": "Der Fahrer braucht zu lange", + "Driver asked me to cancel": "Fahrer hat mich gebeten zu stornieren", + "Wrong pickup location": "Falscher Abholort", + "Other": "Andere", + "Don't Cancel": "Nicht abbrechen", + "No Drivers Found": "Keine Fahrer gefunden", + "Sorry, there are no cars available of this type right now.": "Leider sind derzeit keine Fahrzeuge dieses Typs verfügbar.", + "Refresh Map": "Karte aktualisieren", + "face detect": "Gesichtserkennung", + "Face Detection Result": "Ergebnis der Gesichtserkennung", + "similar": "ähnlich", + "not similar": "nicht ähnlich", + "Searching for nearby drivers...": "Suche nach Fahrern in der Nähe...", + "Error": "Fehler", + "Failed to search, please try again later": "Suche fehlgeschlagen, bitte versuchen Sie es später noch einmal", + "Connection Error": "Verbindungsfehler", + "Please check your internet connection": "Bitte überprüfen Sie Ihre Internetverbindung", + "Sorry 😔": "Entschuldigung 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "Der Fahrer hat die Fahrt aus einem Notfall abgebrochen.\\nMöchten Sie sofort nach einem anderen Fahrer suchen?", + "Search for another driver": "Nach einem anderen Fahrer suchen", + "We apologize 😔": "Wir bitten um Entschuldigung 😔", + "No drivers found at the moment.\\nPlease try again later.": "Derzeit wurden keine Fahrer gefunden.\\nBitte versuchen Sie es später noch einmal.", + "Hi ,I will go now": "Hallo, ich werde jetzt gehen", + "Passenger come to you": "Fahrgast kommt zu Ihnen", + "Call Income": "Eingehender Anruf", + "Call Income from Passenger": "Eingehender Anruf vom Fahrgast", + "Criminal Document Required": "Führungszeugnis erforderlich", + "You should have upload it .": "Sie hätten es hochladen sollen.", + "Call End": "Anrufende", + "The order has been accepted by another driver.": "Die Bestellung wurde von einem anderen Fahrer angenommen.", + "The order Accepted by another Driver": "Die Bestellung wurde von einem anderen Fahrer angenommen", + "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.", + "Driver Applied the Ride for You": "Der Fahrer hat die Fahrt für Sie übernommen", + "Applied": "Angewandt", + "Please go to Car Driver": "Bitte gehen Sie zum Autofahrer", + "Ok I will go now.": "Ok, ich werde jetzt gehen.", + "Accepted Ride": "Fahrt angenommen", + "Driver Accepted the Ride for You": "Der Fahrer hat die Fahrt für Sie angenommen", + "Promo": "Promo", + "Show latest promo": "Neueste Promotion anzeigen", + "Trip Monitoring": "Fahrtüberwachung", + "Driver Is Going To Passenger": "Fahrer ist auf dem Weg zum Fahrgast", + "Please stay on the picked point.": "Bitte bleiben Sie am ausgewählten Punkt.", + "message From Driver": "Nachricht vom Fahrer", + "Trip is Begin": "Fahrt beginnt", + "Cancel Trip from driver": "Fahrt vom Fahrer stornieren", + "We will look for a new driver.\\nPlease wait.": "Wir werden nach einem neuen Fahrer suchen.\\nBitte warten Sie.", + "The driver canceled your ride.": "Der Fahrer hat Ihre Fahrt storniert.", + "Driver Finish Trip": "Fahrer beendet die Fahrt", + "you will pay to Driver": "Sie werden den Fahrer bezahlen", + "Don’t forget your personal belongings.": "Vergessen Sie nicht Ihre persönlichen Gegenstände.", + "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": "Bitte stellen Sie sicher, dass Sie alle Ihre persönlichen Gegenstände haben und dass etwaige verbleibende Fahrpreise, falls zutreffend, vor dem Verlassen Ihrem Portemonnaie hinzugefügt wurden. Vielen Dank, dass Sie die Intaleq-App gewählt haben", + "Finish Monitor": "Monitor beenden", + "Trip finished": "Fahrt beendet", + "Call Income from Driver": "Eingehender Anruf vom Fahrer", + "Driver Cancelled Your Trip": "Fahrer hat Ihre Fahrt storniert", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "Sie werden den Fahrer bezahlen, Sie werden die Kosten für die Fahrerzeit bezahlen, sehen Sie in Ihrem Intaleq-Portemonnaie nach", + "Order Applied": "Bestellung übernommen", + "welcome to intaleq": "Willkommen bei Intaleq", + "login or register subtitle": "Anmelden oder registrieren", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Für diese Fahrt kann keine Beschwerde eingereicht werden. Sie wurde möglicherweise noch nicht abgeschlossen oder gestartet.", + "phone number label": "Telefonnummer", + "phone number required": "Telefonnummer erforderlich", + "send otp button": "Code senden", + "verify your number title": "Nummer verifizieren", + "otp sent subtitle": "Verifizierungscode gesendet", + "verify and continue button": "Verifizieren und fortfahren", + "enter otp validation": "Bitte Code eingeben", + "one last step title": "Ein letzter Schritt", + "complete profile subtitle": "Profil vervollständigen", + "first name label": "Vorname", + "first name required": "Vorname erforderlich", + "last name label": "Nachname", + "Verify OTP": "Code verifizieren", + "Verification Code": "Verifizierungscode", + "We have sent a verification code to your mobile number:": "Wir haben einen Verifizierungscode an Ihre Handynummer gesendet:", + "Verify": "Verifizieren", + "Resend Code": "Code erneut senden", + "You can resend in": "Erneutes Senden möglich in", + "seconds": "Sekunden", + "Please enter the complete 6-digit code.": "Bitte geben Sie den vollständigen 6-stelligen Code ein.", + "last name required": "Nachname erforderlich", + "email optional label": "E-Mail (optional)", + "complete registration button": "Registrierung abschließen", + "User with this phone number or email already exists.": "Benutzer mit dieser Telefonnummer oder E-Mail existiert bereits.", + "otp sent success": "Code erfolgreich gesendet", + "failed to send otp": "Code konnte nicht gesendet werden", + "server error try again": "Serverfehler, versuchen Sie es erneut", + "an error occurred": "ein Fehler ist aufgetreten", + "otp verification failed": "Code-Verifizierung fehlgeschlagen", + "registration failed": "Registrierung fehlgeschlagen", + "welcome user": "Willkommen", + "Don't forget your personal belongings.": "Vergessen Sie Ihre persönlichen Gegenstände nicht.", + "Share App": "App teilen", + "Wallet": "Portemonnaie", + "Balance": "Guthaben", + "Profile": "Profil", + "Contact Support": "Support kontaktieren", + "Session expired. Please log in again.": "Sitzung abgelaufen. Bitte melden Sie sich erneut an.", + "Security Warning": "Sicherheitswarnung", + "Potential security risks detected. The application may not function correctly.": "Potenzielle Sicherheitsrisiken erkannt. Die Anwendung funktioniert möglicherweise nicht korrekt.", + "please order now": "bitte jetzt bestellen", + "Where to": "Wohin", + "Where are you going?": "Wohin gehen Sie?", + "Quick Actions": "Schnelle Aktionen", + "My Balance": "Mein Guthaben", + "Order History": "Bestellverlauf", + "Contact Us": "Kontaktieren Sie uns", + "Driver": "Fahrer", + "Complaint": "Beschwerde", + "Promos": "Promotionen", + "Recent Places": "Letzte Orte", + "From": "Von", + "WhatsApp Location Extractor": "WhatsApp-Standort-Extraktor", + "Location Link": "Standortlink", + "Paste location link here": "Fügen Sie den Standortlink hier ein", + "Go to this location": "Gehen Sie zu diesem Ort", + "Paste WhatsApp location link": "Fügen Sie den WhatsApp-Standortlink ein", + "Select Order Type": "Bestelltyp auswählen", + "Choose who this order is for": "Wählen Sie, für wen diese Bestellung ist", + "I want to order for myself": "Ich möchte für mich selbst bestellen", + "I want to order for someone else": "Ich möchte für jemand anderen bestellen", + "Order for someone else": "Für jemand anderen bestellen", + "Order for myself": "Für mich selbst bestellen", + "Are you want to go this site": "Möchten Sie zu dieser Seite gehen?", + "No": "Nein", + "Intaleq Wallet": "Intaleq Geldbörse", + "Have a promo code?": "Haben Sie einen Promo-Code?", + "Your Wallet balance is ": "Ihr Portemonnaie-Guthaben beträgt ", + "Cash": "Bargeld", + "Pay directly to the captain": "Direkt beim Kapitän bezahlen", + "Top up Wallet to continue": "Geldbörse aufladen, um fortzufahren", + "Or pay with Cash instead": "Oder zahlen Sie stattdessen bar", + "Confirm & Find a Ride": "Bestätigen & Fahrt finden", + "Balance:": "Guthaben:", + "Alerts": "Benachrichtigungen", + "Welcome Back!": "Willkommen zurück!", + "No contacts found": "Keine Kontakte gefunden", + "No contacts with phone numbers were found on your device.": "Auf Ihrem Gerät wurden keine Kontakte mit Telefonnummern gefunden.", + "Permission denied": "Berechtigung verweigert", + "Contact permission is required to pick contacts": "Kontaktberechtigung ist erforderlich, um Kontakte auszuwählen", + "An error occurred while picking contacts:": "Beim Auswählen von Kontakten ist ein Fehler aufgetreten:", + "Please enter a correct phone": "Bitte geben Sie eine korrekte Telefonnummer ein", + "Success": "Erfolg", + "Invite sent successfully": "Einladung erfolgreich gesendet", + "Use my invitation code to get a special gift on your first ride!": "Nutzen Sie meinen Einladungscode, um ein besonderes Geschenk bei Ihrer ersten Fahrt zu erhalten!", + "Your personal invitation code is:": "Ihr persönlicher Einladungscode lautet:", + "Be sure to use it quickly! This code expires at": "Nutzen Sie ihn schnell! Dieser Code läuft ab am", + "Download the app now:": "Laden Sie die App jetzt herunter:", + "See you on the road!": "Wir sehen uns auf der Straße!", + "This phone number has already been invited.": "Diese Telefonnummer wurde bereits eingeladen.", + "An unexpected error occurred. Please try again.": "Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut.", + "You deserve the gift": "Sie verdienen das Geschenk", + "Claim your 20 LE gift for inviting": "Fordern Sie Ihr 20 LE Geschenk für die Einladung an", + "You have got a gift for invitation": "Sie haben ein Geschenk für die Einladung erhalten", + "You have earned 20": "Sie haben 20 verdient", + "LE": "LE", + "Vibration feedback for all buttons": "Vibrationsfeedback für alle Tasten", + "Share with friends and earn rewards": "Mit Freunden teilen und Belohnungen verdienen", + "Gift Already Claimed": "Geschenk bereits beansprucht", + "You have already received your gift for inviting": "Sie haben Ihr Geschenk für die Einladung bereits erhalten", + "Keep it up!": "Weiter so!", + "has completed": "hat abgeschlossen", + "trips": "Fahrten", + "Personal Information": "Persönliche Informationen", + "Name": "Name", + "Not set": "Nicht festgelegt", + "Gender": "Geschlecht", + "Education": "Bildung", + "Work & Contact": "Arbeit & Kontakt", + "Employment Type": "Beschäftigungsart", + "Marital Status": "Familienstand", + "SOS Phone": "SOS-Telefon", + "Sign Out": "Abmelden", + "Delete My Account": "Mein Konto löschen", + "Update Gender": "Geschlecht aktualisieren", + "Update": "Aktualisieren", + "Update Education": "Bildung aktualisieren", + "Are you sure? This action cannot be undone.": "Sind Sie sicher? Diese Aktion kann nicht rückgängig gemacht werden.", + "Confirm your Email": "E-Mail bestätigen", + "Type your Email": "Geben Sie Ihre E-Mail ein", + "Delete Permanently": "Dauerhaft löschen", + "Male": "Männlich", + "Female": "Weiblich", + "High School Diploma": "Abitur", + "Associate Degree": "Associate Degree", + "Bachelor's Degree": "Bachelor-Abschluss", + "Master's Degree": "Master-Abschluss", + "Doctoral Degree": "Doktortitel", + "Select your preferred language for the app interface.": "Wählen Sie Ihre bevorzugte Sprache für die App-Oberfläche.", + "Language Options": "Sprachoptionen", + "You can claim your gift once they complete 2 trips.": "Sie können Ihr Geschenk anfordern, sobald zwei Fahrten abgeschlossen sind.", + "Closest & Cheapest": "Nächstgelegen & Günstigst", + "Comfort choice": "Comfort-Option", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Reisen Sie in einem modernen, geräuschlosen Elektroauto. Eine erstklassige, umweltfreundliche Wahl für eine reibungslose Fahrt.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Geräumiger Van-Service, ideal für Familien und Gruppen. Komfortables, sicheres und kostengünstiges gemeinsames Reisen.", + "Quiet & Eco-Friendly": "Leise & Umweltfreundlich", + "Lady Captain for girls": "Fahrerin für Frauen", + "Van for familly": "Familien-Van", + "Are you sure to delete this location?": "Sind Sie sicher, dass Sie diesen Ort löschen möchten?", + "Submit a Complaint": "Beschwerde einreichen", + "Submit Complaint": "Beschwerde einreichen", + "No trip history found": "Keine Fahrthistorie gefunden", + "Your past trips will appear here.": "Ihre vergangenen Fahrten werden hier angezeigt.", + "1. Describe Your Issue": "1. Beschreiben Sie Ihr Problem", + "Enter your complaint here...": "Geben Sie hier Ihre Beschwerde ein...", + "2. Attach Recorded Audio": "2. Aufgenommenes Audio anhängen", + "No audio files found.": "Keine Audiodateien gefunden.", + "Confirm Attachment": "Anhang bestätigen", + "Attach this audio file?": "Diese Audiodatei anhängen?", + "Uploaded": "Hochgeladen", + "3. Review Details & Response": "3. Details & Antwort prüfen", + "Date": "Datum", + "Today's Promos": "Heutige Promos", + "No promos available right now.": "Derzeit sind keine Promos verfügbar.", + "Check back later for new offers!": "Schauen Sie später für neue Angebote vorbei!", + "Valid Until:": "Gültig bis:", + "CODE": "CODE", + "Login": "Anmelden", + "Sign in for a seamless experience": "Melden Sie sich für ein nahtloses Erlebnis an", + "Sign In with Google": "Mit Google anmelden", + "Sign in with Apple": "Mit Apple anmelden", + "User not found": "Benutzer nicht gefunden", + "Need assistance? Contact us": "Brauchen Sie Hilfe? Kontaktieren Sie uns", + "Email": "E-Mail", + "Your email address": "Ihre E-Mail-Adresse", + "Enter a valid email": "Geben Sie eine gültige E-Mail-Adresse ein", + "Password": "Passwort", + "Your password": "Ihr Passwort", + "Enter your password": "Geben Sie Ihr Passwort ein", + "Submit": "Einreichen", + "Terms of Use & Privacy Notice": "Nutzungsbedingungen & Datenschutzhinweis", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "Durch Auswahl von „Ich stimme zu“ bestätige ich, dass ich die folgenden Bedingungen gelesen habe und ihnen zustimme: ", + "Terms of Use": "Nutzungsbedingungen", + " and acknowledge the ": " und erkenne die ", + "Privacy Notice": "Datenschutzhinweis", + ". I am at least 18 years old.": ". Ich bin mindestens 18 Jahre alt.", + "I Agree": "Ich stimme zu", + "Continue": "Weiter", + "Enable Location": "Standort aktivieren", + "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.", + "Allow Location Access": "Standortzugriff erlauben", + "Welcome to Intaleq!": "Willkommen bei Intaleq!", + "Before we start, please review our terms.": "Bevor wir beginnen, lesen Sie bitte unsere Bedingungen.", + "Your journey starts here": "Ihre Reise beginnt hier", + "Cancel Search": "Suche abbrechen", + "Set pickup location": "Abholort festlegen", + "Move the map to adjust the pin": "Karte bewegen, um die Nadel anzupassen", + "Searching for the nearest captain...": "Suche nach dem nächsten Kapitän...", + "No one accepted? Try increasing the fare.": "Niemand hat angenommen? Versuchen Sie, den Fahrpreis zu erhöhen.", + "Increase Your Trip Fee (Optional)": "Erhöhen Sie Ihre Fahrpreise (optional)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Wir haben noch keine Fahrer gefunden. Erwägen Sie, Ihre Fahrpreise zu erhöhen, um Ihr Angebot für Fahrer attraktiver zu machen.", + "No, thanks": "Nein, danke", + "Increase Fee": "Preis erhöhen", + "Copy": "Kopieren", + "Promo Copied!": "Promotion kopiert!", + "Code": "Code", + "copied to clipboard": "in die Zwischenablage kopiert", + "Price": "Preis", + "Intaleq's Response": "Antwort von Intaleq", + "Awaiting response...": "Warten auf Antwort...", + "Audio file not attached": "Audiodatei nicht angehängt", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "Die Audiodatei wurde noch nicht hochgeladen.\\nMöchten Sie ohne sie senden?", + "deleted": "gelöscht", + "To Work": "Zur Arbeit", + "Work Saved": "Arbeitsort gespeichert", + "To Home": "Nach Hause", + "Home Saved": "Zuhause gespeichert", + "Destination selected": "Ziel ausgewählt", + "Now select start pick": "Wählen Sie nun den Startpunkt aus", + "OK": "OK", + "Confirm Pick-up Location": "Abholort bestätigen", + "Set Location on Map": "Ort auf der Karte festlegen", + "You can contact us during working hours from 10:00 - 16:00.": "Sie können uns während der Arbeitszeiten von 10:00 bis 16:00 Uhr kontaktieren.", + "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 ist die sicherste und zuverlässigste Fahrgemeinschafts-App, die speziell für Fahrgäste in Syrien entwickelt wurde. Wir bieten ein komfortables, respektvolles und erschwingliches Fahrerlebnis mit Funktionen, die Ihre Sicherheit und Bequemlichkeit in den Vordergrund stellen. Unsere vertrauenswürdigen Kapitäne sind verifiziert, versichert und werden durch regelmäßige Fahrzeugwartung durch erstklassige Ingenieure unterstützt. Wir bieten auch Pannenhilfe an, damit jede Fahrt reibungslos und sorgenfrei verläuft. Mit Intaleq genießen Sie jedes Mal Qualität, Sicherheit und Sorgenfreiheit.", + "Customer MSISDN doesn’t have customer wallet": "MSISDN des Kunden hat keine Geldbörse", + "Nearest Car: ~": "Nächstes Auto: ~", + "Nearest Car": "Nächstes Auto", + "No cars nearby": "Keine Autos in der Nähe", + "Favorite Places": "Lieblingsorte", + "No favorite places yet!": "Noch keine Lieblingsorte!", + "from your favorites": "aus Ihren Favoriten", + "Back": "Zurück", + "Enter your code below to apply the discount.": "Geben Sie unten Ihren Code ein, um den Rabatt anzuwenden.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "Durch die Auswahl von \"Ich stimme zu\" bestätige ich, dass ich die", + "and acknowledge the": "gelesen und akzeptiert habe und den", + "Enable Location Access": "Standortzugriff aktivieren", + "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.", + "You should restart app to change language": "Sie sollten die App neu starten, um die Sprache zu ändern", + "Home Page": "Startseite", + "To change Language the App": "Um die Sprache der App zu ändern", + "Learn more about our app and mission": "Erfahren Sie mehr über unsere App und Mission", + "Promos For Today": "Promotionen für heute", + "Choose your ride": "Wählen Sie Ihre Fahrt", + "Your Journey Begins Here": "Ihre Reise beginnt hier", + "Bonus gift": "Bonusgeschenk", + "Pay": "Bezahlen", + "Get": "Erhalten", + "Send to Driver Again": "Nochmals an den Fahrer senden", + "Driver Name:": "Fahrername:", + "No trip data available": "Keine Fahrtdaten verfügbar", + "Car Plate:": "Nummernschild:", + "remaining": "verbleibend", + "Order Cancelled": "Bestellung storniert", + "You canceled VIP trip": "Sie haben die VIP-Fahrt storniert", + "Passenger cancelled order": "Der Fahrgast hat die Bestellung storniert", + "Your trip is scheduled": "Ihre Fahrt ist geplant", + "Don't forget your ride!": "Vergessen Sie Ihre Fahrt nicht!", + "Trip updated successfully": "Fahrt erfolgreich aktualisiert", + "Car Make:": "Automarke:", + "Car Model:": "Automodell:", + "Car Color:": "Autofarbe:", + "Driver Phone:": "Fahrertelefon:", + "Pre-booking": "Vorabbuchung", + "Waiting VIP": "Warten auf VIP", + "Driver List": "Fahrerliste", + "Confirm Trip": "Fahrt bestätigen", + "Select date and time of trip": "Datum und Uhrzeit der Fahrt auswählen", + "Date and Time Picker": "Datum- und Uhrzeitauswahl", + "Trip Status:": "Fahrtstatus:", + "pending": "ausstehend", + "accepted": "akzeptiert", + "rejected": "abgelehnt", + "Apply": "Anwenden", + "Enter your promo code": "Geben Sie Ihren Promo-Code ein", + "Apply Promo Code": "Promo-Code anwenden", + "Scheduled Time:": "Geplante Zeit:", + "No drivers available": "Keine Fahrer verfügbar", + "No drivers available at the moment. Please try again later.": "Derzeit sind keine Fahrer verfügbar. Bitte versuchen Sie es später erneut.", + "you have a negative balance of": "Sie haben ein negatives Guthaben von", + "Please try again in a few moments": "Bitte versuchen Sie es in einigen Augenblicken erneut", + "Unknown Driver": "Unbekannter Fahrer", + "in your": "in Ihrem", + "The driver accepted your order for": "Der Fahrer hat Ihre Bestellung für", + "wallet due to a previous trip.": "Portemonnaie aufgrund einer vorherigen Fahrt.", + "rides": "Fahrten", + "Add Work": "Arbeit hinzufügen", + "The reason is": "Der Grund ist", + "User does not have a wallet #1652": "Der Benutzer hat kein Portemonnaie #1652", + "Price of trip": "Preis der Fahrt", + "From:": "Von:", + "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Für Schnell- und Lieferfahrten wird der Preis dynamisch berechnet. Für Komfortfahrten basiert der Preis auf Zeit und Entfernung.", + "Phone Wallet Saved Successfully": "Telefon-Portemonnaie erfolgreich gespeichert", + "Add wallet phone you use": "Fügen Sie das Telefon-Portemonnaie hinzu, das Sie verwenden", + "Update Available": "Update verfügbar", + "Phone number must be exactly 11 digits long": "Die Telefonnummer muss genau 11 Ziffern lang sein", + "Insert Wallet phone number": "Geben Sie die Telefonnummer des Portemonnaies ein", + "Phone number isn't an Egyptian phone number": "Die Telefonnummer ist keine ägyptische Telefonnummer", + "A new version of the app is available. Please update to the latest version.": "Eine neue Version der App ist verfügbar. Bitte aktualisieren Sie auf die neueste Version.", + "We use location to get accurate and nearest passengers for you": "Wir verwenden den Standort, um genaue und nahegelegene Fahrgäste für Sie zu finden", + "This ride is already applied by another driver.": "Diese Fahrt wurde bereits von einem anderen Fahrer übernommen.", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "Wir verwenden Ihren genauen Standort, um den nächsten verfügbaren Fahrer zu finden und genaue Abhol- und Absetzinformationen bereitzustellen. Sie können dies in den Einstellungen verwalten.", + "Where are you, sir?": "Wo sind Sie, Sir?", + "I've been trying to reach you but your phone is off.": "Ich habe versucht, Sie zu erreichen, aber Ihr Telefon ist ausgeschaltet.", + "Please don't be late": "Bitte seien Sie nicht zu spät", + "Please don't be late, I'm waiting for you at the specified location.": "Bitte seien Sie nicht zu spät, ich warte an dem angegebenen Ort auf Sie.", + "My location is correct. You can search for me using the navigation app": "Mein Standort ist korrekt. Sie können mich über die Navigations-App suchen.", + "Hello, I'm at the agreed-upon location": "Hallo, ich bin am vereinbarten Ort", + "How much longer will you be?": "Wie viel länger werden Sie brauchen?", + "Phone number is verified before": "Die Telefonnummer wurde bereits verifiziert", + "Change Ride": "Fahrt ändern", + "You can change the destination by long-pressing any point on the map": "Sie können das Ziel ändern, indem Sie einen beliebigen Punkt auf der Karte lange drücken", + "Pick from map destination": "Ziel auf der Karte auswählen", + "Pick or Tap to confirm": "Auswählen oder Tippen, um zu bestätigen", + "Accepted your order": "Ihre Bestellung wurde angenommen", + "Order Accepted": "Bestellung angenommen", + "with type": "mit Typ", + "accepted your order at price": "hat Ihre Bestellung zum Preis von", + "you canceled order": "Sie haben die Bestellung storniert", + "If you want order to another person": "Wenn Sie für eine andere Person bestellen möchten", + "upgrade price": "Preis erhöhen", + "airport": "Flughafen", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Beste Wahl für ein komfortables Auto mit einer flexiblen Route und Haltepunkten. Dieser Flughafen bietet Visa-Einreise zu diesem Preis.", + "You can upgrade price to may driver accept your order": "Sie können den Preis erhöhen, damit der Fahrer Ihre Bestellung annimmt", + "Change Route": "Route ändern", + "No Captain Accepted Your Order": "Kein Kapitän hat Ihre Bestellung angenommen", + "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", + "No, I want to cancel this trip": "Nein, ich möchte diese Fahrt stornieren", + "Attention": "Achtung", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Fahrt storniert. Die Kosten der Fahrt werden von Ihrem Portemonnaie abgezogen.", + "You will be charged for the cost of the driver coming to your location.": "Ihnen werden die Kosten für den Fahrer berechnet, der zu Ihrem Standort kommt.", + "reject your order.": "hat Ihre Bestellung abgelehnt.", + "Order Under Review": "Bestellung in Überprüfung", + "is reviewing your order. They may need more information or a higher price.": "überprüft Ihre Bestellung. Möglicherweise benötigen sie mehr Informationen oder einen höheren Preis.", + "Vibration": "Vibration", + "Resend code": "Code erneut senden", + "change device": "Gerät ändern", + "Device Change Detected": "Gerätewechsel erkannt", + "You can only use one device at a time. This device will now be set as your active device.": "Sie können nur ein Gerät gleichzeitig verwenden. Dieses Gerät wird nun als Ihr aktives Gerät festgelegt.", + "Click here point": "Klicken Sie hier", + "Are you want to change": "Möchten Sie ändern", + "by": "von", + "Enter your complaint here": "Geben Sie Ihre Beschwerde hier ein", + "Please enter your complaint.": "Bitte geben Sie Ihre Beschwerde ein.", + "Complaint data saved successfully": "Beschwerdedaten erfolgreich gespeichert", + "Trip Monitor": "Fahrtmonitor", + "Insert SOS Phone": "SOS-Telefon einfügen", + "Add SOS Phone": "SOS-Telefon hinzufügen", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Intaleq ,": "Sehr geehrte/r ,\\n\\n 🚀 Ich habe gerade eine aufregende Reise begonnen und möchte die Details meiner Reise und meinen aktuellen Standort in Echtzeit mit Ihnen teilen! Bitte laden Sie die Intaleq-App herunter. Sie ermöglicht Ihnen, meine Reisedetails und meinen letzten Standort einzusehen.\\n\\n 👉 Download-Link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n Ich freue mich darauf, Sie während meines Abenteuers nah bei mir zu haben!\\n\\n Intaleq ,", + "Send Intaleq app to him": "Senden Sie ihm die Intaleq-App", + "No passenger found for the given phone number": "Kein Fahrgast für die angegebene Telefonnummer gefunden", + "No user found for the given phone number": "Kein Benutzer für die angegebene Telefonnummer gefunden", + "This price is": "Dieser Preis ist", + "Work": "Arbeit", + "Add Home": "Zuhause hinzufügen", + "Notifications": "Benachrichtigungen", + "💳 Pay with Credit Card": "💳 Mit Kreditkarte bezahlen", + "⚠️ You need to choose an amount!": "⚠️ Sie müssen einen Betrag auswählen!", + "💰 Pay with Wallet": "Mit Portemonnaie bezahlen", + "You must restart the app to change the language.": "Sie müssen die App neu starten, um die Sprache zu ändern.", + "joined": "beigetreten", + "Driver joined the channel": "Der Fahrer ist dem Kanal beigetreten", + "Driver left the channel": "Der Fahrer hat den Kanal verlassen", + "Call Page": "Anrufseite", + "Call Left": "Verbleibender Anruf", + " Next as Cash !": " Weiter bar!", + "To use Wallet charge it": "Um das Portemonnaie zu verwenden, laden Sie es auf", + "We are searching for the nearest driver to you": "Wir suchen den nächstgelegenen Fahrer für Sie", + "Best choice for cities": "Beste Wahl für Städte", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai: Rundreiseservice für bequemes Reisen zwischen Städten, einfach und zuverlässig.", + "This trip is for women only": "Diese Fahrt ist nur für Frauen", + "Total budgets on month": "Gesamtbudgets des Monats", + "You have call from driver": "Sie haben einen Anruf vom Fahrer", + "Intaleq": "Geschwindigkeit", + "passenger agreement": "Fahrgastvereinbarung", + "To become a passenger, you must review and agree to the ": "Um Fahrgast zu werden, müssen Sie die folgenden Bedingungen lesen und ihnen zustimmen: ", + "agreement subtitle": "Bedingungen akzeptieren", + "terms of use": "Nutzungsbedingungen", + " and acknowledge our Privacy Policy.": " und erkennen unsere Datenschutzrichtlinie an.", + "and acknowledge our": "und bestätigen unsere", + "privacy policy": "Datenschutzrichtlinie", + "i agree": "Ich stimme zu", + "Driver already has 2 trips within the specified period.": "Der Fahrer hat bereits 2 Fahrten innerhalb des angegebenen Zeitraums.", + "The invitation was sent successfully": "Die Einladung wurde erfolgreich versendet", + "You should select your country": "Sie sollten Ihr Land auswählen", + "Scooter": "Roller", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Eine Fahrt mit Vorabreservierung, die es Ihnen ermöglicht, die besten Kapitäne und Autos auszuwählen.", + "Mishwar Vip": "Mishwar Vip", + "The driver waiting you in picked location .": "Der Fahrer wartet an dem ausgewählten Ort auf Sie.", + "About Us": "Über uns", + "You can change the vibration feedback for all buttons": "Sie können das Vibrationsfeedback für alle Schaltflächen ändern", + "Most Secure Methods": "Sicherste Methoden", + "In-App VOIP Calls": "VOIP-Anrufe in der App", + "Recorded Trips for Safety": "Aufgezeichnete Fahrten für die Sicherheit", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWir legen auch Wert auf Erschwinglichkeit und bieten wettbewerbsfähige Preise, um Ihre Fahrten zugänglich zu machen.", + "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 ist eine Mitfahr-App, die mit Blick auf Ihre Sicherheit und Erschwinglichkeit entwickelt wurde. Wir verbinden Sie mit zuverlässigen Fahrern in Ihrer Nähe und sorgen für eine bequeme und stressfreie Reiseerfahrung.\\n\\nHier sind einige der wichtigsten Funktionen, die uns auszeichnen:", + "Sign In by Apple": "Mit Apple anmelden", + "Sign In by Google": "Mit Google anmelden", + "How do I request a ride?": "Wie buche ich eine Fahrt?", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Schritt-für-Schritt-Anleitung, wie Sie eine Fahrt über die Intaleq-App buchen können.", + "What types of vehicles are available?": "Welche Fahrzeugtypen sind verfügbar?", + "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 bietet eine Vielzahl von Fahrzeugoptionen, die Ihren Bedürfnissen entsprechen, darunter Economy, Komfort und Luxus. Wählen Sie die Option, die am besten zu Ihrem Budget und Ihrer Passagierzahl passt.", + "How can I pay for my ride?": "Wie kann ich meine Fahrt bezahlen?", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq bietet mehrere Zahlungsmethoden für Ihre Bequemlichkeit. Wählen Sie zwischen Barzahlung oder Kredit-/Debitkartenzahlung während der Fahrtbestätigung.", + "Can I cancel my ride?": "Kann ich meine Fahrt stornieren?", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Ja, Sie können Ihre Fahrt unter bestimmten Bedingungen stornieren (z.B. bevor der Fahrer zugewiesen wird). Weitere Details finden Sie in der Stornierungsrichtlinie von Intaleq.", + "Driver Registration & Requirements": "Fahrerregistrierung & Anforderungen", + "How can I register as a driver?": "Wie kann ich mich als Fahrer registrieren?", + "What are the requirements to become a driver?": "Welche Anforderungen gibt es, um Fahrer zu werden?", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Besuchen Sie unsere Website oder kontaktieren Sie den Intaleq-Support für Informationen zur Fahrerregistrierung und den Anforderungen.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq bietet eine In-App-Chat-Funktion, die es Ihnen ermöglicht, während Ihrer Fahrt mit Ihrem Fahrer oder Fahrgast zu kommunizieren.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq priorisiert Ihre Sicherheit. Wir bieten Funktionen wie Fahrerverifizierung, In-App-Fahrtverfolgung und Notfallkontaktoptionen.", + "Frequently Questions": "Häufige Fragen", + "User does not exist.": "Benutzer existiert nicht.", + "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.", + "You will recieve code in sms message": "Sie erhalten den Code per SMS", + "Please enter": "Bitte eingeben", + "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.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Der vollständige Name in Ihrem Führungszeugnis stimmt nicht mit dem in Ihrem Führerschein überein. Bitte überprüfen Sie dies und stellen Sie die korrekten Dokumente bereit.", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Die nationale Nummer auf Ihrem Führerschein stimmt nicht mit der in Ihrem Ausweisdokument überein. Bitte überprüfen Sie dies und stellen Sie die korrekten Dokumente bereit.", + "Capture an Image of Your Criminal Record": "Machen Sie ein Bild Ihres Strafregisters", + "IssueDate": "Ausstellungsdatum", + "Capture an Image of Your car license front": "Foto von der Vorderseite des Fahrzeugscheins machen", + "Capture an Image of Your ID Document front": "Machen Sie ein Bild der Vorderseite Ihres Ausweisdokuments", + "NationalID": "Nationale ID", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Sie können die Intaleq-App mit Ihren Freunden teilen und Belohnungen für Fahrten verdienen, die sie mit Ihrem Code unternehmen", + "FullName": "Vollständiger Name", + "No invitation found yet!": "Noch keine Einladung gefunden!", + "InspectionResult": "Inspektionsergebnis", + "Criminal Record": "Strafregister", + "The email or phone number is already registered.": "Die E-Mail oder Telefonnummer ist bereits registriert.", + "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.": "Um ein Mitfahrfahrer in der Intaleq-App zu werden, müssen Sie Ihren Führerschein, Ihr Ausweisdokument und Ihr Fahrzeugregistrierungsdokument hochladen. Unser KI-System überprüft und verifiziert deren Authentizität in nur 2-3 Minuten. Wenn Ihre Dokumente genehmigt werden, können Sie als Fahrer in der Intaleq-App arbeiten. Bitte beachten Sie, dass die Einreichung betrügerischer Dokumente eine schwerwiegende Straftat darstellt und zu sofortiger Kündigung und rechtlichen Konsequenzen führen kann.", + "Documents check": "Dokumentenprüfung", + "Driver's License": "Führerschein", + "for your first registration!": "für Ihre erste Registrierung!", + "Get it Now!": "Holen Sie es sich jetzt!", + "before": "vor", + "Code not approved": "Code nicht genehmigt", + "3000 LE": "3000 LE", + "Do you have an invitation code from another driver?": "Haben Sie einen Einladungscode von einem anderen Fahrer?", + "Paste the code here": "Fügen Sie den Code hier ein", + "No, I don't have a code": "Nein, ich habe keinen Code", + "Audio uploaded successfully.": "Audio erfolgreich hochgeladen.", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfekt für Fahrgäste, die die neuesten Automodelle suchen und die Freiheit haben möchten, jede gewünschte Route zu wählen", + "Share this code with your friends and earn rewards when they use it!": "Teilen Sie diesen Code mit Ihren Freunden und verdienen Sie Belohnungen, wenn sie ihn verwenden!", + "Enter phone": "Telefon eingeben", + "complete, you can claim your gift": "abgeschlossen, Sie können Ihr Geschenk einfordern", + "When": "Wann", + "Enter driver's phone": "Fahrertelefon eingeben", + "Send Invite": "Einladung senden", + "Show Invitations": "Einladungen anzeigen", + "License Type": "Lizenztyp", + "National Number": "Nationale Nummer", + "Name (Arabic)": "Name (Arabisch)", + "Name (English)": "Name (Englisch)", + "Address": "Adresse", + "Issue Date": "Ausstellungsdatum", + "Expiry Date": "Ablaufdatum", + "License Categories": "Lizenzkategorien", + "driver_license": "Führerschein", + "Capture an Image of Your Driver License": "Machen Sie ein Bild Ihres Führerscheins", + "ID Documents Back": "Rückseite der Ausweisdokumente", + "National ID": "Nationale ID", + "Occupation": "Beruf", + "Religion": "Religion", + "Full Name (Marital)": "Vollständiger Name (Familienstand)", + "Expiration Date": "Ablaufdatum", + "Capture an Image of Your ID Document Back": "Machen Sie ein Bild der Rückseite Ihres Ausweisdokuments", + "ID Documents Front": "Vorderseite der Ausweisdokumente", + "First Name": "Vorname", + "CardID": "Karten-ID", + "Vehicle Details Front": "Fahrzeugdetails Vorderseite", + "Plate Number": "Nummernschild", + "Owner Name": "Name des Eigentümers", + "Vehicle Details Back": "Fahrzeugdetails Rückseite", + "Make": "Marke", + "Model": "Modell", + "Year": "Jahr", + "Chassis": "Chassis", + "Color": "Farbe", + "Displacement": "Hubraum", + "Fuel": "Kraftstoff", + "Tax Expiry Date": "Steuerablaufdatum", + "Inspection Date": "Inspektionsdatum", + "Capture an Image of Your car license back": "Machen Sie ein Bild der Rückseite Ihrer Fahrzeuglizenz", + "Capture an Image of Your Driver's License": "Foto vom Führerschein machen", + "Sign in with Google for easier email and name entry": "Melden Sie sich mit Google an, um E-Mail und Namen einfacher einzugeben", + "You will choose allow all the time to be ready receive orders": "Sie werden die Erlaubnis jederzeit erteilen, um bereit zu sein, Bestellungen zu empfangen", + "Get to your destination quickly and easily.": "Erreichen Sie Ihr Ziel schnell und einfach.", + "Enjoy a safe and comfortable ride.": "Genießen Sie eine sichere und komfortable Fahrt.", + "Choose Language": "Sprache auswählen", + "Pay with Wallet": "Mit Portemonnaie bezahlen", + "Invalid MPIN": "Ungültiger MPIN", + "Invalid OTP": "Ungültiger OTP", + "Enter your email address": "Geben Sie Ihre E-Mail-Adresse ein", + "Please enter Your Email.": "Bitte geben Sie Ihre E-Mail ein.", + "Enter your phone number": "Geben Sie Ihre Telefonnummer ein", + "Please enter your phone number.": "Bitte geben Sie Ihre Telefonnummer ein.", + "Please enter Your Password.": "Bitte geben Sie Ihr Passwort ein.", + "if you dont have account": "Wenn Sie kein Konto haben", + "Register": "Registrieren", + "Accept Ride's Terms & Review Privacy Notice": "Akzeptieren Sie die Nutzungsbedingungen und überprüfen Sie die Datenschutzerklärung", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Durch Auswahl von 'Ich stimme zu' bestätige ich, dass ich die Nutzungsbedingungen gelesen habe und ihnen zustimme sowie die Datenschutzerklärung zur Kenntnis genommen habe. Ich bin mindestens 18 Jahre alt.", + "First name": "Vorname", + "Enter your first name": "Geben Sie Ihren Vornamen ein", + "Please enter your first name.": "Bitte geben Sie Ihren Vornamen ein.", + "Last name": "Nachname", + "Enter your last name": "Geben Sie Ihren Nachnamen ein", + "Please enter your last name.": "Bitte geben Sie Ihren Nachnamen ein.", + "City": "Stadt", + "Please enter your City.": "Bitte geben Sie Ihre Stadt ein.", + "Verify Email": "E-Mail verifizieren", + "We sent 5 digit to your Email provided": "Wir haben einen 5-stelligen Code an die angegebene E-Mail gesendet", + "5 digit": "5-stellig", + "Send Verification Code": "Verifizierungscode senden", + "Your Ride Duration is ": "Ihre Fahrtdauer beträgt ", + "You will be thier in": "Sie werden dort sein in", + "You trip distance is": "Ihre Fahrtstrecke beträgt", + "Fee is": "Gebühr ist", + "From : ": "Von : ", + "To : ": "Nach : ", + "Add Promo": "Promotion hinzufügen", + "Confirm Selection": "Auswahl bestätigen", + "distance is": "Entfernung ist", + "Privacy Policy": "Datenschutzrichtlinie", + "Intaleq LLC": "Intaleq LLC", + "Syria'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.": "Syriens wegweisender Fahrtdienst, stolz entwickelt von arabischen und lokalen Eigentümern. Wir legen Wert darauf, nah bei Ihnen zu sein – sowohl bei unseren geschätzten Fahrgästen als auch bei unseren engagierten Kapitänen.", + "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 ist die erste Ridesharing-App in Syrien, die Sie mit den nächsten Fahrern verbindet, um ein schnelles und bequemes Reiseerlebnis zu ermöglichen.", + "Why Choose Intaleq?": "Warum Intaleq wählen?", + "Closest to You": "Am nächsten bei Ihnen", + "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.", + "Uncompromising Security": "Kompromisslose Sicherheit", + "Lady Captains Available": "Kapitäninnen verfügbar", + "Recorded Trips (Voice & AI Analysis)": "Aufgezeichnete Fahrten (Sprach- & KI-Analyse)", + "Fastest Complaint Response": "Schnellste Beschwerdeantwort", + "Our dedicated customer service team ensures swift resolution of any issues.": "Unser engagiertes Kundenservice-Team sorgt für eine schnelle Lösung aller Probleme.", + "Affordable for Everyone": "Erschwinglich für alle", + "Frequently Asked Questions": "Häufig gestellte Fragen", + "Getting Started": "Erste Schritte", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Öffnen Sie einfach die Intaleq-App, geben Sie Ihr Ziel ein und tippen Sie auf \"Fahrt anfordern\". Die App verbindet Sie mit einem nahegelegenen Fahrer.", + "Vehicle Options": "Fahrzeugoptionen", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq bietet eine Vielzahl von Optionen, darunter Economy, Komfort und Luxus, die Ihren Bedürfnissen und Ihrem Budget entsprechen.", + "Payments": "Zahlungen", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Sie können Ihre Fahrt mit Bargeld oder Kredit-/Debitkarte bezahlen. Sie können Ihre bevorzugte Zahlungsmethode vor der Bestätigung Ihrer Fahrt auswählen.", + "Ride Management": "Fahrtmanagement", + "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.", + "For Drivers": "Für Fahrer", + "Driver Registration": "Fahrerregistrierung", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Um sich als Fahrer zu registrieren oder mehr über die Anforderungen zu erfahren, besuchen Sie bitte unsere Website oder kontaktieren Sie den Intaleq-Support direkt.", + "Visit Website/Contact Support": "Website besuchen/Support kontaktieren", + "Close": "Schließen", + "We are searching for the nearest driver": "Wir suchen den nächstgelegenen Fahrer", + "Communication": "Kommunikation", + "How do I communicate with the other party (passenger/driver)?": "Wie kommuniziere ich mit der anderen Partei (Fahrgast/Fahrer)?", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Sie können mit Ihrem Fahrer oder Fahrgast über die In-App-Chat-Funktion kommunizieren, sobald eine Fahrt bestätigt ist.", + "Safety & Security": "Sicherheit & Schutz", + "What safety measures does Intaleq offer?": "Welche Sicherheitsmaßnahmen bietet Intaleq?", + "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 bietet verschiedene Sicherheitsfunktionen, darunter Fahrerverifizierung, In-App-Fahrtverfolgung, Notfallkontaktoptionen und die Möglichkeit, Ihren Fahrtstatus mit vertrauenswürdigen Kontakten zu teilen.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Genießen Sie wettbewerbsfähige Preise für alle Fahrtoptionen, die Reisen zugänglich machen.", + "Variety of Trip Choices": "Vielfalt der Fahrtoptionen", + "Choose the trip option that perfectly suits your needs and preferences.": "Wählen Sie die Fahrtoption, die perfekt zu Ihren Bedürfnissen und Vorlieben passt.", + "Your Choice, Our Priority": "Ihre Wahl, unsere Priorität", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Weil wir in der Nähe sind, haben Sie die Flexibilität, die Fahrt zu wählen, die am besten zu Ihnen passt.", + "duration is": "Dauer ist", + "Setting": "Einstellung", + "Find answers to common questions": "Finden Sie Antworten auf häufig gestellte Fragen", + "I don't need a ride anymore": "Ich brauche keine Fahrt mehr", + "I was just trying the application": "Ich habe die Anwendung nur ausprobiert", + "No driver accepted my request": "Kein Fahrer hat meine Anfrage angenommen", + "I added the wrong pick-up/drop-off location": "Ich habe den falschen Abhol-/Absetzort hinzugefügt", + "I don't have a reason": "Ich habe keinen Grund", + "Can we know why you want to cancel Ride ?": "Können wir erfahren, warum Sie die Fahrt stornieren möchten?", + "Add Payment Method": "Zahlungsmethode hinzufügen", + "Ride Wallet": "Fahrt-Portemonnaie", + "Payment Method": "Zahlungsmethode", + "Type here Place": "Geben Sie hier den Ort ein", + "Are You sure to ride to": "Sind Sie sicher, dass Sie fahren möchten nach", + "Confirm": "Bestätigen", + "You are Delete": "Sie löschen", + "Deleted": "Gelöscht", + "You Dont Have Any places yet !": "Sie haben noch keine Orte!", + "From : Current Location": "Von : Aktueller Standort", + "My Cared": "Meine Karten", + "Add Card": "Karte hinzufügen", + "Add Credit Card": "Kreditkarte hinzufügen", + "Please enter the cardholder name": "Bitte geben Sie den Namen des Karteninhabers ein", + "Please enter the expiry date": "Bitte geben Sie das Ablaufdatum ein", + "Please enter the CVV code": "Bitte geben Sie den CVV-Code ein", + "Go To Favorite Places": "Zu Lieblingsorten gehen", + "Go to this Target": "Gehen Sie zu diesem Ziel", + "My Profile": "Mein Profil", + "Are you want to go to this site": "Möchten Sie zu dieser Seite gehen?", + "MyLocation": "Mein Standort", + "my location": "mein Standort", + "Target": "Ziel", + "You Should choose rate figure": "Sie sollten eine Bewertungszahl auswählen", + "Login Captin": "Kapitän anmelden", + "Register Captin": "Kapitän registrieren", + "Send Verfication Code": "Verifizierungscode senden", + "KM": "KM", + "End Ride": "Fahrt beenden", + "Minute": "Minute", + "Go to passenger Location now": "Gehen Sie jetzt zum Standort des Fahrgasts", + "Duration of the Ride is ": "Die Dauer der Fahrt beträgt ", + "Distance of the Ride is ": "Die Entfernung der Fahrt beträgt ", + "Name of the Passenger is ": "Der Name des Fahrgasts ist ", + "Hello this is Captain": "Hallo, das ist Kapitän", + "Start the Ride": "Fahrt starten", + "Please Wait If passenger want To Cancel!": "Bitte warten Sie, wenn der Fahrgast stornieren möchte!", + "Total Duration:": "Gesamtdauer:", + "Active Duration:": "Aktive Dauer:", + "Waiting for Captin ...": "Warten auf Kapitän ...", + "Age is ": "Alter ist ", + "Rating is ": "Bewertung ist ", + " to arrive you.": "um zu Ihnen zu gelangen.", + "Tariff": "Tarif", + "Settings": "Einstellungen", + "Feed Back": "Feedback", + "Please enter a valid 16-digit card number": "Bitte geben Sie eine gültige 16-stellige Kartennummer ein", + "Add Phone": "Telefon hinzufügen", + "Please enter a phone number": "Bitte geben Sie eine Telefonnummer ein", + "You dont Add Emergency Phone Yet!": "Sie haben noch kein Notfalltelefon hinzugefügt!", + "You will arrive to your destination after ": "Sie werden nach ", + "You can cancel Ride now": "Sie können die Fahrt jetzt stornieren", + "You Can cancel Ride After Captain did not come in the time": "Sie können die Fahrt stornieren, wenn der Kapitän nicht rechtzeitig gekommen ist", + "If you in Car Now. Press Start The Ride": "Wenn Sie jetzt im Auto sind. Drücken Sie Fahrt starten", + "You Dont Have Any amount in": "Sie haben keinen Betrag in", + "Wallet!": "Portemonnaie!", + "You Have": "Sie haben", + "Save Credit Card": "Kreditkarte speichern", + "Show Promos": "Promotionen anzeigen", + "10 and get 4% discount": "10 und erhalten Sie 4% Rabatt", + "20 and get 6% discount": "20 und erhalten Sie 6% Rabatt", + "40 and get 8% discount": "40 und erhalten Sie 8% Rabatt", + "100 and get 11% discount": "100 und erhalten Sie 11% Rabatt", + "Pay with Your PayPal": "Mit Ihrem PayPal bezahlen", + "You will choose one of above !": "Sie werden eines der oben genannten auswählen!", + "Edit Profile": "Profil bearbeiten", + "Copy this Promo to use it in your Ride!": "Kopieren Sie diese Promotion, um sie in Ihrer Fahrt zu verwenden!", + "To change some Settings": "Um einige Einstellungen zu ändern", + "Order Request Page": "Bestellanfrageseite", + "Rouats of Trip": "Routen der Fahrt", + "Passenger Name is ": "Fahrgastname ist ", + "Total From Passenger is ": "Gesamtbetrag vom Fahrgast ist ", + "Duration To Passenger is ": "Dauer bis zum Fahrgast ist ", + "Distance To Passenger is ": "Entfernung bis zum Fahrgast ist ", + "Total For You is ": "Gesamtbetrag für Sie ist ", + "Distance is ": "Entfernung ist ", + " KM": " KM", + "Duration of Trip is ": "Dauer der Fahrt ist ", + " Minutes": " Minuten", + "Apply Order": "Bestellung anwenden", + "Refuse Order": "Bestellung ablehnen", + "Rate Captain": "Kapitän bewerten", + "Enter your Note": "Geben Sie Ihre Notiz ein", + "Type something...": "Geben Sie etwas ein...", + "Submit rating": "Bewertung abschicken", + "Rate Passenger": "Fahrgast bewerten", + "Ride Summary": "Fahrtzusammenfassung", + "welcome_message": "Willkommen bei Intaleq!", + "app_description": "Intaleq ist eine zuverlässige, sichere und zugängliche Mitfahr-App.", + "get_to_destination": "Erreichen Sie Ihr Ziel schnell und einfach.", + "get_a_ride": "Mit Intaleq können Sie in wenigen Minuten an Ihr Ziel gelangen.", + "safe_and_comfortable": "Genießen Sie eine sichere und komfortable Fahrt.", + "committed_to_safety": "Intaleq setzt sich für Sicherheit ein, und alle unsere Kapitäne werden sorgfältig überprüft.", + "your ride is Accepted": "Ihre Fahrt wurde angenommen", + "Driver is waiting at pickup.": "Der Fahrer wartet am Abholpunkt.", + "Driver is on the way": "Der Fahrer ist unterwegs", + "Contact Options": "Kontaktoptionen", + "Send a custom message": "Benutzerdefinierte Nachricht senden", + "Type your message": "Geben Sie Ihre Nachricht ein", + "I will go now": "Ich werde jetzt gehen", + "You Have Tips": "Sie haben Trinkgeld", + " tips\\nTotal is": " Trinkgeld\\nGesamtbetrag ist", + "Your fee is ": "Ihre Gebühr ist ", + "Do you want to pay Tips for this Driver": "Möchten Sie Trinkgeld für diesen Fahrer bezahlen?", + "Tip is ": "Trinkgeld ist ", + "Are you want to wait drivers to accept your order": "Möchten Sie warten, bis Fahrer Ihre Bestellung annehmen?", + "This price is fixed even if the route changes for the driver.": "Dieser Preis ist fest, auch wenn sich die Route für den Fahrer ändert.", + "The price may increase if the route changes.": "Der Preis kann steigen, wenn sich die Route ändert.", + "The captain is responsible for the route.": "Der Kapitän ist für die Route verantwortlich.", + "We are search for nearst driver": "Wir suchen den nächstgelegenen Fahrer", + "Your order is being prepared": "Ihre Bestellung wird vorbereitet", + "The drivers are reviewing your request": "Die Fahrer überprüfen Ihre Anfrage", + "Your order sent to drivers": "Ihre Bestellung wurde an die Fahrer gesendet", + "You can call or record audio of this trip": "Sie können anrufen oder das Audio dieser Fahrt aufnehmen", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Die Fahrt hat begonnen! Zögern Sie nicht, Notrufnummern zu kontaktieren, Ihre Fahrt zu teilen oder die Sprachaufzeichnung für die Reise zu aktivieren", + "Camera Access Denied.": "Kamerazugriff verweigert.", + "Open Settings": "Einstellungen öffnen", + "GPS Required Allow !.": "GPS erforderlich, erlauben!.", + "Your Account is Deleted": "Ihr Konto wurde gelöscht", + "Are you sure to delete your account?": "Sind Sie sicher, dass Sie Ihr Konto löschen möchten?", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Ihre Daten werden nach 2 Wochen gelöscht\\nUnd Sie können die App nach 1 Monat nicht mehr verwenden ", + "Enter Your First Name": "Geben Sie Ihren Vornamen ein", + "Are you Sure to LogOut?": "Sind Sie sicher, dass Sie sich abmelden möchten?", + "Email Wrong": "E-Mail falsch", + "Email you inserted is Wrong.": "Die von Ihnen eingegebene E-Mail ist falsch.", + "You have finished all times ": "Sie haben alle Zeiten beendet ", + "if you want help you can email us here": "Wenn Sie Hilfe benötigen, können Sie uns hier eine E-Mail senden", + "Thanks": "Danke", + "Email Us": "Senden Sie uns eine E-Mail", + "I cant register in your app in face detection ": "Ich kann mich in Ihrer App nicht mit Gesichtserkennung registrieren ", + "Hi": "Hallo", + "No face detected": "Kein Gesicht erkannt", + "Image detecting result is ": "Das Ergebnis der Bilderkennung ist ", + "from 3 times Take Attention": "von 3 Malen, achten Sie darauf", + "Be sure for take accurate images please\\nYou have": "Bitte achten Sie darauf, genaue Bilder aufzunehmen\\nSie haben", + "image verified": "Bild verifiziert", + "Next": "Weiter", + "There is no help Question here": "Hier gibt es keine Hilfefrage", + "You dont have Points": "Sie haben keine Punkte", + "You Are Stopped For this Day !": "Sie sind für diesen Tag gestoppt!", + "You must be charge your Account": "Sie müssen Ihr Konto aufladen", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Sie haben 3 Fahrten an diesem Tag abgelehnt, das ist der Grund \\nBis morgen!", + "Recharge my Account": "Mein Konto aufladen", + "Ok , See you Tomorrow": "Ok, bis morgen", + "You are Stopped": "Sie sind gestoppt", + "Connected": "Verbunden", + "Not Connected": "Nicht verbunden", + "Your are far from passenger location": "Sie sind weit vom Standort des Fahrgasts entfernt", + "go to your passenger location before\\nPassenger cancel trip": "gehen Sie zum Standort des Fahrgasts, bevor\\n der Fahrgast die Fahrt storniert", + "You will get cost of your work for this trip": "Sie erhalten die Kosten für Ihre Arbeit für diese Fahrt", + " in your wallet": "in Ihrem Portemonnaie", + "you gain": "Sie erhalten", + "Order Cancelled by Passenger": "Bestellung vom Fahrgast storniert", + "Feedback data saved successfully": "Feedback-Daten erfolgreich gespeichert", + "No Promo for today .": "Keine Promotion für heute.", + "Select your destination": "Wählen Sie Ihr Ziel aus", + "Search for your Start point": "Suchen Sie Ihren Startpunkt", + "Search for waypoint": "Wegpunkt suchen", + "Current Location": "Aktueller Standort", + "Add Location 1": "Standort 1 hinzufügen", + "You must Verify email !.": "Sie müssen die E-Mail verifizieren!.", + "Cropper": "Zuschneider", + "Saved Sucssefully": "Erfolgreich gespeichert", + "Select Date": "Datum auswählen", + "Birth Date": "Geburtsdatum", + "Ok": "Ok", + "the 500 points equal 30 JOD": "500 Punkte entsprechen 30 JOD", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "500 Punkte entsprechen 30 JOD für Sie \\nAlso los, verdienen Sie Ihr Geld", + "token updated": "Token aktualisiert", + "Add Location 2": "Standort 2 hinzufügen", + "Add Location 3": "Standort 3 hinzufügen", + "Add Location 4": "Standort 4 hinzufügen", + "Waiting for your location": "Warten auf Ihren Standort", + "Search for your destination": "Suchen Sie Ihr Ziel", + "Hi! This is": "Hallo! Das ist", + " I am using": " ich benutze", + " to ride with": " um mitzufahren", + " as the driver.": " als Fahrer.", + "is driving a ": "fährt ein ", + " with license plate ": " mit dem Nummernschild ", + " I am currently located at ": "Ich befinde mich derzeit an ", + "Please go to Car now ": "Bitte gehen Sie jetzt zum Auto ", + "You will receive a code in WhatsApp Messenger": "Sie erhalten einen Code in WhatsApp Messenger", + "If you need assistance, contact us": "Wenn Sie Hilfe benötigen, kontaktieren Sie uns", + "Promo Ended": "Promotion beendet", + "Enter the promo code and get": "Geben Sie den Promo-Code ein und erhalten Sie", + "DISCOUNT": "RABATT", + "No wallet record found": "Kein Portemonnaie-Eintrag gefunden", + "for": "für", + "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 ist die sicherste Mitfahr-App, die viele Funktionen für sowohl Kapitäne als auch Fahrgäste einführt. Wir bieten die niedrigste Kommissionsrate von nur 8%, um sicherzustellen, dass Sie den besten Wert für Ihre Fahrten erhalten. Unsere App beinhaltet Versicherungen für die besten Kapitäne, regelmäßige Wartung der Autos durch Top-Ingenieure und Dienstleistungen vor Ort, um ein respektvolles und hochwertiges Erlebnis für alle Nutzer zu gewährleisten.", + "You can contact us during working hours from 12:00 - 19:00.": "Sie können uns während der Arbeitszeiten von 12:00 - 19:00 Uhr kontaktieren.", + "Choose a contact option": "Wählen Sie eine Kontaktoption", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Die Arbeitszeit ist von 12:00 - 19:00 Uhr.\\nSie können eine WhatsApp-Nachricht oder E-Mail senden.", + "Promo code copied to clipboard!": "Promo-Code in die Zwischenablage kopiert!", + "Copy Code": "Code kopieren", + "Your invite code was successfully applied!": "Ihr Einladungscode wurde erfolgreich angewendet!", + "Payment Options": "Zahlungsoptionen", + "wait 1 minute to receive message": "Warten Sie 1 Minute, um die Nachricht zu erhalten", + "You have copied the promo code.": "Sie haben den Promo-Code kopiert.", + "Select Payment Amount": "Zahlungsbetrag auswählen", + "The promotion period has ended.": "Die Promotionsperiode ist beendet.", + "Promo Code Accepted": "Promo-Code akzeptiert", + "Tap on the promo code to copy it!": "Tippen Sie auf den Promo-Code, um ihn zu kopieren!", + "Lowest Price Achieved": "Niedrigster Preis erreicht", + "Cannot apply further discounts.": "Weitere Rabatte können nicht angewendet werden.", + "Promo Already Used": "Promotion bereits verwendet", + "Invitation Used": "Einladung verwendet", + "You have already used this promo code.": "Sie haben diesen Promo-Code bereits verwendet.", + "Insert Your Promo Code": "Geben Sie Ihren Promo-Code ein", + "Enter promo code here": "Geben Sie den Promo-Code hier ein", + "Please enter a valid promo code": "Bitte geben Sie einen gültigen Promo-Code ein", + "Awfar Car": "Awfar Auto", + "Old and affordable, perfect for budget rides.": "Alt und erschwinglich, perfekt für preiswerte Fahrten.", + " If you need to reach me, please contact the driver directly at": " Wenn Sie mich erreichen müssen, kontaktieren Sie bitte den Fahrer direkt unter", + "No Car or Driver Found in your area.": "Kein Auto oder Fahrer in Ihrer Region gefunden.", + "Please Try anther time ": "Bitte versuchen Sie es zu einem anderen Zeitpunkt ", + "There no Driver Aplly your order sorry for that ": "Es hat kein Fahrer Ihre Bestellung angenommen, tut uns leid ", + "Trip Cancelled": "Fahrt storniert", + "The Driver Will be in your location soon .": "Der Fahrer wird bald an Ihrem Standort sein .", + "The distance less than 500 meter.": "Die Entfernung beträgt weniger als 500 Meter.", + "Promo End !": "Promotion beendet!", + "There is no notification yet": "Es gibt noch keine Benachrichtigung", + "Use Touch ID or Face ID to confirm payment": "Verwenden Sie Touch ID oder Face ID, um die Zahlung zu bestätigen", + "Contact us for any questions on your order.": "Kontaktieren Sie uns bei Fragen zu Ihrer Bestellung.", + "Pyament Cancelled .": "Zahlung storniert .", + "type here": "hier eingeben", + "Scan Driver License": "Führerschein scannen", + "Please put your licence in these border": "Bitte legen Sie Ihren Führerschein in diesen Rahmen", + "Camera not initialized yet": "Kamera noch nicht initialisiert", + "Take Image": "Bild aufnehmen", + "AI Page": "KI-Seite", + "Take Picture Of ID Card": "Machen Sie ein Bild Ihres Ausweises", + "Take Picture Of Driver License Card": "Machen Sie ein Bild Ihrer Führerscheinkarte", + "We are process picture please wait ": "Wir verarbeiten das Bild, bitte warten Sie ", + "There is no data yet.": "Es gibt noch keine Daten.", + "Name :": "Name :", + "Drivers License Class: ": "Führerscheinklasse: ", + "Document Number: ": "Dokumentennummer: ", + "Address: ": "Adresse: ", + "Height: ": "Größe: ", + "Expiry Date: ": "Ablaufdatum: ", + "Date of Birth: ": "Geburtsdatum: ", + "You can't continue with us .\\nYou should renew Driver license": "Sie können nicht mit uns fortfahren.\\nSie sollten Ihren Führerschein erneuern", + "Detect Your Face ": "Erkennen Sie Ihr Gesicht ", + "Go to next step\\nscan Car License.": "Gehen Sie zum nächsten Schritt\\nscannen Sie die Fahrzeuglizenz.", + "Name in arabic": "Name auf Arabisch", + "Drivers License Class": "Führerscheinklasse", + "Selected Date": "Ausgewähltes Datum", + "Select Time": "Zeit auswählen", + "Selected Time": "Ausgewählte Zeit", + "Selected Date and Time": "Ausgewähltes Datum und Uhrzeit", + "Lets check Car license ": "Lassen Sie uns die Fahrzeuglizenz überprüfen ", + "Car": "Auto", + "Plate": "Nummernschild", + "Rides": "Fahrten", + "Selected driver": "Ausgewählter Fahrer", + "Lets check License Back Face": "Lassen Sie uns die Rückseite des Führerscheins überprüfen", + "Car License Card": "Fahrzeuglizenzkarte", + "No image selected yet": "Noch kein Bild ausgewählt", + "Made :": "Hergestellt :", + "model :": "Modell :", + "VIN :": "Fahrgestellnummer :", + "year :": "Jahr :", + "ُExpire Date": "Ablaufdatum", + "Login Driver": "Fahrer anmelden", + "Password must br at least 6 character.": "Das Passwort muss mindestens 6 Zeichen lang sein.", + "if you don't have account": "wenn Sie kein Konto haben", + "Here recorded trips audio": "Hier sind die Audioaufnahmen der Fahrten", + "Register as Driver": "Als Fahrer registrieren", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Durch die Auswahl von \"Ich stimme zu\" bestätige ich, dass ich die Nutzungsbedingungen gelesen und akzeptiert habe und die ", + "Log Out Page": "Abmeldeseite", + "Log Off": "Abmelden", + "Register Driver": "Fahrer registrieren", + "Verify Email For Driver": "E-Mail für Fahrer verifizieren", + "Admin DashBoard": "Admin-Dashboard", + "Your name": "Ihr Name", + "your ride is applied": "Ihre Fahrt wurde übernommen", + "H and": "Stunden und", + "JOD": "JOD", + "m": "Minuten", + "We search nearst Driver to you": "Wir suchen den nächstgelegenen Fahrer für Sie", + "please wait till driver accept your order": "Bitte warten Sie, bis der Fahrer Ihre Bestellung annimmt", + "No accepted orders? Try raising your trip fee to attract riders.": "Keine angenommenen Bestellungen? Versuchen Sie, Ihre Fahrpreise zu erhöhen, um Fahrer anzulocken.", + "You should select one": "Sie sollten eines auswählen", + "The driver accept your order for": "Der Fahrer hat Ihre Bestellung für", + "The driver on your way": "Der Fahrer ist auf dem Weg zu Ihnen", + "Total price from ": "Gesamtpreis ab ", + "Order Details Intaleq": "Bestelldetails Geschwindigkeit", + "Selected file:": "Ausgewählte Datei:", + "Your trip cost is": "Ihre Fahrtkosten betragen", + "this will delete all files from your device": "Dadurch werden alle Dateien von Ihrem Gerät gelöscht", + "Exclusive offers and discounts always with the Intaleq app": "Exklusive Angebote und Rabatte immer mit der Intaleq-App", + "Submit Question": "Frage einreichen", + "Please enter your Question.": "Bitte geben Sie Ihre Frage ein.", + "Help Details": "Hilfedetails", + "No trip yet found": "Noch keine Fahrt gefunden", + "No Response yet.": "Noch keine Antwort.", + " You Earn today is ": " Sie haben heute verdient ", + " You Have in": " Sie haben in", + "Total points is ": "Die Gesamtpunktzahl beträgt ", + "Total Connection Duration:": "Gesamte Verbindungsdauer:", + "Passenger name : ": "Fahrgastname : ", + "Cost Of Trip IS ": "Die Fahrtkosten betragen ", + "Arrival time": "Ankunftszeit", + "arrival time to reach your point": "Ankunftszeit, um Ihren Punkt zu erreichen", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Für Schnell- und Rollerfahrten wird der Preis dynamisch berechnet. Für Komfortfahrten basiert der Preis auf Zeit und Entfernung.", + "Hello this is Driver": "Hallo, das ist der Fahrer", + "Is the Passenger in your Car ?": "Ist der Fahrgast in Ihrem Auto?", + "Please wait for the passenger to enter the car before starting the trip.": "Bitte warten Sie, bis der Fahrgast ins Auto steigt, bevor Sie die Fahrt starten.", + "No ,still Waiting.": "Nein, noch warten.", + "I arrive you": "Ich komme zu Ihnen", + "I Arrive your site": "Ich bin an Ihrem Standort angekommen", + "You are not in near to passenger location": "Sie sind nicht in der Nähe des Standorts des Fahrgasts", + "please go to picker location exactly": "Bitte gehen Sie genau zum Abholort", + "You Can Cancel Trip And get Cost of Trip From": "Sie können die Fahrt stornieren und die Fahrtkosten von", + "Are you sure to cancel?": "Sind Sie sicher, dass Sie stornieren möchten?", + "Insert Emergincy Number": "Notrufnummer einfügen", + "Best choice for comfort car and flexible route and stops point": "Beste Wahl für ein komfortables Auto und eine flexible Route mit Haltepunkten", + "Insert": "Einfügen", + "This is for scooter or a motorcycle.": "Dies ist für einen Roller oder ein Motorrad.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Diese Fahrt geht direkt von Ihrem Startpunkt zu Ihrem Ziel für einen festen Preis. Der Fahrer muss der geplanten Route folgen.", + "You can decline a request without any cost": "Sie können eine Anfrage ohne Kosten ablehnen", + "Perfect for adventure seekers who want to experience something new and exciting": "Perfekt für Abenteurer, die etwas Neues und Aufregendes erleben möchten", + "My current location is:": "Mein aktueller Standort ist:", + "and I have a trip on": "und ich habe eine Fahrt am", + "App with Passenger": "App mit Fahrgast", + "You will be pay the cost to driver or we will get it from you on next trip": "Sie werden die Kosten an den Fahrer zahlen oder wir werden sie bei der nächsten Fahrt von Ihnen einziehen", + "Trip has Steps": "Die Fahrt hat Schritte", + "Distance from Passenger to destination is ": "Die Entfernung vom Fahrgast zum Ziel beträgt ", + "price is": "Preis ist", + "This ride type does not allow changes to the destination or additional stops": "Dieser Fahrttyp erlaubt keine Änderungen des Ziels oder zusätzliche Stopps", + "This price may be changed": "Dieser Preis kann geändert werden", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Keine SIM-Karte, kein Problem! Rufen Sie Ihren Fahrer direkt über unsere App an. Wir verwenden fortschrittliche Technologie, um Ihre Privatsphäre zu gewährleisten.", + "This ride type allows changes, but the price may increase": "Dieser Fahrttyp erlaubt Änderungen, aber der Preis kann steigen", + "Select one message": "Wählen Sie eine Nachricht", + "I'm waiting for you": "Ich warte auf Sie", + "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.": "Wir haben festgestellt, dass die Geschwindigkeit 100 km/h überschreitet. Bitte verlangsamen Sie für Ihre Sicherheit. Wenn Sie sich unsicher fühlen, können Sie Ihre Fahrtdetails mit einem Kontakt teilen oder die Polizei über die rote SOS-Taste anrufen.", + "Warning: Intaleqing detected!": "Warnung: Geschwindigkeitsüberschreitung erkannt!", + "Please help! Contact me as soon as possible.": "Bitte helfen Sie! Kontaktieren Sie mich so schnell wie möglich.", + "Share Trip Details": "Fahrtdetails teilen", + "Car Plate is ": "Das Nummernschild ist ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 Punkte entsprechen 300 L.E für Sie \\nAlso los, verdienen Sie Ihr Geld", + "the 300 points equal 300 L.E": "300 Punkte entsprechen 300 L.E", + "The payment was not approved. Please try again.": "Die Zahlung wurde nicht genehmigt. Bitte versuchen Sie es erneut.", + "Payment Failed": "Zahlung fehlgeschlagen", + "This is a scheduled notification.": "Dies ist eine geplante Benachrichtigung.", + "An error occurred during the payment process.": "Während des Zahlungsvorgangs ist ein Fehler aufgetreten.", + "The payment was approved.": "Die Zahlung wurde genehmigt.", + "Payment Successful": "Zahlung erfolgreich", + "No ride found yet": "Noch keine Fahrt gefunden", + "Accept Order": "Bestellung annehmen", + "Bottom Bar Example": "Beispiel für die untere Leiste", + "Driver phone": "Fahrertelefon", + "Statistics": "Statistiken", + "Origin": "Ursprung", + "Destination": "Ziel", + "Driver Name": "Fahrername", + "Driver Car Plate": "Fahrer-Nummernschild", + "Available for rides": "Verfügbar für Fahrten", + "Scan Id": "ID scannen", + "Camera not initilaized yet": "Kamera noch nicht initialisiert", + "Scan ID MklGoogle": "ID MklGoogle scannen", + "Language": "Sprache", + "Jordan": "Jordanien", + "USA": "USA", + "Egypt": "Ägypten", + "Turkey": "Türkei", + "Saudi Arabia": "Saudi-Arabien", + "Qatar": "Katar", + "Bahrain": "Bahrain", + "Kuwait": "Kuwait", + "But you have a negative salary of": "Aber Sie haben ein negatives Gehalt von", + "Promo Code": "Promo-Code", + "Your trip distance is": "Ihre Fahrtstrecke beträgt", + "Enter promo code": "Promo-Code eingeben", + "You have promo!": "Sie haben eine Promotion!", + "Cost Duration": "Kostendauer", + "Duration is": "Dauer ist", + "Leave": "Verlassen", + "Join": "Beitreten", + "Heading your way now. Please be ready.": "Jetzt auf dem Weg zu Ihnen. Bitte seien Sie bereit.", + "Approaching your area. Should be there in 3 minutes.": "Nähern Sie sich Ihrem Gebiet. Sollte in 3 Minuten da sein.", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Hier herrscht starker Verkehr. Können Sie einen alternativen Abholpunkt vorschlagen?", + "This ride is already taken by another driver.": "Diese Fahrt wurde bereits von einem anderen Fahrer übernommen.", + "You Should be select reason.": "Sie sollten einen Grund auswählen.", + "Waiting for Driver ...": "Warten auf Fahrer ...", + "Latest Recent Trip": "Letzte kürzliche Fahrt", + "from your list": "aus Ihrer Liste", + "Do you want to change Work location": "Möchten Sie den Arbeitsort ändern?", + "Do you want to change Home location": "Möchten Sie den Wohnort ändern?", + "We Are Sorry That we dont have cars in your Location!": "Es tut uns leid, dass wir keine Autos in Ihrer Region haben!", + "Choose from Map": "Aus der Karte auswählen", + "Pick your ride location on the map - Tap to confirm": "Wählen Sie Ihren Fahrtort auf der Karte aus - Tippen Sie, um zu bestätigen", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq ist die Mitfahr-App, die sicher, zuverlässig und zugänglich ist.", + "With Intaleq, you can get a ride to your destination in minutes.": "Mit Intaleq können Sie in wenigen Minuten eine Fahrt zu Ihrem Ziel bekommen.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq setzt sich für Sicherheit ein, und alle unsere Kapitäne werden sorgfältig überprüft.", + "Pick from map": "Aus der Karte auswählen", + "No Car in your site. Sorry!": "Kein Auto in Ihrer Region. Entschuldigung!", + "Nearest Car for you about ": "Nächstes Auto für Sie in etwa ", + "From :": "Von :", + "Get Details of Trip": "Fahrtdetails erhalten", + "If you want add stop click here": "Wenn Sie einen Stopp hinzufügen möchten, klicken Sie hier", + "Where you want go ": "Wohin Sie gehen möchten ", + "My Card": "Meine Karte", + "Start Record": "Aufnahme starten", + "History of Trip": "Fahrtverlauf", + "Helping Center": "Hilfezentrum", + "Record saved": "Aufnahme gespeichert", + "Trips recorded": "Fahrten aufgezeichnet", + "Select Your Country": "Wählen Sie Ihr Land aus", + "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.", + "Are you sure to delete recorded files": "Sind Sie sicher, dass Sie die aufgezeichneten Dateien löschen möchten?", + "Select recorded trip": "Aufgezeichnete Fahrt auswählen", + "Card Number": "Kartennummer", + "Hi, Where to ": "Hallo, wohin ", + "Pick your destination from Map": "Wählen Sie Ihr Ziel aus der Karte aus", + "Add Stops": "Stopps hinzufügen", + "Get Direction": "Route erhalten", + "Add Location": "Standort hinzufügen", + "Switch Rider": "Fahrgast wechseln", + "You will arrive to your destination after timer end.": "Sie werden nach Ablauf des Timers an Ihrem Ziel ankommen.", + "You can cancel trip": "Sie können die Fahrt stornieren", + "The driver waitting you in picked location .": "Der Fahrer wartet an dem ausgewählten Ort auf Sie .", + "Pay with Your": "Bezahlen Sie mit Ihrem", + "Pay with Credit Card": "Mit Kreditkarte bezahlen", + "Show Promos to Charge": "Promotionen zum Aufladen anzeigen", + "Point": "Punkt", + "How many hours would you like to wait?": "Wie viele Stunden möchten Sie warten?", + "Driver Wallet": "Fahrer-Portemonnaie", + "Choose between those Type Cars": "Wählen Sie zwischen diesen Autotypen", + "hour": "Stunde", + "Select Waiting Hours": "Wartezeit auswählen", + "Total Points is": "Die Gesamtpunktzahl beträgt", + "You will receive a code in SMS message": "Sie erhalten einen Code per SMS", + "Done": "Fertig", + "Total Budget from trips is ": "Das Gesamtbudget aus Fahrten beträgt ", + "Total Amount:": "Gesamtbetrag:", + "Total Budget from trips by\\nCredit card is ": "Das Gesamtbudget aus Fahrten per\\nKreditkarte beträgt ", + "This amount for all trip I get from Passengers": "Dieser Betrag für alle Fahrten, die ich von Fahrgästen erhalte", + "Pay from my budget": "Aus meinem Budget bezahlen", + "This amount for all trip I get from Passengers and Collected For me in": "Dieser Betrag für alle Fahrten, die ich von Fahrgästen erhalte und für mich gesammelt habe in", + "You can buy points from your budget": "Sie können Punkte aus Ihrem Budget kaufen", + "insert amount": "Betrag einfügen", + "You can buy Points to let you online\\nby this list below": "Sie können Punkte kaufen, um online zu gehen\\nmit dieser Liste unten", + "Create Wallet to receive your money": "Erstellen Sie ein Portemonnaie, um Ihr Geld zu erhalten", + "Enter your feedback here": "Geben Sie Ihr Feedback hier ein", + "Please enter your feedback.": "Bitte geben Sie Ihr Feedback ein.", + "Feedback": "Feedback", + "Submit ": "Einreichen ", + "Click here to Show it in Map": "Klicken Sie hier, um es auf der Karte anzuzeigen", + "Canceled": "Storniert", + "No I want": "Nein, ich möchte", + "Email is": "E-Mail ist", + "Phone Number is": "Telefonnummer ist", + "Date of Birth is": "Geburtsdatum ist", + "Sex is ": "Geschlecht ist ", + "Car Details": "Autodetails", + "VIN is": "Fahrgestellnummer ist", + "Color is ": "Farbe ist ", + "Make is ": "Marke ist ", + "Model is": "Modell ist", + "Year is": "Jahr ist", + "Expiration Date ": "Ablaufdatum ", + "Edit Your data": "Bearbeiten Sie Ihre Daten", + "write vin for your car": "Geben Sie die Fahrgestellnummer Ihres Autos ein", + "VIN": "Fahrgestellnummer", + "Please verify your identity": "Bitte verifizieren Sie Ihre Identität", + "write Color for your car": "Geben Sie die Farbe Ihres Autos ein", + "write Make for your car": "Geben Sie die Marke Ihres Autos ein", + "write Model for your car": "Geben Sie das Modell Ihres Autos ein", + "write Year for your car": "Geben Sie das Jahr Ihres Autos ein", + "write Expiration Date for your car": "Geben Sie das Ablaufdatum Ihres Autos ein", + "Tariffs": "Tarife", + "Minimum fare": "Mindesttarif", + "Maximum fare": "Höchsttarif", + "Flag-down fee": "Grundpreis", + "Including Tax": "Inklusive Steuer", + "BookingFee": "Buchungsgebühr", + "Morning": "Morgen", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "von 07:30 bis 10:30 (Donnerstag, Freitag, Samstag, Montag)", + "Evening": "Abend", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "von 12:00 bis 15:00 (Donnerstag, Freitag, Samstag, Montag)", + "Night": "Nacht", + "You have in account": "Sie haben auf dem Konto", + "Select Country": "Land auswählen", + "Ride Today : ": "Fahrt heute : ", + "from 23:59 till 05:30": "von 23:59 bis 05:30", + "Rate Driver": "Fahrer bewerten", + "Total Cost is ": "Die Gesamtkosten betragen ", + "Write note": "Notiz schreiben", + "Time to arrive": "Ankunftszeit", + "Ride Summaries": "Fahrtzusammenfassungen", + "Total Cost": "Gesamtkosten", + "Average of Hours of": "Durchschnitt der Stunden von", + " is ON for this month": " ist diesen Monat aktiviert", + "Days": "Tage", + "Total Hours on month": "Gesamtstunden im Monat", + "Counts of Hours on days": "Anzahl der Stunden pro Tag", + "OrderId": "Bestell-ID", + "created time": "Erstellungszeit", + "Intaleq Over": "Geschwindigkeitsüberschreitung", + "I will slow down": "Ich werde langsamer fahren", + "Map Passenger": "Karte Fahrgast", + "Be Slowly": "Langsam sein", + "If you want to make Google Map App run directly when you apply order": "Wenn Sie möchten, dass die Google Map App direkt ausgeführt wird, wenn Sie eine Bestellung aufgeben", + "You can change the language of the app": "Sie können die Sprache der App ändern", + "Your Budget less than needed": "Ihr Budget ist geringer als benötigt", + "You can change the Country to get all features": "Sie können das Land ändern, um alle Funktionen zu erhalten", + "There is no Car or Driver in your area.": "In Ihrer Region gibt es kein Auto oder Fahrer.", + "Change Country": "Land ändern" + }, + "es": { + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "¡Después de este período\\nno puedes cancelar!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "¡Hola! Te invito a probar Intaleq.", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "Siria", + "SYP": "SYP", + "Order": "Pedido", + "OrderVIP": "Pedido VIP", + "Cancel Trip": "Cancelar viaje", + "Passenger Cancel Trip": "El pasajero canceló el viaje", + "VIP Order": "Pedido VIP", + "The driver accepted your trip": "El conductor aceptó su viaje", + "message From passenger": "Mensaje del pasajero", + "Cancel": "Cancelar", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Viaje cancelado. El costo del viaje se añadirá a tu billetera.", + "token change": "cambio de token", + "Changed my mind": "He cambiado de opinión", + "Please write the reason...": "Por favor escriba el motivo...", + "Found another transport": "Encontré otro transporte", + "Driver is taking too long": "El conductor tarda demasiado", + "Driver asked me to cancel": "El conductor me pidió que cancelara", + "Wrong pickup location": "Lugar de recogida incorrecto", + "Other": "Otro", + "Don't Cancel": "No cancelar", + "No Drivers Found": "No se encontraron conductores", + "Sorry, there are no cars available of this type right now.": "Lo sentimos, no hay coches de este tipo disponibles en este momento.", + "Refresh Map": "Actualizar mapa", + "face detect": "detección facial", + "Face Detection Result": "Resultado de detección facial", + "similar": "similar", + "not similar": "no es similar", + "Searching for nearby drivers...": "Buscando conductores cercanos...", + "Error": "Error", + "Failed to search, please try again later": "Error en la búsqueda, inténtelo de nuevo más tarde", + "Connection Error": "Error de conexión", + "Please check your internet connection": "Por favor, verifique su conexión a internet", + "Sorry 😔": "Lo sentimos 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "El conductor canceló el viaje por un motivo de emergencia.\\n¿Desea buscar otro conductor de inmediato?", + "Search for another driver": "Buscar otro conductor", + "We apologize 😔": "Pedimos disculpas 😔", + "No drivers found at the moment.\\nPlease try again later.": "No se encontraron conductores en este momento.\\nInténtelo de nuevo más tarde.", + "Hi ,I will go now": "Hola, iré ahora", + "Passenger come to you": "El pasajero viene a ti", + "Call Income": "Llamada entrante", + "Call Income from Passenger": "Llamada entrante del pasajero", + "Criminal Document Required": "Se requiere antecedente penal", + "You should have upload it .": "Deberías haberlo subido.", + "Call End": "Fin de la llamada", + "The order has been accepted by another driver.": "El pedido ha sido aceptado por otro conductor.", + "The order Accepted by another Driver": "El pedido fue aceptado por otro conductor", + "We regret to inform you that another driver has accepted this order.": "Lamentamos informarte que otro conductor ha aceptado este pedido.", + "Driver Applied the Ride for You": "El conductor aplicó el viaje por ti", + "Applied": "Aplicado", + "Please go to Car Driver": "Por favor, ve al conductor del coche", + "Ok I will go now.": "Ok, iré ahora.", + "Accepted Ride": "Viaje aceptado", + "Driver Accepted the Ride for You": "El conductor aceptó el viaje por ti", + "Promo": "Promo", + "Show latest promo": "Mostrar la última promoción", + "Trip Monitoring": "Monitoreo de viaje", + "Driver Is Going To Passenger": "El conductor va hacia el pasajero", + "Please stay on the picked point.": "Por favor, permanece en el punto seleccionado.", + "message From Driver": "Mensaje del conductor", + "Trip is Begin": "El viaje comienza", + "Cancel Trip from driver": "Cancelar viaje por el conductor", + "We will look for a new driver.\\nPlease wait.": "Buscaremos un nuevo conductor.\\nPor favor, espera.", + "The driver canceled your ride.": "El conductor canceló tu viaje.", + "Driver Finish Trip": "El conductor finalizó el viaje", + "you will pay to Driver": "pagarás al conductor", + "Don’t forget your personal belongings.": "No olvides tus pertenencias personales.", + "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": "Por favor, asegúrate de tener todas tus pertenencias personales y que cualquier tarifa restante, si corresponde, se haya añadido a tu billetera antes de salir. Gracias por elegir la aplicación Intaleq", + "Finish Monitor": "Finalizar monitor", + "Trip finished": "Viaje finalizado", + "Call Income from Driver": "Llamada entrante del conductor", + "Driver Cancelled Your Trip": "El conductor canceló su viaje", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "pagarás al conductor, pagarás el costo del tiempo del conductor, revisa tu billetera Intaleq", + "Order Applied": "Pedido aplicado", + "welcome to intaleq": "Bienvenido a Intaleq", + "login or register subtitle": "Inicia sesión o regístrate", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "No se puede presentar una queja por este viaje. Es posible que no se haya completado o iniciado.", + "phone number label": "Número de teléfono", + "phone number required": "Número de teléfono requerido", + "send otp button": "Enviar código", + "verify your number title": "Verifica tu número", + "otp sent subtitle": "Código de verificación enviado", + "verify and continue button": "Verificar y continuar", + "enter otp validation": "Por favor ingrese el código", + "one last step title": "Un último paso", + "complete profile subtitle": "Completa tu perfil", + "first name label": "Nombre", + "first name required": "Nombre requerido", + "last name label": "Apellido", + "Verify OTP": "Verificar código", + "Verification Code": "Código de verificación", + "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:", + "Verify": "Verificar", + "Resend Code": "Reenviar código", + "You can resend in": "Puedes reenviar en", + "seconds": "segundos", + "Please enter the complete 6-digit code.": "Por favor, ingrese el código completo de 6 dígitos.", + "last name required": "Apellido requerido", + "email optional label": "correo electrónico (opcional)", + "complete registration button": "Completar registro", + "User with this phone number or email already exists.": "Ya existe un usuario con este número de teléfono o correo electrónico.", + "otp sent success": "Código enviado con éxito", + "failed to send otp": "Error al enviar el código", + "server error try again": "error de servidor, intente de nuevo", + "an error occurred": "ocurrió un error", + "otp verification failed": "Fallo en la verificación del código", + "registration failed": "Registro fallido", + "welcome user": "Bienvenido", + "Don't forget your personal belongings.": "No olvide sus pertenencias personales.", + "Share App": "Compartir aplicación", + "Wallet": "Billetera", + "Balance": "Saldo", + "Profile": "Perfil", + "Contact Support": "Contactar con soporte", + "Session expired. Please log in again.": "Sesión expirada. Por favor, inicie sesión de nuevo.", + "Security Warning": "Advertencia de seguridad", + "Potential security risks detected. The application may not function correctly.": "Se detectaron posibles riesgos de seguridad. Es posible que la aplicación no funcione correctamente.", + "please order now": "por favor ordene ahora", + "Where to": "A dónde", + "Where are you going?": "¿A dónde vas?", + "Quick Actions": "Acciones rápidas", + "My Balance": "Mi saldo", + "Order History": "Historial de pedidos", + "Contact Us": "Contáctanos", + "Driver": "Conductor", + "Complaint": "Queja", + "Promos": "Promociones", + "Recent Places": "Lugares recientes", + "From": "Desde", + "WhatsApp Location Extractor": "Extractor de ubicación de WhatsApp", + "Location Link": "Enlace de ubicación", + "Paste location link here": "Pega el enlace de ubicación aquí", + "Go to this location": "Ir a esta ubicación", + "Paste WhatsApp location link": "Pega el enlace de ubicación de WhatsApp", + "Select Order Type": "Seleccionar tipo de pedido", + "Choose who this order is for": "Elige para quién es este pedido", + "I want to order for myself": "Quiero pedir para mí", + "I want to order for someone else": "Quiero pedir para alguien más", + "Order for someone else": "Pedido para alguien más", + "Order for myself": "Pedido para mí", + "Are you want to go this site": "¿Quieres ir a este sitio?", + "No": "No", + "Intaleq Wallet": "Billetera Intaleq", + "Have a promo code?": "¿Tienes un código promocional?", + "Your Wallet balance is ": "El saldo de tu billetera es ", + "Cash": "Efectivo", + "Pay directly to the captain": "Pagar directamente al capitán", + "Top up Wallet to continue": "Recarga la billetera para continuar", + "Or pay with Cash instead": "O pague en efectivo en su lugar", + "Confirm & Find a Ride": "Confirmar y encontrar un viaje", + "Balance:": "Saldo:", + "Alerts": "Alertas", + "Welcome Back!": "¡Bienvenido de nuevo!", + "No contacts found": "No se encontraron contactos", + "No contacts with phone numbers were found on your device.": "No se encontraron contactos con números de teléfono en su dispositivo.", + "Permission denied": "Permiso denegado", + "Contact permission is required to pick contacts": "Se requiere permiso de contactos para elegir contactos", + "An error occurred while picking contacts:": "Ocurrió un error al seleccionar los contactos:", + "Please enter a correct phone": "Por favor, ingresa un teléfono correcto", + "Success": "Éxito", + "Invite sent successfully": "Invitación enviada con éxito", + "Use my invitation code to get a special gift on your first ride!": "¡Usa mi código de invitación para obtener un regalo especial en tu primer viaje!", + "Your personal invitation code is:": "Tu código de invitación personal es:", + "Be sure to use it quickly! This code expires at": "¡Asegúrate de usarlo rápido! Este código vence a las", + "Download the app now:": "Descarga la aplicación ahora:", + "See you on the road!": "¡Nos vemos en el camino!", + "This phone number has already been invited.": "Este número de teléfono ya ha sido invitado.", + "An unexpected error occurred. Please try again.": "Ocurrió un error inesperado. Inténtalo de nuevo.", + "You deserve the gift": "Te mereces el regalo", + "Claim your 20 LE gift for inviting": "Reclama tu regalo de 20 LE por invitar", + "You have got a gift for invitation": "Has recibido un regalo por invitación", + "You have earned 20": "Has ganado 20", + "LE": "LE", + "Vibration feedback for all buttons": "Retroalimentación de vibración para todos los botones", + "Share with friends and earn rewards": "Comparte con amigos y gana recompensas", + "Gift Already Claimed": "Regalo ya reclamado", + "You have already received your gift for inviting": "Ya has recibido tu regalo por invitar", + "Keep it up!": "¡Sigue así!", + "has completed": "se ha completado", + "trips": "viajes", + "Personal Information": "Información personal", + "Name": "Nombre", + "Not set": "No establecido", + "Gender": "Género", + "Education": "Educación", + "Work & Contact": "Trabajo y contacto", + "Employment Type": "Tipo de empleo", + "Marital Status": "Estado civil", + "SOS Phone": "Teléfono SOS", + "Sign Out": "Cerrar sesión", + "Delete My Account": "Eliminar mi cuenta", + "Update Gender": "Actualizar género", + "Update": "Actualizar", + "Update Education": "Actualizar educación", + "Are you sure? This action cannot be undone.": "¿Estás seguro? Esta acción no se puede deshacer.", + "Confirm your Email": "Confirma tu correo electrónico", + "Type your Email": "Escribe tu correo electrónico", + "Delete Permanently": "Eliminar permanentemente", + "Male": "Hombre", + "Female": "Mujer", + "High School Diploma": "Diploma de bachillerato", + "Associate Degree": "Título de asociado", + "Bachelor's Degree": "Licenciatura", + "Master's Degree": "Maestría", + "Doctoral Degree": "Doctorado", + "Select your preferred language for the app interface.": "Seleccione su idioma preferido para la interfaz de la aplicación.", + "Language Options": "Opciones de idioma", + "You can claim your gift once they complete 2 trips.": "Puedes reclamar tu regalo una vez que completen 2 viajes.", + "Closest & Cheapest": "Más cercano y más barato", + "Comfort choice": "Opción Confort", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Viaja en un coche eléctrico moderno y silencioso. Una opción ecológica y de primera calidad para un viaje suave.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Servicio de furgoneta espaciosa ideal para familias y grupos. Viaje juntos de forma cómoda, segura y económica.", + "Quiet & Eco-Friendly": "Silencioso y ecológico", + "Lady Captain for girls": "Conductora para chicas", + "Van for familly": "Furgoneta familiar", + "Are you sure to delete this location?": "¿Estás seguro de eliminar esta ubicación?", + "Submit a Complaint": "Enviar una queja", + "Submit Complaint": "Enviar queja", + "No trip history found": "No se encontró historial de viajes", + "Your past trips will appear here.": "Tus viajes pasados aparecerán aquí.", + "1. Describe Your Issue": "1. Describa su problema", + "Enter your complaint here...": "Ingrese su queja aquí...", + "2. Attach Recorded Audio": "2. Adjuntar audio grabado", + "No audio files found.": "No se encontraron archivos de audio.", + "Confirm Attachment": "Confirmar archivo adjunto", + "Attach this audio file?": "¿Adjuntar este archivo de audio?", + "Uploaded": "Subido", + "3. Review Details & Response": "3. Revisar detalles y respuesta", + "Date": "Fecha", + "Today's Promos": "Promos de hoy", + "No promos available right now.": "No hay promociones disponibles en este momento.", + "Check back later for new offers!": "¡Vuelve más tarde para ver nuevas ofertas!", + "Valid Until:": "Válido hasta:", + "CODE": "CÓDIGO", + "Login": "Iniciar sesión", + "Sign in for a seamless experience": "Inicia sesión para una experiencia sin interrupciones", + "Sign In with Google": "Iniciar sesión con Google", + "Sign in with Apple": "Iniciar sesión con Apple", + "User not found": "Usuario no encontrado", + "Need assistance? Contact us": "¿Necesitas ayuda? Contáctanos", + "Email": "Correo electrónico", + "Your email address": "Tu dirección de correo electrónico", + "Enter a valid email": "Ingresa un correo electrónico válido", + "Password": "Contraseña", + "Your password": "Tu contraseña", + "Enter your password": "Ingresa tu contraseña", + "Submit": "Enviar", + "Terms of Use & Privacy Notice": "Términos de uso y aviso de privacidad", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "Al seleccionar \"Acepto\" a continuación, confirmo que he leído y acepto los ", + "Terms of Use": "Términos de uso", + " and acknowledge the ": " y reconozco los ", + "Privacy Notice": "Aviso de privacidad", + ". I am at least 18 years old.": ". Tengo al menos 18 años.", + "I Agree": "Acepto", + "Continue": "Continuar", + "Enable Location": "Habilitar ubicación", + "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.", + "Allow Location Access": "Permitir acceso a la ubicación", + "Welcome to Intaleq!": "¡Bienvenido a Intaleq!", + "Before we start, please review our terms.": "Antes de comenzar, revise nuestros términos.", + "Your journey starts here": "Tu viaje comienza aquí", + "Cancel Search": "Cancelar búsqueda", + "Set pickup location": "Establecer lugar de recogida", + "Move the map to adjust the pin": "Mueve el mapa para ajustar el pin", + "Searching for the nearest captain...": "Buscando al capitán más cercano...", + "No one accepted? Try increasing the fare.": "¿Nadie aceptó? Intenta aumentar la tarifa.", + "Increase Your Trip Fee (Optional)": "Aumenta la tarifa de tu viaje (Opcional)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Aún no hemos encontrado conductores. Considera aumentar la tarifa de tu viaje para hacer tu oferta más atractiva para los conductores.", + "No, thanks": "No, gracias", + "Increase Fee": "Aumentar tarifa", + "Copy": "Copiar", + "Promo Copied!": "¡Promoción copiada!", + "Code": "Código", + "copied to clipboard": "copiado al portapapeles", + "Price": "Precio", + "Intaleq's Response": "Respuesta de Intaleq", + "Awaiting response...": "Esperando respuesta...", + "Audio file not attached": "Archivo de audio no adjunto", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "El archivo de audio aún no se ha subido.\\n¿Quiere enviarlo sin él?", + "deleted": "eliminado", + "To Work": "Al trabajo", + "Work Saved": "Trabajo guardado", + "To Home": "A casa", + "Home Saved": "Casa guardada", + "Destination selected": "Destino seleccionado", + "Now select start pick": "Ahora selecciona el punto de inicio", + "OK": "OK", + "Confirm Pick-up Location": "Confirmar ubicación de recogida", + "Set Location on Map": "Establecer ubicación en el mapa", + "You can contact us during working hours from 10:00 - 16:00.": "Puede contactarnos durante el horario laboral de 10:00 a 16:00.", + "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 es la aplicación de transporte compartido más segura y confiable diseñada especialmente para pasajeros en Siria. Brindamos una experiencia de viaje cómoda, respetuosa y asequible con características que priorizan su seguridad y conveniencia. Nuestros capitanes de confianza están verificados, asegurados y respaldados por el mantenimiento regular del automóvil realizado por los mejores ingenieros. También ofrecemos servicios de apoyo en carretera para asegurarnos de que cada viaje sea sencillo y sin preocupaciones. Con Intaleq, disfruta de calidad, seguridad y tranquilidad cada vez que viaja.", + "Customer MSISDN doesn’t have customer wallet": "El MSISDN del cliente no tiene billetera", + "Nearest Car: ~": "Coche más cercano: ~", + "Nearest Car": "Coche más cercano", + "No cars nearby": "No hay coches cerca", + "Favorite Places": "Lugares favoritos", + "No favorite places yet!": "¡Aún no tienes lugares favoritos!", + "from your favorites": "de tus favoritos", + "Back": "Atrás", + "Enter your code below to apply the discount.": "Ingrese su código a continuación para aplicar el descuento.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "Al seleccionar \"Acepto\" a continuación, confirmo que he leído y acepto los", + "and acknowledge the": "y reconozco el", + "Enable Location Access": "Habilitar acceso a la ubicación", + "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.", + "You should restart app to change language": "Debes reiniciar la aplicación para cambiar el idioma", + "Home Page": "Página de inicio", + "To change Language the App": "Para cambiar el idioma de la aplicación", + "Learn more about our app and mission": "Aprende más sobre nuestra aplicación y misión", + "Promos For Today": "Promociones para hoy", + "Choose your ride": "Elige tu viaje", + "Your Journey Begins Here": "Tu viaje comienza aquí", + "Bonus gift": "Regalo de bonificación", + "Pay": "Pagar", + "Get": "Obtener", + "Send to Driver Again": "Enviar al conductor nuevamente", + "Driver Name:": "Nombre del conductor:", + "No trip data available": "No hay datos de viaje disponibles", + "Car Plate:": "Matrícula del coche:", + "remaining": "restante", + "Order Cancelled": "Pedido cancelado", + "You canceled VIP trip": "Cancelaste el viaje VIP", + "Passenger cancelled order": "El pasajero canceló el pedido", + "Your trip is scheduled": "Tu viaje está programado", + "Don't forget your ride!": "¡No olvides tu viaje!", + "Trip updated successfully": "Viaje actualizado con éxito", + "Car Make:": "Marca del coche:", + "Car Model:": "Modelo del coche:", + "Car Color:": "Color del coche:", + "Driver Phone:": "Teléfono del conductor:", + "Pre-booking": "Reserva anticipada", + "Waiting VIP": "Esperando VIP", + "Driver List": "Lista de conductores", + "Confirm Trip": "Confirmar viaje", + "Select date and time of trip": "Seleccionar fecha y hora del viaje", + "Date and Time Picker": "Selector de fecha y hora", + "Trip Status:": "Estado del viaje:", + "pending": "pendiente", + "accepted": "aceptado", + "rejected": "rechazado", + "Apply": "Aplicar", + "Enter your promo code": "Ingresa tu código de promoción", + "Apply Promo Code": "Aplicar código de promoción", + "Scheduled Time:": "Hora programada:", + "No drivers available": "No hay conductores disponibles", + "No drivers available at the moment. Please try again later.": "No hay conductores disponibles en este momento. Por favor, inténtalo de nuevo más tarde.", + "you have a negative balance of": "tienes un saldo negativo de", + "Please try again in a few moments": "Por favor, inténtalo de nuevo en unos momentos", + "Unknown Driver": "Conductor desconocido", + "in your": "en tu", + "The driver accepted your order for": "El conductor aceptó tu pedido para", + "wallet due to a previous trip.": "billetera debido a un viaje anterior.", + "rides": "viajes", + "Add Work": "Añadir trabajo", + "The reason is": "La razón es", + "User does not have a wallet #1652": "El usuario no tiene una billetera #1652", + "Price of trip": "Precio del viaje", + "From:": "Desde:", + "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Para viajes de velocidad y entrega, el precio se calcula dinámicamente. Para viajes de confort, el precio se basa en el tiempo y la distancia.", + "Phone Wallet Saved Successfully": "Billetera telefónica guardada con éxito", + "Add wallet phone you use": "Añade el teléfono de la billetera que usas", + "Update Available": "Actualización disponible", + "Phone number must be exactly 11 digits long": "El número de teléfono debe tener exactamente 11 dígitos", + "Insert Wallet phone number": "Ingresa el número de teléfono de la billetera", + "Phone number isn't an Egyptian phone number": "El número de teléfono no es un número egipcio", + "A new version of the app is available. Please update to the latest version.": "Hay una nueva versión de la aplicación disponible. Por favor, actualiza a la última versión.", + "We use location to get accurate and nearest passengers for you": "Usamos la ubicación para obtener pasajeros precisos y cercanos para ti", + "This ride is already applied by another driver.": "Este viaje ya ha sido aplicado por otro conductor.", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "Usamos tu ubicación precisa para encontrar el conductor disponible más cercano y proporcionar información precisa de recogida y dejada. Puedes gestionar esto en Configuración.", + "Where are you, sir?": "¿Dónde estás, señor?", + "I've been trying to reach you but your phone is off.": "He estado intentando contactarte pero tu teléfono está apagado.", + "Please don't be late": "Por favor, no llegues tarde", + "Please don't be late, I'm waiting for you at the specified location.": "Por favor, no llegues tarde, te estoy esperando en la ubicación especificada.", + "My location is correct. You can search for me using the navigation app": "Mi ubicación es correcta. Puedes buscarme usando la aplicación de navegación.", + "Hello, I'm at the agreed-upon location": "Hola, estoy en la ubicación acordada", + "How much longer will you be?": "¿Cuánto tiempo más tardarás?", + "Phone number is verified before": "El número de teléfono ya ha sido verificado", + "Change Ride": "Cambiar viaje", + "You can change the destination by long-pressing any point on the map": "Puedes cambiar el destino manteniendo presionado cualquier punto en el mapa", + "Pick from map destination": "Elige el destino en el mapa", + "Pick or Tap to confirm": "Elige o toca para confirmar", + "Accepted your order": "Tu pedido ha sido aceptado", + "Order Accepted": "Pedido aceptado", + "with type": "con tipo", + "accepted your order at price": "aceptó tu pedido al precio de", + "you canceled order": "cancelaste el pedido", + "If you want order to another person": "Si quieres pedir para otra persona", + "upgrade price": "aumentar el precio", + "airport": "aeropuerto", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Mejor opción para un coche cómodo con una ruta flexible y puntos de parada. Este aeropuerto ofrece entrada con visa a este precio.", + "You can upgrade price to may driver accept your order": "Puedes aumentar el precio para que el conductor acepte tu pedido", + "Change Route": "Cambiar ruta", + "No Captain Accepted Your Order": "Ningún capitán aceptó tu pedido", + "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", + "No, I want to cancel this trip": "No, quiero cancelar este viaje", + "Attention": "Atención", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Viaje cancelado. El costo del viaje se deducirá de tu billetera.", + "You will be charged for the cost of the driver coming to your location.": "Se te cobrará el costo del conductor que viene a tu ubicación.", + "reject your order.": "rechazó tu pedido.", + "Order Under Review": "Pedido en revisión", + "is reviewing your order. They may need more information or a higher price.": "está revisando tu pedido. Pueden necesitar más información o un precio más alto.", + "Vibration": "Vibración", + "Resend code": "Reenviar código", + "change device": "cambiar dispositivo", + "Device Change Detected": "Cambio de dispositivo detectado", + "You can only use one device at a time. This device will now be set as your active device.": "Solo puedes usar un dispositivo a la vez. Este dispositivo se establecerá ahora como tu dispositivo activo.", + "Click here point": "Haz clic aquí", + "Are you want to change": "¿Quieres cambiar?", + "by": "por", + "Enter your complaint here": "Ingresa tu queja aquí", + "Please enter your complaint.": "Por favor, ingresa tu queja.", + "Complaint data saved successfully": "Datos de la queja guardados con éxito", + "Trip Monitor": "Monitor de viaje", + "Insert SOS Phone": "Insertar teléfono SOS", + "Add SOS Phone": "Añadir teléfono SOS", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Intaleq ,": "Estimado ,\\n\\n 🚀 ¡Acabo de comenzar un viaje emocionante y me gustaría compartir los detalles de mi trayecto y mi ubicación actual contigo en tiempo real! Por favor, descarga la aplicación Intaleq. Te permitirá ver los detalles de mi viaje y mi última ubicación.\\n\\n 👉 Enlace de descarga: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n ¡Espero mantenerte cerca durante mi aventura!\\n\\n Intaleq ,", + "Send Intaleq app to him": "Enviarle la aplicación Intaleq", + "No passenger found for the given phone number": "No se encontró ningún pasajero para el número de teléfono proporcionado", + "No user found for the given phone number": "No se encontró ningún usuario para el número de teléfono proporcionado", + "This price is": "Este precio es", + "Work": "Trabajo", + "Add Home": "Añadir casa", + "Notifications": "Notificaciones", + "💳 Pay with Credit Card": "💳 Pagar con tarjeta de crédito", + "⚠️ You need to choose an amount!": "⚠️ ¡Necesitas elegir un monto!", + "💰 Pay with Wallet": "Pagar con billetera", + "You must restart the app to change the language.": "Debes reiniciar la aplicación para cambiar el idioma.", + "joined": "se unió", + "Driver joined the channel": "El conductor se unió al canal", + "Driver left the channel": "El conductor dejó el canal", + "Call Page": "Página de llamada", + "Call Left": "Llamada restante", + " Next as Cash !": " ¡Siguiente como efectivo!", + "To use Wallet charge it": "Para usar la billetera, cárgala", + "We are searching for the nearest driver to you": "Estamos buscando al conductor más cercano para ti", + "Best choice for cities": "Mejor opción para ciudades", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai: Servicio de viaje redondo para un viaje conveniente entre ciudades, fácil y confiable.", + "This trip is for women only": "Este viaje es solo para mujeres", + "Total budgets on month": "Presupuestos totales del mes", + "You have call from driver": "Tienes una llamada del conductor", + "Intaleq": "Velocidad", + "passenger agreement": "Acuerdo de pasajero", + "To become a passenger, you must review and agree to the ": "Para ser pasajero, debe revisar y aceptar los ", + "agreement subtitle": "Aceptar los términos", + "terms of use": "Términos de uso", + " and acknowledge our Privacy Policy.": " y reconozca nuestra política de privacidad.", + "and acknowledge our": "y reconozca nuestro", + "privacy policy": "Política de privacidad", + "i agree": "Estoy de acuerdo", + "Driver already has 2 trips within the specified period.": "El conductor ya tiene 2 viajes dentro del período especificado.", + "The invitation was sent successfully": "La invitación fue enviada con éxito", + "You should select your country": "Debes seleccionar tu país", + "Scooter": "Scooter", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Un viaje con reserva previa, que te permite elegir a los mejores capitanes y coches.", + "Mishwar Vip": "Mishwar Vip", + "The driver waiting you in picked location .": "El conductor te espera en la ubicación seleccionada.", + "About Us": "Sobre nosotros", + "You can change the vibration feedback for all buttons": "Puedes cambiar la retroalimentación de vibración para todos los botones", + "Most Secure Methods": "Métodos más seguros", + "In-App VOIP Calls": "Llamadas VOIP en la aplicación", + "Recorded Trips for Safety": "Viajes grabados para seguridad", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nTambién priorizamos la asequibilidad, ofreciendo precios competitivos para que tus viajes sean accesibles.", + "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 es una aplicación de viajes compartidos diseñada pensando en tu seguridad y asequibilidad. Te conectamos con conductores confiables en tu área, asegurando una experiencia de viaje conveniente y sin estrés.\\n\\nAquí hay algunas de las características clave que nos diferencian:", + "Sign In by Apple": "Iniciar sesión con Apple", + "Sign In by Google": "Iniciar sesión con Google", + "How do I request a ride?": "¿Cómo solicito un viaje?", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Instrucciones paso a paso sobre cómo solicitar un viaje a través de la aplicación Intaleq.", + "What types of vehicles are available?": "¿Qué tipos de vehículos están disponibles?", + "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 ofrece una variedad de opciones de vehículos para adaptarse a tus necesidades, incluyendo economía, confort y lujo. Elige la opción que mejor se ajuste a tu presupuesto y número de pasajeros.", + "How can I pay for my ride?": "¿Cómo puedo pagar mi viaje?", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq ofrece múltiples métodos de pago para tu conveniencia. Elige entre pago en efectivo o con tarjeta de crédito/débito durante la confirmación del viaje.", + "Can I cancel my ride?": "¿Puedo cancelar mi viaje?", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Sí, puedes cancelar tu viaje bajo ciertas condiciones (por ejemplo, antes de que se asigne un conductor). Consulta la política de cancelación de Intaleq para más detalles.", + "Driver Registration & Requirements": "Registro y requisitos del conductor", + "How can I register as a driver?": "¿Cómo puedo registrarme como conductor?", + "What are the requirements to become a driver?": "¿Cuáles son los requisitos para convertirse en conductor?", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visita nuestro sitio web o contacta al soporte de Intaleq para obtener información sobre el registro y los requisitos del conductor.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq ofrece funcionalidad de chat en la aplicación para que puedas comunicarte con tu conductor o pasajero durante tu viaje.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioriza tu seguridad. Ofrecemos funciones como verificación del conductor, seguimiento del viaje en la aplicación y opciones de contacto de emergencia.", + "Frequently Questions": "Preguntas frecuentes", + "User does not exist.": "El usuario no existe.", + "We need your phone number to contact you and to help you.": "Necesitamos tu número de teléfono para contactarte y ayudarte.", + "You will recieve code in sms message": "Recibirás el código en un mensaje SMS", + "Please enter": "Por favor, ingresa", + "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.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "El nombre completo en su antecedente penal no coincide con el de su licencia de conducir. Verifique y proporcione los documentos correctos.", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "El número nacional de su licencia de conducir no coincide con el de su documento de identidad. Verifique y proporcione los documentos correctos.", + "Capture an Image of Your Criminal Record": "Captura una imagen de tu registro criminal", + "IssueDate": "Fecha de emisión", + "Capture an Image of Your car license front": "Capturar una imagen del frente de su licencia de auto", + "Capture an Image of Your ID Document front": "Captura una imagen de la parte frontal de tu documento de identidad", + "NationalID": "Identificación nacional", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Puedes compartir la aplicación Intaleq con tus amigos y ganar recompensas por los viajes que hagan usando tu código", + "FullName": "Nombre completo", + "No invitation found yet!": "¡Aún no se ha encontrado ninguna invitación!", + "InspectionResult": "Resultado de la inspección", + "Criminal Record": "Registro criminal", + "The email or phone number is already registered.": "El correo electrónico o número de teléfono ya está registrado.", + "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.": "Para convertirte en un conductor de viajes compartidos en la aplicación Intaleq, debes subir tu licencia de conducir, documento de identidad y documento de registro del coche. Nuestro sistema de IA revisará y verificará su autenticidad en solo 2-3 minutos. Si tus documentos son aprobados, puedes comenzar a trabajar como conductor en la aplicación Intaleq. Ten en cuenta que enviar documentos fraudulentos es un delito grave y puede resultar en la terminación inmediata y consecuencias legales.", + "Documents check": "Verificación de documentos", + "Driver's License": "Licencia de conducir", + "for your first registration!": "¡para tu primer registro!", + "Get it Now!": "¡Consíguelo ahora!", + "before": "antes", + "Code not approved": "Código no aprobado", + "3000 LE": "3000 LE", + "Do you have an invitation code from another driver?": "¿Tienes un código de invitación de otro conductor?", + "Paste the code here": "Pega el código aquí", + "No, I don't have a code": "No, no tengo un código", + "Audio uploaded successfully.": "Audio subido con éxito.", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfecto para pasajeros que buscan los últimos modelos de coches con la libertad de elegir cualquier ruta que deseen", + "Share this code with your friends and earn rewards when they use it!": "¡Comparte este código con tus amigos y gana recompensas cuando lo usen!", + "Enter phone": "Ingresar teléfono", + "complete, you can claim your gift": "completo, puedes reclamar tu regalo", + "When": "Cuándo", + "Enter driver's phone": "Ingresar teléfono del conductor", + "Send Invite": "Enviar invitación", + "Show Invitations": "Mostrar invitaciones", + "License Type": "Tipo de licencia", + "National Number": "Número nacional", + "Name (Arabic)": "Nombre (árabe)", + "Name (English)": "Nombre (inglés)", + "Address": "Dirección", + "Issue Date": "Fecha de emisión", + "Expiry Date": "Fecha de vencimiento", + "License Categories": "Categorías de licencia", + "driver_license": "licencia de conducir", + "Capture an Image of Your Driver License": "Captura una imagen de tu licencia de conducir", + "ID Documents Back": "Parte trasera de los documentos de identidad", + "National ID": "Identificación nacional", + "Occupation": "Ocupación", + "Religion": "Religión", + "Full Name (Marital)": "Nombre completo (estado civil)", + "Expiration Date": "Fecha de vencimiento", + "Capture an Image of Your ID Document Back": "Captura una imagen de la parte trasera de tu documento de identidad", + "ID Documents Front": "Parte frontal de los documentos de identidad", + "First Name": "Nombre", + "CardID": "ID de la tarjeta", + "Vehicle Details Front": "Detalles del vehículo (frente)", + "Plate Number": "Número de placa", + "Owner Name": "Nombre del propietario", + "Vehicle Details Back": "Detalles del vehículo (parte trasera)", + "Make": "Marca", + "Model": "Modelo", + "Year": "Año", + "Chassis": "Chasis", + "Color": "Color", + "Displacement": "Cilindrada", + "Fuel": "Combustible", + "Tax Expiry Date": "Fecha de vencimiento del impuesto", + "Inspection Date": "Fecha de inspección", + "Capture an Image of Your car license back": "Captura una imagen de la parte trasera de tu licencia de coche", + "Capture an Image of Your Driver's License": "Capturar una imagen de su licencia de conducir", + "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", + "You will choose allow all the time to be ready receive orders": "Elegirás permitir todo el tiempo para estar listo para recibir pedidos", + "Get to your destination quickly and easily.": "Llega a tu destino de manera rápida y sencilla.", + "Enjoy a safe and comfortable ride.": "Disfruta de un viaje seguro y cómodo.", + "Choose Language": "Elegir idioma", + "Pay with Wallet": "Pagar con billetera", + "Invalid MPIN": "MPIN inválido", + "Invalid OTP": "OTP inválido", + "Enter your email address": "Ingresa tu dirección de correo electrónico", + "Please enter Your Email.": "Por favor, ingresa tu correo electrónico.", + "Enter your phone number": "Ingresa tu número de teléfono", + "Please enter your phone number.": "Por favor, ingresa tu número de teléfono.", + "Please enter Your Password.": "Por favor, ingresa tu contraseña.", + "if you dont have account": "si no tienes una cuenta", + "Register": "Registrarse", + "Accept Ride's Terms & Review Privacy Notice": "Acepta los términos del viaje y revisa el aviso de privacidad", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Al seleccionar 'Estoy de acuerdo' a continuación, declaro que he revisado y acepto los Términos de uso y reconozco el Aviso de privacidad. Tengo al menos 18 años.", + "First name": "Nombre", + "Enter your first name": "Ingresa tu nombre", + "Please enter your first name.": "Por favor, ingresa tu nombre.", + "Last name": "Apellido", + "Enter your last name": "Ingresa tu apellido", + "Please enter your last name.": "Por favor, ingresa tu apellido.", + "City": "Ciudad", + "Please enter your City.": "Por favor, ingresa tu ciudad.", + "Verify Email": "Verificar correo electrónico", + "We sent 5 digit to your Email provided": "Enviamos un código de 5 dígitos al correo electrónico proporcionado", + "5 digit": "5 dígitos", + "Send Verification Code": "Enviar código de verificación", + "Your Ride Duration is ": "La duración de tu viaje es ", + "You will be thier in": "Estarás allí en", + "You trip distance is": "La distancia de tu viaje es", + "Fee is": "La tarifa es", + "From : ": "Desde : ", + "To : ": "Hacia : ", + "Add Promo": "Añadir promoción", + "Confirm Selection": "Confirmar selección", + "distance is": "la distancia es", + "Privacy Policy": "Política de privacidad", + "Intaleq LLC": "Intaleq LLC", + "Syria'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.": "El servicio pionero de transporte compartido de Siria, desarrollado con orgullo por propietarios árabes y locales. Priorizamos estar cerca de usted, tanto de nuestros valiosos pasajeros como de nuestros dedicados capitanes.", + "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 es la primera aplicación de transporte compartido en Siria, diseñada para conectarlo con los conductores más cercanos para una experiencia de viaje rápida y conveniente.", + "Why Choose Intaleq?": "¿Por qué elegir Intaleq?", + "Closest to You": "Más cerca de 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.", + "Uncompromising Security": "Seguridad sin compromisos", + "Lady Captains Available": "Capitanas disponibles", + "Recorded Trips (Voice & AI Analysis)": "Viajes grabados (análisis de voz e IA)", + "Fastest Complaint Response": "Respuesta más rápida a las quejas", + "Our dedicated customer service team ensures swift resolution of any issues.": "Nuestro dedicado equipo de servicio al cliente garantiza una resolución rápida de cualquier problema.", + "Affordable for Everyone": "Asequible para todos", + "Frequently Asked Questions": "Preguntas frecuentes", + "Getting Started": "Cómo empezar", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simplemente abre la aplicación Intaleq, ingresa tu destino y toca \"Solicitar viaje\". La aplicación te conectará con un conductor cercano.", + "Vehicle Options": "Opciones de vehículos", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq ofrece una variedad de opciones, incluyendo Economía, Confort y Lujo, para adaptarse a tus necesidades y presupuesto.", + "Payments": "Pagos", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Puedes pagar tu viaje en efectivo o con tarjeta de crédito/débito. Puedes seleccionar tu método de pago preferido antes de confirmar tu viaje.", + "Ride Management": "Gestión de viajes", + "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.", + "For Drivers": "Para conductores", + "Driver Registration": "Registro de conductores", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Para registrarte como conductor o conocer los requisitos, visita nuestro sitio web o contacta directamente al soporte de Intaleq.", + "Visit Website/Contact Support": "Visita el sitio web/Contacta al soporte", + "Close": "Cerrar", + "We are searching for the nearest driver": "Estamos buscando al conductor más cercano", + "Communication": "Comunicación", + "How do I communicate with the other party (passenger/driver)?": "¿Cómo me comunico con la otra parte (pasajero/conductor)?", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Puedes comunicarte con tu conductor o pasajero a través de la función de chat en la aplicación una vez que se confirme el viaje.", + "Safety & Security": "Seguridad y protección", + "What safety measures does Intaleq offer?": "¿Qué medidas de seguridad ofrece Intaleq?", + "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 ofrece varias características de seguridad, incluyendo verificación del conductor, seguimiento del viaje en la aplicación, opciones de contacto de emergencia y la capacidad de compartir el estado de tu viaje con contactos de confianza.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Disfruta de precios competitivos en todas las opciones de viaje, haciendo que los viajes sean accesibles.", + "Variety of Trip Choices": "Variedad de opciones de viaje", + "Choose the trip option that perfectly suits your needs and preferences.": "Elige la opción de viaje que mejor se adapte a tus necesidades y preferencias.", + "Your Choice, Our Priority": "Tu elección, nuestra prioridad", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Porque estamos cerca, tienes la flexibilidad de elegir el viaje que mejor funcione para ti.", + "duration is": "la duración es", + "Setting": "Configuración", + "Find answers to common questions": "Encuentra respuestas a preguntas comunes", + "I don't need a ride anymore": "Ya no necesito un viaje", + "I was just trying the application": "Solo estaba probando la aplicación", + "No driver accepted my request": "Ningún conductor aceptó mi solicitud", + "I added the wrong pick-up/drop-off location": "Agregué la ubicación de recogida/dejada incorrecta", + "I don't have a reason": "No tengo una razón", + "Can we know why you want to cancel Ride ?": "¿Podemos saber por qué quieres cancelar el viaje?", + "Add Payment Method": "Añadir método de pago", + "Ride Wallet": "Billetera de viajes", + "Payment Method": "Método de pago", + "Type here Place": "Escribe aquí el lugar", + "Are You sure to ride to": "¿Estás seguro de viajar a", + "Confirm": "Confirmar", + "You are Delete": "Estás eliminando", + "Deleted": "Eliminado", + "You Dont Have Any places yet !": "¡Aún no tienes ningún lugar!", + "From : Current Location": "Desde : Ubicación actual", + "My Cared": "Mis tarjetas", + "Add Card": "Añadir tarjeta", + "Add Credit Card": "Añadir tarjeta de crédito", + "Please enter the cardholder name": "Por favor, ingresa el nombre del titular de la tarjeta", + "Please enter the expiry date": "Por favor, ingresa la fecha de vencimiento", + "Please enter the CVV code": "Por favor, ingresa el código CVV", + "Go To Favorite Places": "Ir a lugares favoritos", + "Go to this Target": "Ir a este objetivo", + "My Profile": "Mi perfil", + "Are you want to go to this site": "¿Quieres ir a este sitio?", + "MyLocation": "Mi ubicación", + "my location": "mi ubicación", + "Target": "Objetivo", + "You Should choose rate figure": "Debes elegir una figura de calificación", + "Login Captin": "Iniciar sesión como capitán", + "Register Captin": "Registrar capitán", + "Send Verfication Code": "Enviar código de verificación", + "KM": "KM", + "End Ride": "Finalizar viaje", + "Minute": "Minuto", + "Go to passenger Location now": "Ir ahora a la ubicación del pasajero", + "Duration of the Ride is ": "La duración del viaje es ", + "Distance of the Ride is ": "La distancia del viaje es ", + "Name of the Passenger is ": "El nombre del pasajero es ", + "Hello this is Captain": "Hola, este es el capitán", + "Start the Ride": "Iniciar el viaje", + "Please Wait If passenger want To Cancel!": "¡Por favor, espera si el pasajero quiere cancelar!", + "Total Duration:": "Duración total:", + "Active Duration:": "Duración activa:", + "Waiting for Captin ...": "Esperando al capitán ...", + "Age is ": "La edad es ", + "Rating is ": "La calificación es ", + " to arrive you.": "para llegar a ti.", + "Tariff": "Tarifa", + "Settings": "Configuración", + "Feed Back": "Retroalimentación", + "Please enter a valid 16-digit card number": "Por favor, ingresa un número de tarjeta válido de 16 dígitos", + "Add Phone": "Añadir teléfono", + "Please enter a phone number": "Por favor, ingresa un número de teléfono", + "You dont Add Emergency Phone Yet!": "¡Aún no has añadido un teléfono de emergencia!", + "You will arrive to your destination after ": "Llegarás a tu destino después de ", + "You can cancel Ride now": "Puedes cancelar el viaje ahora", + "You Can cancel Ride After Captain did not come in the time": "Puedes cancelar el viaje si el capitán no llegó a tiempo", + "If you in Car Now. Press Start The Ride": "Si estás en el coche ahora. Presiona Iniciar el viaje", + "You Dont Have Any amount in": "No tienes ningún monto en", + "Wallet!": "¡Billetera!", + "You Have": "Tienes", + "Save Credit Card": "Guardar tarjeta de crédito", + "Show Promos": "Mostrar promociones", + "10 and get 4% discount": "10 y obtén un 4% de descuento", + "20 and get 6% discount": "20 y obtén un 6% de descuento", + "40 and get 8% discount": "40 y obtén un 8% de descuento", + "100 and get 11% discount": "100 y obtén un 11% de descuento", + "Pay with Your PayPal": "Paga con tu PayPal", + "You will choose one of above !": "¡Elegirás uno de los anteriores!", + "Edit Profile": "Editar perfil", + "Copy this Promo to use it in your Ride!": "¡Copia esta promoción para usarla en tu viaje!", + "To change some Settings": "Para cambiar algunas configuraciones", + "Order Request Page": "Página de solicitud de pedido", + "Rouats of Trip": "Rutas del viaje", + "Passenger Name is ": "El nombre del pasajero es ", + "Total From Passenger is ": "El total del pasajero es ", + "Duration To Passenger is ": "La duración hasta el pasajero es ", + "Distance To Passenger is ": "La distancia hasta el pasajero es ", + "Total For You is ": "El total para ti es ", + "Distance is ": "La distancia es ", + " KM": " KM", + "Duration of Trip is ": "La duración del viaje es ", + " Minutes": " Minutos", + "Apply Order": "Aplicar pedido", + "Refuse Order": "Rechazar pedido", + "Rate Captain": "Calificar al capitán", + "Enter your Note": "Ingresa tu nota", + "Type something...": "Escribe algo...", + "Submit rating": "Enviar calificación", + "Rate Passenger": "Calificar al pasajero", + "Ride Summary": "Resumen del viaje", + "welcome_message": "Bienvenido a Intaleq!", + "app_description": "Intaleq es una aplicación de viajes compartidos segura, confiable y accesible.", + "get_to_destination": "Llega a tu destino de manera rápida y sencilla.", + "get_a_ride": "Con Intaleq, puedes llegar a tu destino en minutos.", + "safe_and_comfortable": "Disfruta de un viaje seguro y cómodo.", + "committed_to_safety": "Intaleq se compromete con la seguridad, y todos nuestros capitanes son cuidadosamente seleccionados y verificados.", + "your ride is Accepted": "tu viaje ha sido aceptado", + "Driver is waiting at pickup.": "El conductor está esperando en el punto de recogida.", + "Driver is on the way": "El conductor está en camino", + "Contact Options": "Opciones de contacto", + "Send a custom message": "Enviar un mensaje personalizado", + "Type your message": "Escribe tu mensaje", + "I will go now": "Iré ahora", + "You Have Tips": "Tienes propinas", + " tips\\nTotal is": " propinas\\nEl total es", + "Your fee is ": "Tu tarifa es ", + "Do you want to pay Tips for this Driver": "¿Quieres pagar propinas a este conductor?", + "Tip is ": "La propina es ", + "Are you want to wait drivers to accept your order": "¿Quieres esperar a que los conductores acepten tu pedido?", + "This price is fixed even if the route changes for the driver.": "Este precio es fijo incluso si la ruta cambia para el conductor.", + "The price may increase if the route changes.": "El precio puede aumentar si la ruta cambia.", + "The captain is responsible for the route.": "El capitán es responsable de la ruta.", + "We are search for nearst driver": "Estamos buscando al conductor más cercano", + "Your order is being prepared": "Tu pedido está siendo preparado", + "The drivers are reviewing your request": "Los conductores están revisando tu solicitud", + "Your order sent to drivers": "Tu pedido fue enviado a los conductores", + "You can call or record audio of this trip": "Puedes llamar o grabar audio de este viaje", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "¡El viaje ha comenzado! No dudes en contactar números de emergencia, compartir tu viaje o activar la grabación de voz para el trayecto", + "Camera Access Denied.": "Acceso a la cámara denegado.", + "Open Settings": "Abrir configuración", + "GPS Required Allow !.": "¡GPS requerido, permitir!.", + "Your Account is Deleted": "Tu cuenta ha sido eliminada", + "Are you sure to delete your account?": "¿Estás seguro de eliminar tu cuenta?", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Tus datos serán borrados después de 2 semanas\\nY no podrás volver a usar la aplicación después de 1 mes ", + "Enter Your First Name": "Ingresa tu nombre", + "Are you Sure to LogOut?": "¿Estás seguro de cerrar sesión?", + "Email Wrong": "Correo electrónico incorrecto", + "Email you inserted is Wrong.": "El correo electrónico que ingresaste es incorrecto.", + "You have finished all times ": "Has terminado todas las veces ", + "if you want help you can email us here": "si necesitas ayuda, puedes enviarnos un correo electrónico aquí", + "Thanks": "Gracias", + "Email Us": "Envíanos un correo electrónico", + "I cant register in your app in face detection ": "No puedo registrarme en tu aplicación con detección facial ", + "Hi": "Hola", + "No face detected": "No se detectó ninguna cara", + "Image detecting result is ": "El resultado de la detección de imagen es ", + "from 3 times Take Attention": "de 3 veces, presta atención", + "Be sure for take accurate images please\\nYou have": "Por favor, asegúrate de tomar imágenes precisas\\nTienes", + "image verified": "imagen verificada", + "Next": "Siguiente", + "There is no help Question here": "No hay una pregunta de ayuda aquí", + "You dont have Points": "No tienes puntos", + "You Are Stopped For this Day !": "¡Estás detenido por este día!", + "You must be charge your Account": "Debes cargar tu cuenta", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Rechazaste 3 viajes este día, esa es la razón \\n¡Nos vemos mañana!", + "Recharge my Account": "Recargar mi cuenta", + "Ok , See you Tomorrow": "Ok, nos vemos mañana", + "You are Stopped": "Estás detenido", + "Connected": "Conectado", + "Not Connected": "No conectado", + "Your are far from passenger location": "Estás lejos de la ubicación del pasajero", + "go to your passenger location before\\nPassenger cancel trip": "ve a la ubicación del pasajero antes de que\\nel pasajero cancele el viaje", + "You will get cost of your work for this trip": "Obtendrás el costo de tu trabajo por este viaje", + " in your wallet": "en tu billetera", + "you gain": "ganas", + "Order Cancelled by Passenger": "Pedido cancelado por el pasajero", + "Feedback data saved successfully": "Datos de retroalimentación guardados con éxito", + "No Promo for today .": "No hay promoción para hoy.", + "Select your destination": "Selecciona tu destino", + "Search for your Start point": "Busca tu punto de inicio", + "Search for waypoint": "Buscar punto de referencia", + "Current Location": "Ubicación actual", + "Add Location 1": "Añadir ubicación 1", + "You must Verify email !.": "¡Debes verificar el correo electrónico!.", + "Cropper": "Recortador", + "Saved Sucssefully": "Guardado exitosamente", + "Select Date": "Seleccionar fecha", + "Birth Date": "Fecha de nacimiento", + "Ok": "Ok", + "the 500 points equal 30 JOD": "500 puntos equivalen a 30 JOD", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "500 puntos equivalen a 30 JOD para ti \\nAsí que ve y gana tu dinero", + "token updated": "token actualizado", + "Add Location 2": "Añadir ubicación 2", + "Add Location 3": "Añadir ubicación 3", + "Add Location 4": "Añadir ubicación 4", + "Waiting for your location": "Esperando tu ubicación", + "Search for your destination": "Busca tu destino", + "Hi! This is": "¡Hola! Este es", + " I am using": " estoy usando", + " to ride with": " para viajar con", + " as the driver.": " como el conductor.", + "is driving a ": "está conduciendo un ", + " with license plate ": " con matrícula ", + " I am currently located at ": "Actualmente estoy ubicado en ", + "Please go to Car now ": "Por favor, ve al coche ahora ", + "You will receive a code in WhatsApp Messenger": "Recibirás un código en WhatsApp Messenger", + "If you need assistance, contact us": "Si necesitas ayuda, contáctanos", + "Promo Ended": "Promoción terminada", + "Enter the promo code and get": "Ingresa el código de promoción y obtén", + "DISCOUNT": "DESCUENTO", + "No wallet record found": "No se encontró ningún registro de billetera", + "for": "para", + "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 es la aplicación de viajes compartidos más segura que introduce muchas características tanto para capitanes como para pasajeros. Ofrecemos la tasa de comisión más baja de solo el 8%, asegurando que obtengas el mejor valor por tus viajes. Nuestra aplicación incluye seguro para los mejores capitanes, mantenimiento regular de coches con los mejores ingenieros y servicios en carretera para garantizar una experiencia respetuosa y de alta calidad para todos los usuarios.", + "You can contact us during working hours from 12:00 - 19:00.": "Puedes contactarnos durante el horario de trabajo de 12:00 - 19:00.", + "Choose a contact option": "Elige una opción de contacto", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "El horario de trabajo es de 12:00 - 19:00.\\nPuedes enviar un mensaje de WhatsApp o un correo electrónico.", + "Promo code copied to clipboard!": "¡Código de promoción copiado al portapapeles!", + "Copy Code": "Copiar código", + "Your invite code was successfully applied!": "¡Tu código de invitación fue aplicado con éxito!", + "Payment Options": "Opciones de pago", + "wait 1 minute to receive message": "espera 1 minuto para recibir el mensaje", + "You have copied the promo code.": "Has copiado el código de promoción.", + "Select Payment Amount": "Seleccionar monto de pago", + "The promotion period has ended.": "El período de promoción ha terminado.", + "Promo Code Accepted": "Código de promoción aceptado", + "Tap on the promo code to copy it!": "¡Toca el código de promoción para copiarlo!", + "Lowest Price Achieved": "Precio más bajo alcanzado", + "Cannot apply further discounts.": "No se pueden aplicar más descuentos.", + "Promo Already Used": "Promoción ya utilizada", + "Invitation Used": "Invitación utilizada", + "You have already used this promo code.": "Ya has usado este código de promoción.", + "Insert Your Promo Code": "Inserta tu código de promoción", + "Enter promo code here": "Ingresa el código de promoción aquí", + "Please enter a valid promo code": "Por favor, ingresa un código de promoción válido", + "Awfar Car": "Coche Awfar", + "Old and affordable, perfect for budget rides.": "Viejo y asequible, perfecto para viajes económicos.", + " If you need to reach me, please contact the driver directly at": " Si necesitas contactarme, por favor contacta al conductor directamente al", + "No Car or Driver Found in your area.": "No se encontró ningún coche o conductor en tu área.", + "Please Try anther time ": "Por favor, intenta otro momento ", + "There no Driver Aplly your order sorry for that ": "Ningún conductor aplicó tu pedido, lo sentimos ", + "Trip Cancelled": "Viaje cancelado", + "The Driver Will be in your location soon .": "El conductor estará en tu ubicación pronto .", + "The distance less than 500 meter.": "La distancia es menor a 500 metros.", + "Promo End !": "¡Promoción terminada!", + "There is no notification yet": "Aún no hay notificaciones", + "Use Touch ID or Face ID to confirm payment": "Usa Touch ID o Face ID para confirmar el pago", + "Contact us for any questions on your order.": "Contáctanos si tienes preguntas sobre tu pedido.", + "Pyament Cancelled .": "Pago cancelado .", + "type here": "escribe aquí", + "Scan Driver License": "Escanear licencia de conducir", + "Please put your licence in these border": "Por favor, coloca tu licencia en este marco", + "Camera not initialized yet": "La cámara aún no se ha inicializado", + "Take Image": "Tomar imagen", + "AI Page": "Página de IA", + "Take Picture Of ID Card": "Tomar foto de la tarjeta de identificación", + "Take Picture Of Driver License Card": "Tomar foto de la tarjeta de licencia de conducir", + "We are process picture please wait ": "Estamos procesando la imagen, por favor espera ", + "There is no data yet.": "Aún no hay datos.", + "Name :": "Nombre :", + "Drivers License Class: ": "Clase de licencia de conducir: ", + "Document Number: ": "Número de documento: ", + "Address: ": "Dirección: ", + "Height: ": "Altura: ", + "Expiry Date: ": "Fecha de vencimiento: ", + "Date of Birth: ": "Fecha de nacimiento: ", + "You can't continue with us .\\nYou should renew Driver license": "No puedes continuar con nosotros.\\nDeberías renovar tu licencia de conducir", + "Detect Your Face ": "Detecta tu cara ", + "Go to next step\\nscan Car License.": "Ve al siguiente paso\\nescanea la licencia del coche.", + "Name in arabic": "Nombre en árabe", + "Drivers License Class": "Clase de licencia de conducir", + "Selected Date": "Fecha seleccionada", + "Select Time": "Seleccionar hora", + "Selected Time": "Hora seleccionada", + "Selected Date and Time": "Fecha y hora seleccionadas", + "Lets check Car license ": "Vamos a verificar la licencia del coche ", + "Car": "Coche", + "Plate": "Placa", + "Rides": "Viajes", + "Selected driver": "Conductor seleccionado", + "Lets check License Back Face": "Vamos a verificar la parte trasera de la licencia", + "Car License Card": "Tarjeta de licencia de coche", + "No image selected yet": "Aún no se ha seleccionado ninguna imagen", + "Made :": "Hecho :", + "model :": "modelo :", + "VIN :": "Número de chasis :", + "year :": "año :", + "ُExpire Date": "Fecha de vencimiento", + "Login Driver": "Iniciar sesión como conductor", + "Password must br at least 6 character.": "La contraseña debe tener al menos 6 caracteres.", + "if you don't have account": "si no tienes cuenta", + "Here recorded trips audio": "Aquí están los audios de los viajes grabados", + "Register as Driver": "Registrarse como conductor", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Al seleccionar \"Acepto\" a continuación, he revisado y acepto los Términos de uso y reconozco el ", + "Log Out Page": "Página de cierre de sesión", + "Log Off": "Cerrar sesión", + "Register Driver": "Registrar conductor", + "Verify Email For Driver": "Verificar correo electrónico para el conductor", + "Admin DashBoard": "Panel de administración", + "Your name": "Tu nombre", + "your ride is applied": "tu viaje ha sido aplicado", + "H and": "Horas y", + "JOD": "JOD", + "m": "minutos", + "We search nearst Driver to you": "Buscamos al conductor más cercano para ti", + "please wait till driver accept your order": "por favor espera hasta que el conductor acepte tu pedido", + "No accepted orders? Try raising your trip fee to attract riders.": "¿No hay pedidos aceptados? Intenta aumentar la tarifa de tu viaje para atraer a los conductores.", + "You should select one": "Debes seleccionar uno", + "The driver accept your order for": "El conductor aceptó tu pedido para", + "The driver on your way": "El conductor está en camino", + "Total price from ": "Precio total desde ", + "Order Details Intaleq": "Detalles del pedido Velocidad", + "Selected file:": "Archivo seleccionado:", + "Your trip cost is": "El costo de tu viaje es", + "this will delete all files from your device": "esto eliminará todos los archivos de tu dispositivo", + "Exclusive offers and discounts always with the Intaleq app": "Ofertas exclusivas y descuentos siempre con la aplicación Intaleq", + "Submit Question": "Enviar pregunta", + "Please enter your Question.": "Por favor, ingresa tu pregunta.", + "Help Details": "Detalles de ayuda", + "No trip yet found": "Aún no se ha encontrado ningún viaje", + "No Response yet.": "Aún no hay respuesta.", + " You Earn today is ": " Lo que ganaste hoy es ", + " You Have in": " Tienes en", + "Total points is ": "El total de puntos es ", + "Total Connection Duration:": "Duración total de la conexión:", + "Passenger name : ": "Nombre del pasajero : ", + "Cost Of Trip IS ": "El costo del viaje es ", + "Arrival time": "Hora de llegada", + "arrival time to reach your point": "hora de llegada para llegar a tu punto", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Para viajes de velocidad y scooter, el precio se calcula dinámicamente. Para viajes de confort, el precio se basa en el tiempo y la distancia.", + "Hello this is Driver": "Hola, este es el conductor", + "Is the Passenger in your Car ?": "¿El pasajero está en tu coche?", + "Please wait for the passenger to enter the car before starting the trip.": "Por favor, espera a que el pasajero entre al coche antes de iniciar el viaje.", + "No ,still Waiting.": "No, aún esperando.", + "I arrive you": "Llego a ti", + "I Arrive your site": "Llego a tu sitio", + "You are not in near to passenger location": "No estás cerca de la ubicación del pasajero", + "please go to picker location exactly": "por favor ve exactamente a la ubicación del recolector", + "You Can Cancel Trip And get Cost of Trip From": "Puedes cancelar el viaje y obtener el costo del viaje de", + "Are you sure to cancel?": "¿Estás seguro de cancelar?", + "Insert Emergincy Number": "Insertar número de emergencia", + "Best choice for comfort car and flexible route and stops point": "Mejor opción para un coche cómodo y una ruta flexible con puntos de parada", + "Insert": "Insertar", + "This is for scooter or a motorcycle.": "Esto es para un scooter o una motocicleta.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Este viaje va directamente desde tu punto de inicio hasta tu destino por un precio fijo. El conductor debe seguir la ruta planificada.", + "You can decline a request without any cost": "Puedes rechazar una solicitud sin ningún costo", + "Perfect for adventure seekers who want to experience something new and exciting": "Perfecto para los buscadores de aventuras que quieren experimentar algo nuevo y emocionante", + "My current location is:": "Mi ubicación actual es:", + "and I have a trip on": "y tengo un viaje el", + "App with Passenger": "Aplicación con pasajero", + "You will be pay the cost to driver or we will get it from you on next trip": "Pagarás el costo al conductor o lo obtendremos de ti en el próximo viaje", + "Trip has Steps": "El viaje tiene pasos", + "Distance from Passenger to destination is ": "La distancia del pasajero al destino es ", + "price is": "el precio es", + "This ride type does not allow changes to the destination or additional stops": "Este tipo de viaje no permite cambios en el destino o paradas adicionales", + "This price may be changed": "Este precio puede cambiar", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "¡Sin tarjeta SIM, no hay problema! Llama a tu conductor directamente a través de nuestra aplicación. Usamos tecnología avanzada para garantizar tu privacidad.", + "This ride type allows changes, but the price may increase": "Este tipo de viaje permite cambios, pero el precio puede aumentar", + "Select one message": "Selecciona un mensaje", + "I'm waiting for you": "Te estoy esperando", + "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.": "Notamos que la velocidad supera los 100 km/h. Por favor, reduce la velocidad por tu seguridad. Si te sientes inseguro, puedes compartir los detalles de tu viaje con un contacto o llamar a la policía usando el botón rojo de SOS.", + "Warning: Intaleqing detected!": "¡Advertencia: Se detectó exceso de velocidad!", + "Please help! Contact me as soon as possible.": "¡Por favor, ayuda! Contáctame lo antes posible.", + "Share Trip Details": "Compartir detalles del viaje", + "Car Plate is ": "La placa del coche es ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 puntos equivalen a 300 L.E para ti \\nAsí que ve y gana tu dinero", + "the 300 points equal 300 L.E": "300 puntos equivalen a 300 L.E", + "The payment was not approved. Please try again.": "El pago no fue aprobado. Por favor, inténtalo de nuevo.", + "Payment Failed": "Pago fallido", + "This is a scheduled notification.": "Esta es una notificación programada.", + "An error occurred during the payment process.": "Ocurrió un error durante el proceso de pago.", + "The payment was approved.": "El pago fue aprobado.", + "Payment Successful": "Pago exitoso", + "No ride found yet": "Aún no se ha encontrado ningún viaje", + "Accept Order": "Aceptar pedido", + "Bottom Bar Example": "Ejemplo de barra inferior", + "Driver phone": "Teléfono del conductor", + "Statistics": "Estadísticas", + "Origin": "Origen", + "Destination": "Destino", + "Driver Name": "Nombre del conductor", + "Driver Car Plate": "Placa del coche del conductor", + "Available for rides": "Disponible para viajes", + "Scan Id": "Escanear ID", + "Camera not initilaized yet": "La cámara aún no se ha inicializado", + "Scan ID MklGoogle": "Escanear ID MklGoogle", + "Language": "Idioma", + "Jordan": "Jordania", + "USA": "EE. UU.", + "Egypt": "Egipto", + "Turkey": "Turquía", + "Saudi Arabia": "Arabia Saudita", + "Qatar": "Catar", + "Bahrain": "Baréin", + "Kuwait": "Kuwait", + "But you have a negative salary of": "Pero tienes un salario negativo de", + "Promo Code": "Código de promoción", + "Your trip distance is": "La distancia de tu viaje es", + "Enter promo code": "Ingresar código de promoción", + "You have promo!": "¡Tienes una promoción!", + "Cost Duration": "Duración del costo", + "Duration is": "La duración es", + "Leave": "Salir", + "Join": "Unirse", + "Heading your way now. Please be ready.": "En camino hacia ti ahora. Por favor, estate listo.", + "Approaching your area. Should be there in 3 minutes.": "Acercándome a tu área. Debería estar allí en 3 minutos.", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Hay mucho tráfico aquí. ¿Puedes sugerir un punto de recogida alternativo?", + "This ride is already taken by another driver.": "Este viaje ya ha sido tomado por otro conductor.", + "You Should be select reason.": "Debes seleccionar una razón.", + "Waiting for Driver ...": "Esperando al conductor ...", + "Latest Recent Trip": "Último viaje reciente", + "from your list": "de tu lista", + "Do you want to change Work location": "¿Quieres cambiar la ubicación del trabajo?", + "Do you want to change Home location": "¿Quieres cambiar la ubicación del hogar?", + "We Are Sorry That we dont have cars in your Location!": "¡Lamentamos no tener coches en tu ubicación!", + "Choose from Map": "Elegir del mapa", + "Pick your ride location on the map - Tap to confirm": "Elige la ubicación de tu viaje en el mapa - Toca para confirmar", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq es la aplicación de viajes compartidos que es segura, confiable y accesible.", + "With Intaleq, you can get a ride to your destination in minutes.": "Con Intaleq, puedes llegar a tu destino en minutos.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq se compromete con la seguridad, y todos nuestros capitanes son cuidadosamente seleccionados y verificados.", + "Pick from map": "Elegir del mapa", + "No Car in your site. Sorry!": "No hay coche en tu sitio. ¡Lo siento!", + "Nearest Car for you about ": "El coche más cercano para ti en aproximadamente ", + "From :": "Desde :", + "Get Details of Trip": "Obtener detalles del viaje", + "If you want add stop click here": "Si quieres añadir una parada, haz clic aquí", + "Where you want go ": "A dónde quieres ir ", + "My Card": "Mi tarjeta", + "Start Record": "Iniciar grabación", + "History of Trip": "Historial de viajes", + "Helping Center": "Centro de ayuda", + "Record saved": "Grabación guardada", + "Trips recorded": "Viajes grabados", + "Select Your Country": "Selecciona tu país", + "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.", + "Are you sure to delete recorded files": "¿Estás seguro de eliminar los archivos grabados?", + "Select recorded trip": "Seleccionar viaje grabado", + "Card Number": "Número de tarjeta", + "Hi, Where to ": "Hola, a dónde ", + "Pick your destination from Map": "Elige tu destino del mapa", + "Add Stops": "Añadir paradas", + "Get Direction": "Obtener dirección", + "Add Location": "Añadir ubicación", + "Switch Rider": "Cambiar pasajero", + "You will arrive to your destination after timer end.": "Llegarás a tu destino después de que termine el temporizador.", + "You can cancel trip": "Puedes cancelar el viaje", + "The driver waitting you in picked location .": "El conductor te está esperando en la ubicación seleccionada .", + "Pay with Your": "Paga con tu", + "Pay with Credit Card": "Pagar con tarjeta de crédito", + "Show Promos to Charge": "Mostrar promociones para cargar", + "Point": "Punto", + "How many hours would you like to wait?": "¿Cuántas horas te gustaría esperar?", + "Driver Wallet": "Billetera del conductor", + "Choose between those Type Cars": "Elige entre esos tipos de coches", + "hour": "hora", + "Select Waiting Hours": "Seleccionar horas de espera", + "Total Points is": "El total de puntos es", + "You will receive a code in SMS message": "Recibirás un código en un mensaje SMS", + "Done": "Hecho", + "Total Budget from trips is ": "El presupuesto total de los viajes es ", + "Total Amount:": "Monto total:", + "Total Budget from trips by\\nCredit card is ": "El presupuesto total de los viajes por\\nTarjeta de crédito es ", + "This amount for all trip I get from Passengers": "Este monto por todos los viajes que obtengo de los pasajeros", + "Pay from my budget": "Pagar de mi presupuesto", + "This amount for all trip I get from Passengers and Collected For me in": "Este monto por todos los viajes que obtengo de los pasajeros y recaudado para mí en", + "You can buy points from your budget": "Puedes comprar puntos de tu presupuesto", + "insert amount": "insertar monto", + "You can buy Points to let you online\\nby this list below": "Puedes comprar puntos para estar en línea\\ncon esta lista a continuación", + "Create Wallet to receive your money": "Crea una billetera para recibir tu dinero", + "Enter your feedback here": "Ingresa tu retroalimentación aquí", + "Please enter your feedback.": "Por favor, ingresa tu retroalimentación.", + "Feedback": "Retroalimentación", + "Submit ": "Enviar ", + "Click here to Show it in Map": "Haz clic aquí para mostrarlo en el mapa", + "Canceled": "Cancelado", + "No I want": "No, quiero", + "Email is": "El correo electrónico es", + "Phone Number is": "El número de teléfono es", + "Date of Birth is": "La fecha de nacimiento es", + "Sex is ": "El sexo es ", + "Car Details": "Detalles del coche", + "VIN is": "El número de chasis es", + "Color is ": "El color es ", + "Make is ": "La marca es ", + "Model is": "El modelo es", + "Year is": "El año es", + "Expiration Date ": "Fecha de vencimiento ", + "Edit Your data": "Edita tus datos", + "write vin for your car": "escribe el número de chasis de tu coche", + "VIN": "Número de chasis", + "Please verify your identity": "Por favor, verifique su identidad", + "write Color for your car": "escribe el color de tu coche", + "write Make for your car": "escribe la marca de tu coche", + "write Model for your car": "escribe el modelo de tu coche", + "write Year for your car": "escribe el año de tu coche", + "write Expiration Date for your car": "escribe la fecha de vencimiento de tu coche", + "Tariffs": "Tarifas", + "Minimum fare": "Tarifa mínima", + "Maximum fare": "Tarifa máxima", + "Flag-down fee": "Tarifa base", + "Including Tax": "Incluyendo impuesto", + "BookingFee": "Tarifa de reserva", + "Morning": "Mañana", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "de 07:30 a 10:30 (jueves, viernes, sábado, lunes)", + "Evening": "Tarde", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "de 12:00 a 15:00 (jueves, viernes, sábado, lunes)", + "Night": "Noche", + "You have in account": "Tienes en la cuenta", + "Select Country": "Seleccionar país", + "Ride Today : ": "Viaje hoy : ", + "from 23:59 till 05:30": "de 23:59 a 05:30", + "Rate Driver": "Calificar al conductor", + "Total Cost is ": "El costo total es ", + "Write note": "Escribir nota", + "Time to arrive": "Hora de llegada", + "Ride Summaries": "Resúmenes de viajes", + "Total Cost": "Costo total", + "Average of Hours of": "Promedio de horas de", + " is ON for this month": " está activo este mes", + "Days": "Días", + "Total Hours on month": "Horas totales en el mes", + "Counts of Hours on days": "Cantidad de horas por día", + "OrderId": "ID del pedido", + "created time": "hora de creación", + "Intaleq Over": "Exceso de velocidad", + "I will slow down": "Reduciré la velocidad", + "Map Passenger": "Mapa del pasajero", + "Be Slowly": "Ser lento", + "If you want to make Google Map App run directly when you apply order": "Si quieres que la aplicación Google Map se ejecute directamente cuando aplicas un pedido", + "You can change the language of the app": "Puedes cambiar el idioma de la aplicación", + "Your Budget less than needed": "Tu presupuesto es menor que lo necesario", + "You can change the Country to get all features": "Puedes cambiar el país para obtener todas las características", + "There is no Car or Driver in your area.": "No hay coches ni conductores en su zona.", + "Change Country": "Cambiar país" + }, + "fa": { + "About Intaleq": "درباره انطلق", + "Chat with us anytime": "هر زمان با ما چت کنید", + "Direct talk with our team": "صحبت مستقیم با تیم ما", + "Email Support": "پشتیبانی ایمیلی", + "For official inquiries": "برای استعلام‌های رسمی", + "Intaleq Support": "پشتیبانی انطلق", + "Reach out to us via": "با ما در تماس باشید از طریق", + "Support is Away": "پشتیبانی در حال حاضر در دسترس نیست", + "Support is currently Online": "پشتیبانی در حال حاضر آنلاین است", + "Voice Call": "تماس صوتی", + "We're here to help you 24/7": "ما ۷/۲۴ برای کمک به شما آماده‌ایم", + "Working Hours:": "ساعات کاری:", + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "بعد از این مدت\\nنمی‌توانید لغو کنید!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "سلام! شما را به امتحان کردن Intaleq دعوت می‌کنم.", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "سوریه", + "SYP": "لیره سوریه", + "Order": "درخواست", + "OrderVIP": "درخواست VIP", + "Cancel Trip": "لغو سفر", + "Passenger Cancel Trip": "مسافر سفر را لغو کرد", + "VIP Order": "سفارش VIP", + "The driver accepted your trip": "راننده سفر شما را پذیرفت", + "message From passenger": "پیام از مسافر", + "Cancel": "لغو", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "سفر لغو شد. هزینه سفر به کیف پول شما اضافه خواهد شد.", + "token change": "تغییر توکن", + "Changed my mind": "نظرم عوض شد", + "Please write the reason...": "لطفاً دلیل را بنویسید...", + "Found another transport": "وسیله نقلیه دیگری پیدا کردم", + "Driver is taking too long": "راننده خیلی طول می‌دهد", + "Driver asked me to cancel": "راننده از من خواست لغو کنم", + "Wrong pickup location": "محل سوار شدن اشتباه است", + "Other": "سایر", + "Don't Cancel": "لغو نکنید", + "No Drivers Found": "راننده‌ای پیدا نشد", + "Sorry, there are no cars available of this type right now.": "متأسفیم، در حال حاضر خودرویی از این نوع در دسترس نیست.", + "Refresh Map": "به‌روزرسانی نقشه", + "face detect": "تشخیص چهره", + "Face Detection Result": "نتیجه تشخیص چهره", + "similar": "مشابه", + "not similar": "غیر مشابه", + "Searching for nearby drivers...": "در حال جستجوی رانندگان نزدیک...", + "Error": "خطا", + "Failed to search, please try again later": "جستجو ناموفق بود، لطفاً بعداً تلاش کنید", + "Connection Error": "خطای اتصال", + "Please check your internet connection": "لطفاً اتصال اینترنت خود را بررسی کنید", + "Sorry 😔": "متأسفیم 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "راننده سفر را به دلیل وضعیت اضطراری لغو کرد.\\nآیا می‌خواهید بلافاصله به دنبال راننده دیگری بگردید؟", + "Search for another driver": "جستجو برای راننده دیگر", + "We apologize 😔": "عذرخواهی می‌کنیم 😔", + "No drivers found at the moment.\\nPlease try again later.": "در حال حاضر راننده‌ای پیدا نشد.\\nلطفاً بعداً دوباره تلاش کنید.", + "Hi ,I will go now": "سلام، من الان حرکت می‌کنم", + "Passenger come to you": "مسافر به سمت شما می‌آید", + "Call Income": "تماس ورودی", + "Call Income from Passenger": "تماس ورودی از مسافر", + "Criminal Document Required": "گواهی عدم سوءپیشینه الزامی است", + "You should have upload it .": "شما باید آن را آپلود کنید.", + "Call End": "پایان تماس", + "The order has been accepted by another driver.": "درخواست توسط راننده دیگری پذیرفته شد.", + "The order Accepted by another Driver": "درخواست توسط راننده دیگری پذیرفته شد", + "We regret to inform you that another driver has accepted this order.": "متاسفیم، راننده دیگری این درخواست را پذیرفته است.", + "Driver Applied the Ride for You": "راننده درخواست سفر را برای شما ثبت کرد", + "Applied": "ثبت شد", + "Please go to Car Driver": "لطفاً به سمت خودروی راننده بروید", + "Ok I will go now.": "باشه، الان می‌روم.", + "Accepted Ride": "سفر پذیرفته شد", + "Driver Accepted the Ride for You": "راننده سفر را برای شما پذیرفت", + "Promo": "کد تخفیف", + "Show latest promo": "نمایش آخرین تخفیف‌ها", + "Trip Monitoring": "نظارت بر سفر", + "Driver Is Going To Passenger": "راننده در حال حرکت به سمت مسافر است", + "Please stay on the picked point.": "لطفاً در نقطه انتخاب شده بمانید.", + "message From Driver": "پیام از راننده", + "Trip is Begin": "سفر آغاز شد", + "Cancel Trip from driver": "لغو سفر توسط راننده", + "We will look for a new driver.\\nPlease wait.": "ما به دنبال راننده جدید می‌گردیم.\\nلطفاً صبر کنید.", + "The driver canceled your ride.": "راننده سفر شما را لغو کرد.", + "Driver Finish Trip": "راننده سفر را تمام کرد", + "you will pay to Driver": "شما به راننده پرداخت می‌کنید", + "Don’t forget your personal belongings.": "وسایل شخصی خود را جا نگذارید.", + "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": "لطفاً مطمئن شوید که تمام وسایل شخصی خود را برداشته‌اید و باقی‌مانده کرایه به کیف پول شما اضافه شده است. از انتخاب اپلیکیشن Intaleq متشکریم.", + "Finish Monitor": "پایان نظارت", + "Trip finished": "سفر پایان یافت", + "Call Income from Driver": "تماس از راننده", + "Driver Cancelled Your Trip": "راننده سفر شما را لغو کرد", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "هزینه زمان راننده را پرداخت خواهید کرد، کیف پول Intaleq را ببینید", + "Order Applied": "درخواست ثبت شد", + "welcome to intaleq": "به Intaleq خوش آمدید", + "login or register subtitle": "برای ورود یا ثبت نام شماره موبایل خود را وارد کنید", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "برای این سفر نمی‌توان شکایت ثبت کرد. ممکن است تکمیل یا شروع نشده باشد.", + "phone number label": "شماره تلفن", + "phone number required": "شماره تلفن الزامی است", + "send otp button": "ارسال کد تأیید", + "verify your number title": "تأیید شماره", + "otp sent subtitle": "یک کد ۵ رقمی به شماره\\n@phoneNumber ارسال شد", + "verify and continue button": "تأیید و ادامه", + "enter otp validation": "لطفاً کد تأیید ۵ رقمی را وارد کنید", + "one last step title": "یک قدم دیگر", + "complete profile subtitle": "برای شروع پروفایل خود را تکمیل کنید", + "first name label": "نام", + "first name required": "نام الزامی است", + "last name label": "نام خانوادگی", + "Verify OTP": "تأیید کد", + "Verification Code": "کد تأیید", + "We have sent a verification code to your mobile number:": "ما یک کد تأیید به شماره موبایل شما ارسال کردیم:", + "Verify": "تأیید", + "Resend Code": "ارسال مجدد کد", + "You can resend in": "ارسال مجدد در", + "seconds": "ثانیه", + "Please enter the complete 6-digit code.": "لطفاً کد کامل ۶ رقمی را وارد کنید.", + "last name required": "نام خانوادگی الزامی است", + "email optional label": "ایمیل (اختیاری)", + "complete registration button": "تکمیل ثبت نام", + "User with this phone number or email already exists.": "کاربری با این شماره تلفن یا ایمیل قبلاً ثبت نام کرده است.", + "otp sent success": "کد تأیید به واتس‌اپ ارسال شد.", + "failed to send otp": "ارسال کد تأیید ناموفق بود.", + "server error try again": "خطای سرور، لطفاً دوباره تلاش کنید.", + "an error occurred": "خطایی رخ داد: @error", + "otp verification failed": "تأیید کد ناموفق بود.", + "registration failed": "ثبت نام ناموفق بود.", + "welcome user": "خوش آمدید، @firstName!", + "Don't forget your personal belongings.": "وسایل شخصی خود را فراموش نکنید.", + "Share App": "اشتراک‌گذاری برنامه", + "Wallet": "کیف پول", + "Balance": "موجودی", + "Profile": "پروفایل", + "Contact Support": "تماس با پشتیبانی", + "Session expired. Please log in again.": "نشست منقضی شد. لطفاً دوباره وارد شوید.", + "Security Warning": "⚠️ هشدار امنیتی", + "Potential security risks detected. The application may not function correctly.": "خطرات امنیتی احتمالی شناسایی شد. ممکن است برنامه به درستی کار نکند.", + "please order now": "اکنون سفارش دهید", + "Where to": "کجا می‌روید؟", + "Where are you going?": "به کجا می‌روید؟", + "Quick Actions": "دسترسی سریع", + "My Balance": "موجودی من", + "Order History": "تاریخچه سفارش‌ها", + "Contact Us": "تماس با ما", + "Driver": "راننده", + "Complaint": "شکایت", + "Promos": "تخفیف‌ها", + "Recent Places": "مکان‌های اخیر", + "From": "از", + "WhatsApp Location Extractor": "استخراج موقعیت واتس‌اپ", + "Location Link": "لینک موقعیت", + "Paste location link here": "لینک موقعیت را اینجا پیست کنید", + "Go to this location": "برو به این موقعیت", + "Paste WhatsApp location link": "لینک موقعیت واتس‌اپ را پیست کنید", + "Select Order Type": "انتخاب نوع درخواست", + "Choose who this order is for": "این درخواست برای چه کسی است", + "I want to order for myself": "برای خودم درخواست می‌دهم", + "I want to order for someone else": "برای شخص دیگری درخواست می‌دهم", + "Order for someone else": "درخواست برای دیگری", + "Order for myself": "درخواست برای خودم", + "Are you want to go this site": "آیا می‌خواهید به این مکان بروید", + "No": "خیر", + "Intaleq Wallet": "کیف پول Intaleq", + "Have a promo code?": "کد تخفیف دارید؟", + "Your Wallet balance is ": "موجودی کیف پول شما: ", + "Cash": "نقدی", + "Pay directly to the captain": "پرداخت مستقیم به سفیر (راننده)", + "Top up Wallet to continue": "برای ادامه کیف پول را شارژ کنید", + "Or pay with Cash instead": "یا به صورت نقدی پرداخت کنید", + "Confirm & Find a Ride": "تأیید و یافتن خودرو", + "Balance:": "موجودی:", + "Alerts": "هشدارها", + "Welcome Back!": "خوش آمدید!", + "Current Balance": "موجودی فعلی", + "Set Wallet Phone Number": "تنظیم شماره تلفن کیف پول", + "Link a phone number for transfers": "اتصال شماره تلفن برای انتقال", + "Payment History": "تاریخچه پرداخت", + "View your past transactions": "مشاهده تراکنش‌های قبلی", + "Top up Wallet": "شارژ کیف پول", + "Add funds using our secure methods": "افزایش اعتبار با روش‌های امن", + "Increase Fare": "افزایش کرایه", + "No drivers accepted your request yet": "هنوز هیچ راننده‌ای درخواست شما را نپذیرفته است", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "افزایش کرایه ممکن است رانندگان بیشتری را جذب کند. آیا مایل به افزایش قیمت هستید؟", + "Please make sure not to leave any personal belongings in the car.": "لطفاً مطمئن شوید هیچ وسیله شخصی در خودرو جا نماند.", + "Cancel Ride": "لغو سفر", + "Route Not Found": "مسیر یافت نشد", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "مسیر معتبری به این مقصد پیدا نکردیم. لطفاً نقطه دیگری را انتخاب کنید.", + "You can call or record audio during this trip.": "شما می‌توانید در طول این سفر تماس بگیرید یا صدا ضبط کنید.", + "Warning: Speeding detected!": "هشدار: سرعت غیرمجاز تشخیص داده شد!", + "Comfort": "آسایش (Comfort)", + "Intaleq Balance": "اعتبار Intaleq", + "Electric": "الکتریکی", + "Lady": "بانوان", + "Van": "ون", + "Rayeh Gai": "رفت و برگشت", + "Join Intaleq as a driver using my referral code!": "با کد معرف من به عنوان راننده به Intaleq بپیوندید!", + "Use code:": "استفاده از کد:", + "Download the Intaleq Driver app now and earn rewards!": "اپلیکیشن رانندگان Intaleq را دانلود کنید و پاداش بگیرید!", + "Get a discount on your first Intaleq ride!": "برای اولین سفر خود در Intaleq تخفیف بگیرید!", + "Use my referral code:": "از کد معرف من استفاده کنید:", + "Download the Intaleq app now and enjoy your ride!": "اپلیکیشن Intaleq را دانلود کنید و از سفر خود لذت ببرید!", + "Contacts Loaded": "مخاطبین بارگذاری شدند", + "Showing": "نمایش", + "of": "از", + "Customer not found": "مشتری یافت نشد", + "Wallet is blocked": "کیف پول مسدود شده است", + "Customer phone is not active": "تلفن مشتری فعال نیست", + "Balance not enough": "موجودی کافی نیست", + "Balance limit exceeded": "موجودی بیش از حد مجاز است", + "Incorrect sms code": "⚠️ کد پیامک اشتباه است. لطفاً دوباره تلاش کنید.", + "contacts. Others were hidden because they don't have a phone number.": "مخاطب. بقیه پنهان شدند چون شماره تلفن ندارند.", + "No contacts found": "مخاطبی یافت نشد", + "No contacts with phone numbers were found on your device.": "هیچ مخاطبی با شماره تلفن در دستگاه شما یافت نشد.", + "Permission denied": "دسترسی رد شد", + "Contact permission is required to pick contacts": "برای انتخاب مخاطبین دسترسی به دفترچه تلفن الزامی است.", + "An error occurred while picking contacts:": "هنگام انتخاب مخاطبین خطایی رخ داد:", + "Please enter a correct phone": "لطفاً یک شماره تلفن صحیح وارد کنید", + "Success": "موفقیت", + "Invite sent successfully": "دعوت‌نامه با موفقیت ارسال شد", + "Use my invitation code to get a special gift on your first ride!": "از کد دعوت من استفاده کنید تا در اولین سفر هدیه ویژه بگیرید!", + "Your personal invitation code is:": "کد دعوت شخصی شما:", + "Be sure to use it quickly! This code expires at": "سریع استفاده کنید! این کد منقضی می‌شود در", + "Download the app now:": "اپلیکیشن را دانلود کنید:", + "See you on the road!": "به امید دیدار در جاده!", + "This phone number has already been invited.": "این شماره قبلاً دعوت شده است.", + "An unexpected error occurred. Please try again.": "خطای غیرمنتظره‌ای رخ داد. لطفاً دوباره تلاش کنید.", + "You deserve the gift": "شما شایسته این هدیه هستید", + "Claim your 20 LE gift for inviting": "هدیه ۲۰ تومانی خود را برای دعوت دریافت کنید", + "You have got a gift for invitation": "شما یک هدیه برای دعوت دریافت کردید", + "You have earned 20": "شما ۲۰ امتیاز کسب کردید", + "LE": "تومان", + "Vibration feedback for all buttons": "بازخورد لرزشی برای همه دکمه‌ها", + "Share with friends and earn rewards": "با دوستان به اشتراک بگذارید و پاداش بگیرید", + "Gift Already Claimed": "هدیه قبلاً دریافت شده است", + "You have already received your gift for inviting": "شما قبلاً هدیه خود را برای این دعوت دریافت کرده‌اید", + "Keep it up!": "ادامه بده!", + "has completed": "تکمیل کرد", + "trips": "سفرها", + "Personal Information": "اطلاعات شخصی", + "Name": "نام", + "Not set": "تنظیم نشده", + "Gender": "جنسیت", + "Education": "تحصیلات", + "Work & Contact": "کار و تماس", + "Employment Type": "نوع شغل", + "Marital Status": "وضعیت تاهل", + "SOS Phone": "تلفن اضطراری", + "Sign Out": "خروج از حساب", + "Delete My Account": "حذف حساب من", + "Update Gender": "بروزرسانی جنسیت", + "Update": "بروزرسانی", + "Update Education": "بروزرسانی تحصیلات", + "Are you sure? This action cannot be undone.": "آیا مطمئن هستید؟ این عملیات قابل بازگشت نیست.", + "Confirm your Email": "ایمیل خود را تأیید کنید", + "Type your Email": "ایمیل خود را وارد کنید", + "Delete Permanently": "حذف دائمی", + "Male": "مرد", + "Female": "زن", + "High School Diploma": "دیپلم", + "Associate Degree": "کاردانی", + "Bachelor's Degree": "کارشناسی", + "Master's Degree": "کارشناسی ارشد", + "Doctoral Degree": "دکترا", + "Select your preferred language for the app interface.": "زبان مورد نظر خود را برای برنامه انتخاب کنید.", + "Language Options": "گزینه‌های زبان", + "You can claim your gift once they complete 2 trips.": "پس از انجام ۲ سفر توسط آنها، می‌توانید هدیه خود را دریافت کنید.", + "Closest & Cheapest": "نزدیک‌ترین و ارزان‌ترین", + "Comfort choice": "انتخاب راحت", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "با خودروی الکتریکی مدرن و بی‌صدا سفر کنید. انتخابی ممتاز و دوستدار محیط زیست.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "سرویس ون جادار، ایده‌آل برای خانواده‌ها و گروه‌ها. سفر راحت، امن و مقرون‌به‌صرفه.", + "Quiet & Eco-Friendly": "بی‌صدا و دوستدار محیط زیست", + "Lady Captain for girls": "راننده خانم برای بانوان", + "Van for familly": "ون برای خانواده", + "Are you sure to delete this location?": "آیا از حذف این مکان مطمئن هستید؟", + "Submit a Complaint": "ثبت شکایت", + "Submit Complaint": "ارسال شکایت", + "No trip history found": "تاریخچه سفری یافت نشد", + "Your past trips will appear here.": "سفرهای قبلی شما در اینجا نمایش داده می‌شود.", + "1. Describe Your Issue": "۱. مشکل خود را شرح دهید", + "Enter your complaint here...": "شکایت خود را اینجا بنویسید...", + "2. Attach Recorded Audio": "۲. ضمیمه کردن فایل صوتی", + "No audio files found.": "فایل صوتی یافت نشد.", + "Confirm Attachment": "تأیید پیوست", + "Attach this audio file?": "آیا این فایل صوتی پیوست شود؟", + "Uploaded": "آپلود شد", + "3. Review Details & Response": "۳. بررسی جزئیات و پاسخ", + "Date": "تاریخ", + "Today's Promos": "تخفیف‌های امروز", + "No promos available right now.": "در حال حاضر تخفیفی موجود نیست.", + "Check back later for new offers!": "بعداً برای پیشنهادات جدید سر بزنید!", + "Valid Until:": "معتبر تا:", + "CODE": "کد", + "I Agree": "موافقم", + "Continue": "ادامه", + "Enable Location": "فعال‌سازی موقعیت", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "برای ارائه بهترین خدمات، باید بدانیم کجا هستید. موقعیت شما برای یافتن رانندگان نزدیک استفاده می‌شود.", + "Allow Location Access": "اجازه دسترسی به موقعیت", + "Welcome to Intaleq!": "به Intaleq خوش آمدید!", + "Before we start, please review our terms.": "قبل از شروع، لطفاً شرایط ما را مرور کنید.", + "Your journey starts here": "سفر شما از اینجا شروع می‌شود", + "Cancel Search": "لغو جستجو", + "Set pickup location": "تنظیم محل سوار شدن", + "Move the map to adjust the pin": "نقشه را برای تنظیم پین جابجا کنید", + "Searching for the nearest captain...": "در حال جستجوی نزدیک‌ترین سفیر...", + "No one accepted? Try increasing the fare.": "کسی قبول نکرد؟ افزایش کرایه را امتحان کنید.", + "Increase Your Trip Fee (Optional)": "افزایش هزینه سفر (اختیاری)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "هنوز راننده‌ای پیدا نکرده‌ایم. برای جذاب‌تر کردن پیشنهاد، کرایه را افزایش دهید.", + "No, thanks": "نه، ممنون", + "Increase Fee": "افزایش کرایه", + "Copy": "کپی", + "Promo Copied!": "کد تخفیف کپی شد!", + "Code": "کد", + "Send Intaleq app to him": "ارسال برنامه Intaleq برای او", + "No passenger found for the given phone number": "مسافری با این شماره تلفن یافت نشد", + "No user found for the given phone number": "کاربری با این شماره تلفن یافت نشد", + "This price is": "این قیمت است", + "Work": "محل کار", + "Add Home": "افزودن خانه", + "Notifications": "اعلان‌ها", + "💳 Pay with Credit Card": "💳 پرداخت با کارت اعتباری", + "⚠️ You need to choose an amount!": "⚠️ باید مبلغی را انتخاب کنید!", + "💰 Pay with Wallet": "💰 پرداخت با کیف پول", + "You must restart the app to change the language.": "برای تغییر زبان باید برنامه را دوباره راه‌اندازی کنید.", + "joined": "پیوست", + "Driver joined the channel": "راننده به کانال پیوست", + "Driver left the channel": "راننده کانال را ترک کرد", + "Call Page": "صفحه تماس", + "Call Left": "تماس‌های باقی‌مانده", + " Next as Cash !": " بعدی به صورت نقدی!", + "To use Wallet charge it": "برای استفاده از کیف پول آن را شارژ کنید", + "We are searching for the nearest driver to you": "در حال جستجو برای نزدیک‌ترین راننده به شما", + "Best choice for cities": "بهترین انتخاب برای شهرها", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رفت و برگشت: سرویس سفر دوطرفه برای راحتی سفر بین شهری.", + "This trip is for women only": "این سفر فقط برای بانوان است", + "Total budgets on month": "مجموع بودجه در ماه", + "You have call from driver": "شما تماس از راننده دارید", + "Intaleq": "Intaleq", + "passenger agreement": "توافق‌نامه مسافر", + "To become a passenger, you must review and agree to the ": "برای مسافر شدن، باید بررسی کنید و موافقت کنید با ", + "agreement subtitle": "برای ادامه، باید شرایط استفاده و سیاست حریم خصوصی را بپذیرید.", + "terms of use": "شرایط استفاده", + " and acknowledge our Privacy Policy.": " و سیاست حریم خصوصی ما را تأیید کنید.", + "and acknowledge our": "و تأیید کنید", + "privacy policy": "سیاست حریم خصوصی.", + "i agree": "موافقم", + "Driver already has 2 trips within the specified period.": "راننده در حال حاضر ۲ سفر در بازه زمانی مشخص دارد.", + "The invitation was sent successfully": "دعوت‌نامه با موفقیت ارسال شد", + "You should select your country": "باید کشور خود را انتخاب کنید", + "Scooter": "اسکوتر", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "سفری با رزرو قبلی، که به شما امکان انتخاب بهترین سفیران و خودروها را می‌دهد.", + "Mishwar Vip": "مشوار VIP", + "The driver waiting you in picked location .": "راننده در محل انتخاب شده منتظر شماست.", + "About Us": "درباره ما", + "You can change the vibration feedback for all buttons": "می‌توانید بازخورد لرزشی دکمه‌ها را تغییر دهید", + "Most Secure Methods": "امن‌ترین روش‌ها", + "In-App VOIP Calls": "تماس اینترنتی درون‌برنامه‌ای", + "Recorded Trips for Safety": "سفرهای ضبط شده برای امنیت", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nما همچنین اولویت را بر مقرون‌به‌صرفه بودن می‌گذاریم.", + "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 یک برنامه درخواست خودرو است که با در نظر گرفتن امنیت و بودجه شما طراحی شده است.", + "Sign In by Apple": "ورود با اپل", + "Sign In by Google": "ورود با گوگل", + "How do I request a ride?": "چگونه درخواست سفر دهم؟", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "دستورالعمل‌های گام‌به‌گام برای درخواست سفر.", + "What types of vehicles are available?": "چه نوع خودروهایی موجود است؟", + "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 گزینه‌های مختلفی از جمله اقتصادی، راحت و لوکس ارائه می‌دهد.", + "How can I pay for my ride?": "چگونه هزینه سفر را پرداخت کنم؟", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq روش‌های پرداخت متعددی ارائه می‌دهد.", + "Can I cancel my ride?": "آیا می‌توانم سفرم را لغو کنم؟", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "بله، شما می‌توانید تحت شرایط خاصی (مثلاً قبل از تعیین راننده) سفر خود را لغو کنید. برای جزئیات به سیاست لغو انطلق مراجعه کنید.", + "Driver Registration & Requirements": "ثبت نام راننده و الزامات", + "How can I register as a driver?": "چگونه به عنوان راننده ثبت نام کنم؟", + "What are the requirements to become a driver?": "شرایط راننده شدن چیست؟", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "برای اطلاعات بیشتر به وب‌سایت ما مراجعه کنید یا با پشتیبانی تماس بگیرید.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq امکان چت درون‌برنامه‌ای را فراهم می‌کند.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq امنیت شما را در اولویت قرار می‌دهد.", + "Frequently Questions": "سوالات متداول", + "User does not exist.": "کاربر وجود ندارد.", + "We need your phone number to contact you and to help you.": "برای تماس و کمک به شما به شماره تلفن نیاز داریم.", + "You will recieve code in sms message": "کد را در پیامک دریافت خواهید کرد", + "Please enter": "لطفاً وارد کنید", + "We need your phone number to contact you and to help you receive orders.": "برای دریافت سفارشات به شماره تلفن نیاز داریم.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "نام کامل در گواهی عدم سوءپیشینه با گواهینامه مطابقت ندارد.", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "کد ملی در گواهینامه با کارت ملی مطابقت ندارد.", + "Capture an Image of Your Criminal Record": "از گواهی عدم سوءپیشینه عکس بگیرید", + "IssueDate": "تاریخ صدور", + "Capture an Image of Your car license front": "از روی کارت ماشین عکس بگیرید", + "Capture an Image of Your ID Document front": "از روی کارت ملی عکس بگیرید", + "NationalID": "کد ملی", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "برنامه را با دوستان به اشتراک بگذارید و پاداش بگیرید.", + "FullName": "نام کامل", + "No invitation found yet!": "هنوز دعوتی پیدا نشد!", + "InspectionResult": "نتیجه معاینه", + "Criminal Record": "گواهی عدم سوءپیشینه", + "The email or phone number is already registered.": "ایمیل یا شماره تلفن قبلاً ثبت شده است.", + "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.": "برای راننده شدن باید مدارک خود را آپلود کنید. هوش مصنوعی ما در ۲-۳ دقیقه بررسی می‌کند.", + "Documents check": "بررسی مدارک", + "Driver's License": "گواهینامه رانندگی", + "for your first registration!": "برای اولین ثبت نام شما!", + "Get it Now!": "همین الان بگیر!", + "before": "قبل از", + "Code not approved": "کد تأیید نشد", + "3000 LE": "۳۰۰۰ تومان", + "Do you have an invitation code from another driver?": "آیا کد دعوت از راننده دیگری دارید؟", + "Paste the code here": "کد را اینجا پیست کنید", + "No, I don't have a code": "خیر، کد ندارم", + "Audio uploaded successfully.": "فایل صوتی با موفقیت آپلود شد.", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "عالی برای مسافرانی که دنبال خودروهای جدید و آزادی انتخاب مسیر هستند", + "Share this code with your friends and earn rewards when they use it!": "این کد را به اشتراک بگذارید و پاداش بگیرید!", + "Enter phone": "وارد کردن تلفن", + "complete, you can claim your gift": "تکمیل شد، می‌توانید هدیه را دریافت کنید", + "When": "وقتی", + "Enter driver's phone": "تلفن راننده را وارد کنید", + "Send Invite": "ارسال دعوت‌نامه", + "Show Invitations": "نمایش دعوت‌ها", + "License Type": "نوع گواهینامه", + "National Number": "کد ملی", + "Name (Arabic)": "نام (فارسی/عربی)", + "Name (English)": "نام (انگلیسی)", + "Address": "آدرس", + "Issue Date": "تاریخ صدور", + "Expiry Date": "تاریخ انقضا", + "License Categories": "دسته‌های گواهینامه", + "driver_license": "گواهینامه", + "Capture an Image of Your Driver License": "عکس گواهینامه خود را بگیرید", + "ID Documents Back": "پشت کارت ملی", + "National ID": "کارت ملی", + "Occupation": "شغل", + "Religion": "مذهب", + "Full Name (Marital)": "نام کامل", + "Expiration Date": "تاریخ انقضا", + "Capture an Image of Your ID Document Back": "عکس پشت کارت ملی", + "ID Documents Front": "روی کارت ملی", + "First Name": "نام", + "CardID": "شماره کارت", + "Vehicle Details Front": "جزئیات خودرو (جلو)", + "Plate Number": "شماره پلاک", + "Owner Name": "نام مالک", + "Vehicle Details Back": "جزئیات خودرو (پشت)", + "Make": "سازنده", + "Model": "مدل", + "Year": "سال", + "Chassis": "شماره شاسی", + "Color": "رنگ", + "Displacement": "حجم موتور", + "Fuel": "سوخت", + "Tax Expiry Date": "تاریخ انقضای مالیات", + "Inspection Date": "تاریخ معاینه فنی", + "Capture an Image of Your car license back": "عکس پشت کارت ماشین", + "Capture an Image of Your Driver's License": "عکس گواهینامه رانندگی", + "Sign in with Google for easier email and name entry": "ورود با گوگل برای سهولت", + "You will choose allow all the time to be ready receive orders": "گزینه 'همیشه اجازه داده شود' را انتخاب کنید", + "Get to your destination quickly and easily.": "سریع و آسان به مقصد برسید.", + "Enjoy a safe and comfortable ride.": "از سفری امن و راحت لذت ببرید.", + "Choose Language": "انتخاب زبان", + "Pay with Wallet": "پرداخت با کیف پول", + "Invalid MPIN": "MPIN نامعتبر", + "Invalid OTP": "کد تأیید نامعتبر", + "Enter your email address": "آدرس ایمیل خود را وارد کنید", + "Please enter Your Email.": "لطفاً ایمیل خود را وارد کنید.", + "Enter your phone number": "شماره تلفن خود را وارد کنید", + "Please enter your phone number.": "لطفاً شماره تلفن خود را وارد کنید.", + "Please enter Your Password.": "لطفاً رمز عبور خود را وارد کنید.", + "if you dont have account": "اگر حساب کاربری ندارید", + "Register": "ثبت نام", + "Accept Ride's Terms & Review Privacy Notice": "پذیرش شرایط و مرور حریم خصوصی", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "با انتخاب 'موافقم'، شرایط و حریم خصوصی را پذیرفته‌ام. من حداقل ۱۸ سال دارم.", + "First name": "نام", + "Enter your first name": "نام خود را وارد کنید", + "Please enter your first name.": "لطفاً نام خود را وارد کنید.", + "Last name": "نام خانوادگی", + "Enter your last name": "نام خانوادگی خود را وارد کنید", + "Please enter your last name.": "لطفاً نام خانوادگی خود را وارد کنید.", + "City": "شهر", + "Please enter your City.": "لطفاً شهر خود را وارد کنید.", + "Verify Email": "تأیید ایمیل", + "We sent 5 digit to your Email provided": "کد ۵ رقمی به ایمیل شما ارسال شد", + "5 digit": "۵ رقم", + "Send Verification Code": "ارسال کد تأیید", + "Your Ride Duration is ": "مدت زمان سفر شما: ", + "You will be thier in": "شما در ... آنجا خواهید بود", + "You trip distance is": "مسافت سفر شما:", + "Fee is": "هزینه:", + "From : ": "از: ", + "To : ": "به: ", + "Add Promo": "افزودن کد تخفیف", + "Confirm Selection": "تأیید انتخاب", + "distance is": "مسافت:", + "Privacy Policy": "سیاست حریم خصوصی", + "Intaleq LLC": "شرکت Intaleq", + "Syria'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.": "سرویس پیشرو اشتراک سفر در ایران.", + "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 اولین برنامه اشتراک سفر است.", + "Why Choose Intaleq?": "چرا Intaleq؟", + "Closest to You": "نزدیک‌ترین به شما", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "ما شما را به نزدیک‌ترین رانندگان متصل می‌کنیم.", + "Uncompromising Security": "امنیت بی چون و چرا", + "Lady Captains Available": "رانندگان خانم موجود است", + "Recorded Trips (Voice & AI Analysis)": "سفرهای ضبط شده (صدا و تحلیل هوش مصنوعی)", + "Fastest Complaint Response": "سریع‌ترین پاسخ به شکایات", + "Our dedicated customer service team ensures swift resolution of any issues.": "تیم پشتیبانی ما مشکلات را سریع حل می‌کند.", + "Affordable for Everyone": "مقرون‌به‌صرفه برای همه", + "Frequently Asked Questions": "سوالات متداول", + "Getting Started": "شروع کار", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "اپلیکیشن را باز کنید، مقصد را وارد کنید و درخواست خودرو دهید.", + "Vehicle Options": "گزینه‌های خودرو", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq گزینه‌های متنوعی ارائه می‌دهد.", + "Payments": "پرداخت‌ها", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "می‌توانید نقدی یا با کارت پرداخت کنید.", + "Ride Management": "مدیریت سفر", + "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "بله، می‌توانید سفر را لغو کنید (ممکن است هزینه داشته باشد).", + "For Drivers": "برای رانندگان", + "Driver Registration": "ثبت نام راننده", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "برای ثبت نام راننده به سایت مراجعه کنید.", + "Visit Website/Contact Support": "مشاهده وب‌سایت / تماس با پشتیبانی", + "Close": "بستن", + "We are searching for the nearest driver": "جستجوی نزدیک‌ترین راننده", + "Communication": "ارتباطات", + "How do I communicate with the other party (passenger/driver)?": "چگونه ارتباط برقرار کنم؟", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "از طریق چت درون برنامه‌ای.", + "Safety & Security": "ایمنی و امنیت", + "What safety measures does Intaleq offer?": "چه اقدامات امنیتی ارائه می‌دهید؟", + "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.": "تأیید راننده، ردیابی سفر، تماس اضطراری.", + "Enjoy competitive prices across all trip options, making travel accessible.": "از قیمت‌های رقابتی لذت ببرید.", + "Variety of Trip Choices": "تنوع انتخاب سفر", + "Choose the trip option that perfectly suits your needs and preferences.": "گزینه مناسب خود را انتخاب کنید.", + "Your Choice, Our Priority": "انتخاب شما، اولویت ما", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "چون ما نزدیکیم، حق انتخاب دارید.", + "duration is": "مدت زمان:", + "Setting": "تنظیمات", + "Find answers to common questions": "پاسخ سوالات متداول", + "I don't need a ride anymore": "دیگر نیازی به سفر ندارم", + "I was just trying the application": "فقط داشتم برنامه را تست می‌کردم", + "No driver accepted my request": "هیچ راننده‌ای قبول نکرد", + "I added the wrong pick-up/drop-off location": "مبدأ/مقصد را اشتباه وارد کردم", + "I don't have a reason": "دلیلی ندارم", + "Can we know why you want to cancel Ride ?": "چرا می‌خواهید لغو کنید؟", + "Add Payment Method": "افزودن روش پرداخت", + "Ride Wallet": "کیف پول سفر", + "Payment Method": "روش پرداخت", + "Type here Place": "مکان را اینجا بنویسید", + "Are You sure to ride to": "مطمئنید می‌خواهید بروید به", + "Confirm": "تأیید", + "You are Delete": "شما در حال حذف هستید", + "Deleted": "حذف شد", + "You Dont Have Any places yet !": "هنوز مکانی ندارید!", + "From : Current Location": "از: موقعیت فعلی", + "My Cared": "کارت‌های من", + "Add Card": "افزودن کارت", + "Add Credit Card": "افزودن کارت اعتباری", + "Please enter the cardholder name": "نام دارنده کارت", + "Please enter the expiry date": "تاریخ انقضا", + "Please enter the CVV code": "کد CVV", + "Go To Favorite Places": "رفتن به مکان‌های مورد علاقه", + "Go to this Target": "رفتن به این مقصد", + "My Profile": "پروفایل من", + "Are you want to go to this site": "می‌خواهید به این مکان بروید", + "MyLocation": "موقعیت من", + "my location": "موقعیت من", + "Target": "هدف", + "You Should choose rate figure": "باید امتیاز انتخاب کنید", + "Login Captin": "ورود سفیر", + "Register Captin": "ثبت نام سفیر", + "Send Verfication Code": "ارسال کد تأیید", + "KM": "کیلومتر", + "End Ride": "پایان سفر", + "Minute": "دقیقه", + "Go to passenger Location now": "الان به موقعیت مسافر بروید", + "Duration of the Ride is ": "مدت سفر: ", + "Distance of the Ride is ": "مسافت سفر: ", + "Name of the Passenger is ": "نام مسافر: ", + "Hello this is Captain": "سلام، من سفیر هستم", + "Start the Ride": "شروع سفر", + "Please Wait If passenger want To Cancel!": "لطفاً صبر کنید شاید مسافر لغو کند!", + "Total Duration:": "مدت کل:", + "Active Duration:": "مدت فعال:", + "Waiting for Captin ...": "در انتظار سفیر...", + "Age is ": "سن: ", + "Rating is ": "امتیاز: ", + " to arrive you.": " تا رسیدن به شما.", + "Tariff": "تعرفه", + "Settings": "تنظیمات", + "Feed Back": "بازخورد", + "Please enter a valid 16-digit card number": "لطفاً شماره کارت ۱۶ رقمی معتبر وارد کنید", + "Add Phone": "افزودن تلفن", + "Please enter a phone number": "لطفاً شماره تلفن وارد کنید", + "You dont Add Emergency Phone Yet!": "هنوز تلفن اضطراری اضافه نکرده‌اید!", + "You will arrive to your destination after ": "شما به مقصد می‌رسید بعد از ", + "You can cancel Ride now": "الان می‌توانید سفر را لغو کنید", + "You Can cancel Ride After Captain did not come in the time": "اگر سفیر به موقع نیامد می‌توانید لغو کنید", + "If you in Car Now. Press Start The Ride": "اگر در ماشین هستید، شروع سفر را بزنید", + "You Dont Have Any amount in": "موجودی ندارید در", + "Wallet!": "کیف پول!", + "You Have": "شما دارید", + "Save Credit Card": "ذخیره کارت اعتباری", + "Show Promos": "نمایش تخفیف‌ها", + "10 and get 4% discount": "۱۰ و ۴٪ تخفیف بگیرید", + "20 and get 6% discount": "۲۰ و ۶٪ تخفیف بگیرید", + "40 and get 8% discount": "۴۰ و ۸٪ تخفیف بگیرید", + "100 and get 11% discount": "۱۰۰ و ۱۱٪ تخفیف بگیرید", + "Pay with Your PayPal": "پرداخت با PayPal", + "You will choose one of above !": "یکی از موارد بالا را انتخاب کنید!", + "Edit Profile": "ویرایش پروفایل", + "Copy this Promo to use it in your Ride!": "این کد تخفیف را کپی و استفاده کنید!", + "To change some Settings": "برای تغییر برخی تنظیمات", + "Order Request Page": "صفحه درخواست سفر", + "Rouats of Trip": "مسیرهای سفر", + "Passenger Name is ": "نام مسافر: ", + "Total From Passenger is ": "کل مبلغ از مسافر: ", + "Duration To Passenger is ": "زمان تا مسافر: ", + "Distance To Passenger is ": "مسافت تا مسافر: ", + "Total For You is ": "مجموع برای شما: ", + "Distance is ": "مسافت: ", + " KM": " کیلومتر", + "Duration of Trip is ": "مدت سفر: ", + " Minutes": " دقیقه", + "Apply Order": "پذیرش درخواست", + "Refuse Order": "رد درخواست", + "Rate Captain": "امتیاز به سفیر", + "Enter your Note": "یادداشت خود را وارد کنید", + "Type something...": "چیزی بنویسید...", + "Submit rating": "ثبت امتیاز", + "Rate Passenger": "امتیاز به مسافر", + "Ride Summary": "خلاصه سفر", + "welcome_message": "به Intaleq خوش آمدید!", + "app_description": "Intaleq امن و قابل اعتماد است.", + "get_to_destination": "سریع به مقصد برسید.", + "get_a_ride": "در چند دقیقه خودرو بگیرید.", + "safe_and_comfortable": "از سفری امن و راحت لذت ببرید.", + "committed_to_safety": "متعهد به ایمنی.", + "your ride is Accepted": "سفر شما پذیرفته شد", + "Driver is waiting at pickup.": "راننده در مبدأ منتظر است.", + "Driver is on the way": "راننده در راه است", + "Contact Options": "گزینه‌های تماس", + "Send a custom message": "ارسال پیام سفارشی", + "Type your message": "پیام خود را بنویسید", + "I will go now": "من الان می‌روم", + "You Have Tips": "انعام دارید", + " tips\\nTotal is": " انعام\\nمجموع:", + "Your fee is ": "هزینه شما: ", + "Do you want to pay Tips for this Driver": "می‌خواهید انعام دهید؟", + "Tip is ": "انعام: ", + "Are you want to wait drivers to accept your order": "می‌خواهید منتظر پذیرش بمانید؟", + "This price is fixed even if the route changes for the driver.": "قیمت ثابت است.", + "The price may increase if the route changes.": "قیمت ممکن است تغییر کند.", + "The captain is responsible for the route.": "مسئولیت مسیر با سفیر است.", + "We are search for nearst driver": "جستجوی نزدیک‌ترین راننده", + "Your order is being prepared": "سفارش در حال آماده‌سازی", + "The drivers are reviewing your request": "رانندگان در حال بررسی", + "Your order sent to drivers": "به رانندگان ارسال شد", + "You can call or record audio of this trip": "می‌توانید تماس بگیرید یا ضبط کنید", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "سفر شروع شد! می‌توانید تماس اضطراری بگیرید یا سفر را اشتراک بگذارید.", + "Camera Access Denied.": "دسترسی دوربین رد شد.", + "Open Settings": "باز کردن تنظیمات", + "GPS Required Allow !.": "GPS لازم است!", + "Your Account is Deleted": "حساب شما حذف شد", + "Are you sure to delete your account?": "آیا مطمئنید؟", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "داده‌ها بعد از ۲ هفته پاک می‌شوند.", + "Enter Your First Name": "نام خود را وارد کنید", + "Are you Sure to LogOut?": "آیا برای خروج مطمئنید؟", + "Email Wrong": "ایمیل اشتباه", + "Email you inserted is Wrong.": "ایمیل وارد شده اشتباه است.", + "You have finished all times ": "تمام دفعات را استفاده کردید", + "if you want help you can email us here": "برای کمک ایمیل بزنید", + "Thanks": "ممنون", + "Email Us": "به ما ایمیل بزنید", + "I cant register in your app in face detection ": "نمی‌توانم با تشخیص چهره ثبت نام کنم", + "Hi": "سلام", + "No face detected": "چهره‌ای تشخیص داده نشد", + "Image detecting result is ": "نتیجه تشخیص تصویر: ", + "from 3 times Take Attention": "از ۳ بار، دقت کنید", + "Be sure for take accurate images please\\nYou have": "لطفاً عکس دقیق بگیرید\\nشما دارید", + "image verified": "تصویر تأیید شد", + "Next": "بعدی", + "There is no help Question here": "سوال کمکی اینجا نیست", + "You dont have Points": "امتیاز ندارید", + "You Are Stopped For this Day !": "برای امروز متوقف شدید!", + "You must be charge your Account": "باید حساب را شارژ کنید", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "۳ سفر را رد کردید.\\nفردا می‌بینیمتان!", + "Recharge my Account": "شارژ حساب من", + "Ok , See you Tomorrow": "باشه، تا فردا", + "You are Stopped": "متوقف شدید", + "Connected": "متصل", + "Not Connected": "متصل نیست", + "Your are far from passenger location": "از مسافر دور هستید", + "go to your passenger location before\\nPassenger cancel trip": "قبل از لغو مسافر به موقعیت او بروید", + "You will get cost of your work for this trip": "هزینه این سفر را دریافت خواهید کرد", + " in your wallet": " در کیف پول", + "you gain": "کسب کردید", + "Order Cancelled by Passenger": "لغو توسط مسافر", + "Feedback data saved successfully": "با موفقیت ذخیره شد", + "No Promo for today .": "امروز تخفیفی نیست.", + "Select your destination": "انتخاب مقصد", + "Search for your Start point": "جستجوی نقطه شروع", + "Search for waypoint": "جستجوی نقطه توقف", + "Current Location": "موقعیت فعلی", + "Add Location 1": "افزودن مکان ۱", + "You must Verify email !.": "باید ایمیل را تأیید کنید!", + "Cropper": "برش دهنده", + "Saved Sucssefully": "با موفقیت ذخیره شد", + "Select Date": "انتخاب تاریخ", + "Birth Date": "تاریخ تولد", + "Ok": "باشه", + "the 500 points equal 30 JOD": "۵۰۰ امتیاز برابر ۳۰ تومان", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "۵۰۰ امتیاز برای شما ۳۰ تومان است\\nبروید و پول درآورید", + "token updated": "توکن بروز شد", + "Add Location 2": "افزودن مکان ۲", + "Add Location 3": "افزودن مکان ۳", + "Add Location 4": "افزودن مکان ۴", + "Waiting for your location": "در انتظار موقعیت شما", + "Search for your destination": "جستجوی مقصد", + "Hi! This is": "سلام! این", + " I am using": " من استفاده می‌کنم", + " to ride with": " برای سفر با", + " as the driver.": " به عنوان راننده.", + "is driving a ": "در حال راندن ", + " with license plate ": " با پلاک ", + " I am currently located at ": " من الان در ... هستم ", + "Please go to Car now ": "لطفاً الان به سمت ماشین بروید ", + "You will receive a code in WhatsApp Messenger": "کد را در واتس‌اپ دریافت خواهید کرد", + "If you need assistance, contact us": "اگر کمک نیاز دارید تماس بگیرید", + "Promo Ended": "تخفیف تمام شد", + "Enter the promo code and get": "کد تخفیف را وارد کنید و بگیرید", + "DISCOUNT": "تخفیف", + "No wallet record found": "رکورد کیف پول یافت نشد", + "for": "برای", + "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 امن‌ترین برنامه است. کمیسیون پایین ۸٪. بیمه و تعمیر و نگهداری.", + "You can contact us during working hours from 12:00 - 19:00.": "تماس در ساعات ۱۲ تا ۱۹.", + "Choose a contact option": "یک گزینه تماس انتخاب کنید", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "ساعات کاری ۱۲ تا ۱۹.\\nواتس‌اپ یا ایمیل بزنید.", + "Promo code copied to clipboard!": "کد تخفیف کپی شد!", + "Copy Code": "کپی کد", + "Your invite code was successfully applied!": "کد دعوت اعمال شد!", + "Payment Options": "گزینه‌های پرداخت", + "wait 1 minute to receive message": "۱ دقیقه صبر کنید", + "You have copied the promo code.": "کد تخفیف را کپی کردید.", + "Select Payment Amount": "انتخاب مبلغ پرداخت", + "The promotion period has ended.": "دوره تخفیف تمام شده.", + "Promo Code Accepted": "کد تخفیف پذیرفته شد", + "Tap on the promo code to copy it!": "برای کپی ضربه بزنید!", + "Lowest Price Achieved": "کمترین قیمت حاصل شد", + "Cannot apply further discounts.": "تخفیف بیشتر ممکن نیست.", + "Promo Already Used": "تخفیف قبلاً استفاده شده", + "Invitation Used": "دعوت استفاده شده", + "You have already used this promo code.": "شما قبلاً از این کد استفاده کرده‌اید.", + "Insert Your Promo Code": "کد تخفیف را وارد کنید", + "Enter promo code here": "کد تخفیف اینجا", + "Please enter a valid promo code": "لطفاً کد معتبر وارد کنید", + "Awfar Car": "خودروی اقتصادی", + "Old and affordable, perfect for budget rides.": "قدیمی و مقرون‌به‌صرفه.", + " If you need to reach me, please contact the driver directly at": " اگر کاری دارید با راننده تماس بگیرید در", + "No Car or Driver Found in your area.": "خودرو یا راننده‌ای یافت نشد.", + "Please Try anther time ": "لطفاً زمان دیگری امتحان کنید ", + "There no Driver Aplly your order sorry for that ": "هیچ راننده‌ای درخواست شما را نگرفت، متأسفیم ", + "Trip Cancelled": "سفر لغو شد", + "The Driver Will be in your location soon .": "راننده به‌زودی می‌رسد.", + "The distance less than 500 meter.": "فاصله کمتر از ۵۰۰ متر.", + "Promo End !": "تخفیف تمام شد!", + "There is no notification yet": "اعلانی وجود ندارد", + "Use Touch ID or Face ID to confirm payment": "از اثر انگشت یا چهره استفاده کنید", + "Contact us for any questions on your order.": "برای هر سوالی تماس بگیرید.", + "Pyament Cancelled .": "پرداخت لغو شد.", + "type here": "اینجا بنویسید", + "Scan Driver License": "اسکن گواهینامه", + "Please put your licence in these border": "گواهینامه را در کادر قرار دهید", + "Camera not initialized yet": "دوربین آماده نیست", + "Take Image": "عکس گرفتن", + "AI Page": "صفحه هوش مصنوعی", + "Take Picture Of ID Card": "عکس از کارت ملی", + "Take Picture Of Driver License Card": "عکس از گواهینامه", + "We are process picture please wait ": "در حال پردازش عکس، صبر کنید ", + "There is no data yet.": "هنوز داده‌ای نیست.", + "Name :": "نام:", + "Drivers License Class: ": "کلاس گواهینامه: ", + "Document Number: ": "شماره سند: ", + "Address: ": "آدرس: ", + "Height: ": "قد: ", + "Expiry Date: ": "تاریخ انقضا: ", + "Date of Birth: ": "تاریخ تولد: ", + "You can't continue with us .\\nYou should renew Driver license": "باید گواهینامه را تمدید کنید", + "Detect Your Face ": "تشخیص چهره ", + "Go to next step\\nscan Car License.": "مرحله بعد\\nاسکن کارت ماشین.", + "Name in arabic": "نام به فارسی", + "Drivers License Class": "کلاس گواهینامه", + "Selected Date": "تاریخ انتخاب شده", + "Select Time": "انتخاب زمان", + "Selected Time": "زمان انتخاب شده", + "Selected Date and Time": "تاریخ و زمان انتخاب شده", + "Lets check Car license ": "بررسی کارت ماشین ", + "Car": "خودرو", + "Plate": "پلاک", + "Rides": "سفرها", + "Selected driver": "راننده انتخاب شده", + "Lets check License Back Face": "بررسی پشت گواهینامه", + "Car License Card": "کارت ماشین", + "No image selected yet": "عکسی انتخاب نشده", + "Made :": "سازنده:", + "model :": "مدل:", + "VIN :": "شماره شاسی:", + "year :": "سال:", + "ُExpire Date": "تاریخ انقضا", + "Login Driver": "ورود راننده", + "Password must br at least 6 character.": "رمز باید حداقل ۶ کاراکتر باشد.", + "if you don't have account": "اگر حساب ندارید", + "Here recorded trips audio": "صدای ضبط شده سفرها", + "Register as Driver": "ثبت نام به عنوان راننده", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "با انتخاب \"موافقم\"، شرایط استفاده را پذیرفته‌ام و ", + "Log Out Page": "صفحه خروج", + "Log Off": "خروج", + "Register Driver": "ثبت نام راننده", + "Verify Email For Driver": "تأیید ایمیل برای راننده", + "Admin DashBoard": "داشبورد مدیریت", + "Your name": "نام شما", + "your ride is applied": "سفر شما ثبت شد", + "H and": "س و", + "JOD": "تومان", + "m": "د", + "We search nearst Driver to you": "جستجوی نزدیک‌ترین راننده", + "please wait till driver accept your order": "لطفاً منتظر پذیرش راننده بمانید", + "No accepted orders? Try raising your trip fee to attract riders.": "سفارشی پذیرفته نشد؟ مبلغ را افزایش دهید.", + "You should select one": "باید یکی را انتخاب کنید", + "The driver accept your order for": "راننده سفارش شما را پذیرفت برای", + "The driver on your way": "راننده در راه است", + "Total price from ": "قیمت کل از ", + "Order Details Intaleq": "جزئیات سفارش Intaleq", + "Selected file:": "فایل انتخاب شده:", + "Your trip cost is": "هزینه سفر شما", + "this will delete all files from your device": "این کار تمام فایل‌ها را حذف می‌کند", + "Exclusive offers and discounts always with the Intaleq app": "تخفیف‌های ویژه همیشه با Intaleq", + "Submit Question": "ارسال سوال", + "Please enter your Question.": "لطفاً سوال خود را وارد کنید.", + "Help Details": "جزئیات راهنما", + "No trip yet found": "سفری یافت نشد", + "No Response yet.": "هنوز پاسخی نیست.", + " You Earn today is ": " درآمد امروز شما: ", + " You Have in": " شما دارید در", + "Total points is ": "مجموع امتیازات: ", + "Total Connection Duration:": "مجموع مدت اتصال:", + "Passenger name : ": "نام مسافر: ", + "Cost Of Trip IS ": "هزینه سفر: ", + "Arrival time": "زمان رسیدن", + "arrival time to reach your point": "زمان رسیدن به نقطه شما", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "قیمت‌گذاری پویا برای Intaleq و اسکوتر. زمانی و مسافتی برای Comfort.", + "Hello this is Driver": "سلام من راننده هستم", + "Is the Passenger in your Car ?": "آیا مسافر در خودرو است؟", + "Please wait for the passenger to enter the car before starting the trip.": "لطفاً صبر کنید تا مسافر سوار شود.", + "No ,still Waiting.": "نه، هنوز منتظرم.", + "I arrive you": "رسیدم", + "I Arrive your site": "به موقعیت شما رسیدم", + "You are not in near to passenger location": "نزدیک مسافر نیستید", + "please go to picker location exactly": "لطفاً دقیقاً به محل سوار شدن بروید", + "You Can Cancel Trip And get Cost of Trip From": "می‌توانید لغو کنید و هزینه را دریافت کنید از", + "Are you sure to cancel?": "مطمئنید لغو می‌کنید؟", + "Insert Emergincy Number": "درج شماره اضطراری", + "Best choice for comfort car and flexible route and stops point": "بهترین انتخاب برای راحتی و مسیر منعطف", + "Insert": "درج", + "This is for scooter or a motorcycle.": "این برای اسکوتر یا موتورسیکلت است.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "سفر مستقیم با قیمت ثابت.", + "You can decline a request without any cost": "می‌توانید بدون هزینه رد کنید", + "Perfect for adventure seekers who want to experience something new and exciting": "عالی برای ماجراجویان", + "My current location is:": "موقعیت فعلی من:", + "and I have a trip on": "و سفری دارم در", + "App with Passenger": "برنامه با مسافر", + "You will be pay the cost to driver or we will get it from you on next trip": "هزینه را به راننده پرداخت می‌کنید یا در سفر بعد از شما می‌گیریم", + "Trip has Steps": "سفر مراحلی دارد", + "Distance from Passenger to destination is ": "فاصله مسافر تا مقصد: ", + "price is": "قیمت:", + "This ride type does not allow changes to the destination or additional stops": "امکان تغییر مقصد یا توقف وجود ندارد", + "This price may be changed": "این قیمت ممکن است تغییر کند", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "سیم‌کارت ندارید؟ مشکلی نیست! از طریق برنامه تماس بگیرید.", + "This ride type allows changes, but the price may increase": "امکان تغییر دارد اما قیمت ممکن است افزایش یابد", + "Select one message": "یک پیام انتخاب کنید", + "I'm waiting for you": "منتظر شما هستم", + "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.": "سرعت بالای ۱۰۰ کیلومتر تشخیص داده شد. لطفاً آهسته‌تر برانید.", + "Warning: Intaleqing detected!": "هشدار: سرعت غیرمجاز!", + "Please help! Contact me as soon as possible.": "کمک! سریعاً تماس بگیرید.", + "Share Trip Details": "اشتراک جزئیات سفر", + "Car Plate is ": "پلاک خودرو: ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "۳۰۰ امتیاز برابر ۳۰۰ تومان برای شماست\\nبروید و پول درآورید", + "the 300 points equal 300 L.E": "۳۰۰ امتیاز برابر ۳۰۰ تومان", + "The payment was not approved. Please try again.": "پرداخت تأیید نشد. دوباره تلاش کنید.", + "Payment Failed": "پرداخت ناموفق", + "This is a scheduled notification.": "این یک اعلان زمان‌بندی شده است.", + "An error occurred during the payment process.": "خطایی در پرداخت رخ داد.", + "The payment was approved.": "پرداخت تأیید شد.", + "Payment Successful": "پرداخت موفق", + "No ride found yet": "هنوز سفری یافت نشد", + "Accept Order": "پذیرش سفارش", + "Bottom Bar Example": "مثال نوار پایین", + "Driver phone": "تلفن راننده", + "Statistics": "آمار", + "Origin": "مبدأ", + "Destination": "مقصد", + "Driver Name": "نام راننده", + "Driver Car Plate": "پلاک راننده", + "Available for rides": "آماده برای سفر", + "Scan Id": "اسکن کارت ملی", + "Camera not initilaized yet": "دوربین هنوز آماده نیست", + "Scan ID MklGoogle": "اسکن ID MklGoogle", + "Language": "زبان", + "Jordan": "اردن", + "USA": "آمریکا", + "Egypt": "مصر", + "Turkey": "ترکیه", + "Saudi Arabia": "عربستان سعودی", + "Qatar": "قطر", + "Bahrain": "بحرین", + "Kuwait": "کویت", + "But you have a negative salary of": "اما موجودی منفی دارید به مبلغ", + "Promo Code": "کد تخفیف", + "Your trip distance is": "مسافت سفر شما:", + "Enter promo code": "کد تخفیف را وارد کنید", + "You have promo!": "تخفیف دارید!", + "Cost Duration": "هزینه مدت زمان", + "Duration is": "مدت زمان:", + "Leave": "ترک کردن", + "Join": "پیوستن", + "Heading your way now. Please be ready.": "دارم می‌آیم. لطفاً آماده باشید.", + "Approaching your area. Should be there in 3 minutes.": "نزدیک منطقه شما هستم. ۳ دقیقه دیگر می‌رسم.", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "ترافیک سنگین است. نقطه دیگری پیشنهاد می‌کنید؟", + "This ride is already taken by another driver.": "این سفر توسط راننده دیگری گرفته شد.", + "You Should be select reason.": "باید دلیلی را انتخاب کنید.", + "Waiting for Driver ...": "در انتظار راننده...", + "Latest Recent Trip": "آخرین سفر اخیر", + "from your list": "از لیست شما", + "Do you want to change Work location": "می‌خواهید محل کار را تغییر دهید", + "Do you want to change Home location": "می‌خواهید خانه را تغییر دهید", + "We Are Sorry That we dont have cars in your Location!": "متاسفیم، در موقعیت شما خودرویی نداریم!", + "Choose from Map": "انتخاب از روی نقشه", + "Pick your ride location on the map - Tap to confirm": "محل سفر را روی نقشه انتخاب کنید - برای تأیید ضربه بزنید", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq امن و قابل اعتماد است.", + "With Intaleq, you can get a ride to your destination in minutes.": "با Intaleq در چند دقیقه به مقصد برسید.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq متعهد به ایمنی است.", + "Pick from map": "انتخاب از نقشه", + "No Car in your site. Sorry!": "خودرویی در محل شما نیست. متاسفیم!", + "Nearest Car for you about ": "نزدیک‌ترین خودرو حدود ", + "From :": "از:", + "Get Details of Trip": "دریافت جزئیات سفر", + "If you want add stop click here": "برای افزودن توقف اینجا کلیک کنید", + "Where you want go ": "کجا می‌خواهید بروید ", + "My Card": "کارت من", + "Start Record": "شروع ضبط", + "History of Trip": "تاریخچه سفر", + "Helping Center": "مرکز راهنما", + "Record saved": "ضبط ذخیره شد", + "Trips recorded": "سفرهای ضبط شده", + "Select 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.": "لطفاً کشور خود را انتخاب کنید تا اطلاعات دقیق دریافت کنید.", + "Are you sure to delete recorded files": "آیا از حذف فایل‌های ضبط شده مطمئنید", + "Select recorded trip": "انتخاب سفر ضبط شده", + "Card Number": "شماره کارت", + "Hi, Where to ": "سلام، به کجا ", + "Pick your destination from Map": "مقصد را از نقشه انتخاب کنید", + "Add Stops": "افزودن توقف", + "Get Direction": "مسیریابی", + "Add Location": "افزودن مکان", + "Switch Rider": "تغییر مسافر", + "You will arrive to your destination after timer end.": "پس از پایان تایمر به مقصد خواهید رسید.", + "You can cancel trip": "می‌توانید سفر را لغو کنید", + "The driver waitting you in picked location .": "راننده در محل انتخاب شده منتظر شماست.", + "Pay with Your": "پرداخت با", + "Pay with Credit Card": "پرداخت با کارت اعتباری", + "Show Promos to Charge": "نمایش تخفیف‌ها برای شارژ", + "Point": "امتیاز", + "How many hours would you like to wait?": "چند ساعت می‌خواهید منتظر بمانید؟", + "Driver Wallet": "کیف پول راننده", + "Choose between those Type Cars": "از بین این نوع خودروها انتخاب کنید", + "hour": "ساعت", + "Select Waiting Hours": "انتخاب ساعات انتظار", + "Total Points is": "مجموع امتیازات:", + "You will receive a code in SMS message": "کدی در پیامک دریافت خواهید کرد", + "Done": "انجام شد", + "Total Budget from trips is ": "مجموع درآمد از سفرها: ", + "Total Amount:": "مبلغ کل:", + "Total Budget from trips by\\nCredit card is ": "مجموع درآمد از کارت اعتباری: ", + "This amount for all trip I get from Passengers": "این مبلغ برای تمام سفرهایی که از مسافران گرفتم", + "Pay from my budget": "پرداخت از اعتبار من", + "This amount for all trip I get from Passengers and Collected For me in": "این مبلغ جمع‌آوری شده برای من در", + "You can buy points from your budget": "می‌توانید از اعتبار خود امتیاز بخرید", + "insert amount": "مبلغ را وارد کنید", + "You can buy Points to let you online\\nby this list below": "می‌توانید امتیاز بخرید تا آنلاین شوید\\nاز لیست زیر", + "Create Wallet to receive your money": "برای دریافت پول کیف پول بسازید", + "Enter your feedback here": "بازخورد خود را اینجا وارد کنید", + "Please enter your feedback.": "لطفاً بازخورد خود را وارد کنید.", + "Feedback": "بازخورد", + "Submit ": "ارسال ", + "Click here to Show it in Map": "برای نمایش روی نقشه کلیک کنید", + "Canceled": "لغو شد", + "No I want": "نه من می‌خواهم", + "Email is": "ایمیل:", + "Phone Number is": "شماره تلفن:", + "Date of Birth is": "تاریخ تولد:", + "Sex is ": "جنسیت: ", + "Car Details": "جزئیات خودرو", + "VIN is": "شماره شاسی:", + "Color is ": "رنگ: ", + "Make is ": "سازنده: ", + "Model is": "مدل:", + "Year is": "سال:", + "Expiration Date ": "تاریخ انقضا: ", + "Edit Your data": "ویرایش اطلاعات", + "write vin for your car": "شماره شاسی خودرو را بنویسید", + "VIN": "شماره شاسی", + "Please verify your identity": "لطفاً هویت خود را تأیید کنید", + "write Color for your car": "رنگ خودرو را بنویسید", + "write Make for your car": "سازنده خودرو را بنویسید", + "write Model for your car": "مدل خودرو را بنویسید", + "write Year for your car": "سال خودرو را بنویسید", + "write Expiration Date for your car": "تاریخ انقضای خودرو را بنویسید", + "Tariffs": "تعرفه‌ها", + "Minimum fare": "حداقل کرایه", + "Maximum fare": "حداکثر کرایه", + "Flag-down fee": "ورودی", + "Including Tax": "شامل مالیات", + "BookingFee": "هزینه رزرو", + "Morning": "صبح", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "از ۰۷:۳۰ تا ۱۰:۳۰", + "Evening": "عصر", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "از ۱۲:۰۰ تا ۱۵:۰۰", + "Night": "شب", + "You have in account": "در حساب دارید", + "Select Country": "انتخاب کشور", + "Ride Today : ": "سفر امروز: ", + "from 23:59 till 05:30": "از ۲۳:۵۹ تا ۰۵:۳۰", + "Rate Driver": "امتیاز به راننده", + "Total Cost is ": "هزینه کل: ", + "Write note": "نوشتن یادداشت", + "Time to arrive": "زمان رسیدن", + "Ride Summaries": "خلاصه سفرها", + "Total Cost": "هزینه کل", + "Average of Hours of": "میانگین ساعات", + " is ON for this month": " در این ماه روشن است", + "Days": "روزها", + "Total Hours on month": "مجموع ساعات در ماه", + "Counts of Hours on days": "تعداد ساعات در روزها", + "OrderId": "شناسه سفارش", + "created time": "زمان ایجاد", + "Intaleq Over": "Intaleq تمام شد", + "I will slow down": "من سرعتم را کم می‌کنم", + "Map Passenger": "نقشه مسافر", + "Be Slowly": "آهسته باش", + "If you want to make Google Map App run directly when you apply order": "اگر می‌خواهید گوگل مپ مستقیماً اجرا شود", + "You can change the language of the app": "می‌توانید زبان برنامه را تغییر دهید", + "Your Budget less than needed": "بودجه شما کمتر از حد نیاز است", + "You can change the Country to get all features": "برای دسترسی به تمام ویژگی‌ها کشور را تغییر دهید", + "There is no Car or Driver in your area.": "در منطقه شما خودرو یا راننده‌ای وجود ندارد.", + "Change Country": "تغییر کشور" + }, + "el": { + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "Μετά από αυτό\\nΔεν μπορείτε να ακυρώσετε!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "Γεια! Σε προσκαλώ να δοκιμάσεις το Intaleq.", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "Συρία", + "SYP": "SYP", + "Order": "Αίτημα", + "OrderVIP": "VIP Αίτημα", + "Cancel Trip": "Ακύρωση Διαδρομής", + "Passenger Cancel Trip": "Ο επιβάτης ακύρωσε τη διαδρομή", + "VIP Order": "VIP Αίτημα", + "The driver accepted your trip": "Ο οδηγός αποδέχτηκε τη διαδρομή σας", + "message From passenger": "Μήνυμα από τον επιβάτη", + "Cancel": "Ακύρωση", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Η διαδρομή ακυρώθηκε. Το κόστος θα προστεθεί στο πορτοφόλι σας.", + "token change": "Αλλαγή Token", + "Changed my mind": "Άλλαξα γνώμη", + "Please write the reason...": "Παρακαλώ γράψτε τον λόγο...", + "Found another transport": "Βρήκα άλλο μέσο μεταφοράς", + "Driver is taking too long": "Ο οδηγός αργεί πολύ", + "Driver asked me to cancel": "Ο οδηγός μου ζήτησε να ακυρώσω", + "Wrong pickup location": "Λάθος τοποθεσία παραλαβής", + "Other": "Άλλο", + "Don't Cancel": "Να μην ακυρωθεί", + "No Drivers Found": "Δεν βρέθηκαν οδηγοί", + "Sorry, there are no cars available of this type right now.": "Λυπούμαστε, αλλά δεν υπάρχουν διαθέσιμα αυτοκίνητα αυτού του τύπου αυτή τη στιγμή.", + "Refresh Map": "Ανανέωση χάρτη", + "face detect": "Ανίχνευση Προσώπου", + "Face Detection Result": "Αποτέλεσμα Ανίχνευσης Προσώπου", + "similar": "Παρόμοιο", + "not similar": "Μη παρόμοιο", + "Searching for nearby drivers...": "Αναζήτηση για οδηγούς κοντά...", + "Error": "Σφάλμα", + "Failed to search, please try again later": "Η αναζήτηση απέτυχε, παρακαλούμε δοκιμάστε ξανά αργότερα", + "Connection Error": "Σφάλμα σύνδεσης", + "Please check your internet connection": "Παρακαλούμε ελέγξτε τη σύνδεσή σας στο διαδίκτυο", + "Sorry 😔": "Συγγνώμη 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "Ο οδηγός ακύρωσε τη διαδρομή για έκτακτο λόγο.\\nΘέλετε να αναζητήσετε άλλον οδηγό αμέσως;", + "Search for another driver": "Αναζήτηση για άλλον οδηγό", + "We apologize 😔": "Ζητάμε συγγνώμη 😔", + "No drivers found at the moment.\\nPlease try again later.": "Δεν βρέθηκαν οδηγοί αυτή τη στιγμή.\\nΠαρακαλούμε δοκιμάστε ξανά αργότερα.", + "Hi ,I will go now": "Γεια, ξεκινάω τώρα", + "Passenger come to you": "Ο επιβάτης έρχεται σε εσάς", + "Call Income": "Εισερχόμενη Κλήση", + "Call Income from Passenger": "Κλήση από Επιβάτη", + "Criminal Document Required": "Απαιτείται Ποινικό Μητρώο", + "You should have upload it .": "Πρέπει να το ανεβάσετε.", + "Call End": "Τέλος Κλήσης", + "The order has been accepted by another driver.": "Το αίτημα έγινε αποδεκτό από άλλον οδηγό.", + "The order Accepted by another Driver": "Το αίτημα έγινε δεκτό από άλλον Οδηγό", + "We regret to inform you that another driver has accepted this order.": "Λυπούμαστε, ένας άλλος οδηγός αποδέχτηκε αυτό το αίτημα.", + "Driver Applied the Ride for You": "Ο οδηγός καταχώρησε τη διαδρομή για εσάς", + "Applied": "Καταχωρήθηκε", + "Please go to Car Driver": "Παρακαλώ πηγαίνετε στον Οδηγό", + "Ok I will go now.": "Εντάξει, πηγαίνω τώρα.", + "Accepted Ride": "Αποδεκτή Διαδρομή", + "Driver Accepted the Ride for You": "Ο οδηγός αποδέχτηκε τη διαδρομή για εσάς", + "Promo": "Προσφορά", + "Show latest promo": "Εμφάνιση τελευταίων προσφορών", + "Trip Monitoring": "Παρακολούθηση Διαδρομής", + "Driver Is Going To Passenger": "Ο οδηγός πηγαίνει στον Επιβάτη", + "Please stay on the picked point.": "Παρακαλώ μείνετε στο επιλεγμένο σημείο.", + "message From Driver": "Μήνυμα από τον Οδηγό", + "Trip is Begin": "Η διαδρομή ξεκινά", + "Cancel Trip from driver": "Ακύρωση από τον οδηγό", + "We will look for a new driver.\\nPlease wait.": "Αναζητούμε νέο οδηγό.\\nΠαρακαλώ περιμένετε.", + "The driver canceled your ride.": "Ο οδηγός ακύρωσε τη διαδρομή σας.", + "Driver Finish Trip": "Ο Οδηγός Ολοκλήρωσε τη Διαδρομή", + "you will pay to Driver": "Θα πληρώσετε στον Οδηγό", + "Don’t forget your personal belongings.": "Μην ξεχάσετε τα αντικείμενά σας.", + "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": "Βεβαιωθείτε ότι πήρατε τα πράγματά σας και ότι τυχόν ρέστα προστέθηκαν στο πορτοφόλι σας. Ευχαριστούμε που επιλέξατε το Intaleq.", + "Finish Monitor": "Τέλος Παρακολούθησης", + "Trip finished": "Η διαδρομή έληξε", + "Call Income from Driver": "Κλήση από τον Οδηγό", + "Driver Cancelled Your Trip": "Ο Οδηγός Ακύρωσε τη Διαδρομή", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "Θα πληρώσετε για τον χρόνο του οδηγού, δείτε το Πορτοφόλι Intaleq", + "Order Applied": "Το αίτημα υποβλήθηκε", + "welcome to intaleq": "Καλώς ήρθατε στο Intaleq", + "login or register subtitle": "Εισάγετε τον αριθμό κινητού για είσοδο ή εγγραφή", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Δεν μπορεί να υποβληθεί καταγγελία για αυτή τη διαδρομή. Ίσως δεν ολοκληρώθηκε ή δεν ξεκίνησε.", + "phone number label": "Αριθμός Τηλεφώνου", + "phone number required": "Απαιτείται αριθμός τηλεφώνου", + "send otp button": "Αποστολή Κωδικού OTP", + "verify your number title": "Επαληθεύστε τον αριθμό σας", + "otp sent subtitle": "Ένας 5ψήφιος κωδικός στάλθηκε στο\\n@phoneNumber", + "verify and continue button": "Επαλήθευση και Συνέχεια", + "enter otp validation": "Εισάγετε τον 5ψήφιο κωδικό OTP", + "one last step title": "Ένα τελευταίο βήμα", + "complete profile subtitle": "Ολοκληρώστε το προφίλ σας για να ξεκινήσετε", + "first name label": "Όνομα", + "first name required": "Απαιτείται όνομα", + "last name label": "Επώνυμο", + "Verify OTP": "Επαλήθευση OTP", + "Verification Code": "Κωδικός Επαλήθευσης", + "We have sent a verification code to your mobile number:": "Στείλαμε έναν κωδικό επαλήθευσης στο κινητό σας:", + "Verify": "Επαλήθευση", + "Resend Code": "Επαναποστολή Κωδικού", + "You can resend in": "Επαναποστολή σε", + "seconds": "δευτερόλεπτα", + "Please enter the complete 6-digit code.": "Παρακαλώ εισάγετε τον πλήρη 6ψήφιο κωδικό.", + "last name required": "Απαιτείται επώνυμο", + "email optional label": "Email (Προαιρετικό)", + "complete registration button": "Ολοκλήρωση Εγγραφής", + "User with this phone number or email already exists.": "Υπάρχει ήδη χρήστης με αυτό το τηλέφωνο ή email.", + "otp sent success": "Ο κωδικός στάλθηκε στο WhatsApp.", + "failed to send otp": "Αποτυχία αποστολής OTP.", + "server error try again": "Σφάλμα διακομιστή, προσπαθήστε ξανά.", + "an error occurred": "Προέκυψε σφάλμα: @error", + "otp verification failed": "Η επαλήθευση OTP απέτυχε.", + "registration failed": "Η εγγραφή απέτυχε.", + "welcome user": "Καλώς ήρθες, @firstName!", + "Don't forget your personal belongings.": "Μην ξεχάσετε τα προσωπικά σας αντικείμενα.", + "Share App": "Κοινοποίηση Εφαρμογής", + "Wallet": "Πορτοφόλι", + "Balance": "Υπόλοιπο", + "Profile": "Προφίλ", + "Contact Support": "Επικοινωνία με Υποστήριξη", + "Session expired. Please log in again.": "Η συνεδρία έληξε. Συνδεθείτε ξανά.", + "Security Warning": "⚠️ Προειδοποίηση Ασφαλείας", + "Potential security risks detected. The application may not function correctly.": "Εντοπίστηκαν πιθανοί κίνδυνοι ασφαλείας. Η εφαρμογή ενδέχεται να μην λειτουργεί σωστά.", + "please order now": "Κάντε αίτημα τώρα", + "Where to": "Πού πάτε;", + "Where are you going?": "Πού πηγαίνετε;", + "Quick Actions": "Γρήγορες Ενέργειες", + "My Balance": "Το Υπόλοιπό μου", + "Order History": "Ιστορικό Διαδρομών", + "Contact Us": "Επικοινωνία", + "Driver": "Οδηγός", + "Complaint": "Καταγγελία", + "Promos": "Προσφορές", + "Recent Places": "Πρόσφατα Μέρη", + "From": "Από", + "WhatsApp Location Extractor": "Εξαγωγή Τοποθεσίας WhatsApp", + "Location Link": "Σύνδεσμος Τοποθεσίας", + "Paste location link here": "Επικολλήστε τον σύνδεσμο εδώ", + "Go to this location": "Μετάβαση σε αυτή την τοποθεσία", + "Paste WhatsApp location link": "Επικολλήστε σύνδεσμο WhatsApp", + "Select Order Type": "Επιλογή Τύπου Διαδρομής", + "Choose who this order is for": "Για ποιον είναι η διαδρομή;", + "I want to order for myself": "Για εμένα", + "I want to order for someone else": "Για κάποιον άλλον", + "Order for someone else": "Διαδρομή για άλλον", + "Order for myself": "Διαδρομή για εμένα", + "Are you want to go this site": "Θέλετε να πάτε σε αυτό το σημείο;", + "No": "Όχι", + "Intaleq Wallet": "Πορτοφόλι Intaleq", + "Have a promo code?": "Έχετε κωδικό προσφοράς;", + "Your Wallet balance is ": "Το υπόλοιπο του πορτοφολιού είναι ", + "Cash": "Μετρητά", + "Pay directly to the captain": "Πληρωμή απευθείας στον οδηγό", + "Top up Wallet to continue": "Φορτίστε το Πορτοφόλι για συνέχεια", + "Or pay with Cash instead": "Ή πληρώστε με Μετρητά", + "Confirm & Find a Ride": "Επιβεβαίωση & Εύρεση", + "Balance:": "Υπόλοιπο:", + "Alerts": "Ειδοποιήσεις", + "Welcome Back!": "Καλώς ήρθατε ξανά!", + "Current Balance": "Τρέχον Υπόλοιπο", + "Set Wallet Phone Number": "Ορισμός Τηλεφώνου Πορτοφολιού", + "Link a phone number for transfers": "Σύνδεση τηλεφώνου για μεταφορές", + "Payment History": "Ιστορικό Πληρωμών", + "View your past transactions": "Δείτε τις προηγούμενες συναλλαγές", + "Top up Wallet": "Φόρτιση Πορτοφολιού", + "Add funds using our secure methods": "Προσθήκη χρημάτων με ασφάλεια", + "Increase Fare": "Αύξηση Ναύλου", + "No drivers accepted your request yet": "Κανένας οδηγός δεν αποδέχτηκε ακόμα", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Η αύξηση του ναύλου μπορεί να προσελκύσει περισσότερους οδηγούς. Θέλετε να αυξήσετε την τιμή;", + "Please make sure not to leave any personal belongings in the car.": "Βεβαιωθείτε ότι δεν αφήσατε προσωπικά αντικείμενα στο αμάξι.", + "Cancel Ride": "Ακύρωση", + "Route Not Found": "Η διαδρομή δεν βρέθηκε", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "Δεν βρέθηκε έγκυρη διαδρομή. Παρακαλώ επιλέξτε άλλο σημείο.", + "You can call or record audio during this trip.": "Μπορείτε να καλέσετε ή να ηχογραφήσετε κατά τη διαδρομή.", + "Warning: Speeding detected!": "Προειδοποίηση: Εντοπίστηκε υπερβολική ταχύτητα!", + "Comfort": "Comfort", + "Intaleq Balance": "Υπόλοιπο Intaleq", + "Electric": "Ηλεκτρικό", + "Lady": "Lady (Γυναίκες)", + "Van": "Van", + "Rayeh Gai": "Μετ' επιστροφής", + "Join Intaleq as a driver using my referral code!": "Γίνε οδηγός στο Intaleq με τον κωδικό μου!", + "Use code:": "Χρήση κωδικού:", + "Download the Intaleq Driver app now and earn rewards!": "Κατεβάστε την εφαρμογή Οδηγού Intaleq και κερδίστε!", + "Get a discount on your first Intaleq ride!": "Έκπτωση στην πρώτη διαδρομή Intaleq!", + "Use my referral code:": "Χρησιμοποιήστε τον κωδικό μου:", + "Download the Intaleq app now and enjoy your ride!": "Κατεβάστε το Intaleq και απολαύστε τη διαδρομή!", + "Contacts Loaded": "Οι επαφές φορτώθηκαν", + "Showing": "Εμφάνιση", + "of": "από", + "Customer not found": "Ο πελάτης δεν βρέθηκε", + "Wallet is blocked": "Το πορτοφόλι έχει αποκλειστεί", + "Customer phone is not active": "Το τηλέφωνο δεν είναι ενεργό", + "Balance not enough": "Ανεπαρκές υπόλοιπο", + "Balance limit exceeded": "Υπέρβαση ορίου υπολοίπου", + "Incorrect sms code": "⚠️ Λάθος κωδικός SMS. Προσπαθήστε ξανά.", + "contacts. Others were hidden because they don't have a phone number.": "επαφές. Οι άλλες αποκρύφθηκαν γιατί δεν έχουν αριθμό.", + "No contacts found": "Δεν βρέθηκαν επαφές", + "No contacts with phone numbers were found on your device.": "Δεν βρέθηκαν επαφές με αριθμούς στη συσκευή.", + "Permission denied": "Άρνηση πρόσβασης", + "Contact permission is required to pick contacts": "Απαιτείται άδεια επαφών.", + "An error occurred while picking contacts:": "Σφάλμα κατά την επιλογή επαφών:", + "Please enter a correct phone": "Εισάγετε σωστό τηλέφωνο", + "Success": "Επιτυχία", + "Invite sent successfully": "Η πρόσκληση στάλθηκε", + "Use my invitation code to get a special gift on your first ride!": "Χρησιμοποίησε τον κωδικό μου για δώρο στην πρώτη διαδρομή!", + "Your personal invitation code is:": "Ο κωδικός πρόσκλησής σου:", + "Be sure to use it quickly! This code expires at": "Χρησιμοποίησέ το γρήγορα! Λήγει στις", + "Download the app now:": "Κατέβασε την εφαρμογή:", + "See you on the road!": "Τα λέμε στον δρόμο!", + "This phone number has already been invited.": "Αυτός ο αριθμός έχει ήδη προσκληθεί.", + "An unexpected error occurred. Please try again.": "Προέκυψε απροσδόκητο σφάλμα. Προσπαθήστε ξανά.", + "You deserve the gift": "Αξίζετε το δώρο", + "Claim your 20 LE gift for inviting": "Διεκδικήστε το δώρο 20 € για την πρόσκληση", + "You have got a gift for invitation": "Έχετε ένα δώρο πρόσκλησης", + "You have earned 20": "Κερδίσατε 20", + "LE": "€", + "Vibration feedback for all buttons": "Δόνηση για όλα τα κουμπιά", + "Share with friends and earn rewards": "Μοιραστείτε με φίλους και κερδίστε", + "Gift Already Claimed": "Το δώρο έχει ήδη ληφθεί", + "You have already received your gift for inviting": "Έχετε ήδη λάβει το δώρο σας", + "Keep it up!": "Συνεχίστε έτσι!", + "has completed": "ολοκλήρωσε", + "trips": "διαδρομές", + "Personal Information": "Προσωπικά Στοιχεία", + "Name": "Όνομα", + "Not set": "Δεν ορίστηκε", + "Gender": "Φύλο", + "Education": "Εκπαίδευση", + "Work & Contact": "Εργασία & Επικοινωνία", + "Employment Type": "Τύπος Απασχόλησης", + "Marital Status": "Οικογενειακή Κατάσταση", + "SOS Phone": "Τηλέφωνο SOS", + "Sign Out": "Αποσύνδεση", + "Delete My Account": "Διαγραφή Λογαριασμού", + "Update Gender": "Ενημέρωση Φύλου", + "Update": "Ενημέρωση", + "Update Education": "Ενημέρωση Εκπαίδευσης", + "Are you sure? This action cannot be undone.": "Είστε σίγουροι; Αυτή η ενέργεια δεν αναιρείται.", + "Confirm your Email": "Επιβεβαίωση Email", + "Type your Email": "Πληκτρολογήστε το Email", + "Delete Permanently": "Οριστική Διαγραφή", + "Male": "Άνδρας", + "Female": "Γυναίκα", + "High School Diploma": "Απολυτήριο Λυκείου", + "Associate Degree": "Πτυχίο ΙΕΚ/Κολεγίου", + "Bachelor's Degree": "Πτυχίο ΑΕΙ", + "Master's Degree": "Μεταπτυχιακό", + "Doctoral Degree": "Διδακτορικό", + "Select your preferred language for the app interface.": "Επιλέξτε γλώσσα εφαρμογής.", + "Language Options": "Επιλογές Γλώσσας", + "You can claim your gift once they complete 2 trips.": "Μπορείτε να πάρετε το δώρο αφού ολοκληρώσουν 2 διαδρομές.", + "Closest & Cheapest": "Κοντινότερο & Φθηνότερο", + "Comfort choice": "Επιλογή Comfort", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Ταξιδέψτε με σύγχρονο, αθόρυβο ηλεκτρικό αυτοκίνητο. Premium και οικολογική επιλογή.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Ευρύχωρο βαν, ιδανικό για οικογένειες. Άνετο, ασφαλές και οικονομικό.", + "Quiet & Eco-Friendly": "Ήσυχο & Οικολογικό", + "Lady Captain for girls": "Γυναίκα Οδηγός για γυναίκες", + "Van for familly": "Βαν για οικογένεια", + "Are you sure to delete this location?": "Σίγουρα θέλετε να διαγράψετε την τοποθεσία;", + "Submit a Complaint": "Υποβολή Καταγγελίας", + "Submit Complaint": "Υποβολή", + "No trip history found": "Δεν βρέθηκε ιστορικό", + "Your past trips will appear here.": "Οι προηγούμενες διαδρομές θα εμφανιστούν εδώ.", + "1. Describe Your Issue": "1. Περιγράψτε το θέμα", + "Enter your complaint here...": "Γράψτε την καταγγελία εδώ...", + "2. Attach Recorded Audio": "2. Επισύναψη Ήχου", + "No audio files found.": "Δεν βρέθηκαν αρχεία ήχου.", + "Confirm Attachment": "Επιβεβαίωση Επισύναψης", + "Attach this audio file?": "Επισύναψη αυτού του αρχείου;", + "Uploaded": "Μεταφορτώθηκε", + "3. Review Details & Response": "3. Έλεγχος Λεπτομερειών", + "Date": "Ημερομηνία", + "Today's Promos": "Σημερινές Προσφορές", + "No promos available right now.": "Δεν υπάρχουν προσφορές τώρα.", + "Check back later for new offers!": "Ελέγξτε ξανά αργότερα!", + "Valid Until:": "Ισχύει έως:", + "CODE": "ΚΩΔΙΚΟΣ", + "I Agree": "Συμφωνώ", + "Continue": "Συνέχεια", + "Enable Location": "Ενεργοποίηση Τοποθεσίας", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Για την καλύτερη εμπειρία, χρειαζόμαστε την τοποθεσία σας για να βρούμε κοντινούς οδηγούς.", + "Allow Location Access": "Να επιτρέπεται η πρόσβαση", + "Welcome to Intaleq!": "Καλώς ήρθατε στο Intaleq!", + "Before we start, please review our terms.": "Πριν ξεκινήσουμε, δείτε τους όρους μας.", + "Your journey starts here": "Το ταξίδι ξεκινά εδώ", + "Cancel Search": "Ακύρωση Αναζήτησης", + "Set pickup location": "Ορισμός παραλαβής", + "Move the map to adjust the pin": "Μετακινήστε τον χάρτη", + "Searching for the nearest captain...": "Αναζήτηση κοντινότερου οδηγού...", + "No one accepted? Try increasing the fare.": "Κανείς δεν δέχτηκε; Αυξήστε την προσφορά.", + "Increase Your Trip Fee (Optional)": "Αύξηση Ναύλου (Προαιρετικό)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Δεν βρέθηκαν οδηγοί. Σκεφτείτε να αυξήσετε την τιμή για να γίνει πιο ελκυστική η προσφορά.", + "No, thanks": "Όχι, ευχαριστώ", + "Increase Fee": "Αύξηση Τιμής", + "Copy": "Αντιγραφή", + "Promo Copied!": "Αντιγράφηκε!", + "Code": "Κωδικός", + "Send Intaleq app to him": "Αποστολή εφαρμογής", + "No passenger found for the given phone number": "Δεν βρέθηκε επιβάτης", + "No user found for the given phone number": "Δεν βρέθηκε χρήστης", + "This price is": "Η τιμή είναι", + "Work": "Εργασία", + "Add Home": "Προσθήκη Σπιτιού", + "Notifications": "Ειδοποιήσεις", + "💳 Pay with Credit Card": "💳 Πληρωμή με Κάρτα", + "⚠️ You need to choose an amount!": "⚠️ Επιλέξτε ποσό!", + "💰 Pay with Wallet": "💰 Πληρωμή με Πορτοφόλι", + "You must restart the app to change the language.": "Επανεκκίνηση για αλλαγή γλώσσας.", + "joined": "μπήκε", + "Driver joined the channel": "Ο οδηγός μπήκε στο κανάλι", + "Driver left the channel": "Ο οδηγός βγήκε από το κανάλι", + "Call Page": "Σελίδα Κλήσης", + "Call Left": "Κλήσεις που απομένουν", + " Next as Cash !": " Επόμενο με Μετρητά!", + "To use Wallet charge it": "Φορτίστε το πορτοφόλι", + "We are searching for the nearest driver to you": "Ψάχνουμε τον κοντινότερο οδηγό", + "Best choice for cities": "Καλύτερη επιλογή για πόλη", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Μετ' επιστροφής: Άνετο ταξίδι μεταξύ πόλεων.", + "This trip is for women only": "Μόνο για γυναίκες", + "Total budgets on month": "Σύνολο μήνα", + "You have call from driver": "Κλήση από οδηγό", + "Intaleq": "Intaleq", + "passenger agreement": "συμφωνία επιβάτη", + "To become a passenger, you must review and agree to the ": "Πρέπει να συμφωνήσετε με τους ", + "agreement subtitle": "Αποδοχή Όρων Χρήσης και Πολιτικής Απορρήτου.", + "terms of use": "όρους χρήσης", + " and acknowledge our Privacy Policy.": " και την Πολιτική Απορρήτου.", + "and acknowledge our": "και την", + "privacy policy": "πολιτική απορρήτου.", + "i agree": "συμφωνώ", + "Driver already has 2 trips within the specified period.": "Ο οδηγός έχει ήδη 2 διαδρομές.", + "The invitation was sent successfully": "Η πρόσκληση στάλθηκε", + "You should select your country": "Επιλέξτε χώρα", + "Scooter": "Σκούτερ", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Διαδρομή με κράτηση, επιλογή οδηγών και οχημάτων.", + "Mishwar Vip": "VIP Διαδρομή", + "The driver waiting you in picked location .": "Ο οδηγός περιμένει στο σημείο.", + "About Us": "Σχετικά", + "You can change the vibration feedback for all buttons": "Αλλαγή δόνησης κουμπιών", + "Most Secure Methods": "Ασφαλείς Μέθοδοι", + "In-App VOIP Calls": "Κλήσεις VOIP", + "Recorded Trips for Safety": "Καταγεγραμμένες Διαδρομές", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nΠροσιτές τιμές για όλους.", + "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 είναι εφαρμογή μετακίνησης με έμφαση στην ασφάλεια.", + "Sign In by Apple": "Είσοδος με Apple", + "Sign In by Google": "Είσοδος με Google", + "How do I request a ride?": "Πώς ζητάω διαδρομή;", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Οδηγίες για αίτημα διαδρομής.", + "What types of vehicles are available?": "Τι οχήματα υπάρχουν;", + "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.": "Economy, Comfort, Luxury.", + "How can I pay for my ride?": "Πώς πληρώνω;", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Μετρητά ή Κάρτα.", + "Can I cancel my ride?": "Μπορώ να ακυρώσω;", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Ναι, μπορείτε να ακυρώσετε τη διαδρομή σας υπό ορισμένες προϋποθέσεις (π.χ. πριν την ανάθεση οδηγού). Δείτε την πολιτική ακύρωσης του Intaleq για λεπτομέρειες.", + "Driver Registration & Requirements": "Εγγραφή Οδηγού", + "How can I register as a driver?": "Πώς γίνομαι οδηγός;", + "What are the requirements to become a driver?": "Απαιτήσεις οδηγού;", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Επισκεφτείτε την ιστοσελίδα ή επικοινωνήστε.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Chat εντός εφαρμογής.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Επαλήθευση οδηγού, παρακολούθηση, SOS.", + "Frequently Questions": "Συχνές Ερωτήσεις", + "User does not exist.": "Ο χρήστης δεν υπάρχει.", + "We need your phone number to contact you and to help you.": "Χρειαζόμαστε το τηλέφωνο για επικοινωνία.", + "You will recieve code in sms message": "Θα λάβετε SMS με κωδικό", + "Please enter": "Εισάγετε", + "We need your phone number to contact you and to help you receive orders.": "Χρειαζόμαστε το τηλέφωνο για λήψη παραγγελιών.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Το όνομα στο Ποινικό Μητρώο δεν ταιριάζει με το δίπλωμα.", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Ο αριθμός ταυτότητας δεν ταιριάζει.", + "Capture an Image of Your Criminal Record": "Φωτογραφία Ποινικού Μητρώου", + "IssueDate": "Ημ. Έκδοσης", + "Capture an Image of Your car license front": "Φωτογραφία Άδειας Κυκλοφορίας (Μπροστά)", + "Capture an Image of Your ID Document front": "Φωτογραφία Ταυτότητας (Μπροστά)", + "NationalID": "Αριθμός Ταυτότητας", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Μοιραστείτε και κερδίστε.", + "FullName": "Ονοματεπώνυμο", + "No invitation found yet!": "Καμία πρόσκληση!", + "InspectionResult": "Αποτέλεσμα Ελέγχου", + "Criminal Record": "Ποινικό Μητρώο", + "The email or phone number is already registered.": "Το email ή τηλέφωνο χρησιμοποιείται.", + "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.": "Ανεβάστε δίπλωμα, ταυτότητα, άδεια κυκλοφορίας. Έλεγχος σε 2-3 λεπτά.", + "Documents check": "Έλεγχος Εγγράφων", + "Driver's License": "Δίπλωμα Οδήγησης", + "for your first registration!": "για την πρώτη εγγραφή!", + "Get it Now!": "Πάρτε το!", + "before": "πριν", + "Code not approved": "Κωδικός μη αποδεκτός", + "3000 LE": "30 €", + "Do you have an invitation code from another driver?": "Έχετε κωδικό πρόσκλησης;", + "Paste the code here": "Επικόλληση κωδικού", + "No, I don't have a code": "Όχι", + "Audio uploaded successfully.": "Επιτυχής μεταφόρτωση.", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Ιδανικό για νέα μοντέλα και ελευθερία διαδρομής", + "Share this code with your friends and earn rewards when they use it!": "Μοιραστείτε και κερδίστε!", + "Enter phone": "Εισαγωγή τηλεφώνου", + "complete, you can claim your gift": "ολοκληρώθηκε, λάβετε το δώρο", + "When": "Όταν", + "Enter driver's phone": "Τηλέφωνο οδηγού", + "Send Invite": "Αποστολή Πρόσκλησης", + "Show Invitations": "Προβολή Προσκλήσεων", + "License Type": "Τύπος Διπλώματος", + "National Number": "Αριθμός Ταυτότητας", + "Name (Arabic)": "Όνομα (Αραβικά)", + "Name (English)": "Όνομα (Αγγλικά)", + "Address": "Διεύθυνση", + "Issue Date": "Ημ. Έκδοσης", + "Expiry Date": "Ημ. Λήξης", + "License Categories": "Κατηγορίες", + "driver_license": "δίπλωμα_οδήγησης", + "Capture an Image of Your Driver License": "Φωτογραφία Διπλώματος", + "ID Documents Back": "Ταυτότητα (Πίσω)", + "National ID": "Ταυτότητα", + "Occupation": "Επάγγελμα", + "Religion": "Θρήσκευμα", + "Full Name (Marital)": "Ονοματεπώνυμο", + "Expiration Date": "Ημερομηνία Λήξης", + "Capture an Image of Your ID Document Back": "Φωτογραφία Ταυτότητας (Πίσω)", + "ID Documents Front": "Ταυτότητα (Μπροστά)", + "First Name": "Όνομα", + "CardID": "Αρ. Κάρτας", + "Vehicle Details Front": "Στοιχεία Οχήματος (Μπροστά)", + "Plate Number": "Αριθμός Πινακίδας", + "Owner Name": "Ιδιοκτήτης", + "Vehicle Details Back": "Στοιχεία Οχήματος (Πίσω)", + "Make": "Μάρκα", + "Model": "Μοντέλο", + "Year": "Έτος", + "Chassis": "Αριθμός Πλαισίου", + "Color": "Χρώμα", + "Displacement": "Κυβισμός", + "Fuel": "Καύσιμο", + "Tax Expiry Date": "Λήξη Τελών", + "Inspection Date": "Ημ. ΚΤΕΟ", + "Capture an Image of Your car license back": "Φωτογραφία Άδειας (Πίσω)", + "Capture an Image of Your Driver's License": "Φωτογραφία Διπλώματος", + "Sign in with Google for easier email and name entry": "Είσοδος με Google", + "You will choose allow all the time to be ready receive orders": "Επιλέξτε 'Πάντα' για λήψη παραγγελιών", + "Get to your destination quickly and easily.": "Φτάστε γρήγορα στον προορισμό.", + "Enjoy a safe and comfortable ride.": "Απολαύστε ασφαλή διαδρομή.", + "Choose Language": "Επιλογή Γλώσσας", + "Pay with Wallet": "Πληρωμή με Πορτοφόλι", + "Invalid MPIN": "Άκυρο MPIN", + "Invalid OTP": "Άκυρο OTP", + "Enter your email address": "Εισάγετε email", + "Please enter Your Email.": "Παρακαλώ εισάγετε Email.", + "Enter your phone number": "Εισάγετε τηλέφωνο", + "Please enter your phone number.": "Παρακαλώ εισάγετε τηλέφωνο.", + "Please enter Your Password.": "Εισάγετε Κωδικό.", + "if you dont have account": "αν δεν έχετε λογαριασμό", + "Register": "Εγγραφή", + "Accept Ride's Terms & Review Privacy Notice": "Αποδοχή Όρων", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Επιλέγοντας 'Συμφωνώ', αποδέχομαι τους Όρους. Είμαι άνω των 18.", + "First name": "Όνομα", + "Enter your first name": "Εισάγετε όνομα", + "Please enter your first name.": "Παρακαλώ εισάγετε όνομα.", + "Last name": "Επώνυμο", + "Enter your last name": "Εισάγετε επώνυμο", + "Please enter your last name.": "Παρακαλώ εισάγετε επώνυμο.", + "City": "Πόλη", + "Please enter your City.": "Εισάγετε Πόλη.", + "Verify Email": "Επαλήθευση Email", + "We sent 5 digit to your Email provided": "Στείλαμε 5ψήφιο κωδικό", + "5 digit": "5 ψηφία", + "Send Verification Code": "Αποστολή Κωδικού", + "Your Ride Duration is ": "Διάρκεια: ", + "You will be thier in": "Θα είστε εκεί σε", + "You trip distance is": "Απόσταση: ", + "Fee is": "Κόστος: ", + "From : ": "Από: ", + "To : ": "Προς: ", + "Add Promo": "Προσθήκη Προσφοράς", + "Confirm Selection": "Επιβεβαίωση", + "distance is": "απόσταση είναι", + "Privacy Policy": "Πολιτική Απορρήτου", + "Intaleq LLC": "Intaleq LLC", + "Syria'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.": "Πρωτοποριακή υπηρεσία στην Ελλάδα.", + "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 συνδέει με τους κοντινότερους οδηγούς.", + "Why Choose Intaleq?": "Γιατί Intaleq;", + "Closest to You": "Δίπλα σας", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Γρηγορότερη εξυπηρέτηση.", + "Uncompromising Security": "Ασφάλεια", + "Lady Captains Available": "Γυναίκες Οδηγοί", + "Recorded Trips (Voice & AI Analysis)": "Καταγεγραμμένες Διαδρομές", + "Fastest Complaint Response": "Άμεση Ανταπόκριση", + "Our dedicated customer service team ensures swift resolution of any issues.": "Επίλυση θεμάτων άμεσα.", + "Affordable for Everyone": "Οικονομικό", + "Frequently Asked Questions": "Συχνές Ερωτήσεις", + "Getting Started": "Ξεκινώντας", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Ανοίξτε την εφαρμογή, εισάγετε προορισμό, πατήστε Αίτημα.", + "Vehicle Options": "Επιλογές Οχήματος", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Economy, Comfort, Luxury.", + "Payments": "Πληρωμές", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Μετρητά ή Κάρτα.", + "Ride Management": "Διαχείριση", + "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "Ναι, μπορείτε να ακυρώσετε (ενδέχεται να υπάρξει χρέωση).", + "For Drivers": "Για Οδηγούς", + "Driver Registration": "Εγγραφή", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Επικοινωνήστε για εγγραφή.", + "Visit Website/Contact Support": "Ιστοσελίδα/Υποστήριξη", + "Close": "Κλείσιμο", + "We are searching for the nearest driver": "Αναζήτηση οδηγού", + "Communication": "Επικοινωνία", + "How do I communicate with the other party (passenger/driver)?": "Πώς επικοινωνώ;", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Μέσω chat.", + "Safety & Security": "Ασφάλεια", + "What safety measures does Intaleq offer?": "Μέτρα ασφαλείας;", + "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.": "Επαλήθευση, παρακολούθηση, επαφές έκτακτης ανάγκης.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Ανταγωνιστικές τιμές.", + "Variety of Trip Choices": "Ποικιλία", + "Choose the trip option that perfectly suits your needs and preferences.": "Επιλέξτε ό,τι σας ταιριάζει.", + "Your Choice, Our Priority": "Προτεραιότητά μας", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Ευελιξία επιλογής.", + "duration is": "διάρκεια είναι", + "Setting": "Ρύθμιση", + "Find answers to common questions": "Απαντήσεις", + "I don't need a ride anymore": "Δεν χρειάζομαι διαδρομή", + "I was just trying the application": "Δοκίμαζα την εφαρμογή", + "No driver accepted my request": "Κανείς δεν αποδέχτηκε", + "I added the wrong pick-up/drop-off location": "Λάθος τοποθεσία", + "I don't have a reason": "Κανένας λόγος", + "Can we know why you want to cancel Ride ?": "Γιατί ακυρώνετε;", + "Add Payment Method": "Προσθήκη Τρόπου Πληρωμής", + "Ride Wallet": "Πορτοφόλι", + "Payment Method": "Τρόπος Πληρωμής", + "Type here Place": "Πληκτρολογήστε μέρος", + "Are You sure to ride to": "Σίγουρα προς", + "Confirm": "Επιβεβαίωση", + "You are Delete": "Διαγραφή", + "Deleted": "Διαγράφηκε", + "You Dont Have Any places yet !": "Κανένα μέρος ακόμα!", + "From : Current Location": "Από: Τρέχουσα Τοποθεσία", + "My Cared": "Οι Κάρτες Μου", + "Add Card": "Προσθήκη Κάρτας", + "Add Credit Card": "Προσθήκη Πιστωτικής", + "Please enter the cardholder name": "Όνομα κατόχου", + "Please enter the expiry date": "Ημερομηνία λήξης", + "Please enter the CVV code": "Κωδικός CVV", + "Go To Favorite Places": "Μετάβαση στα Αγαπημένα", + "Go to this Target": "Μετάβαση στον Προορισμό", + "My Profile": "Το Προφίλ μου", + "Are you want to go to this site": "Θέλετε να πάτε εδώ;", + "MyLocation": "Η Τοποθεσία Μου", + "my location": "τοποθεσία μου", + "Target": "Στόχος", + "You Should choose rate figure": "Επιλέξτε βαθμολογία", + "Login Captin": "Είσοδος Οδηγού", + "Register Captin": "Εγγραφή Οδηγού", + "Send Verfication Code": "Αποστολή Κωδικού", + "KM": "Χλμ", + "End Ride": "Τέλος Διαδρομής", + "Minute": "Λεπτό", + "Go to passenger Location now": "Πηγαίνετε στον Επιβάτη", + "Duration of the Ride is ": "Διάρκεια: ", + "Distance of the Ride is ": "Απόσταση: ", + "Name of the Passenger is ": "Όνομα Επιβάτη: ", + "Hello this is Captain": "Γεια σας, ο Οδηγός", + "Start the Ride": "Έναρξη", + "Please Wait If passenger want To Cancel!": "Περιμένετε μήπως ακυρώσει ο επιβάτης!", + "Total Duration:": "Συνολική Διάρκεια:", + "Active Duration:": "Ενεργή Διάρκεια:", + "Waiting for Captin ...": "Αναμονή Οδηγού...", + "Age is ": "Ηλικία: ", + "Rating is ": "Βαθμολογία: ", + " to arrive you.": " για να φτάσει.", + "Tariff": "Τιμοκατάλογος", + "Settings": "Ρυθμίσεις", + "Feed Back": "Σχόλια", + "Please enter a valid 16-digit card number": "Εισάγετε έγκυρο αριθμό κάρτας", + "Add Phone": "Προσθήκη Τηλεφώνου", + "Please enter a phone number": "Εισάγετε τηλέφωνο", + "You dont Add Emergency Phone Yet!": "Δεν προσθέσατε τηλέφωνο έκτακτης ανάγκης!", + "You will arrive to your destination after ": "Άφιξη σε ", + "You can cancel Ride now": "Μπορείτε να ακυρώσετε", + "You Can cancel Ride After Captain did not come in the time": "Ακύρωση αν ο οδηγός αργήσει", + "If you in Car Now. Press Start The Ride": "Αν είστε στο όχημα, πατήστε Έναρξη", + "You Dont Have Any amount in": "Δεν έχετε υπόλοιπο στο", + "Wallet!": "Πορτοφόλι!", + "You Have": "Έχετε", + "Save Credit Card": "Αποθήκευση Κάρτας", + "Show Promos": "Εμφάνιση Προσφορών", + "10 and get 4% discount": "10 και κερδίστε 4% έκπτωση", + "20 and get 6% discount": "20 και κερδίστε 6% έκπτωση", + "40 and get 8% discount": "40 και κερδίστε 8% έκπτωση", + "100 and get 11% discount": "100 και κερδίστε 11% έκπτωση", + "Pay with Your PayPal": "Πληρωμή με PayPal", + "You will choose one of above !": "Επιλέξτε ένα!", + "Edit Profile": "Επεξεργασία", + "Copy this Promo to use it in your Ride!": "Αντιγράψτε τον κωδικό!", + "To change some Settings": "Αλλαγή Ρυθμίσεων", + "Order Request Page": "Σελίδα Αιτήματος", + "Rouats of Trip": "Διαδρομές", + "Passenger Name is ": "Όνομα Επιβάτη: ", + "Total From Passenger is ": "Σύνολο από Επιβάτη: ", + "Duration To Passenger is ": "Διάρκεια προς Επιβάτη: ", + "Distance To Passenger is ": "Απόσταση προς Επιβάτη: ", + "Total For You is ": "Σύνολο για Εσάς: ", + "Distance is ": "Απόσταση: ", + " KM": " Χλμ", + "Duration of Trip is ": "Διάρκεια: ", + " Minutes": " Λεπτά", + "Apply Order": "Αποδοχή", + "Refuse Order": "Απόρριψη", + "Rate Captain": "Βαθμολογία Οδηγού", + "Enter your Note": "Σχόλιο", + "Type something...": "Γράψτε κάτι...", + "Submit rating": "Υποβολή", + "Rate Passenger": "Βαθμολογία Επιβάτη", + "Ride Summary": "Σύνοψη", + "welcome_message": "Καλώς ήρθατε στο Intaleq!", + "app_description": "Ασφαλής μετακίνηση.", + "get_to_destination": "Φτάστε στον προορισμό.", + "get_a_ride": "Βρείτε διαδρομή.", + "safe_and_comfortable": "Ασφάλεια και άνεση.", + "committed_to_safety": "Δέσμευση στην ασφάλεια.", + "your ride is Accepted": "Η διαδρομή έγινε δεκτή", + "Driver is waiting at pickup.": "Ο οδηγός περιμένει.", + "Driver is on the way": "Ο οδηγός έρχεται", + "Contact Options": "Επικοινωνία", + "Send a custom message": "Προσαρμοσμένο μήνυμα", + "Type your message": "Γράψτε μήνυμα", + "I will go now": "Πηγαίνω τώρα", + "You Have Tips": "Έχετε φιλοδώρημα", + " tips\\nTotal is": " φιλοδώρημα\\nΣύνολο", + "Your fee is ": "Η χρέωση είναι ", + "Do you want to pay Tips for this Driver": "Θέλετε να δώσετε φιλοδώρημα;", + "Tip is ": "Φιλοδώρημα: ", + "Are you want to wait drivers to accept your order": "Θέλετε να περιμένετε;", + "This price is fixed even if the route changes for the driver.": "Σταθερή τιμή.", + "The price may increase if the route changes.": "Η τιμή μπορεί να αυξηθεί.", + "The captain is responsible for the route.": "Ο οδηγός είναι υπεύθυνος για τη διαδρομή.", + "We are search for nearst driver": "Αναζήτηση οδηγού", + "Your order is being prepared": "Προετοιμασία", + "The drivers are reviewing your request": "Εξέταση αιτήματος", + "Your order sent to drivers": "Απεστάλη στους οδηγούς", + "You can call or record audio of this trip": "Μπορείτε να καλέσετε ή να ηχογραφήσετε", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Η διαδρομή ξεκίνησε! Μοιραστείτε την ή ηχογραφήστε.", + "Camera Access Denied.": "Άρνηση Πρόσβασης Κάμερας.", + "Open Settings": "Ρυθμίσεις", + "GPS Required Allow !.": "Απαιτείται GPS!", + "Your Account is Deleted": "Ο Λογαριασμός Διαγράφηκε", + "Are you sure to delete your account?": "Σίγουρα διαγραφή;", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Τα δεδομένα θα διαγραφούν σε 2 εβδομάδες.", + "Enter Your First Name": "Εισάγετε Όνομα", + "Are you Sure to LogOut?": "Σίγουρα Αποσύνδεση;", + "Email Wrong": "Λάθος Email", + "Email you inserted is Wrong.": "Το email είναι λάθος.", + "You have finished all times ": "Τέλος προσπαθειών", + "if you want help you can email us here": "Στείλτε μας email για βοήθεια", + "Thanks": "Ευχαριστώ", + "Email Us": "Στείλτε Email", + "I cant register in your app in face detection ": "Πρόβλημα με ανίχνευση προσώπου", + "Hi": "Γεια", + "No face detected": "Δεν ανιχνεύτηκε πρόσωπο", + "Image detecting result is ": "Αποτέλεσμα: ", + "from 3 times Take Attention": "από 3 φορές, Προσοχή", + "Be sure for take accurate images please\\nYou have": "Βγάλτε καθαρές φωτογραφίες\\nΈχετε", + "image verified": "επαληθεύτηκε", + "Next": "Επόμενο", + "There is no help Question here": "Δεν υπάρχει ερώτηση βοήθειας", + "You dont have Points": "Δεν έχετε Πόντους", + "You Are Stopped For this Day !": "Αποκλεισμός για σήμερα!", + "You must be charge your Account": "Φορτίστε τον λογαριασμό", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Απορρίψατε 3 διαδρομές.\\nΤα λέμε αύριο!", + "Recharge my Account": "Φόρτιση", + "Ok , See you Tomorrow": "ΟΚ, τα λέμε αύριο", + "You are Stopped": "Αποκλεισμός", + "Connected": "Συνδέθηκε", + "Not Connected": "Δεν συνδέθηκε", + "Your are far from passenger location": "Είστε μακριά από τον επιβάτη", + "go to your passenger location before\\nPassenger cancel trip": "Πηγαίνετε στον επιβάτη πριν ακυρώσει", + "You will get cost of your work for this trip": "Θα πληρωθείτε για τη διαδρομή", + " in your wallet": " στο πορτοφόλι", + "you gain": "κερδίσατε", + "Order Cancelled by Passenger": "Ακύρωση από Επιβάτη", + "Feedback data saved successfully": "Αποθηκεύτηκε", + "No Promo for today .": "Καμία Προσφορά σήμερα.", + "Select your destination": "Επιλογή προορισμού", + "Search for your Start point": "Σημείο εκκίνησης", + "Search for waypoint": "Στάση", + "Current Location": "Τρέχουσα Τοποθεσία", + "Add Location 1": "Προσθήκη Τοποθεσίας 1", + "You must Verify email !.": "Επαληθεύστε το email!", + "Cropper": "Περικοπή", + "Saved Sucssefully": "Αποθηκεύτηκε Επιτυχώς", + "Select Date": "Επιλογή Ημερομηνίας", + "Birth Date": "Ημ. Γέννησης", + "Ok": "ΟΚ", + "the 500 points equal 30 JOD": "500 πόντοι ισούνται με 30 €", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "500 πόντοι = 30 €\\nΚερδίστε χρήματα", + "token updated": "token ενημερώθηκε", + "Add Location 2": "Προσθήκη Τοποθεσίας 2", + "Add Location 3": "Προσθήκη Τοποθεσίας 3", + "Add Location 4": "Προσθήκη Τοποθεσίας 4", + "Waiting for your location": "Αναμονή τοποθεσίας", + "Search for your destination": "Αναζήτηση προορισμού", + "Hi! This is": "Γεια! Είμαι", + " I am using": " χρησιμοποιώ", + " to ride with": " για διαδρομή με", + " as the driver.": " ως οδηγό.", + "is driving a ": "οδηγεί ", + " with license plate ": " με πινακίδα ", + " I am currently located at ": " Βρίσκομαι στο ", + "Please go to Car now ": "Πηγαίνετε στο όχημα τώρα ", + "You will receive a code in WhatsApp Messenger": "Θα λάβετε κωδικό στο WhatsApp", + "If you need assistance, contact us": "Επικοινωνήστε για βοήθεια", + "Promo Ended": "Η Προσφορά Έληξε", + "Enter the promo code and get": "Εισάγετε κωδικό και κερδίστε", + "DISCOUNT": "ΕΚΠΤΩΣΗ", + "No wallet record found": "Δεν βρέθηκε πορτοφόλι", + "for": "για", + "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 είναι η ασφαλέστερη εφαρμογή. Χαμηλή προμήθεια 8%. Ασφάλεια και συντήρηση.", + "You can contact us during working hours from 12:00 - 19:00.": "Επικοινωνήστε 12:00 - 19:00.", + "Choose a contact option": "Επιλογή επικοινωνίας", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Ώρες 12:00 - 19:00.\\nΣτείλτε WhatsApp ή email.", + "Promo code copied to clipboard!": "Αντιγράφηκε!", + "Copy Code": "Αντιγραφή", + "Your invite code was successfully applied!": "Εφαρμόστηκε επιτυχώς!", + "Payment Options": "Επιλογές Πληρωμής", + "wait 1 minute to receive message": "περιμένετε 1 λεπτό", + "You have copied the promo code.": "Αντιγράψατε τον κωδικό.", + "Select Payment Amount": "Επιλογή Ποσού", + "The promotion period has ended.": "Η προσφορά έληξε.", + "Promo Code Accepted": "Κωδικός Δεκτός", + "Tap on the promo code to copy it!": "Πατήστε για αντιγραφή!", + "Lowest Price Achieved": "Χαμηλότερη Τιμή", + "Cannot apply further discounts.": "Δεν υπάρχουν άλλες εκπτώσεις.", + "Promo Already Used": "Χρησιμοποιήθηκε ήδη", + "Invitation Used": "Πρόσκληση Χρησιμοποιήθηκε", + "You have already used this promo code.": "Χρησιμοποιήσατε τον κωδικό.", + "Insert Your Promo Code": "Εισαγωγή Κωδικού", + "Enter promo code here": "Εισάγετε κωδικό εδώ", + "Please enter a valid promo code": "Εισάγετε έγκυρο κωδικό", + "Awfar Car": "Οικονομικό Όχημα", + "Old and affordable, perfect for budget rides.": "Οικονομικό και προσιτό.", + " If you need to reach me, please contact the driver directly at": " Επικοινωνήστε με τον οδηγό στο", + "No Car or Driver Found in your area.": "Δεν βρέθηκε όχημα ή οδηγός.", + "Please Try anther time ": "Προσπαθήστε ξανά ", + "There no Driver Aplly your order sorry for that ": "Κανείς δεν δέχτηκε, συγγνώμη ", + "Trip Cancelled": "Διαδρομή Ακυρώθηκε", + "The Driver Will be in your location soon .": "Ο Οδηγός φτάνει σύντομα.", + "The distance less than 500 meter.": "Απόσταση κάτω από 500μ.", + "Promo End !": "Τέλος Προσφοράς!", + "There is no notification yet": "Καμία ειδοποίηση", + "Use Touch ID or Face ID to confirm payment": "Χρήση Touch ID ή Face ID", + "Contact us for any questions on your order.": "Επικοινωνήστε για ερωτήσεις.", + "Pyament Cancelled .": "Πληρωμή Ακυρώθηκε.", + "type here": "γράψτε εδώ", + "Scan Driver License": "Σάρωση Διπλώματος", + "Please put your licence in these border": "Τοποθετήστε το δίπλωμα στο πλαίσιο", + "Camera not initialized yet": "Η κάμερα δεν άνοιξε", + "Take Image": "Λήψη Φωτογραφίας", + "AI Page": "Σελίδα AI", + "Take Picture Of ID Card": "Φωτογραφία Ταυτότητας", + "Take Picture Of Driver License Card": "Φωτογραφία Διπλώματος", + "We are process picture please wait ": "Επεξεργασία εικόνας, περιμένετε ", + "There is no data yet.": "Δεν υπάρχουν δεδομένα.", + "Name :": "Όνομα :", + "Drivers License Class: ": "Κατηγορία Διπλώματος: ", + "Document Number: ": "Αριθμός Εγγράφου: ", + "Address: ": "Διεύθυνση: ", + "Height: ": "Ύψος: ", + "Expiry Date: ": "Λήξη: ", + "Date of Birth: ": "Ημ. Γέννησης: ", + "You can't continue with us .\\nYou should renew Driver license": "Πρέπει να ανανεώσετε το δίπλωμα", + "Detect Your Face ": "Ανίχνευση Προσώπου ", + "Go to next step\\nscan Car License.": "Επόμενο βήμα\\nσάρωση Άδειας.", + "Name in arabic": "Όνομα (Τοπικό)", + "Drivers License Class": "Κατηγορία", + "Selected Date": "Επιλεγμένη Ημερομηνία", + "Select Time": "Επιλογή Ώρας", + "Selected Time": "Επιλεγμένη Ώρα", + "Selected Date and Time": "Επιλογή", + "Lets check Car license ": "Έλεγχος Άδειας ", + "Car": "Όχημα", + "Plate": "Πινακίδα", + "Rides": "Διαδρομές", + "Selected driver": "Επιλεγμένος οδηγός", + "Lets check License Back Face": "Έλεγχος Πίσω Όψης", + "Car License Card": "Άδεια Κυκλοφορίας", + "No image selected yet": "Δεν επιλέχθηκε εικόνα", + "Made :": "Κατασκευαστής :", + "model :": "Μοντέλο :", + "VIN :": "Πλαίσιο :", + "year :": "Έτος :", + "ُExpire Date": "Ημ. Λήξης", + "Login Driver": "Είσοδος Οδηγού", + "Password must br at least 6 character.": "Τουλάχιστον 6 χαρακτήρες.", + "if you don't have account": "αν δεν έχετε λογαριασμό", + "Here recorded trips audio": "Ηχογραφήσεις διαδρομών", + "Register as Driver": "Εγγραφή ως Οδηγός", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Επιλέγοντας \"Συμφωνώ\", αποδέχομαι τους Όρους Χρήσης και ", + "Log Out Page": "Αποσύνδεση", + "Log Off": "Αποσύνδεση", + "Register Driver": "Εγγραφή Οδηγού", + "Verify Email For Driver": "Επαλήθευση Email Οδηγού", + "Admin DashBoard": "Πίνακας Ελέγχου", + "Your name": "Το όνομά σας", + "your ride is applied": "η διαδρομή καταχωρήθηκε", + "H and": "H και", + "JOD": "€", + "m": "λ", + "We search nearst Driver to you": "Αναζήτηση κοντινού οδηγού", + "please wait till driver accept your order": "περιμένετε την αποδοχή", + "No accepted orders? Try raising your trip fee to attract riders.": "Αυξήστε την προσφορά σας.", + "You should select one": "Επιλέξτε ένα", + "The driver accept your order for": "Ο οδηγός δέχτηκε για", + "The driver on your way": "Ο οδηγός έρχεται", + "Total price from ": "Συνολική τιμή από ", + "Order Details Intaleq": "Λεπτομέρειες", + "Selected file:": "Επιλεγμένο αρχείο:", + "Your trip cost is": "Κόστος διαδρομής", + "this will delete all files from your device": "διαγραφή όλων των αρχείων", + "Exclusive offers and discounts always with the Intaleq app": "Αποκλειστικές προσφορές", + "Submit Question": "Υποβολή Ερώτησης", + "Please enter your Question.": "Εισάγετε Ερώτηση.", + "Help Details": "Λεπτομέρειες Βοήθειας", + "No trip yet found": "Δεν βρέθηκε διαδρομή", + "No Response yet.": "Καμία απάντηση.", + " You Earn today is ": " Κέρδος σήμερα: ", + " You Have in": " Έχετε στο", + "Total points is ": "Σύνολο πόντων: ", + "Total Connection Duration:": "Διάρκεια Σύνδεσης:", + "Passenger name : ": "Όνομα Επιβάτη: ", + "Cost Of Trip IS ": "Κόστος Διαδρομής: ", + "Arrival time": "Ώρα άφιξης", + "arrival time to reach your point": "ώρα άφιξης στο σημείο", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Τιμή βάσει χρόνου και απόστασης.", + "Hello this is Driver": "Γεια σας, ο Οδηγός", + "Is the Passenger in your Car ?": "Είναι ο Επιβάτης στο Όχημα;", + "Please wait for the passenger to enter the car before starting the trip.": "Περιμένετε να μπει ο επιβάτης.", + "No ,still Waiting.": "Όχι, αναμονή.", + "I arrive you": "Έφτασα", + "I Arrive your site": "Έφτασα στο σημείο", + "You are not in near to passenger location": "Δεν είστε κοντά στον επιβάτη", + "please go to picker location exactly": "πηγαίνετε ακριβώς στο σημείο παραλαβής", + "You Can Cancel Trip And get Cost of Trip From": "Ακύρωση και λήψη κόστους από", + "Are you sure to cancel?": "Σίγουρα ακύρωση;", + "Insert Emergincy Number": "Εισαγωγή SOS Αριθμού", + "Best choice for comfort car and flexible route and stops point": "Άνετο αμάξι, ευέλικτη διαδρομή", + "Insert": "Εισαγωγή", + "This is for scooter or a motorcycle.": "Για σκούτερ ή μοτοσυκλέτα.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Απευθείας διαδρομή, σταθερή τιμή.", + "You can decline a request without any cost": "Απόρριψη χωρίς χρέωση", + "Perfect for adventure seekers who want to experience something new and exciting": "Για όσους ψάχνουν περιπέτεια", + "My current location is:": "Η τοποθεσία μου:", + "and I have a trip on": "και έχω διαδρομή στο", + "App with Passenger": "Εφαρμογή με Επιβάτη", + "You will be pay the cost to driver or we will get it from you on next trip": "Πληρωμή στον οδηγό ή στην επόμενη διαδρομή", + "Trip has Steps": "Διαδρομή με Στάσεις", + "Distance from Passenger to destination is ": "Απόσταση Επιβάτη από προορισμό: ", + "price is": "τιμή είναι", + "This ride type does not allow changes to the destination or additional stops": "Χωρίς αλλαγές/στάσεις", + "This price may be changed": "Η τιμή μπορεί να αλλάξει", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Χωρίς SIM; Καλέστε μέσω εφαρμογής.", + "This ride type allows changes, but the price may increase": "Αλλαγές επιτρέπονται, η τιμή ίσως αυξηθεί", + "Select one message": "Επιλογή μηνύματος", + "I'm waiting for you": "Σας περιμένω", + "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 χλμ/ώ). Παρακαλώ επιβραδύνετε.", + "Warning: Intaleqing detected!": "Προειδοποίηση: Υπερβολική ταχύτητα!", + "Please help! Contact me as soon as possible.": "Βοήθεια! Επικοινωνήστε άμεσα.", + "Share Trip Details": "Κοινοποίηση Λεπτομερειών", + "Car Plate is ": "Πινακίδα: ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 πόντοι = 300 €\\nΚερδίστε χρήματα", + "the 300 points equal 300 L.E": "300 πόντοι = 300 €", + "The payment was not approved. Please try again.": "Η πληρωμή δεν εγκρίθηκε. Προσπαθήστε ξανά.", + "Payment Failed": "Αποτυχία Πληρωμής", + "This is a scheduled notification.": "Προγραμματισμένη ειδοποίηση.", + "An error occurred during the payment process.": "Σφάλμα πληρωμής.", + "The payment was approved.": "Εγκρίθηκε.", + "Payment Successful": "Επιτυχής Πληρωμή", + "No ride found yet": "Δεν βρέθηκε διαδρομή", + "Accept Order": "Αποδοχή", + "Bottom Bar Example": "Παράδειγμα", + "Driver phone": "Τηλέφωνο Οδηγού", + "Statistics": "Στατιστικά", + "Origin": "Αφετηρία", + "Destination": "Προορισμός", + "Driver Name": "Όνομα Οδηγού", + "Driver Car Plate": "Πινακίδα Οδηγού", + "Available for rides": "Διαθέσιμος", + "Scan Id": "Σάρωση Ταυτότητας", + "Camera not initilaized yet": "Κάμερα μη έτοιμη", + "Scan ID MklGoogle": "Σάρωση Ταυτότητας", + "Language": "Γλώσσα", + "Jordan": "Ιορδανία", + "USA": "ΗΠΑ", + "Egypt": "Αίγυπτος", + "Turkey": "Τουρκία", + "Saudi Arabia": "Σαουδική Αραβία", + "Qatar": "Κατάρ", + "Bahrain": "Μπαχρέιν", + "Kuwait": "Κουβέιτ", + "But you have a negative salary of": "Αρνητικό υπόλοιπο:", + "Promo Code": "Κωδικός Προσφοράς", + "Your trip distance is": "Απόσταση διαδρομής:", + "Enter promo code": "Εισάγετε κωδικό", + "You have promo!": "Έχετε προσφορά!", + "Cost Duration": "Κόστος Διάρκειας", + "Duration is": "Διάρκεια:", + "Leave": "Αποχώρηση", + "Join": "Συμμετοχή", + "Heading your way now. Please be ready.": "Έρχομαι. Να είστε έτοιμοι.", + "Approaching your area. Should be there in 3 minutes.": "Πλησιάζω. Εκεί σε 3 λεπτά.", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Κίνηση. Άλλο σημείο παραλαβής;", + "This ride is already taken by another driver.": "Η διαδρομή αναλήφθηκε.", + "You Should be select reason.": "Επιλέξτε λόγο.", + "Waiting for Driver ...": "Αναμονή Οδηγού...", + "Latest Recent Trip": "Τελευταία Διαδρομή", + "from your list": "από τη λίστα", + "Do you want to change Work location": "Αλλαγή τοποθεσίας Εργασίας;", + "Do you want to change Home location": "Αλλαγή τοποθεσίας Σπιτιού;", + "We Are Sorry That we dont have cars in your Location!": "Λυπούμαστε, κανένα όχημα στην περιοχή!", + "Choose from Map": "Επιλογή από Χάρτη", + "Pick your ride location on the map - Tap to confirm": "Επιλέξτε σημείο στον χάρτη - Πατήστε για επιβεβαίωση", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Το Intaleq είναι ασφαλές και αξιόπιστο.", + "With Intaleq, you can get a ride to your destination in minutes.": "Βρείτε διαδρομή σε λεπτά.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Δέσμευση στην ασφάλεια, ελεγμένοι οδηγοί.", + "Pick from map": "Επιλογή από χάρτη", + "No Car in your site. Sorry!": "Κανένα όχημα. Συγγνώμη!", + "Nearest Car for you about ": "Κοντινότερο όχημα σε περίπου ", + "From :": "Από:", + "Get Details of Trip": "Λεπτομέρειες", + "If you want add stop click here": "Για προσθήκη στάσης πατήστε εδώ", + "Where you want go ": "Πού θέλετε να πάτε ", + "My Card": "Η Κάρτα Μου", + "Start Record": "Έναρξη Εγγραφής", + "History of Trip": "Ιστορικό", + "Helping Center": "Κέντρο Βοήθειας", + "Record saved": "Αποθηκεύτηκε", + "Trips recorded": "Καταγεγραμμένες", + "Select 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.": "Επιλέξτε χώρα για ακριβείς πληροφορίες.", + "Are you sure to delete recorded files": "Διαγραφή αρχείων;", + "Select recorded trip": "Επιλογή διαδρομής", + "Card Number": "Αριθμός Κάρτας", + "Hi, Where to ": "Γεια, Πού πάτε ", + "Pick your destination from Map": "Προορισμός από Χάρτη", + "Add Stops": "Προσθήκη Στάσεων", + "Get Direction": "Οδηγίες", + "Add Location": "Προσθήκη Τοποθεσίας", + "Switch Rider": "Αλλαγή Επιβάτη", + "You will arrive to your destination after timer end.": "Άφιξη μετά το πέρας του χρόνου.", + "You can cancel trip": "Μπορείτε να ακυρώσετε", + "The driver waitting you in picked location .": "Ο οδηγός περιμένει.", + "Pay with Your": "Πληρωμή με", + "Pay with Credit Card": "Πληρωμή με Κάρτα", + "Show Promos to Charge": "Προσφορές Φόρτισης", + "Point": "Πόντος", + "How many hours would you like to wait?": "Πόσες ώρες αναμονής;", + "Driver Wallet": "Πορτοφόλι Οδηγού", + "Choose between those Type Cars": "Επιλογή Τύπου Οχήματος", + "hour": "ώρα", + "Select Waiting Hours": "Ώρες Αναμονής", + "Total Points is": "Σύνολο Πόντων", + "You will receive a code in SMS message": "Θα λάβετε SMS", + "Done": "Τέλος", + "Total Budget from trips is ": "Σύνολο εσόδων: ", + "Total Amount:": "Συνολικό Ποσό:", + "Total Budget from trips by\\nCredit card is ": "Σύνολο εσόδων (Κάρτα): ", + "This amount for all trip I get from Passengers": "Ποσό από Επιβάτες", + "Pay from my budget": "Πληρωμή από υπόλοιπο", + "This amount for all trip I get from Passengers and Collected For me in": "Ποσό που εισπράχθηκε", + "You can buy points from your budget": "Αγορά πόντων από υπόλοιπο", + "insert amount": "εισαγωγή ποσού", + "You can buy Points to let you online\\nby this list below": "Αγορά Πόντων για online", + "Create Wallet to receive your money": "Δημιουργία Πορτοφολιού", + "Enter your feedback here": "Εισάγετε σχόλια", + "Please enter your feedback.": "Παρακαλώ εισάγετε σχόλια.", + "Feedback": "Σχόλια", + "Submit ": "Υποβολή ", + "Click here to Show it in Map": "Προβολή στον Χάρτη", + "Canceled": "Ακυρώθηκε", + "No I want": "Όχι θέλω", + "Email is": "Email:", + "Phone Number is": "Τηλέφωνο:", + "Date of Birth is": "Ημ. Γέννησης:", + "Sex is ": "Φύλο: ", + "Car Details": "Στοιχεία Οχήματος", + "VIN is": "Πλαίσιο:", + "Color is ": "Χρώμα: ", + "Make is ": "Μάρκα: ", + "Model is": "Μοντέλο:", + "Year is": "Έτος:", + "Expiration Date ": "Λήξη: ", + "Edit Your data": "Επεξεργασία", + "write vin for your car": "εισάγετε πλαίσιο", + "VIN": "Πλαίσιο", + "Please verify your identity": "Επαλήθευση ταυτότητας", + "write Color for your car": "εισάγετε χρώμα", + "write Make for your car": "εισάγετε μάρκα", + "write Model for your car": "εισάγετε μοντέλο", + "write Year for your car": "εισάγετε έτος", + "write Expiration Date for your car": "εισάγετε ημερομηνία λήξης", + "Tariffs": "Χρεώσεις", + "Minimum fare": "Ελάχιστη χρέωση", + "Maximum fare": "Μέγιστη χρέωση", + "Flag-down fee": "Σημαία", + "Including Tax": "Με ΦΠΑ", + "BookingFee": "Κόστος Κράτησης", + "Morning": "Πρωί", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 - 10:30", + "Evening": "Απόγευμα", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 - 15:00", + "Night": "Βράδυ", + "You have in account": "Έχετε στον λογαριασμό", + "Select Country": "Επιλογή Χώρας", + "Ride Today : ": "Διαδρομή Σήμερα: ", + "from 23:59 till 05:30": "23:59 - 05:30", + "Rate Driver": "Βαθμολογία Οδηγού", + "Total Cost is ": "Συνολικό Κόστος: ", + "Write note": "Σημείωση", + "Time to arrive": "Ώρα άφιξης", + "Ride Summaries": "Συνόψεις", + "Total Cost": "Συνολικό Κόστος", + "Average of Hours of": "Μέσος όρος ωρών", + " is ON for this month": " είναι ON αυτόν τον μήνα", + "Days": "Ημέρες", + "Total Hours on month": "Σύνολο Ωρών μήνα", + "Counts of Hours on days": "Ώρες ανά ημέρα", + "OrderId": "ID Παραγγελίας", + "created time": "ώρα δημιουργίας", + "Intaleq Over": "Τέλος Intaleq", + "I will slow down": "Θα επιβραδύνω", + "Map Passenger": "Χάρτης Επιβάτη", + "Be Slowly": "Πιο αργά", + "If you want to make Google Map App run directly when you apply order": "Άμεσο άνοιγμα Google Maps", + "You can change the language of the app": "Αλλαγή γλώσσας εφαρμογής", + "Your Budget less than needed": "Υπόλοιπο χαμηλότερο του απαιτούμενου", + "You can change the Country to get all features": "Αλλάξτε Χώρα για όλα τα χαρακτηριστικά", + "There is no Car or Driver in your area.": "Δεν υπάρχει αυτοκίνητο ή οδηγός στην περιοχή σας.", + "Change Country": "Αλλαγή Χώρας" + }, + "ur": { + "About Intaleq": "انطلق کے بارے میں", + "Chat with us anytime": "کسی भी समय हमसे चैट करें", + "Direct talk with our team": "ہماری ٹیم سے براہ راست بات کریں", + "Email Support": "ای میل سپورٹ", + "For official inquiries": "سرکاری استفسارات کے لیے", + "Intaleq Support": "انطلق سپورٹ", + "Reach out to us via": "ہم سے رابطہ کریں بذریعہ", + "Support is Away": "سپورٹ اب دستیاب نہیں ہے", + "Support is currently Online": "سپورٹ اب آن لائن ہے", + "Voice Call": "صوتی کال", + "We're here to help you 24/7": "ہم چوبیس گھنٹے آپ کی مدد کے لیے حاضر ہیں", + "Working Hours:": "کام کے اوقات:", + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "اس مدت کے بعد\\nآپ منسوخ نہیں کر سکتے!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "ہیلو! میں آپ کو Intaleq آزمانے کی دعوت دے رہا ہوں۔", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "شام", + "SYP": "شامی پاؤن", + "Order": "آرڈر", + "OrderVIP": "VIP آرڈر", + "Cancel Trip": "سفر منسوخ کریں", + "Passenger Cancel Trip": "مسافر نے سفر منسوخ کر دیا", + "VIP Order": "VIP آرڈر", + "The driver accepted your trip": "ڈرائیور نے آپ کا سفر قبول کر لیا ہے", + "message From passenger": "مسافر کا پیغام", + "Cancel": "منسوخ کریں", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "سفر منسوخ ہو گیا۔ سفر کی لاگت آپ کے والٹ میں شامل کر دی جائے گی۔", + "token change": "ٹوکن کی تبدیلی", + "Changed my mind": "میرا ارادہ بدل گیا", + "Please write the reason...": "براہ کرم وجہ لکھیں...", + "Found another transport": "دوسرا ذریعہ مل گیا", + "Driver is taking too long": "ڈرائیور بہت دیر لگا رہا ہے", + "Driver asked me to cancel": "ڈرائیور نے کینسل کرنے کا کہا", + "Wrong pickup location": "غلط پک اپ لوکیشن", + "Other": "دیگر", + "Don't Cancel": "کینسل نہ کریں", + "No Drivers Found": "کوئی ڈرائیور نہیں ملا", + "Sorry, there are no cars available of this type right now.": "معذرت، ابھی اس قسم کی کوئی گاڑی دستیاب نہیں ہے۔", + "Refresh Map": "نقشہ ریفریش کریں", + "face detect": "چہرے کی شناخت", + "Face Detection Result": "چہرے کی شناخت کا نتیجہ", + "similar": "ملتا جلتا", + "not similar": "مختلف", + "Searching for nearby drivers...": "قریبی ڈرائیور تلاش کیے جا رہے ہیں...", + "Error": "خرابی", + "Failed to search, please try again later": "تلاش ناکام رہی، براہ کرم بعد میں دوبارہ کوشش کریں", + "Connection Error": "کنکشن کی خرابی", + "Please check your internet connection": "براہ کرم اپنا انٹرنیٹ کنکشن چیک کریں", + "Sorry 😔": "معذرت 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "ڈرائیور نے ہنگامی وجہ سے ٹرپ کینسل کر دیا ہے۔\\nکیا آپ فوراً دوسرا ڈرائیور تلاش کرنا چاہتے ہیں؟", + "Search for another driver": "دوسرا ڈرائیور تلاش کریں", + "We apologize 😔": "ہم معذرت خواہ ہیں 😔", + "No drivers found at the moment.\\nPlease try again later.": "اس وقت کوئی ڈرائیور نہیں ملا۔\\nبراہ کرم بعد میں دوبارہ کوشش کریں۔", + "Hi ,I will go now": "سلام، میں اب جا رہا ہوں", + "Passenger come to you": "مسافر آپ کی طرف آ رہا ہے", + "Call Income": "آنے والی کال", + "Call Income from Passenger": "مسافر کی طرف سے کال", + "Criminal Document Required": "پولیس کلیئرنس درکار ہے", + "You should have upload it .": "آپ کو اسے اپ لوڈ کرنا چاہیے۔", + "Call End": "کال ختم", + "The order has been accepted by another driver.": "آرڈر دوسرے ڈرائیور نے قبول کر لیا ہے۔", + "The order Accepted by another Driver": "آرڈر دوسرے ڈرائیور نے قبول کر لیا", + "We regret to inform you that another driver has accepted this order.": "ہمیں افسوس ہے کہ کسی اور ڈرائیور نے یہ آرڈر قبول کر لیا ہے۔", + "Driver Applied the Ride for You": "ڈرائیور نے آپ کے لیے سفر کی درخواست دی", + "Applied": "درخواست دی گئی", + "Please go to Car Driver": "براہ کرم ڈرائیور کے پاس جائیں", + "Ok I will go now.": "ٹھیک ہے، میں اب جا رہا ہوں۔", + "Accepted Ride": "قبول شدہ سفر", + "Driver Accepted the Ride for You": "ڈرائیور نے آپ کے لیے سفر قبول کر لیا", + "Promo": "پرومو", + "Show latest promo": "تازہ ترین پرومو دکھائیں", + "Trip Monitoring": "سفر کی نگرانی", + "Driver Is Going To Passenger": "ڈرائیور مسافر کی طرف جا رہا ہے", + "Please stay on the picked point.": "براہ کرم منتخب کردہ مقام پر رہیں۔", + "message From Driver": "ڈرائیور کا پیغام", + "Trip is Begin": "سفر شروع ہو گیا", + "Cancel Trip from driver": "ڈرائیور کی طرف سے سفر منسوخ", + "We will look for a new driver.\\nPlease wait.": "ہم نئے ڈرائیور کی تلاش کریں گے۔\\nبراہ کرم انتظار کریں۔", + "The driver canceled your ride.": "ڈرائیور نے آپ کی سواری منسوخ کر دی۔", + "Driver Finish Trip": "ڈرائیور نے سفر ختم کر دیا", + "you will pay to Driver": "آپ ڈرائیور کو ادا کریں گے", + "Don’t forget your personal belongings.": "اپنا ذاتی سامان نہ بھولیں۔", + "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": "براہ کرم یقینی بنائیں کہ آپ کے پاس اپنا تمام سامان موجود ہے اور اگر کوئی بقایا کرایہ ہے تو وہ آپ کے والٹ میں شامل کر دیا گیا ہے۔ Intaleq ایپ منتخب کرنے کا شکریہ۔", + "Finish Monitor": "نگرانی ختم کریں", + "Trip finished": "سفر ختم ہو گیا", + "Call Income from Driver": "ڈرائیور کی طرف سے کال", + "Driver Cancelled Your Trip": "ڈرائیور نے آپ کا سفر منسوخ کر دیا", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "آپ ڈرائیور کے وقت کی قیمت ادا کریں گے، اپنا Intaleq والٹ دیکھیں", + "Order Applied": "آرڈر لاگو ہو گیا", + "welcome to intaleq": "Intaleq میں خوش آمدید", + "login or register subtitle": "لاگ ان یا رجسٹر کرنے کے لیے اپنا موبائل نمبر درج کریں", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "اس سفر کے لیے شکایت درج نہیں کی جا سکتی۔ ہو سکتا ہے یہ مکمل یا شروع نہ ہوا ہو۔", + "phone number label": "فون نمبر", + "phone number required": "فون نمبر درکار ہے", + "send otp button": "او ٹی پی (OTP) بھیجیں", + "verify your number title": "اپنے نمبر کی تصدیق کریں", + "otp sent subtitle": "ایک 5 ہندسوں کا کوڈ بھیجا گیا\\n@phoneNumber", + "verify and continue button": "تصدیق کریں اور جاری رکھیں", + "enter otp validation": "براہ کرم 5 ہندسوں کا او ٹی پی درج کریں", + "one last step title": "ایک آخری قدم", + "complete profile subtitle": "شروع کرنے کے لیے پروفایل مکمل کریں", + "first name label": "پہلا نام", + "first name required": "پہلا نام درکار ہے", + "last name label": "آخری نام", + "Verify OTP": "او ٹی پی کی تصدیق کریں", + "Verification Code": "تصدیقی کوڈ", + "We have sent a verification code to your mobile number:": "ہم نے آپ کے موبائل نمبر پر تصدیقی کوڈ بھیج دیا ہے:", + "Verify": "تصدیق کریں", + "Resend Code": "کوڈ دوبارہ بھیجیں", + "You can resend in": "دوبارہ بھیج سکتے ہیں", + "seconds": "سیکنڈز", + "Please enter the complete 6-digit code.": "براہ کرم مکمل 6 ہندسوں کا کوڈ درج کریں۔", + "last name required": "آخری نام درکار ہے", + "email optional label": "ای میل (اختیاری)", + "complete registration button": "رجسٹریشن مکمل کریں", + "User with this phone number or email already exists.": "اس فون نمبر یا ای میل کے ساتھ صارف پہلے سے موجود ہے۔", + "otp sent success": "او ٹی پی کامیابی سے واٹس ایپ پر بھیج دیا گیا۔", + "failed to send otp": "او ٹی پی بھیجنے میں ناکامی۔", + "server error try again": "سرور کی خرابی، دوبارہ کوشش کریں۔", + "an error occurred": "ایک خرابی پیش آ گئی: @error", + "otp verification failed": "او ٹی پی کی تصدیق ناکام ہو گئی۔", + "registration failed": "رجسٹریشن ناکام ہو گئی۔", + "welcome user": "خوش آمدید، @firstName!", + "Don't forget your personal belongings.": "اپنا ذاتی سامان نہ بھولیں۔", + "Share App": "ایپ شیئر کریں", + "Wallet": "والٹ", + "Balance": "بیلنس", + "Profile": "پروفائل", + "Contact Support": "سپورٹ سے رابطہ کریں", + "Session expired. Please log in again.": "سیشن ختم ہو گیا۔ براہ کرم دوبارہ لاگ ان کریں۔", + "Security Warning": "⚠️ سیکیورٹی وارننگ", + "Potential security risks detected. The application may not function correctly.": "ممکنہ سیکیورٹی خطرات کا پتہ چلا۔ ہو سکتا ہے ایپلیکیشن صحیح کام نہ کرے۔", + "please order now": "ابھی آرڈر کریں", + "Where to": "کہاں جانا ہے؟", + "Where are you going?": "آپ کہاں جا رہے ہیں؟", + "Quick Actions": "فوری اقدامات", + "My Balance": "میرا بیلنس", + "Order History": "آرڈر ہسٹری", + "Contact Us": "ہم سے رابطہ کریں", + "Driver": "ڈرائیور", + "Complaint": "شکایت", + "Promos": "پروموز", + "Recent Places": "حالیہ مقامات", + "From": "سے", + "WhatsApp Location Extractor": "واٹس ایپ لوکیشن ایکسٹریکٹر", + "Location Link": "لوکیشن لنک", + "Paste location link here": "لوکیشن لنک یہاں پیسٹ کریں", + "Go to this location": "اس لوکیشن پر جائیں", + "Paste WhatsApp location link": "واٹس ایپ لوکیشن لنک پیسٹ کریں", + "Select Order Type": "آرڈر کی قسم منتخب کریں", + "Choose who this order is for": "منتخب کریں کہ یہ آرڈر کس کے لیے ہے", + "I want to order for myself": "میں اپنے لیے آرڈر کرنا چاہتا ہوں", + "I want to order for someone else": "میں کسی اور کے لیے آرڈر کرنا چاہتا ہوں", + "Order for someone else": "کسی اور کے لیے آرڈر", + "Order for myself": "اپنے لیے آرڈر", + "Are you want to go this site": "کیا آپ اس جگہ جانا چاہتے ہیں", + "No": "نہیں", + "Intaleq Wallet": "Intaleq والٹ", + "Have a promo code?": "کیا آپ کے پاس پرومو کوڈ ہے؟", + "Your Wallet balance is ": "آپ کا والٹ بیلنس ہے: ", + "Cash": "نقد", + "Pay directly to the captain": "کپتان کو براہ راست ادائیگی کریں", + "Top up Wallet to continue": "جاری رکھنے کے لیے والٹ ٹاپ اپ کریں", + "Or pay with Cash instead": "یا اس کے بجائے نقد ادائیگی کریں", + "Confirm & Find a Ride": "تصدیق کریں اور سواری تلاش کریں", + "Balance:": "بیلنس:", + "Alerts": "الرٹس", + "Welcome Back!": "خوش آمدید!", + "Current Balance": "موجودہ بیلنس", + "Set Wallet Phone Number": "والٹ فون نمبر سیٹ کریں", + "Link a phone number for transfers": "ٹرانسفر کے لیے فون نمبر لنک کریں", + "Payment History": "ادائیگی کی تاریخ", + "View your past transactions": "اپنی پرانی ٹرانزیکشنز دیکھیں", + "Top up Wallet": "والٹ ٹاپ اپ کریں", + "Add funds using our secure methods": "ہمارے محفوظ طریقوں سے فنڈز شامل کریں", + "Increase Fare": "کرایہ بڑھائیں", + "No drivers accepted your request yet": "ابھی تک کسی ڈرائیور نے آپ کی درخواست قبول نہیں کی", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "کرایہ بڑھانے سے مزید ڈرائیور متوجہ ہو سکتے ہیں۔ کیا آپ قیمت بڑھانا چاہیں گے؟", + "Please make sure not to leave any personal belongings in the car.": "براہ کرم یقینی بنائیں کہ گاڑی میں کوئی ذاتی سامان نہ چھوڑیں۔", + "Cancel Ride": "سفر منسوخ کریں", + "Route Not Found": "روٹ نہیں ملا", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "ہمیں اس منزل کے لیے کوئی درست راستہ نہیں ملا۔ براہ کرم کوئی اور پوائنٹ منتخب کریں۔", + "You can call or record audio during this trip.": "آپ اس سفر کے دوران کال یا آڈیو ریکارڈ کر سکتے ہیں۔", + "Warning: Speeding detected!": "انتباہ: تیز رفتاری کا پتہ چلا!", + "Comfort": "آرام دہ (Comfort)", + "Intaleq Balance": "Intaleq بیلنس", + "Electric": "الیکٹرک", + "Lady": "خواتین", + "Van": "وین", + "Rayeh Gai": "آنا جانا (Round Trip)", + "Join Intaleq as a driver using my referral code!": "میرے ریفرل کوڈ کا استعمال کرتے ہوئے بطور ڈرائیور Intaleq میں شامل ہوں!", + "Use code:": "کوڈ استعمال کریں:", + "Download the Intaleq Driver app now and earn rewards!": "ابھی Intaleq ڈرائیور ایپ ڈاؤن لوڈ کریں اور انعامات حاصل کریں!", + "Get a discount on your first Intaleq ride!": "اپنی پہلی Intaleq سواری پر رعایت حاصل کریں!", + "Use my referral code:": "میرا ریفرل کوڈ استعمال کریں:", + "Download the Intaleq app now and enjoy your ride!": "ابھی Intaleq ایپ ڈاؤن لوڈ کریں اور اپنی سواری کا لطف اٹھائیں!", + "Contacts Loaded": "رابطے لوڈ ہو گئے", + "Showing": "دکھا رہا ہے", + "of": "میں سے", + "Customer not found": "کسٹمر نہیں ملا", + "Wallet is blocked": "والٹ بلاک ہے", + "Customer phone is not active": "کسٹمر کا فون ایکٹو نہیں ہے", + "Balance not enough": "بیلنس کافی نہیں ہے", + "Balance limit exceeded": "بیلنس کی حد سے تجاوز", + "Incorrect sms code": "⚠️ غلط SMS کوڈ۔ براہ کرم دوبارہ کوشش کریں۔", + "contacts. Others were hidden because they don't have a phone number.": "رابطے۔ دیگر چھپا دیے گئے کیونکہ ان کا فون نمبر نہیں ہے۔", + "No contacts found": "کوئی رابطہ نہیں ملا", + "No contacts with phone numbers were found on your device.": "آپ کے آلے پر فون نمبرز کے ساتھ کوئی رابطہ نہیں ملا۔", + "Permission denied": "اجازت مسترد کر دی گئی", + "Contact permission is required to pick contacts": "رابطے منتخب کرنے کے لیے رابطے کی اجازت درکار ہے۔", + "An error occurred while picking contacts:": "رابطے منتخب کرتے وقت ایک خرابی پیش آ گئی:", + "Please enter a correct phone": "براہ کرم درست فون نمبر درج کریں", + "Success": "کامیابی", + "Invite sent successfully": "دعوت نامہ کامیابی سے بھیج دیا گیا", + "Use my invitation code to get a special gift on your first ride!": "اپنی پہلی سواری پر خصوصی تحفہ حاصل کرنے کے لیے میرا دعوتی کوڈ استعمال کریں!", + "Your personal invitation code is:": "آپ کا ذاتی دعوتی کوڈ ہے:", + "Be sure to use it quickly! This code expires at": "اسے جلدی استعمال کرنا یقینی بنائیں! یہ کوڈ ختم ہو جائے گا", + "Download the app now:": "ابھی ایپ ڈاؤن لوڈ کریں:", + "See you on the road!": "راستے میں ملتے ہیں!", + "This phone number has already been invited.": "اس فون نمبر کو پہلے ہی مدعو کیا جا چکا ہے۔", + "An unexpected error occurred. Please try again.": "ایک غیر متوقع خرابی پیش آ گئی۔ براہ کرم دوبارہ کوشش کریں۔", + "You deserve the gift": "آپ تحفے کے مستحق ہیں", + "Claim your 20 LE gift for inviting": "دعوت دینے پر اپنا 20 روپے کا تحفہ حاصل کریں", + "You have got a gift for invitation": "آپ کو دعوت دینے پر تحفہ ملا ہے", + "You have earned 20": "آپ نے 20 کمائے ہیں", + "LE": "روپیہ", + "Vibration feedback for all buttons": "تمام بٹنوں کے لیے وائبریشن فیڈبیک", + "Share with friends and earn rewards": "دوستوں کے ساتھ شیئر کریں اور انعامات حاصل کریں", + "Gift Already Claimed": "تحفہ پہلے ہی حاصل کیا جا چکا ہے", + "You have already received your gift for inviting": "آپ دعوت دینے کے لیے اپنا تحفہ پہلے ہی وصول کر چکے ہیں", + "Keep it up!": "جاری رکھیں!", + "has completed": "مکمل کر لیا ہے", + "trips": "سفر", + "Personal Information": "ذاتی معلومات", + "Name": "نام", + "Not set": "سیٹ نہیں", + "Gender": "جنس", + "Education": "تعلیم", + "Work & Contact": "کام اور رابطہ", + "Employment Type": "روزگار کی قسم", + "Marital Status": "ازدواجی حیثیت", + "SOS Phone": "SOS فون", + "Sign Out": "سائن آؤٹ", + "Delete My Account": "میرا اکاؤنٹ ڈیلیٹ کریں", + "Update Gender": "جنس اپ ڈیٹ کریں", + "Update": "اپ ڈیٹ", + "Update Education": "تعلیم اپ ڈیٹ کریں", + "Are you sure? This action cannot be undone.": "کیا آپ کو یقین ہے؟ یہ عمل واپس نہیں کیا جا سکتا۔", + "Confirm your Email": "اپنے ای میل کی تصدیق کریں", + "Type your Email": "اپنا ای میل لکھیں", + "Delete Permanently": "مستقل طور پر ڈیلیٹ کریں", + "Male": "مرد", + "Female": "عورت", + "High School Diploma": "ہائی اسکول ڈپلومہ", + "Associate Degree": "ایسوسی ایٹ ڈگری", + "Bachelor's Degree": "بیچلر ڈگری", + "Master's Degree": "ماسٹر ڈگری", + "Doctoral Degree": "ڈاکٹریٹ ڈگری", + "Select your preferred language for the app interface.": "ایپ انٹرفیس کے لیے اپنی پسندیدہ زبان منتخب کریں۔", + "Language Options": "زبان کے اختیارات", + "You can claim your gift once they complete 2 trips.": "جب وہ 2 سفر مکمل کر لیں تو آپ اپنا تحفہ حاصل کر سکتے ہیں۔", + "Closest & Cheapest": "سب سے قریب اور سستا", + "Comfort choice": "آرام دہ انتخاب", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "جدید، خاموش الیکٹرک کار میں سفر کریں۔ ایک پریمیم، ماحول دوست انتخاب۔", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خاندانوں اور گروپوں کے لیے کشادہ وین سروس۔ آرام دہ، محفوظ اور کم خرچ۔", + "Quiet & Eco-Friendly": "خاموش اور ماحول دوست", + "Lady Captain for girls": "خواتین کے لیے لیڈی کیپٹن", + "Van for familly": "فیملی کے لیے وین", + "Are you sure to delete this location?": "کیا آپ واقعی اس لوکیشن کو ڈیلیٹ کرنا چاہتے ہیں؟", + "Submit a Complaint": "شکایت درج کریں", + "Submit Complaint": "شکایت جمع کرائیں", + "No trip history found": "کوئی سفری تاریخ نہیں ملی", + "Your past trips will appear here.": "آپ کے پچھلے سفر یہاں ظاہر ہوں گے۔", + "1. Describe Your Issue": "1. اپنا مسئلہ بیان کریں", + "Enter your complaint here...": "اپنی شکایت یہاں لکھیں...", + "2. Attach Recorded Audio": "2. ریکارڈ شدہ آڈیو منسلک کریں", + "No audio files found.": "کوئی آڈیو فائل نہیں ملی۔", + "Confirm Attachment": "منسلک کرنے کی تصدیق کریں", + "Attach this audio file?": "کیا یہ آڈیو فائل منسلک کریں؟", + "Uploaded": "اپ لوڈ ہو گیا", + "3. Review Details & Response": "3. تفصیلات اور جواب کا جائزہ لیں", + "Date": "تاریخ", + "Today's Promos": "آج کے پروموز", + "No promos available right now.": "ابھی کوئی پرومو دستیاب نہیں ہے۔", + "Check back later for new offers!": "نئی پیشکشوں کے لیے بعد میں دوبارہ چیک کریں!", + "Valid Until:": "تک درست:", + "CODE": "کوڈ", + "I Agree": "میں متفق ہوں", + "Continue": "جاری رکھیں", + "Enable Location": "لوکیشن آن کریں", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "بہترین تجربہ دینے کے لیے ہمیں آپ کی لوکیشن جاننے کی ضرورت ہے۔ آپ کی لوکیشن قریبی کپتانوں کو تلاش کرنے کے لیے استعمال ہوتی ہے۔", + "Allow Location Access": "لوکیشن تک رسائی کی اجازت دیں", + "Welcome to Intaleq!": "Intaleq میں خوش آمدید!", + "Before we start, please review our terms.": "شروع کرنے سے پہلے، براہ کرم ہماری شرائط کا جائزہ لیں۔", + "Your journey starts here": "آپ کا سفر یہاں سے شروع ہوتا ہے", + "Cancel Search": "تلاش منسوخ کریں", + "Set pickup location": "پک اپ لوکیشن سیٹ کریں", + "Move the map to adjust the pin": "پن کو ایڈجسٹ کرنے کے لیے نقشہ منتقل کریں", + "Searching for the nearest captain...": "قریب ترین کپتان کی تلاش جاری ہے...", + "No one accepted? Try increasing the fare.": "کسی نے قبول نہیں کیا؟ کرایہ بڑھانے کی کوشش کریں۔", + "Increase Your Trip Fee (Optional)": "اپنی ٹرپ فیس بڑھائیں (اختیاری)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ہمیں ابھی تک کوئی ڈرائیور نہیں ملا۔ اپنی پیشکش کو ڈرائیوروں کے لیے پرکشش بنانے کے لیے ٹرپ فیس بڑھانے پر غور کریں۔", + "No, thanks": "نہیں، شکریہ", + "Increase Fee": "فیس بڑھائیں", + "Copy": "کاپی", + "Promo Copied!": "پرمو کاپی ہو گیا!", + "Code": "کوڈ", + "Send Intaleq app to him": "اسے Intaleq ایپ بھیجیں", + "No passenger found for the given phone number": "دیے گئے فون نمبر کے لیے کوئی مسافر نہیں ملا", + "No user found for the given phone number": "دیے گئے فون نمبر کے لیے کوئی صارف نہیں ملا", + "This price is": "یہ قیمت ہے", + "Work": "کام", + "Add Home": "گھر شامل کریں", + "Notifications": "اطلاعات", + "💳 Pay with Credit Card": "💳 کریڈٹ کارڈ سے ادائیگی کریں", + "⚠️ You need to choose an amount!": "⚠️ آپ کو ایک رقم منتخب کرنے کی ضرورت ہے!", + "💰 Pay with Wallet": "💰 والٹ سے ادائیگی کریں", + "You must restart the app to change the language.": "زبان تبدیل کرنے کے لیے آپ کو ایپ دوبارہ شروع کرنی چاہیے۔", + "joined": "شامل ہوا", + "Driver joined the channel": "ڈرائیور چینل میں شامل ہو گیا", + "Driver left the channel": "ڈرائیور نے چینل چھوڑ دیا", + "Call Page": "کال پیج", + "Call Left": "بقیہ کالز", + " Next as Cash !": " اگلا نقد کے طور پر!", + "To use Wallet charge it": "والٹ استعمال کرنے کے لیے اسے چارج کریں", + "We are searching for the nearest driver to you": "ہم آپ کے قریب ترین ڈرائیور کو تلاش کر رہے ہیں", + "Best choice for cities": "شہروں کے لیے بہترین انتخاب", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "آنا جانا: شہروں کے درمیان آسان سفر کے لیے راؤنڈ ٹرپ سروس، آسان اور قابل اعتماد۔", + "This trip is for women only": "یہ سفر صرف خواتین کے لیے ہے", + "Total budgets on month": "مہینے کا کل بجٹ", + "You have call from driver": "ڈرائیور کی کال ہے", + "Intaleq": "Intaleq", + "passenger agreement": "مسافر معاہدہ", + "To become a passenger, you must review and agree to the ": "مسافر بننے کے لیے، آپ کو جائزہ لینا ہوگا اور اتفاق کرنا ہوگا ", + "agreement subtitle": "جاری رکھنے کے لیے، آپ کو استعمال کی شرائط اور رازداری کی پالیسی کا جائزہ لینا اور اتفاق کرنا چاہیے۔", + "terms of use": "استعمال کی شرائط", + " and acknowledge our Privacy Policy.": " اور ہماری رازداری کی پالیسی کو تسلیم کریں۔", + "and acknowledge our": "اور تسلیم کریں ہماری", + "privacy policy": "رازداری کی پالیسی۔", + "i agree": "میں متفق ہوں", + "Driver already has 2 trips within the specified period.": "مقررہ مدت میں ڈرائیور کے پاس پہلے ہی 2 سفر ہیں۔", + "The invitation was sent successfully": "دعوت نامہ کامیابی سے بھیج دیا گیا", + "You should select your country": "آپ کو اپنا ملک منتخب کرنا چاہیے", + "Scooter": "سکوٹر", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "پیشگی ریزرویشن کے ساتھ سفر، جو آپ کو بہترین کپتانوں اور کاروں کا انتخاب کرنے کی اجازت دیتا ہے۔", + "Mishwar Vip": "مشوار VIP", + "The driver waiting you in picked location .": "ڈرائیور منتخب جگہ پر آپ کا انتظار کر رہا ہے۔", + "About Us": "ہمارے بارے میں", + "You can change the vibration feedback for all buttons": "آپ تمام بٹنوں کے لیے وائبریشن فیڈبیک تبدیل کر سکتے ہیں", + "Most Secure Methods": "انتہائی محفوظ طریقے", + "In-App VOIP Calls": "ان-ایپ VOIP کالز", + "Recorded Trips for Safety": "حفاظت کے لیے ریکارڈ شدہ سفر", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nہم سستی کو بھی ترجیح دیتے ہیں، مسابقتی قیمتوں کی پیشکش کرتے ہیں تاکہ آپ کی سواریوں کو قابل رسائی بنایا جا سکے۔", + "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 ایک رائیڈ شیئرنگ ایپ ہے جو آپ کی حفاظت اور سستی کو مدنظر رکھتے ہوئے ڈیزائن کی گئی ہے۔ ہم آپ کو آپ کے علاقے میں قابل اعتماد ڈرائیوروں سے جوڑتے ہیں۔", + "Sign In by Apple": "ایپل کے ذریعے سائن ان کریں", + "Sign In by Google": "گوگل کے ذریعے سائن ان کریں", + "How do I request a ride?": "میں سواری کی درخواست کیسے کروں؟", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Intaleq ایپ کے ذریعے سواری کی درخواست کرنے کے طریقے پر مرحلہ وار ہدایات۔", + "What types of vehicles are available?": "کس قسم کی گاڑیاں دستیاب ہیں؟", + "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 آپ کی ضروریات کے مطابق گاڑیوں کے مختلف آپشنز پیش کرتا ہے۔", + "How can I pay for my ride?": "میں اپنی سواری کے لیے ادائیگی کیسے کر سکتا ہوں؟", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq آپ کی سہولت کے لیے ادائیگی کے متعدد طریقے پیش کرتا ہے۔", + "Can I cancel my ride?": "کیا میں اپنی سواری منسوخ کر سکتا ہوں؟", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "جی ہاں، آپ کچھ شرائط کے تحت اپنی سواری منسوخ کر سکتے ہیں (مثلاً ڈرائیور تفویض ہونے سے پہلے)۔ تفصیلات کے لیے انطلق کی منسوخی کی پالیسی دیکھیں۔", + "Driver Registration & Requirements": "ڈرائیور رجسٹریشن اور تقاضے", + "How can I register as a driver?": "میں بطور ڈرائیور کیسے رجسٹر ہو سکتا ہوں؟", + "What are the requirements to become a driver?": "ڈرائیور بننے کے لیے کیا تقاضے ہیں؟", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "ڈرائیور رجسٹریشن اور تقاضوں کے بارے میں معلومات کے لیے ہماری ویب سائٹ ملاحظہ کریں یا سپورٹ سے رابطہ کریں۔", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq ان-ایپ چیٹ کی فعالیت فراہم کرتا ہے۔", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq آپ کی حفاظت کو ترجیح دیتا ہے۔", + "Frequently Questions": "اکثر پوچھے گئے سوالات", + "User does not exist.": "صارف موجود نہیں ہے۔", + "We need your phone number to contact you and to help you.": "ہمیں آپ سے رابطہ کرنے اور آپ کی مدد کرنے کے لیے آپ کے فون نمبر کی ضرورت ہے۔", + "You will recieve code in sms message": "آپ کو SMS پیغام میں کوڈ موصول ہوگا", + "Please enter": "براہ کرم درج کریں", + "We need your phone number to contact you and to help you receive orders.": "ہمیں آپ سے رابطہ کرنے اور آرڈرز وصول کرنے میں آپ کی مدد کرنے کے لیے آپ کے فون نمبر کی ضرورت ہے۔", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "آپ کے پولیس ریکارڈ پر موجود پورا نام آپ کے ڈرائیونگ لائسنس سے میل نہیں کھاتا۔", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "آپ کے ڈرائیونگ لائسنس پر قومی نمبر آپ کے شناختی کارڈ سے میل نہیں کھاتا۔", + "Capture an Image of Your Criminal Record": "اپنے پولیس کلیئرنس کی تصویر لیں", + "IssueDate": "اجراء کی تاریخ", + "Capture an Image of Your car license front": "اپنی گاڑی کی رجسٹریشن کے سامنے کی تصویر لیں", + "Capture an Image of Your ID Document front": "اپنے شناختی کارڈ کے سامنے کی تصویر لیں", + "NationalID": "شناختی کارڈ نمبر", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "آپ Intaleq ایپ کو اپنے دوستوں کے ساتھ شیئر کر سکتے ہیں اور انعامات حاصل کر سکتے ہیں", + "FullName": "پورا نام", + "No invitation found yet!": "ابھی تک کوئی دعوت نامہ نہیں ملا!", + "InspectionResult": "معائنے کا نتیجہ", + "Criminal Record": "پولیس کلیئرنس", + "The email or phone number is already registered.": "ای میل یا فون نمبر پہلے سے رجسٹرڈ ہے۔", + "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.": "ڈرائیور بننے کے لیے، آپ کو اپنا ڈرائیونگ لائسنس، شناختی دستاویز، اور گاڑی کی رجسٹریشن دستاویز اپ لوڈ کرنے کی ضرورت ہے۔", + "Documents check": "دستاویزات کی جانچ", + "Driver's License": "ڈرائیونگ لائسنس", + "for your first registration!": "آپ کی پہلی رجسٹریشن کے لیے!", + "Get it Now!": "ابھی حاصل کریں!", + "before": "پہلے", + "Code not approved": "کوڈ منظور نہیں ہوا", + "3000 LE": "3000 روپیہ", + "Do you have an invitation code from another driver?": "کیا آپ کے پاس کسی دوسرے ڈرائیور کا دعوتی کوڈ ہے؟", + "Paste the code here": "کوڈ یہاں پیسٹ کریں", + "No, I don't have a code": "نہیں، میرے پاس کوڈ نہیں ہے", + "Audio uploaded successfully.": "آڈیو کامیابی سے اپ لوڈ ہو گئی۔", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "جدید ترین کار ماڈلز کے متلاشی مسافروں کے لیے بہترین", + "Share this code with your friends and earn rewards when they use it!": "اس کوڈ کو اپنے دوستوں کے ساتھ شیئر کریں اور انعامات حاصل کریں!", + "Enter phone": "فون درج کریں", + "complete, you can claim your gift": "مکمل، آپ اپنا تحفہ حاصل کر سکتے ہیں", + "When": "جب", + "Enter driver's phone": "ڈرائیور کا فون درج کریں", + "Send Invite": "دعوت نامہ بھیجیں", + "Show Invitations": "دعوت نامے دکھائیں", + "License Type": "لائسنس کی قسم", + "National Number": "قومی نمبر", + "Name (Arabic)": "نام (اردو)", + "Name (English)": "نام (انگریزی)", + "Address": "پتہ", + "Issue Date": "اجراء کی تاریخ", + "Expiry Date": "میعاد ختم ہونے کی تاریخ", + "License Categories": "لائسنس کے زمرے", + "driver_license": "ڈرائیونگ لائسنس", + "Capture an Image of Your Driver License": "اپنے ڈرائیونگ لائسنس کی تصویر لیں", + "ID Documents Back": "شناختی دستاویزات کی پشت", + "National ID": "شناختی کارڈ", + "Occupation": "پیشہ", + "Religion": "مذہب", + "Full Name (Marital)": "پورا نام", + "Expiration Date": "میعاد ختم ہونے کی تاریخ", + "Capture an Image of Your ID Document Back": "اپنے شناختی کارڈ کی پشت کی تصویر لیں", + "ID Documents Front": "شناختی دستاویزات کا سامنے کا حصہ", + "First Name": "پہلا نام", + "CardID": "کارڈ آئی ڈی", + "Vehicle Details Front": "گاڑی کی تفصیلات سامنے", + "Plate Number": "پلیٹ نمبر", + "Owner Name": "مالک کا نام", + "Vehicle Details Back": "گاڑی کی تفصیلات پیچھے", + "Make": "میک", + "Model": "ماڈل", + "Year": "سال", + "Chassis": "چیسس", + "Color": "رنگ", + "Displacement": "ڈسپلیسمنٹ", + "Fuel": "ایندھن", + "Tax Expiry Date": "ٹیکس کی میعاد ختم ہونے کی تاریخ", + "Inspection Date": "معائنے کی تاریخ", + "Capture an Image of Your car license back": "اپنی گاڑی کے لائسنس کی پشت کی تصویر لیں", + "Capture an Image of Your Driver's License": "اپنے ڈرائیونگ لائسنس کی تصویر لیں", + "Sign in with Google for easier email and name entry": "آسان ای میل اور نام کے اندراج کے لیے گوگل کے ساتھ سائن ان کریں", + "You will choose allow all the time to be ready receive orders": "آپ آرڈرز وصول کرنے کے لیے ہر وقت اجازت کا انتخاب کریں گے", + "Get to your destination quickly and easily.": "اپنی منزل پر تیزی اور آسانی سے پہنچیں۔", + "Enjoy a safe and comfortable ride.": "محفوظ اور آرام دہ سواری کا لطف اٹھائیں۔", + "Choose Language": "زبان منتخب کریں", + "Pay with Wallet": "والٹ سے ادائیگی کریں", + "Invalid MPIN": "غلط MPIN", + "Invalid OTP": "غلط OTP", + "Enter your email address": "اپنا ای میل ایڈریس درج کریں", + "Please enter Your Email.": "براہ کرم اپنا ای میل درج کریں۔", + "Enter your phone number": "اپنا فون نمبر درج کریں", + "Please enter your phone number.": "براہ کرم اپنا فون نمبر درج کریں۔", + "Please enter Your Password.": "براہ کرم اپنا پاس ورڈ درج کریں۔", + "if you dont have account": "اگر آپ کا اکاؤنٹ نہیں ہے", + "Register": "رجسٹر کریں", + "Accept Ride's Terms & Review Privacy Notice": "سفر کی شرائط قبول کریں اور رازداری کا نوٹس دیکھیں", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "نیچے 'میں متفق ہوں' کو منتخب کر کے، میں نے استعمال کی شرائط کا جائزہ لیا ہے اور ان سے اتفاق کرتا ہوں۔", + "First name": "پہلا نام", + "Enter your first name": "اپنا پہلا نام درج کریں", + "Please enter your first name.": "براہ کرم اپنا پہلا نام درج کریں۔", + "Last name": "آخری نام", + "Enter your last name": "اپنا آخری نام درج کریں", + "Please enter your last name.": "براہ کرم اپنا آخری نام درج کریں۔", + "City": "شہر", + "Please enter your City.": "براہ کرم اپنا شہر درج کریں۔", + "Verify Email": "ای میل کی تصدیق کریں", + "We sent 5 digit to your Email provided": "ہم نے آپ کے فراہم کردہ ای میل پر 5 ہندسے بھیجے ہیں", + "5 digit": "5 ہندسے", + "Send Verification Code": "تصدیقی کوڈ بھیجیں", + "Your Ride Duration is ": "آپ کی سواری کا دورانیہ ہے ", + "You will be thier in": "آپ وہاں ہوں گے میں", + "You trip distance is": "آپ کے سفر کا فاصلہ ہے", + "Fee is": "فیس ہے", + "From : ": "سے: ", + "To : ": "تک: ", + "Add Promo": "پرومو شامل کریں", + "Confirm Selection": "انتخاب کی تصدیق کریں", + "distance is": "فاصلہ ہے", + "Privacy Policy": "رازداری کی پالیسی", + "Intaleq LLC": "Intaleq LLC", + "Syria'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.": "پاکستان کی صف اول کی رائیڈ شیئرنگ سروس۔", + "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 پہلی رائیڈ شیئرنگ ایپ ہے جو آپ کو قریب ترین ڈرائیوروں سے جوڑتی ہے۔", + "Why Choose Intaleq?": "Intaleq کا انتخاب کیوں کریں؟", + "Closest to You": "آپ کے قریب ترین", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "ہم آپ کو تیز تر پک اپ کے لیے قریب ترین ڈرائیوروں سے جوڑتے ہیں۔", + "Uncompromising Security": "غیر متزلزل سیکیورٹی", + "Lady Captains Available": "خواتین کپتان دستیاب ہیں", + "Recorded Trips (Voice & AI Analysis)": "ریکارڈ شدہ سفر (آواز اور AI تجزیہ)", + "Fastest Complaint Response": "تیز ترین شکایت کا جواب", + "Our dedicated customer service team ensures swift resolution of any issues.": "ہماری کسٹمر سروس ٹیم مسائل کے فوری حل کو یقینی بناتی ہے۔", + "Affordable for Everyone": "ہر ایک کے لیے سستا", + "Frequently Asked Questions": "اکثر پوچھے گئے سوالات", + "Getting Started": "شروع کرنا", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "بس ایپ کھولیں، منزل درج کریں اور 'سواری کی درخواست کریں' پر ٹیپ کریں۔", + "Vehicle Options": "گاڑی کے اختیارات", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq اکانومی، کمفرٹ اور لگژری سمیت مختلف آپشنز پیش کرتا ہے۔", + "Payments": "ادائیگیاں", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "آپ نقد یا کارڈ کے ذریعے ادائیگی کر سکتے ہیں۔", + "Ride Management": "سفر کا انتظام", + "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "جی ہاں، آپ منسوخ کر سکتے ہیں، لیکن منسوخی کی فیس لاگو ہو سکتی ہے۔", + "For Drivers": "ڈرائیوروں کے لیے", + "Driver Registration": "ڈرائیور رجسٹریشن", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "رجسٹر کرنے کے لیے ویب سائٹ ملاحظہ کریں یا سپورٹ سے رابطہ کریں۔", + "Visit Website/Contact Support": "ویب سائٹ ملاحظہ کریں / سپورٹ سے رابطہ کریں", + "Close": "بند کریں", + "We are searching for the nearest driver": "ہم قریب ترین ڈرائیور تلاش کر رہے ہیں", + "Communication": "مواصلات", + "How do I communicate with the other party (passenger/driver)?": "میں دوسرے فریق سے کیسے بات کروں؟", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "سفر کی تصدیق ہونے پر آپ ایپ میں چیٹ کر سکتے ہیں۔", + "Safety & Security": "حفاظت اور سیکیورٹی", + "What safety measures does Intaleq offer?": "Intaleq کون سے حفاظتی اقدامات پیش کرتا ہے؟", + "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 ڈرائیور کی تصدیق اور ٹرپ ٹریکنگ پیش کرتا ہے۔", + "Enjoy competitive prices across all trip options, making travel accessible.": "مسابقتی قیمتوں کا لطف اٹھائیں۔", + "Variety of Trip Choices": "سفر کے انتخاب کی اقسام", + "Choose the trip option that perfectly suits your needs and preferences.": "وہ آپشن منتخب کریں جو آپ کے لیے موزوں ہو۔", + "Your Choice, Our Priority": "آپ کا انتخاب، ہماری ترجیح", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "چونکہ ہم قریب ہیں، آپ کے پاس انتخاب کی لچک ہے۔", + "duration is": "دورانیہ ہے", + "Setting": "سیٹنگ", + "Find answers to common questions": "عام سوالات کے جوابات تلاش کریں", + "I don't need a ride anymore": "مجھے اب سواری کی ضرورت نہیں ہے", + "I was just trying the application": "میں صرف ایپلیکیشن آزما رہا تھا", + "No driver accepted my request": "کسی ڈرائیور نے میری درخواست قبول نہیں کی", + "I added the wrong pick-up/drop-off location": "میں نے غلط لوکیشن شامل کی", + "I don't have a reason": "میرے پاس کوئی وجہ نہیں ہے", + "Can we know why you want to cancel Ride ?": "کیا ہم جان سکتے ہیں کہ آپ کیوں منسوخ کرنا چاہتے ہیں؟", + "Add Payment Method": "ادائیگی کا طریقہ شامل کریں", + "Ride Wallet": "سفر والٹ", + "Payment Method": "ادائیگی کا طریقہ", + "Type here Place": "یہاں جگہ لکھیں", + "Are You sure to ride to": "کیا آپ واقعی جانا چاہتے ہیں", + "Confirm": "تصدیق کریں", + "You are Delete": "آپ حذف کر رہے ہیں", + "Deleted": "حذف کر دیا گیا", + "You Dont Have Any places yet !": "ابھی تک آپ کے پاس کوئی جگہ نہیں ہے!", + "From : Current Location": "سے: موجودہ لوکیشن", + "My Cared": "میرے کارڈز", + "Add Card": "کارڈ شامل کریں", + "Add Credit Card": "کریڈٹ کارڈ شامل کریں", + "Please enter the cardholder name": "براہ کرم کارڈ ہولڈر کا نام درج کریں", + "Please enter the expiry date": "براہ کرم میعاد ختم ہونے کی تاریخ درج کریں", + "Please enter the CVV code": "براہ کرم CVV کوڈ درج کریں", + "Go To Favorite Places": "پسندیدہ مقامات پر جائیں", + "Go to this Target": "اس ہدف پر جائیں", + "My Profile": "میرا پروفائل", + "Are you want to go to this site": "کیا آپ اس جگہ جانا چاہتے ہیں", + "MyLocation": "میری لوکیشن", + "my location": "میری لوکیشن", + "Target": "ہدف", + "You Should choose rate figure": "آپ کو ریٹنگ کا انتخاب کرنا چاہیے", + "Login Captin": "کپتان لاگ ان", + "Register Captin": "کپتان رجسٹر", + "Send Verfication Code": "تصدیقی کوڈ بھیجیں", + "KM": "کلو میٹر", + "End Ride": "سفر ختم کریں", + "Minute": "منٹ", + "Go to passenger Location now": "اب مسافر کی لوکیشن پر جائیں", + "Duration of the Ride is ": "سفر کا دورانیہ ہے ", + "Distance of the Ride is ": "سفر کا فاصلہ ہے ", + "Name of the Passenger is ": "مسافر کا نام ہے ", + "Hello this is Captain": "ہیلو یہ کپتان ہے", + "Start the Ride": "سفر شروع کریں", + "Please Wait If passenger want To Cancel!": "براہ کرم انتظار کریں اگر مسافر منسوخ کرنا چاہے!", + "Total Duration:": "کل دورانیہ:", + "Active Duration:": "فعال دورانیہ:", + "Waiting for Captin ...": "کپتان کا انتظار...", + "Age is ": "عمر ہے ", + "Rating is ": "ریٹنگ ہے ", + " to arrive you.": " آپ تک پہنچنے کے لیے۔", + "Tariff": "ٹیرف", + "Settings": "ترتیبات", + "Feed Back": "فیڈ بیک", + "Please enter a valid 16-digit card number": "براہ کرم درست 16 ہندسوں کا کارڈ نمبر درج کریں", + "Add Phone": "فون شامل کریں", + "Please enter a phone number": "براہ کرم فون نمبر درج کریں", + "You dont Add Emergency Phone Yet!": "آپ نے ابھی تک ایمرجنسی فون شامل نہیں کیا!", + "You will arrive to your destination after ": "آپ اپنی منزل پر پہنچیں گے بعد از ", + "You can cancel Ride now": "آپ اب سواری منسوخ کر سکتے ہیں", + "You Can cancel Ride After Captain did not come in the time": "اگر کپتان وقت پر نہیں آیا تو آپ سواری منسوخ کر سکتے ہیں", + "If you in Car Now. Press Start The Ride": "اگر آپ کار میں ہیں تو سفر شروع کریں دبائیں", + "You Dont Have Any amount in": "آپ کے پاس کوئی رقم نہیں ہے میں", + "Wallet!": "والٹ!", + "You Have": "آپ کے پاس ہے", + "Save Credit Card": "کریڈٹ کارڈ محفوظ کریں", + "Show Promos": "پروموز دکھائیں", + "10 and get 4% discount": "10 اور 4% ڈسکاؤنٹ حاصل کریں", + "20 and get 6% discount": "20 اور 6% ڈسکاؤنٹ حاصل کریں", + "40 and get 8% discount": "40 اور 8% ڈسکاؤنٹ حاصل کریں", + "100 and get 11% discount": "100 اور 11% ڈسکاؤنٹ حاصل کریں", + "Pay with Your PayPal": "اپنے پے پال سے ادائیگی کریں", + "You will choose one of above !": "آپ کو اوپر والوں میں سے ایک کا انتخاب کرنا ہوگا!", + "Edit Profile": "پروفائل میں ترمیم کریں", + "Copy this Promo to use it in your Ride!": "اپنی سواری میں استعمال کرنے کے لیے اس پرومو کو کاپی کریں!", + "To change some Settings": "کچھ ترتیبات تبدیل کرنے کے لیے", + "Order Request Page": "آرڈر کی درخواست کا صفحہ", + "Rouats of Trip": "سفر کے راستے", + "Passenger Name is ": "مسافر کا نام ہے ", + "Total From Passenger is ": "مسافر سے کل: ", + "Duration To Passenger is ": "مسافر تک دورانیہ ہے ", + "Distance To Passenger is ": "مسافر تک فاصلہ ہے ", + "Total For You is ": "آپ کے لیے کل: ", + "Distance is ": "فاصلہ ہے ", + " KM": " کلو میٹر", + "Duration of Trip is ": "سفر کا دورانیہ ہے ", + " Minutes": " منٹ", + "Apply Order": "آرڈر لاگو کریں", + "Refuse Order": "آرڈر مسترد کریں", + "Rate Captain": "کپتان کو ریٹ کریں", + "Enter your Note": "اپنا نوٹ درج کریں", + "Type something...": "کچھ لکھیں...", + "Submit rating": "ریٹنگ جمع کرائیں", + "Rate Passenger": "مسافر کو ریٹ کریں", + "Ride Summary": "سواری کا خلاصہ", + "welcome_message": "Intaleq میں خوش آمدید!", + "app_description": "Intaleq ایک محفوظ، قابل اعتماد، اور قابل رسائی رائیڈ ہیلنگ ایپ ہے۔", + "get_to_destination": "اپنی منزل پر تیزی اور آسانی سے پہنچیں۔", + "get_a_ride": "Intaleq کے ساتھ، آپ منٹوں میں منزل تک سواری حاصل کر سکتے ہیں۔", + "safe_and_comfortable": "محفوظ اور آرام دہ سواری کا لطف اٹھائیں۔", + "committed_to_safety": "Intaleq حفاظت کے لیے پرعزم ہے۔", + "your ride is Accepted": "آپ کی سواری قبول کر لی گئی ہے", + "Driver is waiting at pickup.": "ڈرائیور پک اپ پر انتظار کر رہا ہے۔", + "Driver is on the way": "ڈرائیور راستے میں ہے", + "Contact Options": "رابطے کے اختیارات", + "Send a custom message": "حسب ضرورت پیغام بھیجیں", + "Type your message": "اپنا پیغام ٹائپ کریں", + "I will go now": "میں اب جاؤں گا", + "You Have Tips": "آپ کے پاس ٹپس ہیں", + " tips\\nTotal is": " ٹپس\\nکل ہے", + "Your fee is ": "آپ کی فیس ہے ", + "Do you want to pay Tips for this Driver": "کیا آپ اس ڈرائیور کے لیے ٹپ ادا کرنا چاہتے ہیں", + "Tip is ": "ٹپ ہے ", + "Are you want to wait drivers to accept your order": "کیا آپ چاہتے ہیں کہ ڈرائیورز آپ کا آرڈر قبول کرنے کا انتظار کریں", + "This price is fixed even if the route changes for the driver.": "یہ قیمت مقررہ ہے چاہے ڈرائیور کا راستہ بدل جائے۔", + "The price may increase if the route changes.": "اگر راستہ بدل گیا تو قیمت بڑھ سکتی ہے۔", + "The captain is responsible for the route.": "کپتان راستے کا ذمہ دار ہے۔", + "We are search for nearst driver": "ہم قریبی ڈرائیور تلاش کر رہے ہیں", + "Your order is being prepared": "آپ کا آرڈر تیار ہو رہا ہے", + "The drivers are reviewing your request": "ڈرائیورز آپ کی درخواست کا جائزہ لے رہے ہیں", + "Your order sent to drivers": "آپ کا آرڈر ڈرائیورز کو بھیج دیا گیا", + "You can call or record audio of this trip": "آپ اس سفر کی کال یا آڈیو ریکارڈ کر سکتے ہیں", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "سفر شروع ہو گیا ہے! بلا جھجھک ایمرجنسی نمبرز سے رابطہ کریں، اپنا سفر شیئر کریں، یا سفر کے لیے وائس ریکارڈنگ فعال کریں۔", + "Camera Access Denied.": "کیمرے تک رسائی مسترد کر دی گئی۔", + "Open Settings": "ترتیبات کھولیں", + "GPS Required Allow !.": "GPS کی اجازت درکار ہے!.", + "Your Account is Deleted": "آپ کا اکاؤنٹ حذف کر دیا گیا ہے", + "Are you sure to delete your account?": "کیا آپ واقعی اپنا اکاؤنٹ حذف کرنا چاہتے ہیں؟", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "آپ کا ڈیٹا 2 ہفتوں بعد مٹا دیا جائے گا\\nاور آپ 1 ماہ بعد ایپ استعمال کرنے کے لیے واپس نہیں آ سکیں گے ", + "Enter Your First Name": "اپنا پہلا نام درج کریں", + "Are you Sure to LogOut?": "کیا آپ واقعی لاگ آؤٹ کرنا چاہتے ہیں؟", + "Email Wrong": "ای میل غلط ہے", + "Email you inserted is Wrong.": "جو ای میل آپ نے درج کیا ہے وہ غلط ہے۔", + "You have finished all times ": "آپ نے تمام اوقات ختم کر دیے ہیں ", + "if you want help you can email us here": "اگر آپ مدد چاہتے ہیں تو آپ ہمیں یہاں ای میل کر سکتے ہیں", + "Thanks": "شکریہ", + "Email Us": "ہمیں ای میل کریں", + "I cant register in your app in face detection ": "میں چہرے کی شناخت میں آپ کی ایپ میں رجسٹر نہیں ہو سکتا ", + "Hi": "ہیلو", + "No face detected": "کوئی چہرہ شناخت نہیں ہوا", + "Image detecting result is ": "تصویر کی شناخت کا نتیجہ ہے ", + "from 3 times Take Attention": "3 بار سے توجہ دیں", + "Be sure for take accurate images please\\nYou have": "براہ کرم درست تصاویر لینے کا یقین کریں\\nآپ کے پاس ہے", + "image verified": "تصویر کی تصدیق ہو گئی", + "Next": "اگلا", + "There is no help Question here": "یہاں کوئی مدد کا سوال نہیں ہے", + "You dont have Points": "آپ کے پاس پوائنٹس نہیں ہیں", + "You Are Stopped For this Day !": "آپ اس دن کے لیے روک دیے گئے ہیں!", + "You must be charge your Account": "آپ کو اپنا اکاؤنٹ چارج کرنا ہوگا", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "آپ نے اس دن 3 سواریوں سے انکار کر دیا یہی وجہ ہے \\nکل ملتے ہیں!", + "Recharge my Account": "میرا اکاؤنٹ ریچارج کریں", + "Ok , See you Tomorrow": "ٹھیک ہے، کل ملتے ہیں", + "You are Stopped": "آپ رکے ہوئے ہیں", + "Connected": "منسلک", + "Not Connected": "منسلک نہیں", + "Your are far from passenger location": "آپ مسافر کی لوکیشن سے دور ہیں", + "go to your passenger location before\\nPassenger cancel trip": "مسافر کے سفر منسوخ کرنے سے پہلے\\nاپنی مسافر کی لوکیشن پر جائیں", + "You will get cost of your work for this trip": "آپ کو اس سفر کے لیے اپنے کام کی قیمت ملے گی", + " in your wallet": " آپ کے والٹ میں", + "you gain": "آپ نے حاصل کیا", + "Order Cancelled by Passenger": "آرڈر مسافر کی طرف سے منسوخ کر دیا گیا", + "Feedback data saved successfully": "فیڈ بیک ڈیٹا کامیابی سے محفوظ ہو گیا", + "No Promo for today .": "آج کے لیے کوئی پرومو نہیں ہے۔", + "Select your destination": "اپنی منزل منتخب کریں", + "Search for your Start point": "اپنا نقطہ آغاز تلاش کریں", + "Search for waypoint": "راستے کا نقطہ تلاش کریں", + "Current Location": "موجودہ لوکیشن", + "Add Location 1": "لوکیشن 1 شامل کریں", + "You must Verify email !.": "آپ کو ای میل کی تصدیق کرنی ہوگی!", + "Cropper": "کروپر", + "Saved Sucssefully": "کامیابی سے محفوظ ہو گیا", + "Select Date": "تاریخ منتخب کریں", + "Birth Date": "پیدائش کی تاریخ", + "Ok": "ٹھیک ہے", + "the 500 points equal 30 JOD": "500 پوائنٹس 30 روپے کے برابر ہیں", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "500 پوائنٹس آپ کے لیے 30 روپے کے برابر ہیں \\nتو جائیں اور اپنے پیسے کمائیں", + "token updated": "ٹوکن اپ ڈیٹ ہو گیا", + "Add Location 2": "لوکیشن 2 شامل کریں", + "Add Location 3": "لوکیشن 3 شامل کریں", + "Add Location 4": "لوکیشن 4 شامل کریں", + "Waiting for your location": "آپ کی لوکیشن کا انتظار ہے", + "Search for your destination": "اپنی منزل تلاش کریں", + "Hi! This is": "ہیلو! یہ ہے", + " I am using": " میں استعمال کر رہا ہوں", + " to ride with": " سواری کرنے کے لیے ساتھ", + " as the driver.": " بطور ڈرائیور۔", + "is driving a ": "چلا رہا ہے ایک ", + " with license plate ": " لائسنس پلیٹ کے ساتھ ", + " I am currently located at ": " میں فی الحال یہاں واقع ہوں ", + "Please go to Car now ": "براہ کرم اب کار کے پاس جائیں ", + "You will receive a code in WhatsApp Messenger": "آپ کو واٹس ایپ میسنجر میں ایک کوڈ موصول ہوگا", + "If you need assistance, contact us": "اگر آپ کو مدد کی ضرورت ہو تو ہم سے رابطہ کریں", + "Promo Ended": "پرومو ختم ہو گیا", + "Enter the promo code and get": "پرومو کوڈ درج کریں اور حاصل کریں", + "DISCOUNT": "ڈسکاؤنٹ", + "No wallet record found": "کوئی والٹ ریکارڈ نہیں ملا", + "for": "کے لیے", + "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 سب سے محفوظ رائیڈ شیئرنگ ایپ ہے جو کپتانوں اور مسافروں دونوں کے لیے بہت سی خصوصیات متعارف کراتی ہے۔", + "You can contact us during working hours from 12:00 - 19:00.": "آپ ہم سے دفتری اوقات 12:00 - 19:00 کے دوران رابطہ کر سکتے ہیں۔", + "Choose a contact option": "رابطے کا اختیار منتخب کریں", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "کام کا وقت 12:00 - 19:00 ہے۔\\nآپ واٹس ایپ پیغام یا ای میل بھیج سکتے ہیں۔", + "Promo code copied to clipboard!": "پرومو کوڈ کلپ بورڈ پر کاپی ہو گیا!", + "Copy Code": "کوڈ کاپی کریں", + "Your invite code was successfully applied!": "آپ کا دعوتی کوڈ کامیابی سے لاگو ہو گیا!", + "Payment Options": "ادائیگی کے اختیارات", + "wait 1 minute to receive message": "پیغام موصول ہونے کے لیے 1 منٹ انتظار کریں", + "You have copied the promo code.": "آپ نے پرومو کوڈ کاپی کر لیا ہے۔", + "Select Payment Amount": "ادائیگی کی رقم منتخب کریں", + "The promotion period has ended.": "پروموشن کی مدت ختم ہو گئی ہے۔", + "Promo Code Accepted": "پرومو کوڈ قبول ہو گیا", + "Tap on the promo code to copy it!": "اسے کاپی کرنے کے لیے پرومو کوڈ پر ٹیپ کریں!", + "Lowest Price Achieved": "کم ترین قیمت حاصل کی گئی", + "Cannot apply further discounts.": "مزید چھوٹ لاگو نہیں کی جا سکتی۔", + "Promo Already Used": "پرومو پہلے ہی استعمال ہو چکا ہے", + "Invitation Used": "دعوت نامہ استعمال ہو چکا ہے", + "You have already used this promo code.": "آپ پہلے ہی یہ پرومو کوڈ استعمال کر چکے ہیں۔", + "Insert Your Promo Code": "اپنا پرومو کوڈ درج کریں", + "Enter promo code here": "پرومو کوڈ یہاں درج کریں", + "Please enter a valid promo code": "براہ کرم ایک درست پرومو کوڈ درج کریں", + "Awfar Car": "سستی کار", + "Old and affordable, perfect for budget rides.": "پرانی اور سستی، بجٹ سواریوں کے لیے بہترین۔", + " If you need to reach me, please contact the driver directly at": " اگر آپ کو مجھ تک پہنچنے کی ضرورت ہو تو براہ کرم ڈرائیور سے براہ راست رابطہ کریں", + "No Car or Driver Found in your area.": "آپ کے علاقے میں کوئی کار یا ڈرائیور نہیں ملا۔", + "Please Try anther time ": "براہ کرم کسی اور وقت کوشش کریں ", + "There no Driver Aplly your order sorry for that ": "کوئی ڈرائیور آپ کا آرڈر اپلائی نہیں کر رہا اس کے لیے معذرت ", + "Trip Cancelled": "سفر منسوخ ہو گیا", + "The Driver Will be in your location soon .": "ڈرائیور جلد ہی آپ کی لوکیشن پر ہوگا۔", + "The distance less than 500 meter.": "فاصلہ 500 میٹر سے کم ہے۔", + "Promo End !": "پرومو ختم!", + "There is no notification yet": "ابھی تک کوئی اطلاع نہیں ہے", + "Use Touch ID or Face ID to confirm payment": "ادائیگی کی تصدیق کے لیے ٹچ آئی ڈی یا فیس آئی ڈی استعمال کریں", + "Contact us for any questions on your order.": "اپنے آرڈر پر کسی بھی سوال کے لیے ہم سے رابطہ کریں۔", + "Pyament Cancelled .": "ادائیگی منسوخ ہو گئی۔", + "type here": "یہاں ٹائپ کریں", + "Scan Driver License": "ڈرائیونگ لائسنس اسکین کریں", + "Please put your licence in these border": "براہ کرم اپنا لائسنس ان حدود میں رکھیں", + "Camera not initialized yet": "کیمرہ ابھی تک شروع نہیں ہوا", + "Take Image": "تصویر لیں", + "AI Page": "AI صفحہ", + "Take Picture Of ID Card": "شناختی کارڈ کی تصویر لیں", + "Take Picture Of Driver License Card": "ڈرائیونگ لائسنس کارڈ کی تصویر لیں", + "We are process picture please wait ": "ہم تصویر پر کارروائی کر رہے ہیں براہ کرم انتظار کریں ", + "There is no data yet.": "ابھی تک کوئی ڈیٹا نہیں ہے۔", + "Name :": "نام :", + "Drivers License Class: ": "ڈرائیونگ لائسنس کلاس: ", + "Document Number: ": "دستاویز نمبر: ", + "Address: ": "پتہ: ", + "Height: ": "اونچائی: ", + "Expiry Date: ": "میعاد ختم ہونے کی تاریخ: ", + "Date of Birth: ": "پیدائش کی تاریخ: ", + "You can't continue with us .\\nYou should renew Driver license": "آپ ہمارے ساتھ جاری نہیں رہ سکتے ۔\\nآپ کو ڈرائیور لائسنس کی تجدید کرنی چاہیے", + "Detect Your Face ": "اپنا چہرہ شناخت کریں ", + "Go to next step\\nscan Car License.": "اگلے قدم پر جائیں\\nکار لائسنس اسکین کریں۔", + "Name in arabic": "عربی میں نام", + "Drivers License Class": "ڈرائیونگ لائسنس کلاس", + "Selected Date": "منتخب کردہ تاریخ", + "Select Time": "وقت منتخب کریں", + "Selected Time": "منتخب کردہ وقت", + "Selected Date and Time": "منتخب کردہ تاریخ اور وقت", + "Lets check Car license ": "آئیے کار لائسنس چیک کریں ", + "Car": "کار", + "Plate": "پلیٹ", + "Rides": "سواریاں", + "Selected driver": "منتخب ڈرائیور", + "Lets check License Back Face": "آئیے لائسنس کے پچھلے حصے کو چیک کریں", + "Car License Card": "کار لائسنس کارڈ", + "No image selected yet": "ابھی تک کوئی تصویر منتخب نہیں کی گئی", + "Made :": "بنایا گیا :", + "model :": "ماڈل :", + "VIN :": "VIN :", + "year :": "سال :", + "ُExpire Date": "میعاد ختم ہونے کی تاریخ", + "Login Driver": "لاگ ان ڈرائیور", + "Password must br at least 6 character.": "پاس ورڈ کم از کم 6 حروف کا ہونا چاہیے۔", + "if you don't have account": "اگر آپ کا اکاؤنٹ نہیں ہے", + "Here recorded trips audio": "یہاں ریکارڈ شدہ دوروں کی آڈیو", + "Register as Driver": "بطور ڈرائیور رجسٹر کریں", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "نیچے \"میں متفق ہوں\" کو منتخب کر کے، میں نے جائزہ لیا ہے اور استعمال کی شرائط سے اتفاق کرتا ہوں اور تسلیم کرتا ہوں ", + "Log Out Page": "لاگ آؤٹ صفحہ", + "Log Off": "لاگ آف", + "Register Driver": "ڈرائیور رجسٹر کریں", + "Verify Email For Driver": "ڈرائیور کے لیے ای میل کی تصدیق کریں", + "Admin DashBoard": "ایڈمن ڈیش بورڈ", + "Your name": "آپ کا نام", + "your ride is applied": "آپ کی سواری لاگو ہو گئی ہے", + "H and": "H اور", + "JOD": "روپیہ", + "m": "منٹ", + "We search nearst Driver to you": "ہم آپ کے قریب ترین ڈرائیور کو تلاش کرتے ہیں", + "please wait till driver accept your order": "براہ کرم انتظار کریں جب تک ڈرائیور آپ کا آرڈر قبول نہ کرے", + "No accepted orders? Try raising your trip fee to attract riders.": "کوئی قبول شدہ آرڈر نہیں؟ سواروں کو راغب کرنے کے لیے اپنی ٹرپ فیس بڑھانے کی کوشش کریں۔", + "You should select one": "آپ کو ایک منتخب کرنا چاہیے", + "The driver accept your order for": "ڈرائیور آپ کا آرڈر قبول کرتا ہے برائے", + "The driver on your way": "ڈرائیور آپ کے راستے میں ہے", + "Total price from ": "سے کل قیمت ", + "Order Details Intaleq": "آرڈر کی تفصیلات Intaleq", + "Selected file:": "منتخب کردہ فائل:", + "Your trip cost is": "آپ کے سفر کی قیمت ہے", + "this will delete all files from your device": "یہ آپ کے آلے سے تمام فائلیں حذف کر دے گا", + "Exclusive offers and discounts always with the Intaleq app": "Intaleq ایپ کے ساتھ ہمیشہ خصوصی پیشکشیں اور چھوٹ", + "Submit Question": "سوال جمع کرائیں", + "Please enter your Question.": "براہ کرم اپنا سوال درج کریں۔", + "Help Details": "مدد کی تفصیلات", + "No trip yet found": "ابھی تک کوئی سفر نہیں ملا", + "No Response yet.": "ابھی تک کوئی جواب نہیں ملا۔", + " You Earn today is ": " آپ کی آج کی کمائی ہے ", + " You Have in": " آپ کے پاس ہے میں", + "Total points is ": "کل پوائنٹس ہیں ", + "Total Connection Duration:": "کل کنکشن کا دورانیہ:", + "Passenger name : ": "مسافر کا نام : ", + "Cost Of Trip IS ": "سفر کی قیمت ہے ", + "Arrival time": "پہنچنے کا وقت", + "arrival time to reach your point": "آپ کے پوائنٹ تک پہنچنے کا وقت", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Intaleq اور سکوٹر کے دوروں کے لیے، قیمت کا حساب متحرک طور پر لگایا جاتا ہے۔ کمفرٹ ٹرپس کے لیے، قیمت وقت اور فاصلے پر مبنی ہوتی ہے۔", + "Hello this is Driver": "ہیلو یہ ڈرائیور ہے", + "Is the Passenger in your Car ?": "کیا مسافر آپ کی کار میں ہے؟", + "Please wait for the passenger to enter the car before starting the trip.": "براہ کرم سفر شروع کرنے سے پہلے مسافر کے کار میں داخل ہونے کا انتظار کریں۔", + "No ,still Waiting.": "نہیں، ابھی بھی انتظار کر رہا ہوں۔", + "I arrive you": "میں آپ کے پاس پہنچ گیا", + "I Arrive your site": "میں آپ کی لوکیشن پر پہنچ گیا", + "You are not in near to passenger location": "آپ مسافر کی لوکیشن کے قریب نہیں ہیں", + "please go to picker location exactly": "براہ کرم بالکل اسی لوکیشن پر جائیں جہاں سے اٹھانا ہے", + "You Can Cancel Trip And get Cost of Trip From": "آپ سفر منسوخ کر سکتے ہیں اور سفر کی قیمت حاصل کر سکتے ہیں سے", + "Are you sure to cancel?": "کیا آپ منسوخ کرنے کے لیے یقینی ہیں؟", + "Insert Emergincy Number": "ایمرجنسی نمبر درج کریں", + "Best choice for comfort car and flexible route and stops point": "آرام دہ کار اور لچکدار راستے اور اسٹاپس پوائنٹ کے لیے بہترین انتخاب", + "Insert": "درج کریں", + "This is for scooter or a motorcycle.": "یہ سکوٹر یا موٹر سائیکل کے لیے ہے۔", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "یہ سفر آپ کے نقطہ آغاز سے سیدھا آپ کی منزل تک ایک مقررہ قیمت پر جاتا ہے۔ ڈرائیور کو منصوبہ بند راستے کی پیروی کرنی چاہیے۔", + "You can decline a request without any cost": "آپ بغیر کسی قیمت کے درخواست مسترد کر سکتے ہیں", + "Perfect for adventure seekers who want to experience something new and exciting": "ان مہم جوئی کرنے والوں کے لیے بہترین جو کچھ نیا اور دلچسپ تجربہ کرنا چاہتے ہیں", + "My current location is:": "میری موجودہ لوکیشن ہے:", + "and I have a trip on": "اور میرے پاس ایک سفر ہے پر", + "App with Passenger": "مسافر کے ساتھ ایپ", + "You will be pay the cost to driver or we will get it from you on next trip": "آپ ڈرائیور کو قیمت ادا کریں گے یا ہم اگلے سفر پر آپ سے لے لیں گے", + "Trip has Steps": "سفر کے مراحل ہیں", + "Distance from Passenger to destination is ": "مسافر سے منزل تک کا فاصلہ ہے ", + "price is": "قیمت ہے", + "This ride type does not allow changes to the destination or additional stops": "اس قسم کی سواری منزل میں تبدیلیوں یا اضافی اسٹاپس کی اجازت نہیں دیتی", + "This price may be changed": "یہ قیمت تبدیل ہو سکتی ہے", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "کوئی سم کارڈ نہیں، کوئی مسئلہ نہیں! ہماری ایپ کے ذریعے براہ راست اپنے ڈرائیور کو کال کریں۔", + "This ride type allows changes, but the price may increase": "اس قسم کی سواری تبدیلیوں کی اجازت دیتی ہے، لیکن قیمت بڑھ سکتی ہے", + "Select one message": "ایک پیغام منتخب کریں", + "I'm waiting for you": "میں آپ کا انتظار کر رہا ہوں", + "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.": "ہم نے محسوس کیا کہ Intaleq 100 کلومیٹر فی گھنٹہ سے تجاوز کر رہا ہے۔ براہ کرم اپنی حفاظت کے لیے رفتار کم کریں۔", + "Warning: Intaleqing detected!": "انتباہ: تیز رفتاری کا پتہ چلا!", + "Please help! Contact me as soon as possible.": "براہ کرم مدد کریں! جتنی جلدی ہو سکے مجھ سے رابطہ کریں۔", + "Share Trip Details": "سفر کی تفصیلات شیئر کریں", + "Car Plate is ": "کار پلیٹ ہے ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 پوائنٹس آپ کے لیے 300 روپے کے برابر ہیں \\nتو جائیں اور اپنے پیسے کمائیں", + "the 300 points equal 300 L.E": "300 پوائنٹس 300 روپے کے برابر ہیں", + "The payment was not approved. Please try again.": "ادائیگی منظور نہیں ہوئی۔ براہ کرم دوبارہ کوشش کریں۔", + "Payment Failed": "ادائیگی ناکام ہو گئی", + "This is a scheduled notification.": "یہ ایک طے شدہ اطلاع ہے۔", + "An error occurred during the payment process.": "ادائیگی کے عمل کے دوران ایک خرابی پیش آ گئی۔", + "The payment was approved.": "ادائیگی منظور ہو گئی۔", + "Payment Successful": "ادائیگی کامیاب", + "No ride found yet": "ابھی تک کوئی سواری نہیں ملی", + "Accept Order": "آرڈر قبول کریں", + "Bottom Bar Example": "باٹم بار مثال", + "Driver phone": "ڈرائیور کا فون", + "Statistics": "شماریات", + "Origin": "اصل", + "Destination": "منزل", + "Driver Name": "ڈرائیور کا نام", + "Driver Car Plate": "ڈرائیور کار پلیٹ", + "Available for rides": "سواریوں کے لیے دستیاب", + "Scan Id": "آئی ڈی اسکین کریں", + "Camera not initilaized yet": "کیمرہ ابھی تک شروع نہیں ہوا", + "Scan ID MklGoogle": "آئی ڈی MklGoogle اسکین کریں", + "Language": "زبان", + "Jordan": "اردن", + "USA": "امریکہ", + "Egypt": "مصر", + "Turkey": "ترکی", + "Saudi Arabia": "سعودی عرب", + "Qatar": "قطر", + "Bahrain": "بحرین", + "Kuwait": "کویت", + "But you have a negative salary of": "لیکن آپ کی منفی تنخواہ ہے", + "Promo Code": "پرومو کوڈ", + "Your trip distance is": "آپ کے سفر کا فاصلہ ہے", + "Enter promo code": "پرومو کوڈ درج کریں", + "You have promo!": "آپ کے پاس پرومو ہے!", + "Cost Duration": "لاگت کا دورانیہ", + "Duration is": "دورانیہ ہے", + "Leave": "چھوڑیں", + "Join": "شامل ہوں", + "Heading your way now. Please be ready.": "اب آپ کے راستے کی طرف بڑھ رہا ہوں۔ براہ کرم تیار رہیں۔", + "Approaching your area. Should be there in 3 minutes.": "آپ کے علاقے کے قریب پہنچ رہا ہوں۔ 3 منٹ میں وہاں ہونا چاہیے۔", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "یہاں ٹریفک بہت زیادہ ہے۔ کیا آپ متبادل پک اپ پوائنٹ تجویز کر سکتے ہیں؟", + "This ride is already taken by another driver.": "یہ سواری پہلے ہی کسی اور ڈرائیور نے لے لی ہے۔", + "You Should be select reason.": "آپ کو وجہ منتخب کرنی چاہیے۔", + "Waiting for Driver ...": "ڈرائیور کا انتظار...", + "Latest Recent Trip": "تازہ ترین حالیہ سفر", + "from your list": "آپ کی فہرست سے", + "Do you want to change Work location": "کیا آپ کام کی جگہ تبدیل کرنا چاہتے ہیں", + "Do you want to change Home location": "کیا آپ گھر کی لوکیشن تبدیل کرنا چاہتے ہیں", + "We Are Sorry That we dont have cars in your Location!": "ہم معذرت خواہ ہیں کہ ہمارے پاس آپ کی لوکیشن میں کاریں نہیں ہیں!", + "Choose from Map": "نقشے سے منتخب کریں", + "Pick your ride location on the map - Tap to confirm": "نقشے پر اپنی سواری کی لوکیشن منتخب کریں - تصدیق کے لیے ٹیپ کریں", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq ایک رائیڈ ہیلنگ ایپ ہے جو محفوظ، قابل اعتماد اور قابل رسائی ہے۔", + "With Intaleq, you can get a ride to your destination in minutes.": "Intaleq کے ساتھ، آپ منٹوں میں اپنی منزل تک سواری حاصل کر سکتے ہیں۔", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq حفاظت کے لیے پرعزم ہے، اور ہمارے تمام کپتانوں کی احتیاط سے جانچ پڑتال کی جاتی ہے اور پس منظر کی جانچ کی جاتی ہے۔", + "Pick from map": "نقشے سے منتخب کریں", + "No Car in your site. Sorry!": "آپ کی جگہ پر کوئی کار نہیں۔ معذرت!", + "Nearest Car for you about ": "آپ کے لیے قریب ترین کار تقریباً ", + "From :": "سے :", + "Get Details of Trip": "سفر کی تفصیلات حاصل کریں", + "If you want add stop click here": "اگر آپ اسٹاپ شامل کرنا چاہتے ہیں تو یہاں کلک کریں", + "Where you want go ": "آپ کہاں جانا چاہتے ہیں ", + "My Card": "میرا کارڈ", + "Start Record": "ریکارڈ شروع کریں", + "History of Trip": "سفر کی تاریخ", + "Helping Center": "ہیلپنگ سینٹر", + "Record saved": "ریکارڈ محفوظ ہو گیا", + "Trips recorded": "دورے ریکارڈ کیے گئے", + "Select 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.": "یہ یقینی بنانے کے لیے کہ آپ کو اپنی لوکیشن کے لیے درست ترین معلومات ملیں، براہ کرم نیچے اپنا ملک منتخب کریں۔", + "Are you sure to delete recorded files": "کیا آپ واقعی ریکارڈ شدہ فائلیں حذف کرنا چاہتے ہیں", + "Select recorded trip": "ریکارڈ شدہ سفر منتخب کریں", + "Card Number": "کارڈ نمبر", + "Hi, Where to ": "ہیلو، کہاں جانا ہے ", + "Pick your destination from Map": "نقشے سے اپنی منزل منتخب کریں", + "Add Stops": "اسٹاپس شامل کریں", + "Get Direction": "سمت حاصل کریں", + "Add Location": "لوکیشن شامل کریں", + "Switch Rider": "رائیڈر تبدیل کریں", + "You will arrive to your destination after timer end.": "ٹائمر ختم ہونے کے بعد آپ اپنی منزل پر پہنچ جائیں گے۔", + "You can cancel trip": "آپ سفر منسوخ کر سکتے ہیں", + "The driver waitting you in picked location .": "ڈرائیور منتخب جگہ پر آپ کا انتظار کر رہا ہے۔", + "Pay with Your": "اپنے ساتھ ادا کریں", + "Pay with Credit Card": "کریڈٹ کارڈ سے ادائیگی کریں", + "Show Promos to Charge": "چارج کرنے کے لیے پروموز دکھائیں", + "Point": "پوائنٹ", + "How many hours would you like to wait?": "آپ کتنے گھنٹے انتظار کرنا چاہیں گے؟", + "Driver Wallet": "ڈرائیور والٹ", + "Choose between those Type Cars": "ان قسم کی کاروں کے درمیان انتخاب کریں", + "hour": "گھنٹہ", + "Select Waiting Hours": "انتظار کے اوقات منتخب کریں", + "Total Points is": "کل پوائنٹس ہیں", + "You will receive a code in SMS message": "آپ کو ایس ایم ایس پیغام میں ایک کوڈ موصول ہوگا", + "Done": "ہو گیا", + "Total Budget from trips is ": "سفروں سے کل بجٹ ہے ", + "Total Amount:": "کل رقم:", + "Total Budget from trips by\\nCredit card is ": "کریڈٹ کارڈ کے ذریعے سفروں سے\\nکل بجٹ ہے ", + "This amount for all trip I get from Passengers": "یہ رقم تمام سفر کے لیے جو مجھے مسافروں سے ملتی ہے", + "Pay from my budget": "میرے بجٹ سے ادا کریں", + "This amount for all trip I get from Passengers and Collected For me in": "یہ رقم تمام سفر کے لیے جو مجھے مسافروں سے ملتی ہے اور میرے لیے جمع کی گئی ہے", + "You can buy points from your budget": "آپ اپنے بجٹ سے پوائنٹس خرید سکتے ہیں", + "insert amount": "رقم درج کریں", + "You can buy Points to let you online\\nby this list below": "آپ آن لائن رہنے کے لیے پوائنٹس خرید سکتے ہیں\\nنیچے دی گئی اس فہرست کے ذریعے", + "Create Wallet to receive your money": "اپنے پیسے وصول کرنے کے لیے والٹ بنائیں", + "Enter your feedback here": "اپنا فیڈ بیک یہاں درج کریں", + "Please enter your feedback.": "براہ کرم اپنا فیڈ بیک درج کریں۔", + "Feedback": "فیڈ بیک", + "Submit ": "جمع کرائیں ", + "Click here to Show it in Map": "اسے نقشے میں دکھانے کے لیے یہاں کلک کریں", + "Canceled": "منسوخ", + "No I want": "نہیں میں چاہتا ہوں", + "Email is": "ای میل ہے:", + "Phone Number is": "فون نمبر ہے:", + "Date of Birth is": "پیدائش کی تاریخ ہے:", + "Sex is ": "جنس ہے: ", + "Car Details": "کار کی تفصیلات", + "VIN is": "VIN ہے:", + "Color is ": "رنگ ہے: ", + "Make is ": "میک ہے: ", + "Model is": "ماڈل ہے:", + "Year is": "سال ہے:", + "Expiration Date ": "میعاد ختم ہونے کی تاریخ: ", + "Edit Your data": "اپنے ڈیٹا میں ترمیم کریں", + "write vin for your car": "اپنی کار کے لیے vin لکھیں", + "VIN": "VIN", + "Please verify your identity": "براہ کرم اپنی شناخت کی تصدیق کریں", + "write Color for your car": "اپنی کار کے لیے رنگ لکھیں", + "write Make for your car": "اپنی کار کے لیے میک لکھیں", + "write Model for your car": "اپنی کار کے لیے ماڈل لکھیں", + "write Year for your car": "اپنی کار کے لیے سال لکھیں", + "write Expiration Date for your car": "اپنی کار کے لیے میعاد ختم ہونے کی تاریخ لکھیں", + "Tariffs": "ٹیرف", + "Minimum fare": "کم از کم کرایہ", + "Maximum fare": "زیادہ سے زیادہ کرایہ", + "Flag-down fee": "فلیگ ڈاؤن فیس", + "Including Tax": "ٹیکس سمیت", + "BookingFee": "بکنگ فیس", + "Morning": "صبح", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 سے 10:30 تک (جمعرات، جمعہ، ہفتہ، پیر)", + "Evening": "شام", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 سے 15:00 تک (جمعرات، جمعہ، ہفتہ، پیر)", + "Night": "رات", + "You have in account": "آپ کے اکاؤنٹ میں ہے", + "Select Country": "ملک منتخب کریں", + "Ride Today : ": "آج کی سواری: ", + "from 23:59 till 05:30": "23:59 سے 05:30 تک", + "Rate Driver": "ڈرائیور کو ریٹ کریں", + "Total Cost is ": "کل قیمت ہے ", + "Write note": "نوٹ لکھیں", + "Time to arrive": "پہنچنے کا وقت", + "Ride Summaries": "سواری کے خلاصے", + "Total Cost": "کل قیمت", + "Average of Hours of": "گھنٹوں کی اوسط", + " is ON for this month": " اس مہینے کے لیے آن ہے", + "Days": "دن", + "Total Hours on month": "مہینے میں کل گھنٹے", + "Counts of Hours on days": "دنوں میں گھنٹوں کی گنتی", + "OrderId": "آرڈر آئی ڈی", + "created time": "تخلیق کا وقت", + "Intaleq Over": "Intaleq ختم", + "I will slow down": "میں رفتار کم کروں گا", + "Map Passenger": "نقشہ مسافر", + "Be Slowly": "آہستہ رہیں", + "If you want to make Google Map App run directly when you apply order": "اگر آپ چاہتے ہیں کہ جب آپ آرڈر لاگو کریں تو گوگل میپ ایپ براہ راست چلے", + "You can change the language of the app": "آپ ایپ کی زبان تبدیل کر سکتے ہیں", + "Your Budget less than needed": "آپ کا بجٹ ضرورت سے کم ہے", + "You can change the Country to get all features": "آپ تمام خصوصیات حاصل کرنے کے لیے ملک تبدیل کر سکتے ہیں", + "There is no Car or Driver in your area.": "آپ کے علاقے میں کوئی گاڑی یا ڈرائیور نہیں ہے۔", + "Change Country": "ملک تبدیل کریں" + }, + "hi": { + "About Intaleq": "Intaleq के बारे में", + "Chat with us anytime": "हमसे कभी भी चैट करें", + "Direct talk with our team": "हमारी टीम से सीधे बात करें", + "Email Support": "ईमेल सहायता", + "For official inquiries": "आधिकारिक पूछताछ के लिए", + "Intaleq Support": "Intaleq सहायता", + "Reach out to us via": "हमसे संपर्क करें", + "Support is Away": "सहायता अभी उपलब्ध नहीं है", + "Support is currently Online": "सहायता अभी ऑनलाइन है", + "Voice Call": "वॉइस कॉल", + "We're here to help you 24/7": "हम आपकी सहायता के लिए 24/7 उपलब्ध हैं", + "Working Hours:": "कार्य समय:", + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "इस अवधि के बाद\\nआप रद्द नहीं कर सकते!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "नमस्ते! मैं आपको Intaleq आज़माने के लिए आमंत्रित कर रहा हूँ।", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "भारत", + "SYP": "₹", + "Order": "ऑर्डर", + "OrderVIP": "VIP ऑर्डर", + "Cancel Trip": "ट्रिप रद्द करें", + "Passenger Cancel Trip": "यात्री ने ट्रिप रद्द कर दी", + "VIP Order": "VIP ऑर्डर", + "The driver accepted your trip": "ड्राइवर ने आपकी ट्रिप स्वीकार कर ली है", + "message From passenger": "यात्री का संदेश", + "Cancel": "रद्द करें", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "ट्रिप रद्द हो गई। ट्रिप की लागत आपके वॉलेट में जोड़ दी जाएगी।", + "token change": "टोकन परिवर्तन", + "Changed my mind": "मेरा विचार बदल गया", + "Please write the reason...": "कृपया कारण लिखें...", + "Found another transport": "दूसरा वाहन मिल गया", + "Driver is taking too long": "ड्राइवर बहुत समय ले रहा है", + "Driver asked me to cancel": "ड्राइवर ने रद्द करने को कहा", + "Wrong pickup location": "गलत पिकअप स्थान", + "Other": "अन्य", + "Don't Cancel": "रद्द न करें", + "No Drivers Found": "कोई ड्राइवर नहीं मिला", + "Sorry, there are no cars available of this type right now.": "क्षमा करें, इस समय इस प्रकार की कोई कार उपलब्ध नहीं है।", + "Refresh Map": "नक्शा ताज़ा करें", + "face detect": "चेहरा पहचान (Face Detect)", + "Face Detection Result": "चेहरा पहचान का परिणाम", + "similar": "ملتا جلتا (Similar)", + "not similar": "समान नहीं", + "Searching for nearby drivers...": "आस-पास के ड्राइवरों की तलाश की जा रही है...", + "Error": "त्रुटि", + "Failed to search, please try again later": "खोज विफल रही, कृपया बाद में दोबारा प्रयास करें", + "Connection Error": "कनेक्शन त्रुटि", + "Please check your internet connection": "कृपया अपना इंटरनेट कनेक्शन जांचें", + "Sorry 😔": "क्षमा करें 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "ड्राइवर ने आपातकालीन कारण से यात्रा रद्द कर दी।\\nक्या आप तुरंत दूसरा ड्राइवर खोजना चाहते हैं?", + "Search for another driver": "दूसरे ड्राइवर की तलाश करें", + "We apologize 😔": "हम क्षमा चाहते हैं 😔", + "No drivers found at the moment.\\nPlease try again later.": "इस समय कोई ड्राइवर नहीं मिला।\\nकृपया बाद में पुनः प्रयास करें।", + "Hi ,I will go now": "नमस्ते, मैं अब निकल रहा हूँ", + "Passenger come to you": "यात्री आपके पास आ रहा है", + "Call Income": "आने वाली कॉल", + "Call Income from Passenger": "यात्री की कॉल", + "Criminal Document Required": "पुलिस वेरिफिकेशन दस्तावेज़ आवश्यक है", + "You should have upload it .": "आपको इसे अपलोड करना होगा।", + "Call End": "कॉल समाप्त", + "The order has been accepted by another driver.": "ऑर्डर किसी अन्य ड्राइवर द्वारा स्वीकार कर लिया गया है।", + "The order Accepted by another Driver": "ऑर्डर दूसरे ड्राइवर ने स्वीकार कर लिया", + "We regret to inform you that another driver has accepted this order.": "हमें खेद है कि किसी अन्य ड्राइवर ने यह ऑर्डर स्वीकार कर लिया है।", + "Driver Applied the Ride for You": "ड्राइवर ने आपके लिए राइड अप्लाई की", + "Applied": "अप्लाई किया गया", + "Please go to Car Driver": "कृपया ड्राइवर के पास जाएं", + "Ok I will go now.": "ठीक है, मैं अब जा रहा हूँ।", + "Accepted Ride": "स्वीकृत राइड", + "Driver Accepted the Ride for You": "ड्राइवर ने आपके लिए राइड स्वीकार कर ली", + "Promo": "प्रोमो", + "Show latest promo": "नवीनतम प्रोमो दिखाएं", + "Trip Monitoring": "ट्रिप की निगरानी", + "Driver Is Going To Passenger": "ड्राइवर यात्री के पास जा रहा है", + "Please stay on the picked point.": "कृपया पिक-अप पॉइंट पर बने रहें।", + "message From Driver": "ड्राइवर का संदेश", + "Trip is Begin": "ट्रिप शुरू हो गई", + "Cancel Trip from driver": "ड्राइवर द्वारा ट्रिप रद्द", + "We will look for a new driver.\\nPlease wait.": "हम नए ड्राइवर की तलाश करेंगे।\\nकृपया प्रतीक्षा करें।", + "The driver canceled your ride.": "ड्राइवर ने आपकी राइड रद्द कर दी।", + "Driver Finish Trip": "ड्राइवर ने ट्रिप समाप्त की", + "you will pay to Driver": "आप ड्राइवर को भुगतान करेंगे", + "Don’t forget your personal belongings.": "अपना निजी सामान न भूलें।", + "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": "कृपया सुनिश्चित करें कि आपके पास आपका सारा सामान है और शेष किराया वॉलेट में जोड़ दिया गया है। Intaleq चुनने के लिए धन्यवाद।", + "Finish Monitor": "निगरानी समाप्त करें", + "Trip finished": "ट्रिप समाप्त", + "Call Income from Driver": "ड्राइवर से कॉल", + "Driver Cancelled Your Trip": "ड्राइवर ने आपकी ट्रिप रद्द कर दी", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "आप ड्राइवर के समय की कीमत चुकाएंगे, अपना Intaleq वॉलेट देखें", + "Order Applied": "ऑर्डर लागू किया गया", + "welcome to intaleq": "Intaleq में आपका स्वागत है", + "login or register subtitle": "लॉगिन या रजिस्टर करने के लिए अपना मोबाइल नंबर दर्ज करें", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "इस राइड के लिए शिकायत दर्ज नहीं की जा सकती। हो सकता है यह पूरी या शुरू न हुई हो।", + "phone number label": "फ़ोन नंबर", + "phone number required": "फ़ोन नंबर आवश्यक है", + "send otp button": "OTP भेजें", + "verify your number title": "अपना नंबर सत्यापित करें", + "otp sent subtitle": "एक 5 अंकों का कोड भेजा गया\\n@phoneNumber", + "verify and continue button": "सत्यापित करें और जारी रखें", + "enter otp validation": "कृपया 5 अंकों का OTP दर्ज करें", + "one last step title": "एक आखिरी कदम", + "complete profile subtitle": "शुरू करने के लिए प्रोफाइल पूरा करें", + "first name label": "पहला नाम", + "first name required": "पहला नाम आवश्यक है", + "last name label": "अंतिम नाम", + "Verify OTP": "OTP सत्यापित करें", + "Verification Code": "सत्यापन कोड", + "We have sent a verification code to your mobile number:": "हमने आपके मोबाइल नंबर पर एक सत्यापन कोड भेजा है:", + "Verify": "सत्यापित करें", + "Resend Code": "कोड पुनः भेजें", + "You can resend in": "पुनः भेज सकते हैं", + "seconds": "सेकंड", + "Please enter the complete 6-digit code.": "कृपया पूरा 6 अंकों का कोड दर्ज करें।", + "last name required": "अंतिम नाम आवश्यक है", + "email optional label": "ईमेल (वैकल्पिक)", + "complete registration button": "पंजीकरण पूरा करें", + "User with this phone number or email already exists.": "इस फ़ोन नंबर या ईमेल वाला उपयोगकर्ता पहले से मौजूद है।", + "otp sent success": "OTP व्हाट्सएप पर सफलतापूर्वक भेजा गया।", + "failed to send otp": "OTP भेजने में विफल।", + "server error try again": "सर्वर त्रुटि, पुनः प्रयास करें।", + "an error occurred": "एक त्रुटि हुई: @error", + "otp verification failed": "OTP सत्यापन विफल रहा।", + "registration failed": "पंजीकरण विफल रहा।", + "welcome user": "स्वागत है, @firstName!", + "Don't forget your personal belongings.": "अपना निजी सामान न भूलें।", + "Share App": "ऐप शेयर करें", + "Wallet": "वॉलेट", + "Balance": "बैलेंस", + "Profile": "प्रोफ़ाइल", + "Contact Support": "सपोर्ट से संपर्क करें", + "Session expired. Please log in again.": "सत्र समाप्त हो गया। कृपया पुन: लॉगिन करें।", + "Security Warning": "⚠️ सुरक्षा चेतावनी", + "Potential security risks detected. The application may not function correctly.": "संभावित सुरक्षा जोखिमों का पता चला। एप्लिकेशन सही ढंग से काम नहीं कर सकता है।", + "please order now": "अभी ऑर्डर करें", + "Where to": "कहाँ जाना है?", + "Where are you going?": "आप कहाँ जा रहे हैं?", + "Quick Actions": "त्वरित क्रियाएं", + "My Balance": "मेरा बैलेंस", + "Order History": "ऑर्डर इतिहास", + "Contact Us": "संपर्क करें", + "Driver": "ड्राइवर", + "Complaint": "शिकायत", + "Promos": "प्रोमो", + "Recent Places": "हाल के स्थान", + "From": "से", + "WhatsApp Location Extractor": "व्हाट्सएप लोकेशन एक्सट्रैक्टर", + "Location Link": "लोकेशन लिंक", + "Paste location link here": "लोकेशन लिंक यहाँ पेस्ट करें", + "Go to this location": "इस लोकेशन पर जाएं", + "Paste WhatsApp location link": "व्हाट्सएप लोकेशन लिंक पेस्ट करें", + "Select Order Type": "ऑर्डर प्रकार चुनें", + "Choose who this order is for": "यह ऑर्डर किसके लिए है चुनें", + "I want to order for myself": "मैं अपने लिए ऑर्डर करना चाहता हूँ", + "I want to order for someone else": "मैं किसी और के लिए ऑर्डर करना चाहता हूँ", + "Order for someone else": "किसी और के लिए ऑर्डर", + "Order for myself": "स्वयं के लिए ऑर्डर", + "Are you want to go this site": "क्या आप इस जगह जाना चाहते हैं", + "No": "नहीं", + "Intaleq Wallet": "Intaleq वॉलेट", + "Have a promo code?": "क्या आपके पास प्रोमो कोड है?", + "Your Wallet balance is ": "आपका वॉलेट बैलेंस है: ", + "Cash": "नकद", + "Pay directly to the captain": "सीधे कैप्टन को भुगतान करें", + "Top up Wallet to continue": "जारी रखने के लिए वॉलेट रिचार्ज करें", + "Or pay with Cash instead": "या नकद भुगतान करें", + "Confirm & Find a Ride": "पुष्टि करें और राइड खोजें", + "Balance:": "बैलेंस:", + "Alerts": "अलर्ट", + "Welcome Back!": "वापसी पर स्वागत है!", + "Current Balance": "वर्तमान बैलेंस", + "Set Wallet Phone Number": "वॉलेट फ़ोन नंबर सेट करें", + "Link a phone number for transfers": "ट्रांसफर के लिए फ़ोन नंबर लिंक करें", + "Payment History": "भुगतान इतिहास", + "View your past transactions": "अपने पिछले लेनदेन देखें", + "Top up Wallet": "वॉलेट रिचार्ज करें", + "Add funds using our secure methods": "हमारी सुरक्षित विधियों से पैसे जोड़ें", + "Increase Fare": "किराया बढ़ाएं", + "No drivers accepted your request yet": "अभी तक किसी ड्राइवर ने आपका अनुरोध स्वीकार नहीं किया", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "किराया बढ़ाने से अधिक ड्राइवर आकर्षित हो सकते हैं। क्या आप कीमत बढ़ाना चाहेंगे?", + "Please make sure not to leave any personal belongings in the car.": "कृपया सुनिश्चित करें कि कार में कोई निजी सामान न छोड़ें।", + "Cancel Ride": "राइड रद्द करें", + "Route Not Found": "रूट नहीं मिला", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "हमें इस गंतव्य के लिए कोई मान्य मार्ग नहीं मिला। कृपया कोई अन्य बिंदु चुनें।", + "You can call or record audio during this trip.": "आप इस ट्रिप के दौरान कॉल या ऑडियो रिकॉर्ड कर सकते हैं।", + "Warning: Speeding detected!": "चेतावनी: तेज गति का पता चला!", + "Comfort": "आराम (Comfort)", + "Intaleq Balance": "Intaleq बैलेंस", + "Electric": "इलेक्ट्रिक", + "Lady": "महिला", + "Van": "वैन", + "Rayeh Gai": "आना-जाना (Round Trip)", + "Join Intaleq as a driver using my referral code!": "मेरे रेफरल कोड का उपयोग करके ड्राइवर के रूप में Intaleq से जुड़ें!", + "Use code:": "कोड का उपयोग करें:", + "Download the Intaleq Driver app now and earn rewards!": "अभी Intaleq ड्राइवर ऐप डाउनलोड करें और पुरस्कार अर्जित करें!", + "Get a discount on your first Intaleq ride!": "अपनी पहली Intaleq राइड पर छूट प्राप्त करें!", + "Use my referral code:": "मेरा रेफरल कोड उपयोग करें:", + "Download the Intaleq app now and enjoy your ride!": "अभी Intaleq ऐप डाउनलोड करें और अपनी राइड का आनंद लें!", + "Contacts Loaded": "संपर्क लोड हो गए", + "Showing": "दिखा रहा है", + "of": "में से", + "Customer not found": "ग्राहक नहीं मिला", + "Wallet is blocked": "वॉलेट ब्लॉक है", + "Customer phone is not active": "ग्राहक का फोन सक्रिय नहीं है", + "Balance not enough": "बैलेंस पर्याप्त नहीं है", + "Balance limit exceeded": "बैलेंस सीमा पार हो गई", + "Incorrect sms code": "⚠️ गलत SMS कोड। कृपया पुनः प्रयास करें।", + "contacts. Others were hidden because they don't have a phone number.": "संपर्क। अन्य छिपा दिए गए क्योंकि उनके पास फ़ोन नंबर नहीं है।", + "No contacts found": "कोई संपर्क नहीं मिला", + "No contacts with phone numbers were found on your device.": "आपके डिवाइस पर फ़ोन नंबर वाले कोई संपर्क नहीं मिले।", + "Permission denied": "अनुमति अस्वीकृत", + "Contact permission is required to pick contacts": "संपर्क चुनने के लिए संपर्क अनुमति आवश्यक है।", + "An error occurred while picking contacts:": "संपर्क चुनते समय एक त्रुटि हुई:", + "Please enter a correct phone": "कृपया सही फ़ोन नंबर दर्ज करें", + "Success": "सफलता", + "Invite sent successfully": "निमंत्रण सफलतापूर्वक भेजा गया", + "Use my invitation code to get a special gift on your first ride!": "अपनी पहली राइड पर विशेष उपहार पाने के लिए मेरा आमंत्रण कोड उपयोग करें!", + "Your personal invitation code is:": "आपका व्यक्तिगत आमंत्रण कोड है:", + "Be sure to use it quickly! This code expires at": "जल्दी इस्तेमाल करें! यह कोड समाप्त हो जाएगा", + "Download the app now:": "अभी ऐप डाउनलोड करें:", + "See you on the road!": "रास्ते में मिलते हैं!", + "This phone number has already been invited.": "इस फ़ोन नंबर को पहले ही आमंत्रित किया जा चुका है।", + "An unexpected error occurred. Please try again.": "एक अप्रत्याशित त्रुटि हुई। कृपया पुन: प्रयास करें।", + "You deserve the gift": "आप उपहार के हकदार हैं", + "Claim your 20 LE gift for inviting": "आमंत्रित करने के लिए अपना ₹20 का उपहार प्राप्त करें", + "You have got a gift for invitation": "आपको आमंत्रण के लिए एक उपहार मिला है", + "You have earned 20": "आपने 20 अर्जित किए हैं", + "LE": "₹", + "Vibration feedback for all buttons": "सभी बटनों के लिए वाइब्रेशन फीडबैक", + "Share with friends and earn rewards": "दोस्तों के साथ साझा करें और पुरस्कार अर्जित करें", + "Gift Already Claimed": "उपहार पहले ही लिया जा चुका है", + "You have already received your gift for inviting": "आप आमंत्रित करने के लिए अपना उपहार पहले ही प्राप्त कर चुके हैं", + "Keep it up!": "लगे रहो!", + "has completed": "पूरा कर लिया है", + "trips": "ट्रिप्स", + "Personal Information": "व्यक्तिगत जानकारी", + "Name": "नाम", + "Not set": "सेट नहीं", + "Gender": "लिंग", + "Education": "शिक्षा", + "Work & Contact": "काम और संपर्क", + "Employment Type": "रोज़गार का प्रकार", + "Marital Status": "वैवाहिक स्थिति", + "SOS Phone": "SOS फ़ोन", + "Sign Out": "साइन आउट", + "Delete My Account": "मेरा खाता हटाएं", + "Update Gender": "लिंग अपडेट करें", + "Update": "अपडेट", + "Update Education": "शिक्षा अपडेट करें", + "Are you sure? This action cannot be undone.": "क्या आप सुनिश्चित हैं? यह कार्रवाई पूर्ववत नहीं की जा सकती।", + "Confirm your Email": "अपना ईमेल सत्यापित करें", + "Type your Email": "अपना ईमेल टाइप करें", + "Delete Permanently": "स्थायी रूप से हटाएं", + "Male": "पुरुष", + "Female": "महिला", + "High School Diploma": "हाई स्कूल डिप्लोमा", + "Associate Degree": "एसोसिएट डिग्री", + "Bachelor's Degree": "स्नातक की डिग्री (Bachelor's)", + "Master's Degree": "मास्टर डिग्री", + "Doctoral Degree": "डॉ डॉक्टरेट डिग्री", + "Select your preferred language for the app interface.": "ऐप इंटरफेस के लिए अपनी पसंदीदा भाषा चुनें।", + "Language Options": "भाषा विकल्प", + "You can claim your gift once they complete 2 trips.": "जब वे 2 ट्रिप पूरे कर लें तो आप अपना उपहार प्राप्त कर सकते हैं।", + "Closest & Cheapest": "सबसे नज़दीकी और सस्ता", + "Comfort choice": "आरामदायक विकल्प", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "आधुनिक, शांत इलेक्ट्रिक कार में यात्रा करें। एक प्रीमियम, पर्यावरण के अनुकूल विकल्प।", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "परिवारों और समूहों के लिए विशाल वैन सेवा। आरामदायक, सुरक्षित और किफायती।", + "Quiet & Eco-Friendly": "शांत और पर्यावरण अनुकूल", + "Lady Captain for girls": "महिलाओं के लिए लेडी कैप्टन", + "Van for familly": "परिवार के लिए वैन", + "Are you sure to delete this location?": "क्या आप वाकई इस स्थान को हटाना चाहते हैं?", + "Submit a Complaint": "शिकायत दर्ज करें", + "Submit Complaint": "शिकायत जमा करें", + "No trip history found": "कोई ट्रिप इतिहास नहीं मिला", + "Your past trips will appear here.": "आपकी पिछली ट्रिप्स यहाँ दिखाई देंगी।", + "1. Describe Your Issue": "1. अपनी समस्या का वर्णन करें", + "Enter your complaint here...": "अपनी शिकायत यहाँ लिखें...", + "2. Attach Recorded Audio": "2. रिकॉर्ड किया गया ऑडियो जोड़ें", + "No audio files found.": "कोई ऑडियो फ़ाइल नहीं मिली।", + "Confirm Attachment": "अटैचमेंट की पुष्टि करें", + "Attach this audio file?": "क्या यह ऑडियो फ़ाइल अटैच करें?", + "Uploaded": "अपलोड हो गया", + "3. Review Details & Response": "3. विवरण और प्रतिक्रिया की समीक्षा करें", + "Date": "तारीख", + "Today's Promos": "आज के प्रोमो", + "No promos available right now.": "अभी कोई प्रोमो उपलब्ध नहीं है।", + "Check back later for new offers!": "नए ऑफ़र के लिए बाद में दोबारा चेक करें!", + "Valid Until:": "तक वैध:", + "CODE": "कोड", + "I Agree": "मैं सहमत हूँ", + "Continue": "जारी रखें", + "Enable Location": "लोकेशन चालू करें", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "आपको सबसे अच्छा अनुभव देने के लिए हमें यह जानने की जरूरत है कि आप कहां हैं। आपकी लोकेशन का उपयोग नजदीकी कैप्टन को खोजने के लिए किया जाता है।", + "Allow Location Access": "लोकेशन एक्सेस की अनुमति दें", + "Welcome to Intaleq!": "Intaleq में आपका स्वागत है!", + "Before we start, please review our terms.": "शुरू करने से पहले, कृपया हमारी शर्तों की समीक्षा करें।", + "Your journey starts here": "आपकी यात्रा यहाँ से शुरू होती है", + "Cancel Search": "खोज रद्द करें", + "Set pickup location": "पिकअप लोकेशन सेट करें", + "Move the map to adjust the pin": "पिन को समायोजित करने के लिए मैप को खिसकाएं", + "Searching for the nearest captain...": "निकटतम कैप्टन की खोज की जा रही है...", + "No one accepted? Try increasing the fare.": "किसी ने स्वीकार नहीं किया? किराया बढ़ाने का प्रयास करें।", + "Increase Your Trip Fee (Optional)": "अपनी ट्रिप फीस बढ़ाएं (वैकल्पिक)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "हमें अभी तक कोई ड्राइवर नहीं मिला है। अपनी पेशकश को ड्राइवरों के लिए अधिक आकर्षक बनाने के लिए ट्रिप फीस बढ़ाने पर विचार करें।", + "No, thanks": "नहीं, धन्यवाद", + "Increase Fee": "फीस बढ़ाएं", + "Copy": "कॉपी", + "Promo Copied!": "प्रोमो कॉपी हो गया!", + "Code": "कोड", + "Send Intaleq app to him": "उसे Intaleq ऐप भेजें", + "No passenger found for the given phone number": "दिए गए फ़ोन नंबर के लिए कोई यात्री नहीं मिला", + "No user found for the given phone number": "दिए गए फ़ोन नंबर के लिए कोई उपयोगकर्ता नहीं मिला", + "This price is": "यह कीमत है", + "Work": "काम", + "Add Home": "घर जोड़ें", + "Notifications": "सूचनाएं", + "💳 Pay with Credit Card": "💳 क्रेडिट कार्ड से भुगतान करें", + "⚠️ You need to choose an amount!": "⚠️ आपको एक राशि चुनने की आवश्यकता है!", + "💰 Pay with Wallet": "💰 वॉलेट से भुगतान करें", + "You must restart the app to change the language.": "भाषा बदलने के लिए आपको ऐप को रीस्टार्ट करना होगा।", + "joined": "शामिल हुआ", + "Driver joined the channel": "ड्राइवर चैनल में शामिल हो गया", + "Driver left the channel": "ड्राइवर ने चैनल छोड़ दिया", + "Call Page": "कॉल पेज", + "Call Left": "बची हुई कॉल्स", + " Next as Cash !": " अगला नकद के रूप में!", + "To use Wallet charge it": "वॉलेट का उपयोग करने के लिए इसे रिचार्ज करें", + "We are searching for the nearest driver to you": "हम आपके निकटतम ड्राइवर को खोज रहे हैं", + "Best choice for cities": "शहरों के लिए सबसे अच्छा विकल्प", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "आना-जाना: शहरों के बीच आसान यात्रा के लिए राउंड ट्रिप सेवा।", + "This trip is for women only": "यह ट्रिप केवल महिलाओं के लिए है", + "Total budgets on month": "महीने का कुल बजट", + "You have call from driver": "ड्राइवर की कॉल है", + "Intaleq": "Intaleq", + "passenger agreement": "यात्री समझौता", + "To become a passenger, you must review and agree to the ": "यात्री बनने के लिए, आपको समीक्षा करनी होगी और सहमत होना होगा ", + "agreement subtitle": "जारी रखने के लिए, आपको उपयोग की शर्तों और गोपनीयता नीति की समीक्षा करनी चाहिए और सहमत होना चाहिए।", + "terms of use": "उपयोग की शर्तें", + " and acknowledge our Privacy Policy.": " और हमारी गोपनीयता नीति को स्वीकार करें।", + "and acknowledge our": "और स्वीकार करें हमारी", + "privacy policy": "गोपनीयता नीति।", + "i agree": "मैं सहमत हूँ", + "Driver already has 2 trips within the specified period.": "निर्दिष्ट अवधि में ड्राइवर के पास पहले से ही 2 ट्रिप हैं।", + "The invitation was sent successfully": "निमंत्रण सफलतापूर्वक भेजा गया", + "You should select your country": "आपको अपना देश चुनना चाहिए", + "Scooter": "स्कूटर", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "पूर्व आरक्षण के साथ यात्रा, जो आपको सर्वश्रेष्ठ कैप्टन और कारों को चुनने की अनुमति देती है।", + "Mishwar Vip": "Mishwar VIP", + "The driver waiting you in picked location .": "ड्राइवर पिक लोकेशन पर आपका इंतज़ार कर रहा है।", + "About Us": "हमारे बारे में", + "You can change the vibration feedback for all buttons": "आप सभी बटनों के लिए वाइब्रेशन फीडबैक बदल सकते हैं", + "Most Secure Methods": "सबसे सुरक्षित तरीके", + "In-App VOIP Calls": "इन-ऐप VOIP कॉल्स", + "Recorded Trips for Safety": "सुरक्षा के लिए रिकॉर्ड की गई ट्रिप्स", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nहम किफायत को भी प्राथमिकता देते हैं, प्रतिस्पर्धी मूल्य निर्धारण की पेशकश करते हैं।", + "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 एक राइड-शेयरिंग ऐप है जिसे आपकी सुरक्षा और किफायत को ध्यान में रखकर डिज़ाइन किया गया है। हम आपको आपके क्षेत्र में विश्वसनीय ड्राइवरों से जोड़ते हैं।", + "Sign In by Apple": "Apple द्वारा साइन इन करें", + "Sign In by Google": "Google द्वारा साइन इन करें", + "How do I request a ride?": "मैं राइड का अनुरोध कैसे करूँ?", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Intaleq ऐप के माध्यम से राइड का अनुरोध करने के तरीके पर चरण-दर-चरण निर्देश।", + "What types of vehicles are available?": "किस प्रकार के वाहन उपलब्ध हैं?", + "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 आपकी आवश्यकताओं के अनुरूप विभिन्न प्रकार के वाहन विकल्प प्रदान करता है।", + "How can I pay for my ride?": "मैं अपनी राइड के लिए भुगतान कैसे कर सकता हूँ?", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq आपकी सुविधा के लिए भुगतान के कई तरीके प्रदान करता है।", + "Can I cancel my ride?": "क्या मैं अपनी राइड रद्द कर सकता हूँ?", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "हाँ, आप कुछ शर्तों के तहत अपनी सवारी रद्द कर सकते हैं (जैसे, ड्राइवर सौंपे जाने से पहले)। विवरण के लिए Intaleq रद्दीकरण नीति देखें।", + "Driver Registration & Requirements": "ड्राइवर पंजीकरण और आवश्यकताएं", + "How can I register as a driver?": "मैं ड्राइवर के रूप में कैसे पंजीकरण कर सकता हूँ?", + "What are the requirements to become a driver?": "ड्राइवर बनने के लिए क्या आवश्यकताएं हैं?", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "ड्राइवर पंजीकरण और आवश्यकताओं के बारे में जानकारी के लिए हमारी वेबसाइट पर जाएँ या समर्थन से संपर्क करें।", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq इन-ऐप चैट की कार्यक्षमता प्रदान करता है।", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq आपकी सुरक्षा को प्राथमिकता देता है।", + "Frequently Questions": "अक्सर पूछे जाने वाले प्रश्न", + "User does not exist.": "उपयोगकर्ता मौजूद नहीं है।", + "We need your phone number to contact you and to help you.": "हमें आपसे संपर्क करने और आपकी मदद करने के लिए आपके फ़ोन नंबर की आवश्यकता है।", + "You will recieve code in sms message": "आपको SMS संदेश में कोड प्राप्त होगा", + "Please enter": "कृपया दर्ज करें", + "We need your phone number to contact you and to help you receive orders.": "हमें आपसे संपर्क करने और ऑर्डर प्राप्त करने में आपकी सहायता करने के लिए आपके फ़ोन नंबर की आवश्यकता है।", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "आपके पुलिस रिकॉर्ड पर पूरा नाम आपके ड्राइविंग लाइसेंस से मेल नहीं खाता।", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "आपके ड्राइविंग लाइसेंस पर आधार नंबर आपके आईडी दस्तावेज़ से मेल नहीं खाता है।", + "Capture an Image of Your Criminal Record": "अपने पुलिस वेरिफिकेशन की तस्वीर लें", + "IssueDate": "जारी करने की तिथि", + "Capture an Image of Your car license front": "अपनी गाड़ी के कागज (RC) के सामने की तस्वीर लें", + "Capture an Image of Your ID Document front": "अपने पहचान पत्र (Aadhaar) के सामने की तस्वीर लें", + "NationalID": "आधार नंबर", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "आप Intaleq ऐप को अपने दोस्तों के साथ साझा कर सकते हैं और पुरस्कार अर्जित कर सकते हैं", + "FullName": "पूरा नाम", + "No invitation found yet!": "अभी तक कोई आमंत्रण नहीं मिला!", + "InspectionResult": "निरीक्षण परिणाम", + "Criminal Record": "पुलिस वेरिफिकेशन", + "The email or phone number is already registered.": "ईमेल या फ़ोन नंबर पहले से पंजीकृत है।", + "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.": "ड्राइवर बनने के लिए, आपको अपना ड्राइविंग लाइसेंस, आईडी दस्तावेज़, और गाड़ी के कागज (RC) अपलोड करने की आवश्यकता है।", + "Documents check": "दस्तावेज़ जाँच", + "Driver's License": "ड्राइविंग लाइसेंस", + "for your first registration!": "आपके पहले पंजीकरण के लिए!", + "Get it Now!": "अभी प्राप्त करें!", + "before": "पहले", + "Code not approved": "कोड स्वीकृत नहीं हुआ", + "3000 LE": "₹3000", + "Do you have an invitation code from another driver?": "क्या आपके पास किसी अन्य ड्राइवर का आमंत्रण कोड है?", + "Paste the code here": "कोड यहाँ पेस्ट करें", + "No, I don't have a code": "नहीं, मेरे पास कोड नहीं है", + "Audio uploaded successfully.": "ऑडियो सफलतापूर्वक अपलोड हो गया।", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "नवीनतम कार मॉडल चाहने वाले यात्रियों के लिए उत्तम", + "Share this code with your friends and earn rewards when they use it!": "इस कोड को अपने दोस्तों के साथ साझा करें और पुरस्कार अर्जित करें!", + "Enter phone": "फ़ोन दर्ज करें", + "complete, you can claim your gift": "पूरा, आप अपना उपहार प्राप्त कर सकते हैं", + "When": "जब", + "Enter driver's phone": "ड्राइवर का फ़ोन दर्ज करें", + "Send Invite": "आमंत्रण भेजें", + "Show Invitations": "आमंत्रण दिखाएं", + "License Type": "लाइसेंस का प्रकार", + "National Number": "आधार नंबर", + "Name (Arabic)": "नाम (स्थानीय)", + "Name (English)": "नाम (अंग्रेज़ी)", + "Address": "पता", + "Issue Date": "जारी करने की तिथि", + "Expiry Date": "समाप्ति तिथि", + "License Categories": "लाइसेंस श्रेणियाँ", + "driver_license": "ड्राइविंग लाइसेंस", + "Capture an Image of Your Driver License": "अपने ड्राइविंग लाइसेंस की तस्वीर लें", + "ID Documents Back": "आईडी दस्तावेज़ का पिछला हिस्सा", + "National ID": "आधार कार्ड", + "Occupation": "पेशा", + "Religion": "धर्म", + "Full Name (Marital)": "पूरा नाम", + "Expiration Date": "समाप्ति तिथि", + "Capture an Image of Your ID Document Back": "अपने आईडी कार्ड के पीछे की तस्वीर लें", + "ID Documents Front": "आईडी दस्तावेज़ का सामने का हिस्सा", + "First Name": "पहला नाम", + "CardID": "कार्ड आईडी", + "Vehicle Details Front": "वाहन विवरण सामने", + "Plate Number": "प्लेट नंबर", + "Owner Name": "मालिक का नाम", + "Vehicle Details Back": "वाहन विवरण पीछे", + "Make": "मेक", + "Model": "मॉडल", + "Year": "वर्ष", + "Chassis": "चेसिस", + "Color": "रंग", + "Displacement": "डिस्प्लेसमेंट", + "Fuel": "ईंधन", + "Tax Expiry Date": "टैक्स समाप्ति तिथि", + "Inspection Date": "निरीक्षण तिथि", + "Capture an Image of Your car license back": "अपने आरसी (RC) के पीछे की तस्वीर लें", + "Capture an Image of Your Driver's License": "अपने ड्राइविंग लाइसेंस की तस्वीर लें", + "Sign in with Google for easier email and name entry": "आसान ईमेल और नाम प्रविष्टि के लिए Google के साथ साइन इन करें", + "You will choose allow all the time to be ready receive orders": "आप ऑर्डर प्राप्त करने के लिए हर समय अनुमति चुनें", + "Get to your destination quickly and easily.": "अपनी मंजिल पर जल्दी और आसानी से पहुंचें।", + "Enjoy a safe and comfortable ride.": "सुरक्षित और आरामदायक सवारी का आनंद लें।", + "Choose Language": "भाषा चुनें", + "Pay with Wallet": "वॉलेट से भुगतान करें", + "Invalid MPIN": "अमान्य MPIN", + "Invalid OTP": "अमान्य OTP", + "Enter your email address": "अपना ईमेल पता दर्ज करें", + "Please enter Your Email.": "कृपया अपना ईमेल दर्ज करें।", + "Enter your phone number": "अपना फ़ोन नंबर दर्ज करें", + "Please enter your phone number.": "कृपया अपना फ़ोन नंबर दर्ज करें।", + "Please enter Your Password.": "कृपया अपना पासवर्ड दर्ज करें।", + "if you dont have account": "यदि आपके पास खाता नहीं है", + "Register": "रजिस्टर करें", + "Accept Ride's Terms & Review Privacy Notice": "शर्तें स्वीकार करें और गोपनीयता नोटिस देखें", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "नीचे 'मैं सहमत हूँ' चुनकर, मैंने उपयोग की शर्तों की समीक्षा की है और उनसे सहमत हूँ।", + "First name": "पहला नाम", + "Enter your first name": "अपना पहला नाम दर्ज करें", + "Please enter your first name.": "कृपया अपना पहला नाम दर्ज करें।", + "Last name": "अंतिम नाम", + "Enter your last name": "अपना अंतिम नाम दर्ज करें", + "Please enter your last name.": "कृपया अपना अंतिम नाम दर्ज करें।", + "City": "शहर", + "Please enter your City.": "कृपया अपना शहर दर्ज करें।", + "Verify Email": "ईमेल सत्यापित करें", + "We sent 5 digit to your Email provided": "हमने आपके प्रदान किए गए ईमेल पर 5 अंक भेजे हैं", + "5 digit": "5 अंक", + "Send Verification Code": "सत्यापन कोड भेजें", + "Your Ride Duration is ": "आपकी सवारी की अवधि है ", + "You will be thier in": "आप वहां होंगे", + "You trip distance is": "आपकी यात्रा की दूरी है", + "Fee is": "फीस है", + "From : ": "से: ", + "To : ": "तक: ", + "Add Promo": "प्रोमो जोड़ें", + "Confirm Selection": "चयन की पुष्टि करें", + "distance is": "दूरी है", + "Privacy Policy": "गोपनीयता नीति", + "Intaleq LLC": "Intaleq LLC", + "Syria'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.": "भारत की अग्रणी राइड-शेयरिंग सेवा।", + "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 पहली राइड-शेयरिंग ऐप है जो आपको निकटतम ड्राइवरों से जोड़ती है।", + "Why Choose Intaleq?": "Intaleq क्यों चुनें?", + "Closest to You": "आपके सबसे करीब", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "हम आपको तेज़ पिकअप के लिए निकटतम ड्राइवरों से जोड़ते हैं।", + "Uncompromising Security": "अटल सुरक्षा", + "Lady Captains Available": "लेडी कैप्टन उपलब्ध हैं", + "Recorded Trips (Voice & AI Analysis)": "रिकॉर्ड की गई यात्राएं (वॉयस और AI विश्लेषण)", + "Fastest Complaint Response": "सबसे तेज़ शिकायत प्रतिक्रिया", + "Our dedicated customer service team ensures swift resolution of any issues.": "हमारी समर्पित ग्राहक सेवा टीम मुद्दों का त्वरित समाधान सुनिश्चित करती है।", + "Affordable for Everyone": "सभी के लिए किफायती", + "Frequently Asked Questions": "अक्सर पूछे जाने वाले प्रश्न", + "Getting Started": "शुरुआत करना", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "बस ऐप खोलें, गंतव्य दर्ज करें और 'राइड का अनुरोध करें' पर टैप करें।", + "Vehicle Options": "वाहन विकल्प", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq इकोनॉमी, कम्फर्ट और लग्जरी सहित कई विकल्प प्रदान करता है।", + "Payments": "भुगतान", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "आप नकद या कार्ड का उपयोग करके भुगतान कर सकते हैं।", + "Ride Management": "राइड प्रबंधन", + "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "हाँ, आप अपनी राइड रद्द कर सकते हैं, लेकिन रद्दीकरण शुल्क लागू हो सकता है।", + "For Drivers": "ड्राइवरों के लिए", + "Driver Registration": "ड्राइवर पंजीकरण", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "रजिस्टर करने के लिए हमारी वेबसाइट पर जाएँ या समर्थन से संपर्क करें।", + "Visit Website/Contact Support": "वेबसाइट पर जाएँ / समर्थन से संपर्क करें", + "Close": "बंद करें", + "We are searching for the nearest driver": "हम निकटतम ड्राइवर खोज रहे हैं", + "Communication": "संचार", + "How do I communicate with the other party (passenger/driver)?": "मैं दूसरे पक्ष से कैसे संवाद करूँ?", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "राइड की पुष्टि होने पर आप ऐप में चैट कर सकते हैं।", + "Safety & Security": "सुरक्षा", + "What safety measures does Intaleq offer?": "Intaleq कौन से सुरक्षा उपाय प्रदान करता है?", + "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 ड्राइवर सत्यापन और ट्रिप ट्रैकिंग प्रदान करता है।", + "Enjoy competitive prices across all trip options, making travel accessible.": "प्रतिस्पर्धी कीमतों का आनंद लें।", + "Variety of Trip Choices": "ट्रिप विकल्पों की विविधता", + "Choose the trip option that perfectly suits your needs and preferences.": "वह विकल्प चुनें जो आपकी आवश्यकताओं के अनुरूप हो।", + "Your Choice, Our Priority": "आपकी पसंद, हमारी प्राथमिकता", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "चूंकि हम पास हैं, आपके पास चुनने की सुविधा है।", + "duration is": "अवधि है", + "Setting": "सेटिंग", + "Find answers to common questions": "सामान्य प्रश्नों के उत्तर खोजें", + "I don't need a ride anymore": "मुझे अब राइड की आवश्यकता नहीं है", + "I was just trying the application": "मैं बस एप्लिकेशन आज़मा रहा था", + "No driver accepted my request": "किसी ड्राइवर ने मेरा अनुरोध स्वीकार नहीं किया", + "I added the wrong pick-up/drop-off location": "मैंने गलत स्थान जोड़ा", + "I don't have a reason": "मेरे पास कोई कारण नहीं है", + "Can we know why you want to cancel Ride ?": "क्या हम जान सकते हैं कि आप क्यों रद्द करना चाहते हैं?", + "Add Payment Method": "भुगतान विधि जोड़ें", + "Ride Wallet": "राइड वॉलेट", + "Payment Method": "भुगतान विधि", + "Type here Place": "यहाँ स्थान टाइप करें", + "Are You sure to ride to": "क्या आप वाकई जाना चाहते हैं", + "Confirm": "पुष्टि करें", + "You are Delete": "आप हटा रहे हैं", + "Deleted": "हटा दिया गया", + "You Dont Have Any places yet !": "आपके पास अभी तक कोई स्थान नहीं है!", + "From : Current Location": "से: वर्तमान स्थान", + "My Cared": "मेरे कार्ड", + "Add Card": "कार्ड जोड़ें", + "Add Credit Card": "क्रेडिट कार्ड जोड़ें", + "Please enter the cardholder name": "कृपया कार्डधारक का नाम दर्ज करें", + "Please enter the expiry date": "कृपया समाप्ति तिथि दर्ज करें", + "Please enter the CVV code": "कृपया CVV कोड दर्ज करें", + "Go To Favorite Places": "पसंदीदा स्थानों पर जाएं", + "Go to this Target": "इस लक्ष्य पर जाएं", + "My Profile": "मेरी प्रोफ़ाइल", + "Are you want to go to this site": "क्या आप इस साइट पर जाना चाहते हैं", + "MyLocation": "मेरी लोकेशन", + "my location": "मेरी लोकेशन", + "Target": "लक्ष्य", + "You Should choose rate figure": "आपको रेटिंग चुननी चाहिए", + "Login Captin": "कैप्टन लॉगिन", + "Register Captin": "कैप्टन रजिस्टर", + "Send Verfication Code": "सत्यापन कोड भेजें", + "KM": "किमी", + "End Ride": "राइड समाप्त करें", + "Minute": "मिनट", + "Go to passenger Location now": "अब यात्री की लोकेशन पर जाएं", + "Duration of the Ride is ": "राइड की अवधि है ", + "Distance of the Ride is ": "राइड की दूरी है ", + "Name of the Passenger is ": "यात्री का नाम है ", + "Hello this is Captain": "नमस्ते यह कैप्टन है", + "Start the Ride": "राइड शुरू करें", + "Please Wait If passenger want To Cancel!": "कृपया प्रतीक्षा करें यदि यात्री रद्द करना चाहे!", + "Total Duration:": "कुल अवधि:", + "Active Duration:": "सक्रिय अवधि:", + "Waiting for Captin ...": "कैप्टन का इंतज़ार...", + "Age is ": "आयु है ", + "Rating is ": "रेटिंग है ", + " to arrive you.": " आप तक पहुँचने के लिए।", + "Tariff": "टैरिफ", + "Settings": "सेटिंग्स", + "Feed Back": "प्रतिक्रिया", + "Please enter a valid 16-digit card number": "कृपया एक वैध 16 अंकों का कार्ड नंबर दर्ज करें", + "Add Phone": "फ़ोन जोड़ें", + "Please enter a phone number": "कृपया एक फ़ोन नंबर दर्ज करें", + "You dont Add Emergency Phone Yet!": "आपने अभी तक आपातकालीन फ़ोन नहीं जोड़ा है!", + "You will arrive to your destination after ": "आप अपनी मंजिल पर पहुंचेंगे बाद ", + "You can cancel Ride now": "आप अब राइड रद्द कर सकते हैं", + "You Can cancel Ride After Captain did not come in the time": "यदि कैप्टन समय पर नहीं आया तो आप राइड रद्द कर सकते हैं", + "If you in Car Now. Press Start The Ride": "यदि आप कार में हैं तो राइड शुरू करें दबाएं", + "You Dont Have Any amount in": "आपके पास कोई राशि नहीं है में", + "Wallet!": "वॉलेट!", + "You Have": "आपके पास है", + "Save Credit Card": "क्रेडिट कार्ड सहेजें", + "Show Promos": "प्रोमो दिखाएं", + "10 and get 4% discount": "10 और 4% छूट पाएं", + "20 and get 6% discount": "20 और 6% छूट पाएं", + "40 and get 8% discount": "40 और 8% छूट पाएं", + "100 and get 11% discount": "100 और 11% छूट पाएं", + "Pay with Your PayPal": "अपने PayPal से भुगतान करें", + "You will choose one of above !": "आपको ऊपर वालों में से एक को चुनना होगा!", + "Edit Profile": "प्रोफ़ाइल संपादित करें", + "Copy this Promo to use it in your Ride!": "अपनी राइड में उपयोग करने के लिए इस प्रोमो को कॉपी करें!", + "To change some Settings": "कुछ सेटिंग्स बदलने के लिए", + "Order Request Page": "ऑर्डर अनुरोध पृष्ठ", + "Rouats of Trip": "ट्रिप के रास्ते", + "Passenger Name is ": "यात्री का नाम है ", + "Total From Passenger is ": "यात्री से कुल: ", + "Duration To Passenger is ": "यात्री तक अवधि है ", + "Distance To Passenger is ": "यात्री तक दूरी है ", + "Total For You is ": "आपके लिए कुल: ", + "Distance is ": "दूरी है ", + " KM": " किमी", + "Duration of Trip is ": "ट्रिप की अवधि है ", + " Minutes": " मिनट", + "Apply Order": "ऑर्डर लागू करें", + "Refuse Order": "ऑर्डर अस्वीकार करें", + "Rate Captain": "कैप्टन को रेट करें", + "Enter your Note": "अपना नोट दर्ज करें", + "Type something...": "कुछ लिखें...", + "Submit rating": "रेटिंग सबमिट करें", + "Rate Passenger": "यात्री को रेट करें", + "Ride Summary": "राइड सारांश", + "welcome_message": "Intaleq में आपका स्वागत है!", + "app_description": "Intaleq एक सुरक्षित, विश्वसनीय और सुलभ राइड-हेलिंग ऐप है।", + "get_to_destination": "जल्दी और आसानी से अपनी मंजिल पर पहुंचें।", + "get_a_ride": "Intaleq के साथ, आप मिनटों में राइड प्राप्त कर सकते हैं।", + "safe_and_comfortable": "एक सुरक्षित और आरामदायक राइड का आनंद लें।", + "committed_to_safety": "Intaleq सुरक्षा के लिए प्रतिबद्ध है।", + "your ride is Accepted": "आपकी राइड स्वीकार कर ली गई है", + "Driver is waiting at pickup.": "ड्राइवर पिकअप पर इंतज़ार कर रहा है।", + "Driver is on the way": "ड्राइवर रास्ते में है", + "Contact Options": "संपर्क विकल्प", + "Send a custom message": "कस्टम संदेश भेजें", + "Type your message": "अपना संदेश टाइप करें", + "I will go now": "मैं अब जाऊंगा", + "You Have Tips": "आपके पास टिप्स हैं", + " tips\\nTotal is": " टिप्स\\nकुल है", + "Your fee is ": "आपकी फीस है ", + "Do you want to pay Tips for this Driver": "क्या आप इस ड्राइवर के लिए टिप देना चाहते हैं", + "Tip is ": "टिप है ", + "Are you want to wait drivers to accept your order": "क्या आप चाहते हैं कि ड्राइवर आपका ऑर्डर स्वीकार करने का इंतज़ार करें", + "This price is fixed even if the route changes for the driver.": "यह कीमत तय है चाहे ड्राइवर का रास्ता बदल जाए।", + "The price may increase if the route changes.": "अगर रास्ता बदल गया तो कीमत बढ़ सकती है।", + "The captain is responsible for the route.": "कैप्टन रास्ते के लिए जिम्मेदार है।", + "We are search for nearst driver": "हम निकटतम ड्राइवर खोज रहे हैं", + "Your order is being prepared": "आपका ऑर्डर तैयार हो रहा है", + "The drivers are reviewing your request": "ड्राइवर आपके अनुरोध की समीक्षा कर रहे हैं", + "Your order sent to drivers": "आपका ऑर्डर ड्राइवरों को भेज दिया गया", + "You can call or record audio of this trip": "आप इस ट्रिप की कॉल या ऑडियो रिकॉर्ड कर सकते हैं", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "ट्रिप शुरू हो गई है! आपातकालीन नंबरों से संपर्क करें, अपनी ट्रिप साझा करें।", + "Camera Access Denied.": "कैमरा एक्सेस अस्वीकार कर दिया गया।", + "Open Settings": "सेटिंग्स खोलें", + "GPS Required Allow !.": "GPS की अनुमति आवश्यक है!", + "Your Account is Deleted": "आपका खाता हटा दिया गया है", + "Are you sure to delete your account?": "क्या आप वाकई अपना खाता हटाना चाहते हैं?", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "आपका डेटा 2 सप्ताह बाद मिटा दिया जाएगा\\nऔर आप 1 महीने बाद ऐप का उपयोग नहीं कर पाएंगे", + "Enter Your First Name": "अपना पहला नाम दर्ज करें", + "Are you Sure to LogOut?": "क्या आप वाकई लॉग आउट करना चाहते हैं?", + "Email Wrong": "ईमेल गलत है", + "Email you inserted is Wrong.": "आपके द्वारा दर्ज किया गया ईमेल गलत है।", + "You have finished all times ": "आपने सभी बार समाप्त कर दिए हैं ", + "if you want help you can email us here": "यदि आप मदद चाहते हैं तो आप हमें यहां ईमेल कर सकते हैं", + "Thanks": "धन्यवाद", + "Email Us": "हमें ईमेल करें", + "I cant register in your app in face detection ": "मैं चेहरा पहचान में आपके ऐप में रजिस्टर नहीं हो सकता ", + "Hi": "नमस्ते", + "No face detected": "कोई चेहरा पता नहीं चला", + "Image detecting result is ": "छवि पहचान का परिणाम है ", + "from 3 times Take Attention": "3 बार से ध्यान दें", + "Be sure for take accurate images please\\nYou have": "कृपया सटीक चित्र लेने का ध्यान रखें\\nआपके पास है", + "image verified": "छवि सत्यापित", + "Next": "अगला", + "There is no help Question here": "यहाँ कोई मदद प्रश्न नहीं है", + "You dont have Points": "आपके पास अंक नहीं हैं", + "You Are Stopped For this Day !": "आप इस दिन के लिए रोक दिए गए हैं!", + "You must be charge your Account": "आपको अपना खाता चार्ज करना होगा", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "आपने इस दिन 3 राइड्स को अस्वीकार कर दिया यही कारण है \\nकल मिलते हैं!", + "Recharge my Account": "मेरा खाता रिचार्ज करें", + "Ok , See you Tomorrow": "ठीक है, कल मिलते हैं", + "You are Stopped": "आप रुके हुए हैं", + "Connected": "जुड़ा हुआ", + "Not Connected": "जुड़ा हुआ नहीं", + "Your are far from passenger location": "आप यात्री की लोकेशन से दूर हैं", + "go to your passenger location before\\nPassenger cancel trip": "यात्री के ट्रिप रद्द करने से पहले\\nअपनी यात्री की लोकेशन पर जाएं", + "You will get cost of your work for this trip": "आपको इस ट्रिप के लिए अपने काम की कीमत मिलेगी", + " in your wallet": " आपके वॉलेट में", + "you gain": "आपने प्राप्त किया", + "Order Cancelled by Passenger": "यात्री द्वारा ऑर्डर रद्द कर दिया गया", + "Feedback data saved successfully": "फीडबैक डेटा सफलतापूर्वक सहेजा गया", + "No Promo for today .": "आज के लिए कोई प्रोमो नहीं है।", + "Select your destination": "अपनी मंजिल चुनें", + "Search for your Start point": "अपना प्रारंभिक बिंदु खोजें", + "Search for waypoint": "वेपॉइंट खोजें", + "Current Location": "वर्तमान लोकेशन", + "Add Location 1": "लोकेशन 1 जोड़ें", + "You must Verify email !.": "आपको ईमेल सत्यापित करना होगा!", + "Cropper": "क्रॉपर", + "Saved Sucssefully": "सफलतापूर्वक सहेजा गया", + "Select Date": "तारीख चुनें", + "Birth Date": "जन्म तिथि", + "Ok": "ठीक है", + "the 500 points equal 30 JOD": "500 पॉइंट 30 रुपये के बराबर हैं", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "500 पॉइंट आपके लिए 30 रुपये के बराबर हैं \\nतो जाएं और अपने पैसे कमाएं", + "token updated": "टोकन अपडेट हो गया", + "Add Location 2": "लोकेशन 2 जोड़ें", + "Add Location 3": "लोकेशन 3 जोड़ें", + "Add Location 4": "लोकेशन 4 जोड़ें", + "Waiting for your location": "आपकी लोकेशन का इंतज़ार है", + "Search for your destination": "अपनी मंजिल खोजें", + "Hi! This is": "नमस्ते! यह है", + " I am using": " मैं उपयोग कर रहा हूँ", + " to ride with": " सवारी करने के लिए साथ", + " as the driver.": " बतौर ड्राइवर।", + "is driving a ": "चला रहा है एक ", + " with license plate ": " लाइसेंस प्लेट के साथ ", + " I am currently located at ": " मैं वर्तमान में यहाँ स्थित हूँ ", + "Please go to Car now ": "कृपया अब कार के पास जाएं ", + "You will receive a code in WhatsApp Messenger": "आपको व्हाट्सएप मैसेंजर में एक कोड प्राप्त होगा", + "If you need assistance, contact us": "यदि आपको सहायता की आवश्यकता हो, तो हमसे संपर्क करें", + "Promo Ended": "प्रोमो समाप्त", + "Enter the promo code and get": "प्रोमो कोड दर्ज करें और प्राप्त करें", + "DISCOUNT": "छूट", + "No wallet record found": "कोई वॉलेट रिकॉर्ड नहीं मिला", + "for": "के लिए", + "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 सबसे सुरक्षित राइड-शेयरिंग ऐप है।", + "You can contact us during working hours from 12:00 - 19:00.": "आप हमसे कार्यालय समय 12:00 - 19:00 के दौरान संपर्क कर सकते हैं।", + "Choose a contact option": "संपर्क विकल्प चुनें", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "काम का समय 12:00 - 19:00 है।\\nआप व्हाट्सएप संदेश या ईमेल भेज सकते हैं।", + "Promo code copied to clipboard!": "प्रोमो कोड क्लिपबोर्ड पर कॉपी हो गया!", + "Copy Code": "कोड कॉपी करें", + "Your invite code was successfully applied!": "आपका आमंत्रण कोड सफलतापूर्वक लागू हो गया!", + "Payment Options": "भुगतान विकल्प", + "wait 1 minute to receive message": "संदेश प्राप्त करने के लिए 1 मिनट प्रतीक्षा करें", + "You have copied the promo code.": "आपने प्रोमो कोड कॉपी कर लिया है।", + "Select Payment Amount": "भुगतान राशि चुनें", + "The promotion period has ended.": "प्रचार अवधि समाप्त हो गई है।", + "Promo Code Accepted": "प्रोमो कोड स्वीकार कर लिया गया", + "Tap on the promo code to copy it!": "इसे कॉपी करने के लिए प्रोमो कोड पर टैप करें!", + "Lowest Price Achieved": "सबसे कम कीमत हासिल की गई", + "Cannot apply further discounts.": "अधिक छूट लागू नहीं की जा सकती।", + "Promo Already Used": "प्रोमो पहले ही इस्तेमाल हो चुका है", + "Invitation Used": "आमंत्रण इस्तेमाल हो चुका है", + "You have already used this promo code.": "आप पहले ही यह प्रोमो कोड इस्तेमाल कर चुके हैं।", + "Insert Your Promo Code": "अपना प्रोमो कोड डालें", + "Enter promo code here": "प्रोमो कोड यहाँ डालें", + "Please enter a valid promo code": "कृपया एक मान्य प्रोमो कोड डालें", + "Awfar Car": "किफायती कार", + "Old and affordable, perfect for budget rides.": "पुरानी और सस्ती, बजट सवारी के लिए उत्तम।", + " If you need to reach me, please contact the driver directly at": " यदि आपको मुझ तक पहुँचने की आवश्यकता हो, तो कृपया ड्राइवर से सीधे संपर्क करें", + "No Car or Driver Found in your area.": "आपके क्षेत्र में कोई कार या ड्राइवर नहीं मिला।", + "Please Try anther time ": "कृपया किसी और समय प्रयास करें ", + "There no Driver Aplly your order sorry for that ": "कोई ड्राइवर आपका ऑर्डर अप्लाई नहीं कर रहा इसके लिए खेद है ", + "Trip Cancelled": "ट्रिप रद्द हो गई", + "The Driver Will be in your location soon .": "ड्राइवर जल्द ही आपकी लोकेशन पर होगा।", + "The distance less than 500 meter.": "दूरी 500 मीटर से कम है।", + "Promo End !": "प्रोमो समाप्त!", + "There is no notification yet": "अभी तक कोई सूचना नहीं है", + "Use Touch ID or Face ID to confirm payment": "भुगतान की पुष्टि के लिए टच आईडी या फेस आईडी का उपयोग करें", + "Contact us for any questions on your order.": "अपने ऑर्डर पर किसी भी प्रश्न के लिए हमसे संपर्क करें।", + "Pyament Cancelled .": "भुगतान रद्द हो गया।", + "type here": "यहाँ टाइप करें", + "Scan Driver License": "ड्राइविंग लाइसेंस स्कैन करें", + "Please put your licence in these border": "कृपया अपना लाइसेंस इन सीमाओं में रखें", + "Camera not initialized yet": "कैमरा अभी तक शुरू नहीं हुआ", + "Take Image": "तस्वीर लें", + "AI Page": "AI पेज", + "Take Picture Of ID Card": "आईडी कार्ड की तस्वीर लें", + "Take Picture Of Driver License Card": "ड्राइविंग लाइसेंस कार्ड की तस्वीर लें", + "We are process picture please wait ": "हम तस्वीर प्रोसेस कर रहे हैं कृपया प्रतीक्षा करें ", + "There is no data yet.": "अभी तक कोई डेटा नहीं है।", + "Name :": "नाम :", + "Drivers License Class: ": "ड्राइविंग लाइसेंस क्लास: ", + "Document Number: ": "दस्तावेज़ नंबर: ", + "Address: ": "पता: ", + "Height: ": "ऊंचाई: ", + "Expiry Date: ": "समाप्ति तिथि: ", + "Date of Birth: ": "जन्म तिथि: ", + "You can't continue with us .\\nYou should renew Driver license": "आप हमारे साथ जारी नहीं रख सकते।\\nआपको ड्राइवर लाइसेंस का नवीनीकरण करना चाहिए", + "Detect Your Face ": "अपना चेहरा पहचानें ", + "Go to next step\\nscan Car License.": "अगले कदम पर जाएं\\nकार लाइसेंस स्कैन करें।", + "Name in arabic": "स्थानीय नाम", + "Drivers License Class": "ड्राइविंग लाइसेंस क्लास", + "Selected Date": "चयनित तिथि", + "Select Time": "समय चुनें", + "Selected Time": "चयनित समय", + "Selected Date and Time": "चयनित तिथि और समय", + "Lets check Car license ": "आइए कार लाइसेंस (RC) चेक करें ", + "Car": "कार", + "Plate": "प्लेट", + "Rides": "सवारियां", + "Selected driver": "चयनित ड्राइवर", + "Lets check License Back Face": "आइए लाइसेंस के पिछले हिस्से को चेक करें", + "Car License Card": "कार लाइसेंस कार्ड (RC)", + "No image selected yet": "अभी तक कोई छवि नहीं चुनी गई", + "Made :": "बनाया गया :", + "model :": "मॉडल :", + "VIN :": "VIN :", + "year :": "वर्ष :", + "ُExpire Date": "समाप्ति तिथि", + "Login Driver": "लॉगिन ड्राइवर", + "Password must br at least 6 character.": "पासवर्ड कम से कम 6 अक्षरों का होना चाहिए।", + "if you don't have account": "अगर आपके पास खाता नहीं है", + "Here recorded trips audio": "यहाँ रिकॉर्ड किए गए ट्रिप्स का ऑडियो", + "Register as Driver": "बतौर ड्राइवर रजिस्टर करें", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "नीचे \"मैं सहमत हूँ\" को चुनकर, मैंने समीक्षा की है और उपयोग की शर्तों से सहमत हूँ और स्वीकार करता हूँ ", + "Log Out Page": "लॉग आउट पेज", + "Log Off": "लॉग ऑफ", + "Register Driver": "ड्राइवर रजिस्टर करें", + "Verify Email For Driver": "ड्राइवर के लिए ईमेल सत्यापित करें", + "Admin DashBoard": "एडमिन डैशबोर्ड", + "Your name": "आपका नाम", + "your ride is applied": "आपकी राइड लागू हो गई है", + "H and": "H और", + "JOD": "₹", + "m": "मिनट", + "We search nearst Driver to you": "हम आपके निकटतम ड्राइवर को खोजते हैं", + "please wait till driver accept your order": "कृपया प्रतीक्षा करें जब तक ड्राइवर आपका ऑर्डर स्वीकार न करे", + "No accepted orders? Try raising your trip fee to attract riders.": "कोई स्वीकृत ऑर्डर नहीं? सवारों को आकर्षित करने के लिए अपनी ट्रिप फीस बढ़ाने की कोशिश करें।", + "You should select one": "आपको एक चुनना चाहिए", + "The driver accept your order for": "ड्राइवर आपका ऑर्डर स्वीकार करता है के लिए", + "The driver on your way": "ड्राइवर आपके रास्ते में है", + "Total price from ": "से कुल कीमत ", + "Order Details Intaleq": "ऑर्डर विवरण Intaleq", + "Selected file:": "चयनित फ़ाइल:", + "Your trip cost is": "आपकी ट्रिप की कीमत है", + "this will delete all files from your device": "यह आपके डिवाइस से सभी फ़ाइलें हटा देगा", + "Exclusive offers and discounts always with the Intaleq app": "Intaleq ऐप के साथ हमेशा विशेष ऑफ़र और छूट", + "Submit Question": "प्रश्न जमा करें", + "Please enter your Question.": "कृपया अपना प्रश्न दर्ज करें।", + "Help Details": "मदद विवरण", + "No trip yet found": "अभी तक कोई ट्रिप नहीं मिला", + "No Response yet.": "अभी तक कोई जवाब नहीं मिला।", + " You Earn today is ": " आपकी आज की कमाई है ", + " You Have in": " आपके पास है में", + "Total points is ": "कुल अंक हैं ", + "Total Connection Duration:": "कुल कनेक्शन अवधि:", + "Passenger name : ": "यात्री का नाम : ", + "Cost Of Trip IS ": "ट्रिप की कीमत है ", + "Arrival time": "पहुंचने का समय", + "arrival time to reach your point": "आपके पॉइंट तक पहुंचने का समय", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "कीमत गतिशील रूप से की जाती है। कम्फर्ट ट्रिप्स के लिए, कीमत समय और दूरी पर आधारित होती है।", + "Hello this is Driver": "नमस्ते यह ड्राइवर है", + "Is the Passenger in your Car ?": "क्या यात्री आपकी कार में है?", + "Please wait for the passenger to enter the car before starting the trip.": "कृपया ट्रिप शुरू करने से पहले यात्री के कार में प्रवेश करने का इंतज़ार करें।", + "No ,still Waiting.": "नहीं, अभी भी इंतज़ार कर रहा हूँ।", + "I arrive you": "मैं आपके पास पहुंच गया", + "I Arrive your site": "मैं आपकी लोकेशन पर पहुंच गया", + "You are not in near to passenger location": "आप यात्री की लोकेशन के करीब नहीं हैं", + "please go to picker location exactly": "कृपया बिल्कुल उसी लोकेशन पर जाएं जहां से उठाना है", + "You Can Cancel Trip And get Cost of Trip From": "आप ट्रिप रद्द कर सकते हैं और ट्रिप की कीमत प्राप्त कर सकते हैं से", + "Are you sure to cancel?": "क्या आप रद्द करने के लिए निश्चित हैं?", + "Insert Emergincy Number": "आपातकालीन नंबर दर्ज करें", + "Best choice for comfort car and flexible route and stops point": "आरामदायक कार और लचीले रास्ते और स्टॉप पॉइंट के लिए सबसे अच्छा विकल्प", + "Insert": "दर्ज करें", + "This is for scooter or a motorcycle.": "यह स्कूटर या मोटरसाइकिल के लिए है।", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "यह ट्रिप आपके शुरुआती बिंदु से सीधे आपकी मंजिल तक एक निश्चित कीमत पर जाती है।", + "You can decline a request without any cost": "आप बिना किसी लागत के अनुरोध अस्वीकार कर सकते हैं", + "Perfect for adventure seekers who want to experience something new and exciting": "उन साहसी लोगों के लिए उत्तम जो कुछ नया अनुभव करना चाहते हैं", + "My current location is:": "मेरी वर्तमान लोकेशन है:", + "and I have a trip on": "और मेरे पास एक ट्रिप है पर", + "App with Passenger": "यात्री के साथ ऐप", + "You will be pay the cost to driver or we will get it from you on next trip": "आप ड्राइवर को कीमत चुकाएंगे या हम अगली ट्रिप पर आपसे ले लेंगे", + "Trip has Steps": "ट्रिप के चरण हैं", + "Distance from Passenger to destination is ": "यात्री से गंतव्य तक की दूरी है ", + "price is": "कीमत है", + "This ride type does not allow changes to the destination or additional stops": "इस प्रकार की सवारी गंतव्य में परिवर्तन या अतिरिक्त स्टॉप की अनुमति नहीं देती", + "This price may be changed": "यह कीमत बदल सकती है", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "कोई सिम कार्ड नहीं, कोई समस्या नहीं! हमारे ऐप के माध्यम से सीधे अपने ड्राइवर को कॉल करें।", + "This ride type allows changes, but the price may increase": "इस प्रकार की सवारी परिवर्तनों की अनुमति देती है, लेकिन कीमत बढ़ सकती है", + "Select one message": "एक संदेश चुनें", + "I'm waiting for you": "मैं आपका इंतज़ार कर रहा हूँ", + "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.": "हमने देखा कि Intaleq 100 किमी/घंटा से अधिक हो रहा है। कृपया अपनी सुरक्षा के लिए धीमा करें।", + "Warning: Intaleqing detected!": "चेतावनी: तेज गति का पता चला!", + "Please help! Contact me as soon as possible.": "कृपया मदद करें! जितनी जल्दी हो सके मुझसे संपर्क करें।", + "Share Trip Details": "ट्रिप विवरण साझा करें", + "Car Plate is ": "कार प्लेट है ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 अंक आपके लिए 300 रुपये के बराबर हैं \\nतो जाएं और अपने पैसे कमाएं", + "the 300 points equal 300 L.E": "300 अंक 300 रुपये के बराबर हैं", + "The payment was not approved. Please try again.": "भुगतान स्वीकृत नहीं हुआ। कृपया पुनः प्रयास करें।", + "Payment Failed": "भुगतान विफल हो गया", + "This is a scheduled notification.": "यह एक निर्धारित सूचना है।", + "An error occurred during the payment process.": "भुगतान प्रक्रिया के दौरान एक त्रुटि हुई।", + "The payment was approved.": "भुगतान स्वीकृत हो गया।", + "Payment Successful": "भुगतान सफल", + "No ride found yet": "अभी तक कोई सवारी नहीं मिली", + "Accept Order": "ऑर्डर स्वीकार करें", + "Bottom Bar Example": "बॉटम बार उदाहरण", + "Driver phone": "ड्राइवर का फ़ोन", + "Statistics": "सांख्यिकी", + "Origin": "मूल", + "Destination": "गंतव्य", + "Driver Name": "ड्राइवर का नाम", + "Driver Car Plate": "ड्राइवर कार प्लेट", + "Available for rides": "सवारियों के लिए उपलब्ध", + "Scan Id": "आईडी स्कैन करें", + "Camera not initilaized yet": "कैमरा अभी तक शुरू नहीं हुआ", + "Scan ID MklGoogle": "आईडी MklGoogle स्कैन करें", + "Language": "भाषा", + "Jordan": "जॉर्डन", + "USA": "अमेरीका", + "Egypt": "मिस्र", + "Turkey": "तुर्की", + "Saudi Arabia": "सऊदी अरब", + "Qatar": "कतर", + "Bahrain": "बहरीन", + "Kuwait": "कुवैत", + "But you have a negative salary of": "लेकिन आपकी नकारात्मक आय है", + "Promo Code": "प्रोमो कोड", + "Your trip distance is": "आपकी ट्रिप की दूरी है", + "Enter promo code": "प्रोमो कोड दर्ज करें", + "You have promo!": "आपके पास प्रोमो है!", + "Cost Duration": "लागत अवधि", + "Duration is": "अवधि है", + "Leave": "छोड़ें", + "Join": "शामिल हों", + "Heading your way now. Please be ready.": "अब आपके रास्ते की ओर बढ़ रहा हूँ। कृपया तैयार रहें।", + "Approaching your area. Should be there in 3 minutes.": "आपके क्षेत्र के करीब पहुँच रहा हूँ। 3 मिनट में वहां होना चाहिए।", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "यहाँ ट्रैफ़िक बहुत है। क्या आप वैकल्पिक पिकअप पॉइंट सुझा सकते हैं?", + "This ride is already taken by another driver.": "यह सवारी पहले ही किसी अन्य ड्राइवर ने ले ली है।", + "You Should be select reason.": "आपको कारण चुनना चाहिए।", + "Waiting for Driver ...": "ड्राइवर का इंतज़ार...", + "Latest Recent Trip": "नवीनतम हाल की ट्रिप", + "from your list": "आपकी सूची से", + "Do you want to change Work location": "क्या आप काम की लोकेशन बदलना चाहते हैं", + "Do you want to change Home location": "क्या आप घर की लोकेशन बदलना चाहते हैं", + "We Are Sorry That we dont have cars in your Location!": "हम क्षमा चाहते हैं कि हमारे पास आपकी लोकेशन में कारें नहीं हैं!", + "Choose from Map": "मैप से चुनें", + "Pick your ride location on the map - Tap to confirm": "मैप पर अपनी सवारी की लोकेशन चुनें - पुष्टि के लिए टैप करें", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq एक राइड-हेलिंग ऐप है जो सुरक्षित, विश्वसनीय और सुलभ है।", + "With Intaleq, you can get a ride to your destination in minutes.": "Intaleq के साथ, आप मिनटों में अपनी मंजिल तक सवारी प्राप्त कर सकते हैं।", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq सुरक्षा के लिए प्रतिबद्ध है।", + "Pick from map": "मैप से चुनें", + "No Car in your site. Sorry!": "आपकी जगह पर कोई कार नहीं। क्षमा करें!", + "Nearest Car for you about ": "आपके लिए निकटतम कार लगभग ", + "From :": "से :", + "Get Details of Trip": "ट्रिप का विवरण प्राप्त करें", + "If you want add stop click here": "यदि आप स्टॉप जोड़ना चाहते हैं तो यहां क्लिक करें", + "Where you want go ": "आप कहाँ जाना चाहते हैं ", + "My Card": "मेरा कार्ड", + "Start Record": "रिकॉर्ड शुरू करें", + "History of Trip": "ट्रिप का इतिहास", + "Helping Center": "सहायता केंद्र", + "Record saved": "रिकॉर्ड सहेजा गया", + "Trips recorded": "ट्रिप्स रिकॉर्ड की गईं", + "Select 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.": "यह सुनिश्चित करने के लिए कि आपको अपनी लोकेशन के लिए सबसे सटीक जानकारी मिले, कृपया अपना देश चुनें।", + "Are you sure to delete recorded files": "क्या आप वाकई रिकॉर्ड की गई फ़ाइलें हटाना चाहते हैं", + "Select recorded trip": "रिकॉर्ड की गई ट्रिप चुनें", + "Card Number": "कार्ड नंबर", + "Hi, Where to ": "नमस्ते, कहाँ जाना है ", + "Pick your destination from Map": "मैप से अपनी मंजिल चुनें", + "Add Stops": "स्टॉप्स जोड़ें", + "Get Direction": "दिशा प्राप्त करें", + "Add Location": "लोकेशन जोड़ें", + "Switch Rider": "राइडर बदलें", + "You will arrive to your destination after timer end.": "टाइमर समाप्त होने के बाद आप अपनी मंजिल पर पहुंच जाएंगे।", + "You can cancel trip": "आप ट्रिप रद्द कर सकते हैं", + "The driver waitting you in picked location .": "ड्राइवर पिक की गई लोकेशन पर आपका इंतज़ार कर रहा है।", + "Pay with Your": "अपने साथ भुगतान करें", + "Pay with Credit Card": "क्रेडिट कार्ड से भुगतान करें", + "Show Promos to Charge": "चार्ज करने के लिए प्रोमो दिखाएं", + "Point": "अंक", + "How many hours would you like to wait?": "आप कितने घंटे इंतज़ार करना चाहेंगे?", + "Driver Wallet": "ड्राइवर वॉलेट", + "Choose between those Type Cars": "उन प्रकार की कारों के बीच चुनें", + "hour": "घंटा", + "Select Waiting Hours": "प्रतीक्षा के घंटे चुनें", + "Total Points is": "कुल अंक हैं", + "You will receive a code in SMS message": "आपको SMS संदेश में एक कोड प्राप्त होगा", + "Done": "हो गया", + "Total Budget from trips is ": "ट्रिप्स से कुल बजट है ", + "Total Amount:": "कुल राशि:", + "Total Budget from trips by\\nCredit card is ": "क्रेडिट कार्ड द्वारा ट्रिप्स से\\nकुल बजट है ", + "This amount for all trip I get from Passengers": "यह राशि सभी ट्रिप के लिए जो मुझे यात्रियों से मिलती है", + "Pay from my budget": "मेरे बजट से भुगतान करें", + "This amount for all trip I get from Passengers and Collected For me in": "यह राशि सभी ट्रिप के लिए जो मुझे यात्रियों से मिलती है और मेरे लिए एकत्र की गई है", + "You can buy points from your budget": "आप अपने बजट से अंक खरीद सकते हैं", + "insert amount": "राशि डालें", + "You can buy Points to let you online\\nby this list below": "आप ऑनलाइन रहने के लिए अंक खरीद सकते हैं\\nनीचे दी गई इस सूची द्वारा", + "Create Wallet to receive your money": "अपना पैसा प्राप्त करने के लिए वॉलेट बनाएं", + "Enter your feedback here": "अपना फीडबैक यहाँ दर्ज करें", + "Please enter your feedback.": "कृपया अपना फीडबैक दर्ज करें।", + "Feedback": "फीडबैक", + "Submit ": "जमा करें ", + "Click here to Show it in Map": "इसे मैप में दिखाने के लिए यहां क्लिक करें", + "Canceled": "रद्द", + "No I want": "नहीं मैं चाहता हूँ", + "Email is": "ईमेल है:", + "Phone Number is": "फ़ोन नंबर है:", + "Date of Birth is": "जन्म तिथि है:", + "Sex is ": "लिंग है: ", + "Car Details": "कार विवरण", + "VIN is": "VIN है:", + "Color is ": "रंग है: ", + "Make is ": "मेक है: ", + "Model is": "मॉडल है:", + "Year is": "वर्ष है:", + "Expiration Date ": "समाप्ति तिथि: ", + "Edit Your data": "अपना डेटा संपादित करें", + "write vin for your car": "अपनी कार के लिए vin लिखें", + "VIN": "VIN", + "Please verify your identity": "कृपया अपनी पहचान सत्यापित करें", + "write Color for your car": "अपनी कार के लिए रंग लिखें", + "write Make for your car": "अपनी कार के लिए मेक लिखें", + "write Model for your car": "अपनी कार के लिए मॉडल लिखें", + "write Year for your car": "अपनी कार के लिए वर्ष लिखें", + "write Expiration Date for your car": "अपनी कार के लिए समाप्ति तिथि लिखें", + "Tariffs": "टैरिफ", + "Minimum fare": "न्यूनतम किराया", + "Maximum fare": "अधिकतम किराया", + "Flag-down fee": "फ्लैग-डाउन फीस", + "Including Tax": "टैक्स सहित", + "BookingFee": "बुकिंग फीस", + "Morning": "सुबह", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 से 10:30 तक", + "Evening": "शाम", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 से 15:00 तक", + "Night": "रात", + "You have in account": "आपके खाते में है", + "Select Country": "देश चुनें", + "Ride Today : ": "आज की सवारी: ", + "from 23:59 till 05:30": "23:59 से 05:30 तक", + "Rate Driver": "ड्राइवर को रेट करें", + "Total Cost is ": "कुल कीमत है ", + "Write note": "नोट लिखें", + "Time to arrive": "पहुंचने का समय", + "Ride Summaries": "सवारी के सारांश", + "Total Cost": "कुल कीमत", + "Average of Hours of": "घंटों का औसत", + " is ON for this month": " इस महीने के लिए ऑन है", + "Days": "दिन", + "Total Hours on month": "महीने में कुल घंटे", + "Counts of Hours on days": "दिनों में घंटों की गिनती", + "OrderId": "ऑर्डर आईडी", + "created time": "बनाने का समय", + "Intaleq Over": "Intaleq समाप्त", + "I will slow down": "मैं धीमा हो जाऊंगा", + "Map Passenger": "मानचित्र यात्री", + "Be Slowly": "धीरे रहें", + "If you want to make Google Map App run directly when you apply order": "यदि आप चाहते हैं कि जब आप ऑर्डर लागू करें तो गूगल मैप ऐप सीधे चले", + "You can change the language of the app": "आप ऐप की भाषा बदल सकते हैं", + "Your Budget less than needed": "आपका बजट आवश्यकता से कम है", + "You can change the Country to get all features": "आप सभी सुविधाएँ प्राप्त करने के लिए देश बदल सकते हैं", + "There is no Car or Driver in your area.": "आपके क्षेत्र में कोई कार या ड्राइवर नहीं है।", + "Change Country": "देश बदलें" + }, + "ru": { + "About Intaleq": "Об Intaleq", + "Chat with us anytime": "Пишите нам в любое время", + "Direct talk with our team": "Прямой разговор с нашей командой", + "Email Support": "Поддержка по электронной почте", + "For official inquiries": "Для официальных запросов", + "Intaleq Support": "Поддержка Intaleq", + "Reach out to us via": "Свяжитесь с нами через", + "Support is Away": "Поддержка сейчас недоступна", + "Support is currently Online": "Поддержка сейчас онлайн", + "Voice Call": "Голосовой звонок", + "We're here to help you 24/7": "Мы готовы помочь вам 24/7", + "Working Hours:": "Рабочие часы:", + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "Позже отменить нельзя!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "Привет! Приглашаю попробовать Intaleq.", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "Сирия", + "SYP": "SYP", + "Order": "Заказ", + "OrderVIP": "VIP Заказ", + "Cancel Trip": "Отменить поездку", + "Passenger Cancel Trip": "Пассажир отменил поездку", + "VIP Order": "VIP Заказ", + "The driver accepted your trip": "Водитель принял ваш заказ", + "message From passenger": "Сообщение от пассажира", + "Cancel": "Отмена", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Поездка отменена. Стоимость возвращена на ваш кошелек.", + "token change": "Смена токена", + "Changed my mind": "Я передумал", + "Please write the reason...": "Пожалуйста, напишите причину...", + "Found another transport": "Нашел другой транспорт", + "Driver is taking too long": "Водитель едет слишком долго", + "Driver asked me to cancel": "Водитель попросил меня отменить", + "Wrong pickup location": "Неверное место подачи", + "Other": "Другой", + "Don't Cancel": "Не отменять", + "No Drivers Found": "Водители не найдены", + "Sorry, there are no cars available of this type right now.": "Извините, сейчас нет доступных машин этого типа.", + "Refresh Map": "Обновить карту", + "face detect": "Распознавание лица", + "Face Detection Result": "Результат распознавания", + "similar": "Похож", + "not similar": "Не похож", + "Searching for nearby drivers...": "Поиск водителей поблизости...", + "Error": "Ошибка", + "Failed to search, please try again later": "Ошибка поиска, попробуйте еще раз позже", + "Connection Error": "Ошибка подключения", + "Please check your internet connection": "Пожалуйста, проверьте интернет-соединение", + "Sorry 😔": "Извините 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "Водитель отменил поездку по экстренной причине.\\nХотите немедленно найти другого водителя?", + "Search for another driver": "Найти другого водителя", + "We apologize 😔": "Мы приносим извинения 😔", + "No drivers found at the moment.\\nPlease try again later.": "В данный момент водителей не найдено.\\nПожалуйста, попробуйте еще раз позже.", + "Hi ,I will go now": "Здравствуйте, я выезжаю", + "Passenger come to you": "Пассажир идет к вам", + "Call Income": "Входящий вызов", + "Call Income from Passenger": "Вызов от пассажира", + "Criminal Document Required": "Требуется справка о несудимости", + "You should have upload it .": "Вы должны загрузить её.", + "Call End": "Вызов завершен", + "The order has been accepted by another driver.": "Заказ принят другим водителем.", + "The order Accepted by another Driver": "Заказ принят другим водителем", + "We regret to inform you that another driver has accepted this order.": "К сожалению, этот заказ принял другой водитель.", + "Driver Applied the Ride for You": "Водитель создал поездку для вас", + "Applied": "Создан", + "Please go to Car Driver": "Пожалуйста, пройдите к водителю", + "Ok I will go now.": "Хорошо, иду.", + "Accepted Ride": "Принятая поездка", + "Driver Accepted the Ride for You": "Водитель принял поездку для вас", + "Promo": "Промокод", + "Show latest promo": "Показать промокоды", + "Trip Monitoring": "Мониторинг поездки", + "Driver Is Going To Passenger": "Водитель едет к пассажиру", + "Please stay on the picked point.": "Пожалуйста, оставайтесь в точке посадки.", + "message From Driver": "Сообщение от водителя", + "Trip is Begin": "Поездка началась", + "Cancel Trip from driver": "Отмена поездки водителем", + "We will look for a new driver.\\nPlease wait.": "Ищем нового водителя.\\nПодождите.", + "The driver canceled your ride.": "Водитель отменил поездку.", + "Driver Finish Trip": "Водитель завершил поездку", + "you will pay to Driver": "К оплате водителю", + "Don’t forget your personal belongings.": "Не забудьте личные вещи.", + "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": "Проверьте вещи и баланс кошелька перед выходом. Спасибо за выбор Intaleq.", + "Finish Monitor": "Завершить", + "Trip finished": "Поездка завершена", + "Call Income from Driver": "Звонок от водителя", + "Driver Cancelled Your Trip": "Водитель отменил вашу поездку", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "Оплата за время водителя, см. кошелек Intaleq", + "Order Applied": "Заказ принят", + "welcome to intaleq": "Добро пожаловать в Intaleq", + "login or register subtitle": "Введите номер телефона для входа или регистрации", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Нельзя подать жалобу на эту поездку. Возможно, она не завершена или не начата.", + "phone number label": "Номер телефона", + "phone number required": "Требуется номер телефона", + "send otp button": "Отправить код", + "verify your number title": "Подтверждение номера", + "otp sent subtitle": "5-значный код отправлен на\\n@phoneNumber", + "verify and continue button": "Подтвердить и продолжить", + "enter otp validation": "Введите 5-значный код", + "one last step title": "Последний шаг", + "complete profile subtitle": "Заполните профиль для начала", + "first name label": "Имя", + "first name required": "Имя обязательно", + "last name label": "Фамилия", + "Verify OTP": "Проверка кода", + "Verification Code": "Код подтверждения", + "We have sent a verification code to your mobile number:": "Мы отправили код подтверждения на ваш номер:", + "Verify": "Подтвердить", + "Resend Code": "Отправить снова", + "You can resend in": "Отправить снова через", + "seconds": "сек", + "Please enter the complete 6-digit code.": "Введите полный 6-значный код.", + "last name required": "Фамилия обязательна", + "email optional label": "Email (необязательно)", + "complete registration button": "Завершить регистрацию", + "User with this phone number or email already exists.": "Пользователь с таким номером или email уже существует.", + "otp sent success": "Код отправлен в WhatsApp.", + "failed to send otp": "Не удалось отправить код.", + "server error try again": "Ошибка сервера, попробуйте снова.", + "an error occurred": "Произошла ошибка: @error", + "otp verification failed": "Неверный код.", + "registration failed": "Ошибка регистрации.", + "welcome user": "Добро пожаловать, @firstName!", + "Don't forget your personal belongings.": "Не забудьте личные вещи.", + "Share App": "Поделиться приложением", + "Wallet": "Кошелек", + "Balance": "Баланс", + "Profile": "Профиль", + "Contact Support": "Поддержка", + "Session expired. Please log in again.": "Сессия истекла. Войдите снова.", + "Security Warning": "⚠️ Угроза безопасности", + "Potential security risks detected. The application may not function correctly.": "Обнаружены риски безопасности. Приложение может работать некорректно.", + "please order now": "Заказать сейчас", + "Where to": "Куда едем?", + "Where are you going?": "Куда вы направляетесь?", + "Quick Actions": "Быстрые действия", + "My Balance": "Мой баланс", + "Order History": "История заказов", + "Contact Us": "Связаться с нами", + "Driver": "Водитель", + "Complaint": "Жалоба", + "Promos": "Промоакции", + "Recent Places": "Недавние места", + "From": "Откуда", + "WhatsApp Location Extractor": "Локация из WhatsApp", + "Location Link": "Ссылка на локацию", + "Paste location link here": "Вставьте ссылку здесь", + "Go to this location": "Перейти к локации", + "Paste WhatsApp location link": "Вставьте ссылку WhatsApp", + "Select Order Type": "Тип заказа", + "Choose who this order is for": "Для кого этот заказ", + "I want to order for myself": "Заказать для себя", + "I want to order for someone else": "Заказать другому человеку", + "Order for someone else": "Заказ другому", + "Order for myself": "Заказ себе", + "Are you want to go this site": "Вы хотите поехать сюда?", + "No": "Нет", + "Intaleq Wallet": "Кошелек Intaleq", + "Have a promo code?": "Есть промокод?", + "Your Wallet balance is ": "Ваш баланс: ", + "Cash": "Наличные", + "Pay directly to the captain": "Оплата водителю напрямую", + "Top up Wallet to continue": "Пополните кошелек для продолжения", + "Or pay with Cash instead": "Или оплатите наличными", + "Confirm & Find a Ride": "Подтвердить и найти", + "Balance:": "Баланс:", + "Alerts": "Уведомления", + "Welcome Back!": "С возвращением!", + "Current Balance": "Текущий баланс", + "Set Wallet Phone Number": "Номер для кошелька", + "Link a phone number for transfers": "Привязать номер для переводов", + "Payment History": "История платежей", + "View your past transactions": "Просмотр транзакций", + "Top up Wallet": "Пополнить кошелек", + "Add funds using our secure methods": "Пополнить безопасным способом", + "Increase Fare": "Повысить цену", + "No drivers accepted your request yet": "Никто еще не принял заказ", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Повышение цены привлечет водителей. Повысить?", + "Please make sure not to leave any personal belongings in the car.": "Убедитесь, что не оставили вещи в машине.", + "Cancel Ride": "Отмена", + "Route Not Found": "Маршрут не найден", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "Не удалось построить маршрут. Выберите другую точку.", + "You can call or record audio during this trip.": "Вы можете звонить или вести запись во время поездки.", + "Warning: Speeding detected!": "Внимание: Превышение скорости!", + "Comfort": "Комфорт", + "Intaleq Balance": "Баланс Intaleq", + "Electric": "Электро", + "Lady": "Женский", + "Van": "Минивэн", + "Rayeh Gai": "Туда-обратно", + "Join Intaleq as a driver using my referral code!": "Стань водителем Intaleq с моим кодом!", + "Use code:": "Код:", + "Download the Intaleq Driver app now and earn rewards!": "Скачай Intaleq Driver и получай бонусы!", + "Get a discount on your first Intaleq ride!": "Скидка на первую поездку в Intaleq!", + "Use my referral code:": "Используй мой код:", + "Download the Intaleq app now and enjoy your ride!": "Скачай Intaleq и наслаждайся поездкой!", + "Contacts Loaded": "Контакты загружены", + "Showing": "Показано", + "of": "из", + "Customer not found": "Клиент не найден", + "Wallet is blocked": "Кошелек заблокирован", + "Customer phone is not active": "Телефон клиента не активен", + "Balance not enough": "Недостаточно средств", + "Balance limit exceeded": "Лимит баланса превышен", + "Incorrect sms code": "⚠️ Неверный СМС код.", + "contacts. Others were hidden because they don't have a phone number.": "контактов. Остальные скрыты (нет номера).", + "No contacts found": "Контакты не найдены", + "No contacts with phone numbers were found on your device.": "На устройстве нет контактов с номерами.", + "Permission denied": "Доступ запрещен", + "Contact permission is required to pick contacts": "Нужен доступ к контактам.", + "An error occurred while picking contacts:": "Ошибка при выборе контактов:", + "Please enter a correct phone": "Введите корректный номер", + "Success": "Успешно", + "Invite sent successfully": "Приглашение отправлено", + "Use my invitation code to get a special gift on your first ride!": "Используй мой код для подарка на первую поездку!", + "Your personal invitation code is:": "Твой код приглашения:", + "Be sure to use it quickly! This code expires at": "Используй быстрее! Код истекает", + "Download the app now:": "Скачай приложение:", + "See you on the road!": "До встречи в пути!", + "This phone number has already been invited.": "Этот номер уже приглашен.", + "An unexpected error occurred. Please try again.": "Неожиданная ошибка. Попробуйте снова.", + "You deserve the gift": "Вы заслужили подарок", + "Claim your 20 LE gift for inviting": "Заберите 20 ₽ за приглашение", + "You have got a gift for invitation": "Вы получили подарок за приглашение", + "You have earned 20": "Вы заработали 20", + "LE": "₽", + "Vibration feedback for all buttons": "Вибрация кнопок", + "Share with friends and earn rewards": "Делись с друзьями и получай бонусы", + "Gift Already Claimed": "Подарок уже получен", + "You have already received your gift for inviting": "Вы уже получили подарок за это приглашение", + "Keep it up!": "Так держать!", + "has completed": "завершил", + "trips": "поездок", + "Personal Information": "Личная информация", + "Name": "Имя", + "Not set": "Не задано", + "Gender": "Пол", + "Education": "Образование", + "Work & Contact": "Работа и Контакты", + "Employment Type": "Тип занятости", + "Marital Status": "Семейное положение", + "SOS Phone": "SOS номер", + "Sign Out": "Выйти", + "Delete My Account": "Удалить аккаунт", + "Update Gender": "Обновить пол", + "Update": "Обновить", + "Update Education": "Обновить образование", + "Are you sure? This action cannot be undone.": "Вы уверены? Это действие необратимо.", + "Confirm your Email": "Подтвердите Email", + "Type your Email": "Введите Email", + "Delete Permanently": "Удалить навсегда", + "Male": "Мужской", + "Female": "Женский", + "High School Diploma": "Среднее образование", + "Associate Degree": "Среднее специальное", + "Bachelor's Degree": "Бакалавр", + "Master's Degree": "Магистр", + "Doctoral Degree": "Доктор наук", + "Select your preferred language for the app interface.": "Выберите язык интерфейса.", + "Language Options": "Языки", + "You can claim your gift once they complete 2 trips.": "Вы получите подарок, когда они совершат 2 поездки.", + "Closest & Cheapest": "Ближайший и Дешевый", + "Comfort choice": "Комфорт", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Современный, тихий электромобиль. Премиальный и экологичный выбор.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Просторный минивэн для семей и групп. Комфортно, безопасно и выгодно.", + "Quiet & Eco-Friendly": "Тихий и Экологичный", + "Lady Captain for girls": "Женский тариф для девушек", + "Van for familly": "Минивэн для семьи", + "Are you sure to delete this location?": "Удалить это местоположение?", + "Submit a Complaint": "Подать жалобу", + "Submit Complaint": "Отправить жалобу", + "No trip history found": "История пуста", + "Your past trips will appear here.": "Здесь будут ваши прошлые поездки.", + "1. Describe Your Issue": "1. Опишите проблему", + "Enter your complaint here...": "Введите текст жалобы...", + "2. Attach Recorded Audio": "2. Прикрепить аудио", + "No audio files found.": "Аудиофайлы не найдены.", + "Confirm Attachment": "Подтвердить вложение", + "Attach this audio file?": "Прикрепить этот файл?", + "Uploaded": "Загружено", + "3. Review Details & Response": "3. Просмотр деталей", + "Date": "Дата", + "Today's Promos": "Промоакции сегодня", + "No promos available right now.": "Нет доступных акций.", + "Check back later for new offers!": "Заходите позже!", + "Valid Until:": "Действует до:", + "CODE": "КОД", + "I Agree": "Согласен", + "Continue": "Продолжить", + "Enable Location": "Включить геолокацию", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Нам нужно знать ваше местоположение, чтобы найти ближайших водителей.", + "Allow Location Access": "Разрешить доступ", + "Welcome to Intaleq!": "Добро пожаловать в Intaleq!", + "Before we start, please review our terms.": "Пожалуйста, ознакомьтесь с условиями.", + "Your journey starts here": "Ваша поездка начинается здесь", + "Cancel Search": "Отменить поиск", + "Set pickup location": "Указать место посадки", + "Move the map to adjust the pin": "Двигайте карту, чтобы установить метку", + "Searching for the nearest captain...": "Поиск ближайшего водителя...", + "No one accepted? Try increasing the fare.": "Никто не принял? Попробуйте повысить цену.", + "Increase Your Trip Fee (Optional)": "Повысить стоимость (Опционально)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Водители не найдены. Попробуйте повысить цену, чтобы привлечь их.", + "No, thanks": "Нет, спасибо", + "Increase Fee": "Повысить цену", + "Copy": "Копировать", + "Promo Copied!": "Промокод скопирован!", + "Code": "Код", + "Send Intaleq app to him": "Отправить ему приложение Intaleq", + "No passenger found for the given phone number": "Пассажир не найден", + "No user found for the given phone number": "Пользователь не найден", + "This price is": "Цена:", + "Work": "Работа", + "Add Home": "Добавить Дом", + "Notifications": "Уведомления", + "💳 Pay with Credit Card": "💳 Оплата картой", + "⚠️ You need to choose an amount!": "⚠️ Выберите сумму!", + "💰 Pay with Wallet": "💰 Оплата кошельком", + "You must restart the app to change the language.": "Перезапустите приложение для смены языка.", + "joined": "присоединился", + "Driver joined the channel": "Водитель в чате", + "Driver left the channel": "Водитель покинул чат", + "Call Page": "Звонок", + "Call Left": "Осталось звонков", + " Next as Cash !": " Далее наличными!", + "To use Wallet charge it": "Пополните кошелек", + "We are searching for the nearest driver to you": "Ищем ближайшего водителя", + "Best choice for cities": "Лучший выбор для города", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Туда-обратно: Удобные поездки между городами.", + "This trip is for women only": "Только для женщин", + "Total budgets on month": "Бюджет за месяц", + "You have call from driver": "Звонок от водителя", + "Intaleq": "Intaleq", + "passenger agreement": "соглашение пассажира", + "To become a passenger, you must review and agree to the ": "Чтобы стать пассажиром, примите ", + "agreement subtitle": "Для продолжения примите Условия и Политику.", + "terms of use": "условия использования", + " and acknowledge our Privacy Policy.": " и Политику конфиденциальности.", + "and acknowledge our": "и принять", + "privacy policy": "политику конфиденциальности.", + "i agree": "согласен", + "Driver already has 2 trips within the specified period.": "У водителя уже 2 поездки в этот период.", + "The invitation was sent successfully": "Приглашение отправлено", + "You should select your country": "Выберите страну", + "Scooter": "Самокат", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Поездка по предзаказу, выбор лучших водителей и авто.", + "Mishwar Vip": "Mishwar VIP", + "The driver waiting you in picked location .": "Водитель ждет вас.", + "About Us": "О нас", + "You can change the vibration feedback for all buttons": "Настройка вибрации кнопок", + "Most Secure Methods": "Безопасные методы", + "In-App VOIP Calls": "Звонки в приложении", + "Recorded Trips for Safety": "Запись поездок для безопасности", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nМы предлагаем доступные цены.", + "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 — безопасное и доступное такси.", + "Sign In by Apple": "Войти через Apple", + "Sign In by Google": "Войти через Google", + "How do I request a ride?": "Как заказать поездку?", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Инструкция по заказу поездки.", + "What types of vehicles are available?": "Какие авто доступны?", + "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.": "Эконом, Комфорт и Люкс.", + "How can I pay for my ride?": "Как платить?", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Наличные или карта.", + "Can I cancel my ride?": "Могу я отменить?", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Да, вы можете отменить поездку при определенных условиях (например, до назначения водителя). Подробности см. в правилах отмены Intaleq.", + "Driver Registration & Requirements": "Регистрация водителя", + "How can I register as a driver?": "Как стать водителем?", + "What are the requirements to become a driver?": "Требования к водителю?", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Посетите сайт или напишите в поддержку.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Чат в приложении.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Мы ценим безопасность: проверка водителей, трекинг.", + "Frequently Questions": "Частые вопросы", + "User does not exist.": "Пользователь не существует.", + "We need your phone number to contact you and to help you.": "Нам нужен ваш номер для связи.", + "You will recieve code in sms message": "Вы получите код по СМС", + "Please enter": "Введите", + "We need your phone number to contact you and to help you receive orders.": "Нам нужен номер для заказов.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "ФИО в справке не совпадает с правами.", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Номер паспорта не совпадает.", + "Capture an Image of Your Criminal Record": "Сфотографируйте справку о несудимости", + "IssueDate": "Дата выдачи", + "Capture an Image of Your car license front": "Сфотографируйте СТС (лицевая)", + "Capture an Image of Your ID Document front": "Сфотографируйте паспорт (лицевая)", + "NationalID": "Серия и номер паспорта", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Делись и зарабатывай.", + "FullName": "ФИО", + "No invitation found yet!": "Приглашения не найдены!", + "InspectionResult": "Результат осмотра", + "Criminal Record": "Справка о несудимости", + "The email or phone number is already registered.": "Email или телефон уже зарегистрирован.", + "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.": "Загрузите права, паспорт и СТС. Проверка займет 2-3 минуты.", + "Documents check": "Проверка документов", + "Driver's License": "Водительское удостоверение", + "for your first registration!": "за первую регистрацию!", + "Get it Now!": "Получить!", + "before": "до", + "Code not approved": "Код не принят", + "3000 LE": "3000 ₽", + "Do you have an invitation code from another driver?": "У вас есть код приглашения?", + "Paste the code here": "Вставьте код", + "No, I don't have a code": "Нет кода", + "Audio uploaded successfully.": "Аудио загружено.", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Идеально для новых авто и свободы маршрута", + "Share this code with your friends and earn rewards when they use it!": "Поделись кодом и заработай!", + "Enter phone": "Введите телефон", + "complete, you can claim your gift": "готово, заберите подарок", + "When": "Когда", + "Enter driver's phone": "Введите телефон водителя", + "Send Invite": "Отправить", + "Show Invitations": "Показать приглашения", + "License Type": "Тип прав", + "National Number": "Номер паспорта", + "Name (Arabic)": "Имя (Местное)", + "Name (English)": "Имя (Англ)", + "Address": "Адрес", + "Issue Date": "Дата выдачи", + "Expiry Date": "Действует до", + "License Categories": "Категории", + "driver_license": "права", + "Capture an Image of Your Driver License": "Сфотографируйте права", + "ID Documents Back": "Оборотная сторона паспорта", + "National ID": "Паспорт", + "Occupation": "Профессия", + "Religion": "Религия", + "Full Name (Marital)": "ФИО", + "Expiration Date": "Дата окончания", + "Capture an Image of Your ID Document Back": "Сфотографируйте оборот паспорта", + "ID Documents Front": "Лицевая сторона паспорта", + "First Name": "Имя", + "CardID": "ID карты", + "Vehicle Details Front": "Авто спереди", + "Plate Number": "Госномер", + "Owner Name": "Владелец", + "Vehicle Details Back": "Авто сзади", + "Make": "Марка", + "Model": "Модель", + "Year": "Год", + "Chassis": "VIN/Шасси", + "Color": "Цвет", + "Displacement": "Объем", + "Fuel": "Топливо", + "Tax Expiry Date": "Окончание налога", + "Inspection Date": "Техосмотр", + "Capture an Image of Your car license back": "Сфотографируйте СТС (оборот)", + "Capture an Image of Your Driver's License": "Сфотографируйте права", + "Sign in with Google for easier email and name entry": "Вход через Google", + "You will choose allow all the time to be ready receive orders": "Выберите 'Всегда разрешать' для приема заказов", + "Get to your destination quickly and easily.": "Доберитесь быстро и легко.", + "Enjoy a safe and comfortable ride.": "Наслаждайтесь безопасностью.", + "Choose Language": "Язык", + "Pay with Wallet": "Кошельком", + "Invalid MPIN": "Неверный MPIN", + "Invalid OTP": "Неверный код", + "Enter your email address": "Введите email", + "Please enter Your Email.": "Пожалуйста, введите email.", + "Enter your phone number": "Введите номер", + "Please enter your phone number.": "Пожалуйста, введите номер.", + "Please enter Your Password.": "Введите пароль.", + "if you dont have account": "нет аккаунта?", + "Register": "Регистрация", + "Accept Ride's Terms & Review Privacy Notice": "Принять условия", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Нажимая 'Согласен', я принимаю условия. Мне 18+.", + "First name": "Имя", + "Enter your first name": "Введите имя", + "Please enter your first name.": "Введите имя.", + "Last name": "Фамилия", + "Enter your last name": "Введите фамилию", + "Please enter your last name.": "Введите фамилию.", + "City": "Город", + "Please enter your City.": "Введите город.", + "Verify Email": "Подтвердить Email", + "We sent 5 digit to your Email provided": "Отправили 5 цифр на email", + "5 digit": "5 цифр", + "Send Verification Code": "Отправить код", + "Your Ride Duration is ": "Длительность: ", + "You will be thier in": "Прибытие через", + "You trip distance is": "Дистанция:", + "Fee is": "Сбор:", + "From : ": "От: ", + "To : ": "Куда: ", + "Add Promo": "Добавить промо", + "Confirm Selection": "Подтвердить", + "distance is": "дистанция", + "Privacy Policy": "Политика конфиденциальности", + "Intaleq LLC": "Intaleq LLC", + "Syria'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.": "Сервис такси в России.", + "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 соединяет вас с ближайшими водителями.", + "Why Choose Intaleq?": "Почему Intaleq?", + "Closest to You": "Ближе всего", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Быстрая подача.", + "Uncompromising Security": "Безопасность", + "Lady Captains Available": "Женщины-водители", + "Recorded Trips (Voice & AI Analysis)": "Запись поездок", + "Fastest Complaint Response": "Быстрая поддержка", + "Our dedicated customer service team ensures swift resolution of any issues.": "Быстрое решение проблем.", + "Affordable for Everyone": "Доступно всем", + "Frequently Asked Questions": "Частые вопросы", + "Getting Started": "Начало", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Откройте приложение, введите адрес и закажите.", + "Vehicle Options": "Автомобили", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Эконом, Комфорт, Люкс.", + "Payments": "Оплата", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Наличные или карта.", + "Ride Management": "Управление", + "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "Да, возможна комиссия за отмену.", + "For Drivers": "Водителям", + "Driver Registration": "Регистрация", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Посетите сайт.", + "Visit Website/Contact Support": "Сайт/Поддержка", + "Close": "Закрыть", + "We are searching for the nearest driver": "Поиск водителя", + "Communication": "Связь", + "How do I communicate with the other party (passenger/driver)?": "Как связаться?", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Через чат.", + "Safety & Security": "Безопасность", + "What safety measures does Intaleq offer?": "Какие меры безопасности?", + "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.": "Проверка водителей, трекинг.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Выгодные цены.", + "Variety of Trip Choices": "Выбор поездок", + "Choose the trip option that perfectly suits your needs and preferences.": "Выберите подходящий вариант.", + "Your Choice, Our Priority": "Ваш выбор - приоритет", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Гибкий выбор.", + "duration is": "длительность", + "Setting": "Настройка", + "Find answers to common questions": "Ответы на вопросы", + "I don't need a ride anymore": "Больше не нужно", + "I was just trying the application": "Я просто пробовал", + "No driver accepted my request": "Никто не принял заказ", + "I added the wrong pick-up/drop-off location": "Неверный адрес", + "I don't have a reason": "Нет причины", + "Can we know why you want to cancel Ride ?": "Почему отменяете?", + "Add Payment Method": "Добавить метод оплаты", + "Ride Wallet": "Кошелек", + "Payment Method": "Метод оплаты", + "Type here Place": "Введите место", + "Are You sure to ride to": "Едем сюда?", + "Confirm": "Подтвердить", + "You are Delete": "Удаление", + "Deleted": "Удалено", + "You Dont Have Any places yet !": "Нет сохраненных мест!", + "From : Current Location": "От: Текущее место", + "My Cared": "Мои карты", + "Add Card": "Добавить карту", + "Add Credit Card": "Добавить кредитку", + "Please enter the cardholder name": "Имя владельца", + "Please enter the expiry date": "Срок действия", + "Please enter the CVV code": "CVV код", + "Go To Favorite Places": "В избранное", + "Go to this Target": "К этой цели", + "My Profile": "Профиль", + "Are you want to go to this site": "Хотите поехать сюда?", + "MyLocation": "Моя локация", + "my location": "моя локация", + "Target": "Цель", + "You Should choose rate figure": "Поставьте оценку", + "Login Captin": "Вход для водителя", + "Register Captin": "Регистрация водителя", + "Send Verfication Code": "Отправить код", + "KM": "КМ", + "End Ride": "Завершить", + "Minute": "Мин", + "Go to passenger Location now": "К пассажиру", + "Duration of the Ride is ": "Длительность: ", + "Distance of the Ride is ": "Дистанция: ", + "Name of the Passenger is ": "Имя пассажира: ", + "Hello this is Captain": "Привет, это водитель", + "Start the Ride": "Начать", + "Please Wait If passenger want To Cancel!": "Ждите, вдруг отмена!", + "Total Duration:": "Всего времени:", + "Active Duration:": "Активное время:", + "Waiting for Captin ...": "Ждем водителя...", + "Age is ": "Возраст: ", + "Rating is ": "Рейтинг: ", + " to arrive you.": " чтобы прибыть.", + "Tariff": "Тариф", + "Settings": "Настройки", + "Feed Back": "Отзыв", + "Please enter a valid 16-digit card number": "Введите 16 цифр карты", + "Add Phone": "Добавить телефон", + "Please enter a phone number": "Введите номер", + "You dont Add Emergency Phone Yet!": "Нет экстренного номера!", + "You will arrive to your destination after ": "Прибытие через ", + "You can cancel Ride now": "Можно отменить", + "You Can cancel Ride After Captain did not come in the time": "Можно отменить при опоздании водителя", + "If you in Car Now. Press Start The Ride": "Если вы в машине, нажмите Начать", + "You Dont Have Any amount in": "Нет средств в", + "Wallet!": "Кошелек!", + "You Have": "У вас есть", + "Save Credit Card": "Сохранить карту", + "Show Promos": "Показать промо", + "10 and get 4% discount": "10 и скидка 4%", + "20 and get 6% discount": "20 и скидка 6%", + "40 and get 8% discount": "40 и скидка 8%", + "100 and get 11% discount": "100 и скидка 11%", + "Pay with Your PayPal": "Оплата PayPal", + "You will choose one of above !": "Выберите вариант!", + "Edit Profile": "Редактировать", + "Copy this Promo to use it in your Ride!": "Скопируйте промокод!", + "To change some Settings": "Изменить настройки", + "Order Request Page": "Страница заказа", + "Rouats of Trip": "Маршруты", + "Passenger Name is ": "Пассажир: ", + "Total From Passenger is ": "Сумма от пассажира: ", + "Duration To Passenger is ": "Время до пассажира: ", + "Distance To Passenger is ": "Расстояние до пассажира: ", + "Total For You is ": "Всего вам: ", + "Distance is ": "Дистанция: ", + " KM": " КМ", + "Duration of Trip is ": "Длительность: ", + " Minutes": " Мин", + "Apply Order": "Принять", + "Refuse Order": "Отклонить", + "Rate Captain": "Оценить водителя", + "Enter your Note": "Заметка", + "Type something...": "Напишите...", + "Submit rating": "Отправить", + "Rate Passenger": "Оценить пассажира", + "Ride Summary": "Итог", + "welcome_message": "Добро пожаловать в Intaleq!", + "app_description": "Безопасное такси.", + "get_to_destination": "Быстро добраться.", + "get_a_ride": "Машина за минуты.", + "safe_and_comfortable": "Безопасно и комфортно.", + "committed_to_safety": "Мы за безопасность.", + "your ride is Accepted": "Заказ принят", + "Driver is waiting at pickup.": "Водитель ждет.", + "Driver is on the way": "Водитель в пути", + "Contact Options": "Контакты", + "Send a custom message": "Свое сообщение", + "Type your message": "Введите сообщение", + "I will go now": "Выезжаю", + "You Have Tips": "Есть чаевые", + " tips\\nTotal is": " чаевые\\nВсего", + "Your fee is ": "Сбор: ", + "Do you want to pay Tips for this Driver": "Оставить чаевые?", + "Tip is ": "Чаевые: ", + "Are you want to wait drivers to accept your order": "Ждать принятия заказа?", + "This price is fixed even if the route changes for the driver.": "Фиксированная цена.", + "The price may increase if the route changes.": "Цена может измениться.", + "The captain is responsible for the route.": "Водитель отвечает за маршрут.", + "We are search for nearst driver": "Ищем водителя", + "Your order is being prepared": "Подготовка заказа", + "The drivers are reviewing your request": "Водители смотрят заказ", + "Your order sent to drivers": "Отправлено водителям", + "You can call or record audio of this trip": "Звонок или запись", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Поездка началась! Делитесь маршрутом, пишите аудио.", + "Camera Access Denied.": "Нет доступа к камере.", + "Open Settings": "Настройки", + "GPS Required Allow !.": "Включите GPS!", + "Your Account is Deleted": "Аккаунт удален", + "Are you sure to delete your account?": "Удалить аккаунт?", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Данные удалятся через 2 недели.", + "Enter Your First Name": "Введите имя", + "Are you Sure to LogOut?": "Выйти?", + "Email Wrong": "Неверный Email", + "Email you inserted is Wrong.": "Email введен неверно.", + "You have finished all times ": "Попытки исчерпаны", + "if you want help you can email us here": "Напишите нам для помощи", + "Thanks": "Спасибо", + "Email Us": "Написать нам", + "I cant register in your app in face detection ": "Не могу пройти проверку лица", + "Hi": "Привет", + "No face detected": "Лицо не найдено", + "Image detecting result is ": "Результат: ", + "from 3 times Take Attention": "из 3 раз, Внимание", + "Be sure for take accurate images please\\nYou have": "Делайте четкие фото\\nУ вас есть", + "image verified": "подтверждено", + "Next": "Далее", + "There is no help Question here": "Нет вопроса", + "You dont have Points": "Нет баллов", + "You Are Stopped For this Day !": "Блокировка на сегодня!", + "You must be charge your Account": "Пополните счет", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Вы отказались от 3 поездок.\\nДо завтра!", + "Recharge my Account": "Пополнить", + "Ok , See you Tomorrow": "Ок, до завтра", + "You are Stopped": "Вы заблокированы", + "Connected": "Подключено", + "Not Connected": "Не подключено", + "Your are far from passenger location": "Вы далеко от пассажира", + "go to your passenger location before\\nPassenger cancel trip": "Едьте к пассажиру, пока не отменил", + "You will get cost of your work for this trip": "Вы получите оплату", + " in your wallet": " в кошелек", + "you gain": "вы получили", + "Order Cancelled by Passenger": "Отмена пассажиром", + "Feedback data saved successfully": "Сохранено", + "No Promo for today .": "Нет промокодов.", + "Select your destination": "Выберите назначение", + "Search for your Start point": "Точка старта", + "Search for waypoint": "Точка маршрута", + "Current Location": "Текущее место", + "Add Location 1": "Добавить место 1", + "You must Verify email !.": "Подтвердите email!", + "Cropper": "Обрезка", + "Saved Sucssefully": "Успешно сохранено", + "Select Date": "Выбрать дату", + "Birth Date": "Дата рождения", + "Ok": "Ок", + "the 500 points equal 30 JOD": "500 баллов = 30 ₽", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "500 баллов = 30 ₽ для вас\\nЗарабатывайте", + "token updated": "токен обновлен", + "Add Location 2": "Добавить место 2", + "Add Location 3": "Добавить место 3", + "Add Location 4": "Добавить место 4", + "Waiting for your location": "Ожидание локации", + "Search for your destination": "Поиск назначения", + "Hi! This is": "Привет! Это", + " I am using": " Я использую", + " to ride with": " чтобы ехать с", + " as the driver.": " как водитель.", + "is driving a ": "ведет ", + " with license plate ": " госномер ", + " I am currently located at ": " Я нахожусь в ", + "Please go to Car now ": "Идите к машине ", + "You will receive a code in WhatsApp Messenger": "Код придет в WhatsApp", + "If you need assistance, contact us": "Свяжитесь для помощи", + "Promo Ended": "Промо завершено", + "Enter the promo code and get": "Введи промокод и получи", + "DISCOUNT": "СКИДКА", + "No wallet record found": "Кошелек не найден", + "for": "для", + "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 - безопасное такси. Комиссия 8%. Страховка и сервис.", + "You can contact us during working hours from 12:00 - 19:00.": "Связь с 12:00 до 19:00.", + "Choose a contact option": "Выберите способ связи", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Время 12:00 - 19:00.\\nWhatsApp или email.", + "Promo code copied to clipboard!": "Скопировано!", + "Copy Code": "Копировать код", + "Your invite code was successfully applied!": "Код применен!", + "Payment Options": "Оплата", + "wait 1 minute to receive message": "подождите 1 минуту", + "You have copied the promo code.": "Код скопирован.", + "Select Payment Amount": "Сумма оплаты", + "The promotion period has ended.": "Акция закончилась.", + "Promo Code Accepted": "Код принят", + "Tap on the promo code to copy it!": "Нажми для копирования!", + "Lowest Price Achieved": "Минимальная цена", + "Cannot apply further discounts.": "Скидок больше нет.", + "Promo Already Used": "Уже использован", + "Invitation Used": "Приглашение использовано", + "You have already used this promo code.": "Вы уже использовали этот код.", + "Insert Your Promo Code": "Вставьте промокод", + "Enter promo code here": "Введите код здесь", + "Please enter a valid promo code": "Введите верный код", + "Awfar Car": "Эконом", + "Old and affordable, perfect for budget rides.": "Недорогой и доступный.", + " If you need to reach me, please contact the driver directly at": " Свяжитесь с водителем по номеру", + "No Car or Driver Found in your area.": "Нет машин в вашем районе.", + "Please Try anther time ": "Попробуйте позже ", + "There no Driver Aplly your order sorry for that ": "Никто не взял заказ, извините ", + "Trip Cancelled": "Поездка отменена", + "The Driver Will be in your location soon .": "Водитель скоро будет.", + "The distance less than 500 meter.": "Дистанция < 500 м.", + "Promo End !": "Промо всё!", + "There is no notification yet": "Нет уведомлений", + "Use Touch ID or Face ID to confirm payment": "Используйте Touch ID или Face ID", + "Contact us for any questions on your order.": "Свяжитесь с нами по вопросам заказа.", + "Pyament Cancelled .": "Оплата отменена.", + "type here": "введите здесь", + "Scan Driver License": "Скан прав", + "Please put your licence in these border": "Поместите права в рамку", + "Camera not initialized yet": "Камера не готова", + "Take Image": "Сделать фото", + "AI Page": "AI Страница", + "Take Picture Of ID Card": "Фото паспорта", + "Take Picture Of Driver License Card": "Фото прав", + "We are process picture please wait ": "Обработка фото... ", + "There is no data yet.": "Нет данных.", + "Name :": "Имя:", + "Drivers License Class: ": "Категория: ", + "Document Number: ": "Номер документа: ", + "Address: ": "Адрес: ", + "Height: ": "Рост: ", + "Expiry Date: ": "Истекает: ", + "Date of Birth: ": "Дата рождения: ", + "You can't continue with us .\\nYou should renew Driver license": "Нужно обновить права", + "Detect Your Face ": "Проверка лица ", + "Go to next step\\nscan Car License.": "Далее\\nскан СТС.", + "Name in arabic": "Имя (местное)", + "Drivers License Class": "Категория", + "Selected Date": "Выбрана дата", + "Select Time": "Выбрать время", + "Selected Time": "Выбрано время", + "Selected Date and Time": "Дата и Время", + "Lets check Car license ": "Проверим СТС ", + "Car": "Авто", + "Plate": "Номер", + "Rides": "Поездки", + "Selected driver": "Выбранный водитель", + "Lets check License Back Face": "Проверим оборот", + "Car License Card": "СТС", + "No image selected yet": "Нет изображения", + "Made :": "Марка :", + "model :": "Модель :", + "VIN :": "VIN :", + "year :": "Год :", + "ُExpire Date": "Дата окончания", + "Login Driver": "Вход водителя", + "Password must br at least 6 character.": "Пароль мин. 6 символов.", + "if you don't have account": "нет аккаунта", + "Here recorded trips audio": "Аудио поездок", + "Register as Driver": "Стать водителем", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Выбирая \"Согласен\", я принимаю Условия и ", + "Log Out Page": "Страница выхода", + "Log Off": "Выйти", + "Register Driver": "Регистрация водителя", + "Verify Email For Driver": "Email водителя", + "Admin DashBoard": "Панель админа", + "Your name": "Ваше имя", + "your ride is applied": "поездка оформлена", + "H and": "Ч и", + "JOD": "₽", + "m": "м", + "We search nearst Driver to you": "Ищем водителя", + "please wait till driver accept your order": "ждите принятия заказа", + "No accepted orders? Try raising your trip fee to attract riders.": "Поднимите цену для привлечения.", + "You should select one": "Выберите одно", + "The driver accept your order for": "Водитель принял заказ за", + "The driver on your way": "Водитель едет", + "Total price from ": "Всего от ", + "Order Details Intaleq": "Детали заказа", + "Selected file:": "Файл:", + "Your trip cost is": "Стоимость:", + "this will delete all files from your device": "удалит все файлы", + "Exclusive offers and discounts always with the Intaleq app": "Эксклюзивные предложения", + "Submit Question": "Задать вопрос", + "Please enter your Question.": "Введите вопрос.", + "Help Details": "Помощь", + "No trip yet found": "Нет поездок", + "No Response yet.": "Нет ответа.", + " You Earn today is ": " Заработано сегодня: ", + " You Have in": " У вас есть в", + "Total points is ": "Всего баллов: ", + "Total Connection Duration:": "Время соединения:", + "Passenger name : ": "Пассажир: ", + "Cost Of Trip IS ": "Стоимость: ", + "Arrival time": "Время прибытия", + "arrival time to reach your point": "время прибытия в точку", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Цена динамическая или по времени/расстоянию.", + "Hello this is Driver": "Привет, я водитель", + "Is the Passenger in your Car ?": "Пассажир в машине?", + "Please wait for the passenger to enter the car before starting the trip.": "Ждите пассажира.", + "No ,still Waiting.": "Нет, жду.", + "I arrive you": "Я на месте", + "I Arrive your site": "Я на месте", + "You are not in near to passenger location": "Вы далеко", + "please go to picker location exactly": "езжайте точно к точке", + "You Can Cancel Trip And get Cost of Trip From": "Можно отменить и получить стоимость с", + "Are you sure to cancel?": "Отменить?", + "Insert Emergincy Number": "Ввести SOS номер", + "Best choice for comfort car and flexible route and stops point": "Комфорт и гибкий маршрут", + "Insert": "Вставить", + "This is for scooter or a motorcycle.": "Для скутера или мотоцикла.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Прямая поездка, фикс. цена.", + "You can decline a request without any cost": "Отказ бесплатный", + "Perfect for adventure seekers who want to experience something new and exciting": "Для искателей приключений", + "My current location is:": "Я здесь:", + "and I have a trip on": "и у меня поездка на", + "App with Passenger": "Приложение с Пассажиром", + "You will be pay the cost to driver or we will get it from you on next trip": "Оплата водителю или в след. раз", + "Trip has Steps": "Поездка с этапами", + "Distance from Passenger to destination is ": "Дистанция до цели: ", + "price is": "цена", + "This ride type does not allow changes to the destination or additional stops": "Без изменений маршрута", + "This price may be changed": "Цена может измениться", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Звоните через приложение без SIM.", + "This ride type allows changes, but the price may increase": "Изменения возможны, цена может вырасти", + "Select one message": "Выберите сообщение", + "I'm waiting for you": "Я вас жду", + "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 км/ч. Притормозите.", + "Warning: Intaleqing detected!": "Внимание: Скорость!", + "Please help! Contact me as soon as possible.": "Помогите! Свяжитесь со мной.", + "Share Trip Details": "Поделиться деталями", + "Car Plate is ": "Номер: ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 баллов = 300 ₽\\nЗарабатывайте", + "the 300 points equal 300 L.E": "300 баллов = 300 ₽", + "The payment was not approved. Please try again.": "Оплата не прошла.", + "Payment Failed": "Ошибка оплаты", + "This is a scheduled notification.": "Запланированное уведомление.", + "An error occurred during the payment process.": "Ошибка оплаты.", + "The payment was approved.": "Оплата одобрена.", + "Payment Successful": "Успешно", + "No ride found yet": "Поездка не найдена", + "Accept Order": "Принять заказ", + "Bottom Bar Example": "Пример", + "Driver phone": "Телефон водителя", + "Statistics": "Статистика", + "Origin": "Старт", + "Destination": "Финиш", + "Driver Name": "Имя водителя", + "Driver Car Plate": "Номер авто", + "Available for rides": "Доступен", + "Scan Id": "Скан паспорта", + "Camera not initilaized yet": "Камера не готова", + "Scan ID MklGoogle": "Скан ID", + "Language": "Язык", + "Jordan": "Иордания", + "USA": "США", + "Egypt": "Египет", + "Turkey": "Турция", + "Saudi Arabia": "Саудовская Аравия", + "Qatar": "Катар", + "Bahrain": "Бахрейн", + "Kuwait": "Кувейт", + "But you have a negative salary of": "Отрицательный баланс:", + "Promo Code": "Промокод", + "Your trip distance is": "Дистанция:", + "Enter promo code": "Введите промокод", + "You have promo!": "У вас есть промо!", + "Cost Duration": "Стоимость времени", + "Duration is": "Длительность:", + "Leave": "Выйти", + "Join": "Войти", + "Heading your way now. Please be ready.": "Еду к вам. Будьте готовы.", + "Approaching your area. Should be there in 3 minutes.": "Подъезжаю. Буду через 3 мин.", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Пробки. Может, другое место?", + "This ride is already taken by another driver.": "Заказ уже занят.", + "You Should be select reason.": "Выберите причину.", + "Waiting for Driver ...": "Ждем водителя...", + "Latest Recent Trip": "Последняя поездка", + "from your list": "из списка", + "Do you want to change Work location": "Изменить Работу", + "Do you want to change Home location": "Изменить Дом", + "We Are Sorry That we dont have cars in your Location!": "Нет машин в вашем районе!", + "Choose from Map": "Выбрать на карте", + "Pick your ride location on the map - Tap to confirm": "Укажите место на карте", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq - надежное такси.", + "With Intaleq, you can get a ride to your destination in minutes.": "Машина за минуты.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Мы проверяем всех водителей.", + "Pick from map": "Указать на карте", + "No Car in your site. Sorry!": "Нет машин. Извините!", + "Nearest Car for you about ": "Ближайшая машина через ", + "From :": "От:", + "Get Details of Trip": "Детали поездки", + "If you want add stop click here": "Добавить остановку", + "Where you want go ": "Куда едем ", + "My Card": "Моя карта", + "Start Record": "Начать запись", + "History of Trip": "История", + "Helping Center": "Помощь", + "Record saved": "Запись сохранена", + "Trips recorded": "Записанные поездки", + "Select 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.": "Выберите страну для корректной работы.", + "Are you sure to delete recorded files": "Удалить записи?", + "Select recorded trip": "Выбрать запись", + "Card Number": "Номер карты", + "Hi, Where to ": "Куда едем ", + "Pick your destination from Map": "Указать назначение", + "Add Stops": "Остановки", + "Get Direction": "Маршрут", + "Add Location": "Добавить место", + "Switch Rider": "Сменить пассажира", + "You will arrive to your destination after timer end.": "Прибытие по таймеру.", + "You can cancel trip": "Можно отменить", + "The driver waitting you in picked location .": "Водитель ждет.", + "Pay with Your": "Оплата", + "Pay with Credit Card": "Кредитная карта", + "Show Promos to Charge": "Промо для пополнения", + "Point": "Балл", + "How many hours would you like to wait?": "Сколько часов ждать?", + "Driver Wallet": "Кошелек водителя", + "Choose between those Type Cars": "Выберите тип авто", + "hour": "час", + "Select Waiting Hours": "Часы ожидания", + "Total Points is": "Всего баллов", + "You will receive a code in SMS message": "Код придет в СМС", + "Done": "Готово", + "Total Budget from trips is ": "Бюджет поездок: ", + "Total Amount:": "Всего:", + "Total Budget from trips by\\nCredit card is ": "Бюджет по карте: ", + "This amount for all trip I get from Passengers": "Сумма от пассажиров", + "Pay from my budget": "Оплата с баланса", + "This amount for all trip I get from Passengers and Collected For me in": "Собранная сумма", + "You can buy points from your budget": "Купить баллы", + "insert amount": "сумма", + "You can buy Points to let you online\\nby this list below": "Купите баллы для работы", + "Create Wallet to receive your money": "Создать кошелек", + "Enter your feedback here": "Ваш отзыв", + "Please enter your feedback.": "Введите отзыв.", + "Feedback": "Отзыв", + "Submit ": "Отправить ", + "Click here to Show it in Map": "Показать на карте", + "Canceled": "Отменено", + "No I want": "Нет, хочу", + "Email is": "Email:", + "Phone Number is": "Телефон:", + "Date of Birth is": "Дата рождения:", + "Sex is ": "Пол: ", + "Car Details": "Детали авто", + "VIN is": "VIN:", + "Color is ": "Цвет: ", + "Make is ": "Марка: ", + "Model is": "Модель:", + "Year is": "Год:", + "Expiration Date ": "Истекает: ", + "Edit Your data": "Редактировать", + "write vin for your car": "введите VIN", + "VIN": "VIN", + "Please verify your identity": "Подтвердите личность", + "write Color for your car": "введите цвет", + "write Make for your car": "введите марку", + "write Model for your car": "введите модель", + "write Year for your car": "введите год", + "write Expiration Date for your car": "введите дату окончания", + "Tariffs": "Тарифы", + "Minimum fare": "Мин. стоимость", + "Maximum fare": "Макс. стоимость", + "Flag-down fee": "Посадка", + "Including Tax": "Вкл. налог", + "BookingFee": "Сбор", + "Morning": "Утро", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 - 10:30", + "Evening": "Вечер", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 - 15:00", + "Night": "Ночь", + "You have in account": "На счету", + "Select Country": "Страна", + "Ride Today : ": "Поездка сегодня: ", + "from 23:59 till 05:30": "23:59 - 05:30", + "Rate Driver": "Оценка водителя", + "Total Cost is ": "Стоимость: ", + "Write note": "Заметка", + "Time to arrive": "Время прибытия", + "Ride Summaries": "Сводка", + "Total Cost": "Всего", + "Average of Hours of": "Среднее часов", + " is ON for this month": " онлайн в этом месяце", + "Days": "Дни", + "Total Hours on month": "Часов в месяц", + "Counts of Hours on days": "Часов по дням", + "OrderId": "ID заказа", + "created time": "создано", + "Intaleq Over": "Конец", + "I will slow down": "Снижаю скорость", + "Map Passenger": "Карта", + "Be Slowly": "Помедленнее", + "If you want to make Google Map App run directly when you apply order": "Открыть Google Карты", + "You can change the language of the app": "Сменить язык", + "Your Budget less than needed": "Мало средств", + "You can change the Country to get all features": "Смените страну для всех функций", + "There is no Car or Driver in your area.": "В вашем районе нет машин или водителей.", + "Change Country": "Сменить страну" + }, + "it": { + "About Intaleq": "Informazioni su Intaleq", + "Chat with us anytime": "Chatta con noi in qualsiasi momento", + "Direct talk with our team": "Parla direttamente con il nostro team", + "Email Support": "Supporto via email", + "For official inquiries": "Per richieste ufficiali", + "Intaleq Support": "Supporto Intaleq", + "Reach out to us via": "Contattaci tramite", + "Support is Away": "Il supporto è attualmente assente", + "Support is currently Online": "Il supporto è attualmente online", + "Voice Call": "Chiamata vocale", + "We're here to help you 24/7": "Siamo qui per aiutarti 24/7", + "Working Hours:": "Orario di lavoro:", + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "Dopo questo\\nNon puoi annullare!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "Ciao! Ti invito a provare Intaleq.", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "Siria", + "SYP": "SYP", + "Order": "Ordine", + "OrderVIP": "Ordine VIP", + "Cancel Trip": "Annulla corsa", + "Passenger Cancel Trip": "Il passeggero ha annullato la corsa", + "VIP Order": "Ordine VIP", + "The driver accepted your trip": "L'autista ha accettato la tua corsa", + "message From passenger": "Messaggio dal passeggero", + "Cancel": "Annulla", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Corsa annullata. Il costo sarà accreditato sul tuo portafoglio.", + "token change": "Cambio token", + "Changed my mind": "Ho cambiato idea", + "Please write the reason...": "Scrivi il motivo...", + "Found another transport": "Ho trovato un altro mezzo", + "Driver is taking too long": "L'autista ci mette troppo", + "Driver asked me to cancel": "L'autista mi ha chiesto di annullare", + "Wrong pickup location": "Punto di partenza errato", + "Other": "Altro", + "Don't Cancel": "Non annullare", + "No Drivers Found": "Nessun autista trovato", + "Sorry, there are no cars available of this type right now.": "Spiacenti, non ci sono auto di questo tipo disponibili al momento.", + "Refresh Map": "Aggiorna mappa", + "face detect": "Rilevamento volto", + "Face Detection Result": "Risultato rilevamento volto", + "similar": "Simile", + "not similar": "Non simile", + "Searching for nearby drivers...": "Ricerca autisti nelle vicinanze...", + "Error": "Errore", + "Failed to search, please try again later": "Ricerca non riuscita, riprova più tardi", + "Connection Error": "Errore di connessione", + "Please check your internet connection": "Controlla la tua connessione internet", + "Sorry 😔": "Spiacenti 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "L'autista ha annullato il viaggio per un'emergenza.\\nVuoi cercare subito un altro autista?", + "Search for another driver": "Cerca un altro autista", + "We apologize 😔": "Ci scusiamo 😔", + "No drivers found at the moment.\\nPlease try again later.": "Nessun autista trovato al momento.\\nRiprova più tardi.", + "Hi ,I will go now": "Ciao, sto partendo ora", + "Passenger come to you": "Il passeggero sta venendo da te", + "Call Income": "Chiamata in arrivo", + "Call Income from Passenger": "Chiamata dal passeggero", + "Criminal Document Required": "Casellario Giudiziale richiesto", + "You should have upload it .": "Devi caricarlo.", + "Call End": "Chiamata terminata", + "The order has been accepted by another driver.": "L'ordine è stato accettato da un altro autista.", + "The order Accepted by another Driver": "Ordine accettato da un altro autista", + "We regret to inform you that another driver has accepted this order.": "Ci dispiace informarti che un altro autista ha accettato questo ordine.", + "Driver Applied the Ride for You": "L'autista ha richiesto la corsa per te", + "Applied": "Richiesto", + "Please go to Car Driver": "Per favore, vai dall'autista", + "Ok I will go now.": "Ok, vado ora.", + "Accepted Ride": "Corsa accettata", + "Driver Accepted the Ride for You": "L'autista ha accettato la corsa per te", + "Promo": "Promo", + "Show latest promo": "Mostra ultime promozioni", + "Trip Monitoring": "Monitoraggio viaggio", + "Driver Is Going To Passenger": "L'autista sta andando dal passeggero", + "Please stay on the picked point.": "Per favore, resta al punto di raccolta.", + "message From Driver": "Messaggio dall'autista", + "Trip is Begin": "Il viaggio è iniziato", + "Cancel Trip from driver": "Corsa annullata dall'autista", + "We will look for a new driver.\\nPlease wait.": "Cercheremo un nuovo autista.\\nAttendere prego.", + "The driver canceled your ride.": "L'autista ha annullato la tua corsa.", + "Driver Finish Trip": "L'autista ha terminato la corsa", + "you will pay to Driver": "Pagherai all'autista", + "Don’t forget your personal belongings.": "Non dimenticare i tuoi effetti personali.", + "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": "Assicurati di avere tutti i tuoi effetti personali e che l'eventuale resto sia stato aggiunto al tuo portafoglio. Grazie per aver scelto Intaleq.", + "Finish Monitor": "Termina monitoraggio", + "Trip finished": "Corsa finita", + "Call Income from Driver": "Chiamata dall'autista", + "Driver Cancelled Your Trip": "L'autista ha annullato la tua corsa", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "Pagherai il costo del tempo dell'autista, controlla il tuo portafoglio Intaleq", + "Order Applied": "Ordine applicato", + "welcome to intaleq": "Benvenuto in Intaleq", + "login or register subtitle": "Inserisci il tuo numero di cellulare per accedere o registrarti", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Impossibile presentare reclamo per questa corsa. Potrebbe non essere stata completata o iniziata.", + "phone number label": "Numero di telefono", + "phone number required": "Numero di telefono richiesto", + "send otp button": "Invia OTP", + "verify your number title": "Verifica il tuo numero", + "otp sent subtitle": "Un codice a 5 cifre è stato inviato a\\n@phoneNumber", + "verify and continue button": "Verifica e continua", + "enter otp validation": "Inserisci l'OTP a 5 cifre", + "one last step title": "Un ultimo passo", + "complete profile subtitle": "Completa il profilo per iniziare", + "first name label": "Nome", + "first name required": "Nome richiesto", + "last name label": "Cognome", + "Verify OTP": "Verifica OTP", + "Verification Code": "Codice di verifica", + "We have sent a verification code to your mobile number:": "Abbiamo inviato un codice di verifica al tuo numero:", + "Verify": "Verifica", + "Resend Code": "Invia di nuovo", + "You can resend in": "Puoi inviare di nuovo tra", + "seconds": "secondi", + "Please enter the complete 6-digit code.": "Inserisci il codice completo a 6 cifre.", + "last name required": "Cognome richiesto", + "email optional label": "Email (Opzionale)", + "complete registration button": "Completa registrazione", + "User with this phone number or email already exists.": "Utente con questo numero o email già esistente.", + "otp sent success": "OTP inviato con successo su WhatsApp.", + "failed to send otp": "Invio OTP fallito.", + "server error try again": "Errore del server, riprova.", + "an error occurred": "Si è verificato un errore: @error", + "otp verification failed": "Verifica OTP fallita.", + "registration failed": "Registrazione fallita.", + "welcome user": "Benvenuto, @firstName!", + "Don't forget your personal belongings.": "Non dimenticare i tuoi effetti personali.", + "Share App": "Condividi app", + "Wallet": "Portafoglio", + "Balance": "Saldo", + "Profile": "Profilo", + "Contact Support": "Contatta supporto", + "Session expired. Please log in again.": "Sessione scaduta. Accedi di nuovo.", + "Security Warning": "⚠️ Avviso di sicurezza", + "Potential security risks detected. The application may not function correctly.": "Rilevati potenziali rischi di sicurezza. L'app potrebbe non funzionare correttamente.", + "please order now": "Ordina ora", + "Where to": "Dove vuoi andare?", + "Where are you going?": "Dove stai andando?", + "Quick Actions": "Azioni rapide", + "My Balance": "Il mio saldo", + "Order History": "Cronologia ordini", + "Contact Us": "Contattaci", + "Driver": "Autista", + "Complaint": "Reclamo", + "Promos": "Promozioni", + "Recent Places": "Luoghi recenti", + "From": "Da", + "WhatsApp Location Extractor": "Estrattore posizione WhatsApp", + "Location Link": "Link posizione", + "Paste location link here": "Incolla il link della posizione qui", + "Go to this location": "Vai a questa posizione", + "Paste WhatsApp location link": "Incolla link posizione WhatsApp", + "Select Order Type": "Seleziona tipo ordine", + "Choose who this order is for": "Per chi è questo ordine", + "I want to order for myself": "Voglio ordinare per me", + "I want to order for someone else": "Voglio ordinare per qualcun altro", + "Order for someone else": "Ordina per altri", + "Order for myself": "Ordina per me", + "Are you want to go this site": "Vuoi andare in questo luogo?", + "No": "No", + "Intaleq Wallet": "Portafoglio Intaleq", + "Have a promo code?": "Hai un codice promozionale?", + "Your Wallet balance is ": "Il saldo del tuo portafoglio è: ", + "Cash": "Contanti", + "Pay directly to the captain": "Paga direttamente al conducente", + "Top up Wallet to continue": "Ricarica il portafoglio per continuare", + "Or pay with Cash instead": "O paga in contanti", + "Confirm & Find a Ride": "Conferma e trova corsa", + "Balance:": "Saldo:", + "Alerts": "Avvisi", + "Welcome Back!": "Bentornato!", + "Current Balance": "Saldo attuale", + "Set Wallet Phone Number": "Imposta numero portafoglio", + "Link a phone number for transfers": "Collega un numero per i trasferimenti", + "Payment History": "Cronologia pagamenti", + "View your past transactions": "Visualizza le transazioni passate", + "Top up Wallet": "Ricarica portafoglio", + "Add funds using our secure methods": "Aggiungi fondi con i nostri metodi sicuri", + "Increase Fare": "Aumenta tariffa", + "No drivers accepted your request yet": "Nessun autista ha ancora accettato la tua richiesta", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Aumentare la tariffa potrebbe attrarre più autisti. Vuoi aumentare il prezzo?", + "Please make sure not to leave any personal belongings in the car.": "Assicurati di non lasciare effetti personali in auto.", + "Cancel Ride": "Annulla corsa", + "Route Not Found": "Percorso non trovato", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "Non siamo riusciti a trovare un percorso valido. Prova a selezionare un punto diverso.", + "You can call or record audio during this trip.": "Puoi chiamare o registrare audio durante questo viaggio.", + "Warning: Speeding detected!": "Attenzione: Rilevato eccesso di velocità!", + "Comfort": "Comfort", + "Intaleq Balance": "Saldo Intaleq", + "Electric": "Elettrica", + "Lady": "Donna", + "Van": "Furgone", + "Rayeh Gai": "Andata e Ritorno", + "Join Intaleq as a driver using my referral code!": "Unisciti a Intaleq come autista usando il mio codice!", + "Use code:": "Usa codice:", + "Download the Intaleq Driver app now and earn rewards!": "Scarica l'app Intaleq Driver e guadagna premi!", + "Get a discount on your first Intaleq ride!": "Ottieni uno sconto sulla tua prima corsa Intaleq!", + "Use my referral code:": "Usa il mio codice invito:", + "Download the Intaleq app now and enjoy your ride!": "Scarica l'app Intaleq e goditi il viaggio!", + "Contacts Loaded": "Contatti caricati", + "Showing": "Visualizzazione", + "of": "di", + "Customer not found": "Cliente non trovato", + "Wallet is blocked": "Il portafoglio è bloccato", + "Customer phone is not active": "Il telefono del cliente non è attivo", + "Balance not enough": "Saldo insufficiente", + "Balance limit exceeded": "Limite saldo superato", + "Incorrect sms code": "⚠️ Codice SMS errato. Riprova.", + "contacts. Others were hidden because they don't have a phone number.": "contatti. Altri nascosti perché senza numero.", + "No contacts found": "Nessun contatto trovato", + "No contacts with phone numbers were found on your device.": "Nessun contatto con numero di telefono trovato sul dispositivo.", + "Permission denied": "Permesso negato", + "Contact permission is required to pick contacts": "È richiesto il permesso ai contatti per selezionarli.", + "An error occurred while picking contacts:": "Errore durante la selezione dei contatti:", + "Please enter a correct phone": "Inserisci un numero corretto", + "Success": "Successo", + "Invite sent successfully": "Invito inviato con successo", + "Use my invitation code to get a special gift on your first ride!": "Usa il mio codice invito per un regalo speciale sulla prima corsa!", + "Your personal invitation code is:": "Il tuo codice invito personale è:", + "Be sure to use it quickly! This code expires at": "Usalo presto! Questo codice scade il", + "Download the app now:": "Scarica l'app ora:", + "See you on the road!": "Ci vediamo in strada!", + "This phone number has already been invited.": "Questo numero è già stato invitato.", + "An unexpected error occurred. Please try again.": "Si è verificato un errore imprevisto. Riprova.", + "You deserve the gift": "Ti meriti il regalo", + "Claim your 20 LE gift for inviting": "Richiedi il tuo regalo di 20 € per l'invito", + "You have got a gift for invitation": "Hai ricevuto un regalo per l'invito", + "You have earned 20": "Hai guadagnato 20", + "LE": "€", + "Vibration feedback for all buttons": "Feedback vibrazione per tutti i pulsanti", + "Share with friends and earn rewards": "Condividi con amici e guadagna premi", + "Gift Already Claimed": "Regalo già richiesto", + "You have already received your gift for inviting": "Hai già ricevuto il tuo regalo per questo invito", + "Keep it up!": "Continua così!", + "has completed": "ha completato", + "trips": "viaggi", + "Personal Information": "Informazioni personali", + "Name": "Nome", + "Not set": "Non impostato", + "Gender": "Genere", + "Education": "Istruzione", + "Work & Contact": "Lavoro e Contatti", + "Employment Type": "Tipo di impiego", + "Marital Status": "Stato civile", + "SOS Phone": "Telefono SOS", + "Sign Out": "Esci", + "Delete My Account": "Elimina il mio account", + "Update Gender": "Aggiorna genere", + "Update": "Aggiorna", + "Update Education": "Aggiorna istruzione", + "Are you sure? This action cannot be undone.": "Sei sicuro? Questa azione non può essere annullata.", + "Confirm your Email": "Conferma la tua email", + "Type your Email": "Scrivi la tua email", + "Delete Permanently": "Elimina definitivamente", + "Male": "Maschio", + "Female": "Femmina", + "High School Diploma": "Diploma di scuola superiore", + "Associate Degree": "Laurea breve", + "Bachelor's Degree": "Laurea triennale", + "Master's Degree": "Laurea magistrale", + "Doctoral Degree": "Dottorato", + "Select your preferred language for the app interface.": "Seleziona la lingua preferita per l'app.", + "Language Options": "Opzioni lingua", + "You can claim your gift once they complete 2 trips.": "Puoi richiedere il regalo una volta che completano 2 corse.", + "Closest & Cheapest": "Più vicino ed economico", + "Comfort choice": "Scelta comfort", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Viaggia in un'auto elettrica moderna e silenziosa. Una scelta premium ed ecologica.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Servizio van spazioso ideale per famiglie e gruppi. Comodo, sicuro ed economico.", + "Quiet & Eco-Friendly": "Silenzioso ed Ecologico", + "Lady Captain for girls": "Autista donna per ragazze", + "Van for familly": "Furgone per famiglia", + "Are you sure to delete this location?": "Sei sicuro di voler eliminare questa posizione?", + "Submit a Complaint": "Invia un reclamo", + "Submit Complaint": "Invia reclamo", + "No trip history found": "Nessuna cronologia viaggi", + "Your past trips will appear here.": "I tuoi viaggi passati appariranno qui.", + "1. Describe Your Issue": "1. Descrivi il problema", + "Enter your complaint here...": "Inserisci qui il tuo reclamo...", + "2. Attach Recorded Audio": "2. Allega audio registrato", + "No audio files found.": "Nessun file audio trovato.", + "Confirm Attachment": "Conferma allegato", + "Attach this audio file?": "Allegare questo file audio?", + "Uploaded": "Caricato", + "3. Review Details & Response": "3. Rivedi dettagli e risposta", + "Date": "Data", + "Today's Promos": "Promo di oggi", + "No promos available right now.": "Nessuna promozione disponibile ora.", + "Check back later for new offers!": "Controlla più tardi per nuove offerte!", + "Valid Until:": "Valido fino a:", + "CODE": "CODICE", + "I Agree": "Accetto", + "Continue": "Continua", + "Enable Location": "Attiva posizione", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Per offrirti la migliore esperienza, dobbiamo sapere dove sei. La tua posizione serve per trovare autisti vicini.", + "Allow Location Access": "Consenti accesso posizione", + "Welcome to Intaleq!": "Benvenuto in Intaleq!", + "Before we start, please review our terms.": "Prima di iniziare, rivedi i nostri termini.", + "Your journey starts here": "Il tuo viaggio inizia qui", + "Cancel Search": "Annulla ricerca", + "Set pickup location": "Imposta punto di raccolta", + "Move the map to adjust the pin": "Sposta la mappa per regolare il segnaposto", + "Searching for the nearest captain...": "Ricerca del conducente più vicino...", + "No one accepted? Try increasing the fare.": "Nessuno ha accettato? Prova ad aumentare la tariffa.", + "Increase Your Trip Fee (Optional)": "Aumenta la tariffa (Opzionale)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Non abbiamo ancora trovato autisti. Considera di aumentare la tariffa per rendere l'offerta più attraente.", + "No, thanks": "No, grazie", + "Increase Fee": "Aumenta tariffa", + "Copy": "Copia", + "Promo Copied!": "Promo copiata!", + "Code": "Codice", + "Send Intaleq app to him": "Invia app Intaleq a lui", + "No passenger found for the given phone number": "Nessun passeggero trovato per questo numero", + "No user found for the given phone number": "Nessun utente trovato per questo numero", + "This price is": "Questo prezzo è", + "Work": "Lavoro", + "Add Home": "Aggiungi Casa", + "Notifications": "Notifiche", + "💳 Pay with Credit Card": "💳 Paga con carta di credito", + "⚠️ You need to choose an amount!": "⚠️ Devi scegliere un importo!", + "💰 Pay with Wallet": "💰 Paga con portafoglio", + "You must restart the app to change the language.": "Devi riavviare l'app per cambiare lingua.", + "joined": "unito", + "Driver joined the channel": "L'autista si è unito al canale", + "Driver left the channel": "L'autista ha lasciato il canale", + "Call Page": "Pagina chiamata", + "Call Left": "Chiamate rimaste", + " Next as Cash !": " Prossimo in contanti!", + "To use Wallet charge it": "Per usare il portafoglio, ricaricalo", + "We are searching for the nearest driver to you": "Cerchiamo l'autista più vicino a te", + "Best choice for cities": "Migliore scelta per città", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Andata e Ritorno: Servizio comodo per viaggiare tra città.", + "This trip is for women only": "Questa corsa è solo per donne", + "Total budgets on month": "Budget totali nel mese", + "You have call from driver": "Hai una chiamata dall'autista", + "Intaleq": "Intaleq", + "passenger agreement": "accordo passeggero", + "To become a passenger, you must review and agree to the ": "Per diventare passeggero, devi accettare i ", + "agreement subtitle": "Per continuare, devi accettare i Termini d'uso e l'Informativa sulla privacy.", + "terms of use": "termini d'uso", + " and acknowledge our Privacy Policy.": " e l'Informativa sulla Privacy.", + "and acknowledge our": "e accetta la nostra", + "privacy policy": "politica sulla privacy.", + "i agree": "accetto", + "Driver already has 2 trips within the specified period.": "L'autista ha già 2 viaggi nel periodo specificato.", + "The invitation was sent successfully": "Invito inviato con successo", + "You should select your country": "Dovresti selezionare il tuo paese", + "Scooter": "Scooter", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Viaggio con prenotazione, scegli i migliori autisti e auto.", + "Mishwar Vip": "Viaggio VIP", + "The driver waiting you in picked location .": "L'autista ti aspetta al punto di raccolta.", + "About Us": "Chi siamo", + "You can change the vibration feedback for all buttons": "Puoi cambiare la vibrazione per tutti i pulsanti", + "Most Secure Methods": "Metodi più sicuri", + "In-App VOIP Calls": "Chiamate VOIP in-app", + "Recorded Trips for Safety": "Viaggi registrati per sicurezza", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nOffriamo prezzi competitivi.", + "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 è un'app di ride-sharing progettata per sicurezza e risparmio.", + "Sign In by Apple": "Accedi con Apple", + "Sign In by Google": "Accedi con Google", + "How do I request a ride?": "Come richiedo una corsa?", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Istruzioni passo-passo per richiedere una corsa.", + "What types of vehicles are available?": "Quali veicoli sono disponibili?", + "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 offre opzioni Economy, Comfort e Luxury.", + "How can I pay for my ride?": "Come posso pagare?", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Puoi pagare in contanti o con carta.", + "Can I cancel my ride?": "Posso annullare la corsa?", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Sì, puoi annullare la corsa a determinate condizioni (ad es. prima dell'assegnazione dell'autista). Consulta la politica di cancellazione Intaleq per i dettagli.", + "Driver Registration & Requirements": "Registrazione Autista e Requisiti", + "How can I register as a driver?": "Come mi registro come autista?", + "What are the requirements to become a driver?": "Quali sono i requisiti?", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visita il sito o contatta il supporto.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq offre una chat in-app.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Verifica autista, tracciamento viaggio, contatti emergenza.", + "Frequently Questions": "Domande Frequenti", + "User does not exist.": "L'utente non esiste.", + "We need your phone number to contact you and to help you.": "Ci serve il tuo numero per contattarti.", + "You will recieve code in sms message": "Riceverai un codice via SMS", + "Please enter": "Inserisci", + "We need your phone number to contact you and to help you receive orders.": "Ci serve il tuo numero per ricevere ordini.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Il nome sul casellario non corrisponde alla patente.", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Il numero della patente non corrisponde al documento d'identità.", + "Capture an Image of Your Criminal Record": "Cattura immagine del Casellario Giudiziale", + "IssueDate": "Data rilascio", + "Capture an Image of Your car license front": "Foto fronte libretto circolazione", + "Capture an Image of Your ID Document front": "Foto fronte documento identità", + "NationalID": "Numero Carta d'Identità", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Condividi l'app e guadagna premi.", + "FullName": "Nome completo", + "No invitation found yet!": "Nessun invito trovato!", + "InspectionResult": "Risultato ispezione", + "Criminal Record": "Casellario Giudiziale", + "The email or phone number is already registered.": "Email o numero già registrati.", + "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.": "Carica patente, documento d'identità e libretto. Verifica in 2-3 minuti.", + "Documents check": "Controllo documenti", + "Driver's License": "Patente di guida", + "for your first registration!": "per la tua prima registrazione!", + "Get it Now!": "Ottienilo ora!", + "before": "prima", + "Code not approved": "Codice non approvato", + "3000 LE": "30 €", + "Do you have an invitation code from another driver?": "Hai un codice invito?", + "Paste the code here": "Incolla il codice qui", + "No, I don't have a code": "No, non ho un codice", + "Audio uploaded successfully.": "Audio caricato con successo.", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfetto per chi cerca auto nuove e libertà di percorso", + "Share this code with your friends and earn rewards when they use it!": "Condividi questo codice e guadagna premi!", + "Enter phone": "Inserisci telefono", + "complete, you can claim your gift": "completato, puoi richiedere il regalo", + "When": "Quando", + "Enter driver's phone": "Inserisci telefono autista", + "Send Invite": "Invia invito", + "Show Invitations": "Mostra inviti", + "License Type": "Tipo patente", + "National Number": "Numero Carta d'Identità", + "Name (Arabic)": "Nome (Locale)", + "Name (English)": "Nome (Inglese)", + "Address": "Indirizzo", + "Issue Date": "Data rilascio", + "Expiry Date": "Data scadenza", + "License Categories": "Categorie patente", + "driver_license": "patente_guida", + "Capture an Image of Your Driver License": "Cattura immagine della patente", + "ID Documents Back": "Retro documento identità", + "National ID": "Carta d'Identità", + "Occupation": "Occupazione", + "Religion": "Religione", + "Full Name (Marital)": "Nome completo", + "Expiration Date": "Data scadenza", + "Capture an Image of Your ID Document Back": "Foto retro documento identità", + "ID Documents Front": "Fronte documento identità", + "First Name": "Nome", + "CardID": "ID Carta", + "Vehicle Details Front": "Dettagli veicolo Fronte", + "Plate Number": "Targa", + "Owner Name": "Proprietario", + "Vehicle Details Back": "Dettagli veicolo Retro", + "Make": "Marca", + "Model": "Modello", + "Year": "Anno", + "Chassis": "Telaio", + "Color": "Colore", + "Displacement": "Cilindrata", + "Fuel": "Carburante", + "Tax Expiry Date": "Scadenza bollo", + "Inspection Date": "Data revisione", + "Capture an Image of Your car license back": "Foto retro libretto circolazione", + "Capture an Image of Your Driver's License": "Foto patente di guida", + "Sign in with Google for easier email and name entry": "Accedi con Google per facilità", + "You will choose allow all the time to be ready receive orders": "Scegli 'Consenti sempre' per ricevere ordini", + "Get to your destination quickly and easily.": "Arriva a destinazione velocemente.", + "Enjoy a safe and comfortable ride.": "Goditi una corsa sicura e comoda.", + "Choose Language": "Scegli lingua", + "Pay with Wallet": "Paga con Portafoglio", + "Invalid MPIN": "MPIN non valido", + "Invalid OTP": "OTP non valido", + "Enter your email address": "Inserisci la tua email", + "Please enter Your Email.": "Inserisci la tua email.", + "Enter your phone number": "Inserisci il tuo numero", + "Please enter your phone number.": "Inserisci il numero di telefono.", + "Please enter Your Password.": "Inserisci la password.", + "if you dont have account": "se non hai un account", + "Register": "Registrati", + "Accept Ride's Terms & Review Privacy Notice": "Accetta Termini e Privacy", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Selezionando 'Accetto', confermo di aver letto termini e privacy. Ho 18 anni.", + "First name": "Nome", + "Enter your first name": "Inserisci il tuo nome", + "Please enter your first name.": "Inserisci il nome.", + "Last name": "Cognome", + "Enter your last name": "Inserisci il tuo cognome", + "Please enter your last name.": "Inserisci il cognome.", + "City": "Città", + "Please enter your City.": "Inserisci la città.", + "Verify Email": "Verifica Email", + "We sent 5 digit to your Email provided": "Inviate 5 cifre alla tua email", + "5 digit": "5 cifre", + "Send Verification Code": "Invia codice verifica", + "Your Ride Duration is ": "Durata corsa: ", + "You will be thier in": "Sarai lì in", + "You trip distance is": "Distanza viaggio:", + "Fee is": "Tariffa:", + "From : ": "Da: ", + "To : ": "A: ", + "Add Promo": "Aggiungi Promo", + "Confirm Selection": "Conferma selezione", + "distance is": "distanza è", + "Privacy Policy": "Informativa sulla privacy", + "Intaleq LLC": "Intaleq LLC", + "Syria'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.": "Servizio di ride-sharing pionieristico in Italia.", + "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 ti connette con gli autisti più vicini.", + "Why Choose Intaleq?": "Perché Intaleq?", + "Closest to You": "Più vicino a te", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Ti connettiamo agli autisti più vicini.", + "Uncompromising Security": "Sicurezza senza compromessi", + "Lady Captains Available": "Autiste donne disponibili", + "Recorded Trips (Voice & AI Analysis)": "Viaggi registrati (Voce & AI)", + "Fastest Complaint Response": "Risposta reclami veloce", + "Our dedicated customer service team ensures swift resolution of any issues.": "Il nostro team risolve i problemi velocemente.", + "Affordable for Everyone": "Conveniente per tutti", + "Frequently Asked Questions": "Domande Frequenti", + "Getting Started": "Iniziare", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Apri l'app, inserisci destinazione e richiedi corsa.", + "Vehicle Options": "Opzioni veicolo", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Economy, Comfort, Luxury.", + "Payments": "Pagamenti", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Contanti o carta.", + "Ride Management": "Gestione corse", + "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "Sì, puoi annullare, potrebbero esserci costi.", + "For Drivers": "Per Autisti", + "Driver Registration": "Registrazione Autista", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Visita il sito per registrarti.", + "Visit Website/Contact Support": "Sito/Supporto", + "Close": "Chiudi", + "We are searching for the nearest driver": "Cerchiamo l'autista più vicino", + "Communication": "Comunicazione", + "How do I communicate with the other party (passenger/driver)?": "Come comunico?", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Tramite chat in-app.", + "Safety & Security": "Sicurezza", + "What safety measures does Intaleq offer?": "Misure di sicurezza?", + "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.": "Verifica autista, tracciamento, SOS.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Prezzi competitivi.", + "Variety of Trip Choices": "Varietà di scelte", + "Choose the trip option that perfectly suits your needs and preferences.": "Scegli l'opzione adatta a te.", + "Your Choice, Our Priority": "Tua scelta, nostra priorità", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Flessibilità di scelta.", + "duration is": "durata è", + "Setting": "Impostazione", + "Find answers to common questions": "Trova risposte", + "I don't need a ride anymore": "Non mi serve più", + "I was just trying the application": "Stavo solo provando", + "No driver accepted my request": "Nessuno ha accettato", + "I added the wrong pick-up/drop-off location": "Posizione errata", + "I don't have a reason": "Nessun motivo", + "Can we know why you want to cancel Ride ?": "Perché vuoi annullare?", + "Add Payment Method": "Aggiungi metodo pagamento", + "Ride Wallet": "Portafoglio Corsa", + "Payment Method": "Metodo pagamento", + "Type here Place": "Scrivi qui luogo", + "Are You sure to ride to": "Sicuro di andare a", + "Confirm": "Conferma", + "You are Delete": "Stai eliminando", + "Deleted": "Eliminato", + "You Dont Have Any places yet !": "Nessun luogo ancora!", + "From : Current Location": "Da: Posizione attuale", + "My Cared": "Le mie carte", + "Add Card": "Aggiungi carta", + "Add Credit Card": "Aggiungi carta credito", + "Please enter the cardholder name": "Nome titolare", + "Please enter the expiry date": "Data scadenza", + "Please enter the CVV code": "Codice CVV", + "Go To Favorite Places": "Vai ai preferiti", + "Go to this Target": "Vai a destinazione", + "My Profile": "Il mio profilo", + "Are you want to go to this site": "Vuoi andare qui?", + "MyLocation": "MiaPosizione", + "my location": "mia posizione", + "Target": "Destinazione", + "You Should choose rate figure": "Devi scegliere un voto", + "Login Captin": "Accesso Autista", + "Register Captin": "Registrazione Autista", + "Send Verfication Code": "Invia codice verifica", + "KM": "KM", + "End Ride": "Fine corsa", + "Minute": "Minuto", + "Go to passenger Location now": "Vai dal passeggero ora", + "Duration of the Ride is ": "Durata corsa: ", + "Distance of the Ride is ": "Distanza corsa: ", + "Name of the Passenger is ": "Nome passeggero: ", + "Hello this is Captain": "Ciao, sono il conducente", + "Start the Ride": "Inizia corsa", + "Please Wait If passenger want To Cancel!": "Attendi se il passeggero vuole annullare!", + "Total Duration:": "Durata totale:", + "Active Duration:": "Durata attiva:", + "Waiting for Captin ...": "Attesa autista...", + "Age is ": "Età: ", + "Rating is ": "Voto: ", + " to arrive you.": " per arrivare.", + "Tariff": "Tariffa", + "Settings": "Impostazioni", + "Feed Back": "Feedback", + "Please enter a valid 16-digit card number": "Inserisci numero carta valido", + "Add Phone": "Aggiungi telefono", + "Please enter a phone number": "Inserisci numero telefono", + "You dont Add Emergency Phone Yet!": "Non hai aggiunto telefono emergenza!", + "You will arrive to your destination after ": "Arriverai tra ", + "You can cancel Ride now": "Puoi annullare ora", + "You Can cancel Ride After Captain did not come in the time": "Puoi annullare se l'autista tarda", + "If you in Car Now. Press Start The Ride": "Se sei in auto, premi Inizia", + "You Dont Have Any amount in": "Non hai credito in", + "Wallet!": "Portafoglio!", + "You Have": "Hai", + "Save Credit Card": "Salva carta", + "Show Promos": "Mostra promo", + "10 and get 4% discount": "10 e ottieni 4% sconto", + "20 and get 6% discount": "20 e ottieni 6% sconto", + "40 and get 8% discount": "40 e ottieni 8% sconto", + "100 and get 11% discount": "100 e ottieni 11% sconto", + "Pay with Your PayPal": "Paga con PayPal", + "You will choose one of above !": "Scegline uno sopra!", + "Edit Profile": "Modifica profilo", + "Copy this Promo to use it in your Ride!": "Copia questa promo!", + "To change some Settings": "Per cambiare impostazioni", + "Order Request Page": "Pagina richiesta", + "Rouats of Trip": "Percorsi", + "Passenger Name is ": "Passeggero: ", + "Total From Passenger is ": "Totale da Passeggero: ", + "Duration To Passenger is ": "Durata verso Passeggero: ", + "Distance To Passenger is ": "Distanza verso Passeggero: ", + "Total For You is ": "Totale per te: ", + "Distance is ": "Distanza: ", + " KM": " KM", + "Duration of Trip is ": "Durata viaggio: ", + " Minutes": " Minuti", + "Apply Order": "Accetta ordine", + "Refuse Order": "Rifiuta ordine", + "Rate Captain": "Vota Autista", + "Enter your Note": "Inserisci nota", + "Type something...": "Scrivi qualcosa...", + "Submit rating": "Invia voto", + "Rate Passenger": "Vota Passeggero", + "Ride Summary": "Riepilogo corsa", + "welcome_message": "Benvenuto in Intaleq!", + "app_description": "App di ride-sharing sicura.", + "get_to_destination": "Arriva a destinazione.", + "get_a_ride": "Ottieni una corsa in minuti.", + "safe_and_comfortable": "Sicura e comoda.", + "committed_to_safety": "Impegnati per la sicurezza.", + "your ride is Accepted": "Corsa accettata", + "Driver is waiting at pickup.": "Autista in attesa.", + "Driver is on the way": "Autista in arrivo", + "Contact Options": "Opzioni contatto", + "Send a custom message": "Invia messaggio personalizzato", + "Type your message": "Scrivi messaggio", + "I will go now": "Vado ora", + "You Have Tips": "Hai mance", + " tips\\nTotal is": " mance\\nTotale è", + "Your fee is ": "Tua tariffa: ", + "Do you want to pay Tips for this Driver": "Vuoi dare la mancia?", + "Tip is ": "Mancia è: ", + "Are you want to wait drivers to accept your order": "Vuoi attendere accettazione?", + "This price is fixed even if the route changes for the driver.": "Prezzo fisso.", + "The price may increase if the route changes.": "Il prezzo può aumentare.", + "The captain is responsible for the route.": "L'autista è responsabile del percorso.", + "We are search for nearst driver": "Cerchiamo autista", + "Your order is being prepared": "Ordine in preparazione", + "The drivers are reviewing your request": "Autisti stanno valutando", + "Your order sent to drivers": "Inviato agli autisti", + "You can call or record audio of this trip": "Puoi chiamare o registrare", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Viaggio iniziato! Condividi o registra.", + "Camera Access Denied.": "Accesso camera negato.", + "Open Settings": "Impostazioni", + "GPS Required Allow !.": "GPS richiesto!", + "Your Account is Deleted": "Account eliminato", + "Are you sure to delete your account?": "Sicuro di eliminare?", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Dati cancellati tra 2 settimane.", + "Enter Your First Name": "Inserisci Nome", + "Are you Sure to LogOut?": "Sicuro di uscire?", + "Email Wrong": "Email errata", + "Email you inserted is Wrong.": "L'email è sbagliata.", + "You have finished all times ": "Tentativi finiti", + "if you want help you can email us here": "Scrivici per aiuto", + "Thanks": "Grazie", + "Email Us": "Scrivici", + "I cant register in your app in face detection ": "Non riesco a registrarmi con face detection", + "Hi": "Ciao", + "No face detected": "Nessun volto rilevato", + "Image detecting result is ": "Risultato: ", + "from 3 times Take Attention": "su 3 volte, Attenzione", + "Be sure for take accurate images please\\nYou have": "Fai foto accurate\\nHai", + "image verified": "immagine verificata", + "Next": "Avanti", + "There is no help Question here": "Nessuna domanda aiuto", + "You dont have Points": "Non hai Punti", + "You Are Stopped For this Day !": "Fermato per oggi!", + "You must be charge your Account": "Devi ricaricare", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Rifiutate 3 corse.\\nA domani!", + "Recharge my Account": "Ricarica conto", + "Ok , See you Tomorrow": "Ok, a domani", + "You are Stopped": "Sei fermo", + "Connected": "Connesso", + "Not Connected": "Non connesso", + "Your are far from passenger location": "Sei lontano dal passeggero", + "go to your passenger location before\\nPassenger cancel trip": "Vai dal passeggero prima che annulli", + "You will get cost of your work for this trip": "Sarai pagato per il lavoro", + " in your wallet": " nel portafoglio", + "you gain": "hai guadagnato", + "Order Cancelled by Passenger": "Annullato dal passeggero", + "Feedback data saved successfully": "Feedback salvato", + "No Promo for today .": "Nessuna promo oggi.", + "Select your destination": "Seleziona destinazione", + "Search for your Start point": "Punto di partenza", + "Search for waypoint": "Punto intermedio", + "Current Location": "Posizione attuale", + "Add Location 1": "Aggiungi Posizione 1", + "You must Verify email !.": "Verifica email!", + "Cropper": "Ritaglia", + "Saved Sucssefully": "Salvato con successo", + "Select Date": "Seleziona Data", + "Birth Date": "Data di nascita", + "Ok": "Ok", + "the 500 points equal 30 JOD": "500 punti equivalgono a 30 €", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "500 punti = 30 €\\nGuadagna", + "token updated": "token aggiornato", + "Add Location 2": "Aggiungi Posizione 2", + "Add Location 3": "Aggiungi Posizione 3", + "Add Location 4": "Aggiungi Posizione 4", + "Waiting for your location": "In attesa posizione", + "Search for your destination": "Cerca destinazione", + "Hi! This is": "Ciao! Questo è", + " I am using": " Uso", + " to ride with": " per viaggiare con", + " as the driver.": " come autista.", + "is driving a ": "guida una ", + " with license plate ": " con targa ", + " I am currently located at ": " Sono a ", + "Please go to Car now ": "Vai all'auto ora ", + "You will receive a code in WhatsApp Messenger": "Riceverai codice su WhatsApp", + "If you need assistance, contact us": "Se serve aiuto, contattaci", + "Promo Ended": "Promo Terminata", + "Enter the promo code and get": "Inserisci codice e ottieni", + "DISCOUNT": "SCONTO", + "No wallet record found": "Nessun record portafoglio", + "for": "per", + "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 è l'app più sicura. Commissione bassa 8%. Assicurazione e manutenzione.", + "You can contact us during working hours from 12:00 - 19:00.": "Contattaci 12:00 - 19:00.", + "Choose a contact option": "Scegli contatto", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Orario 12:00 - 19:00.\\nInvia WhatsApp o email.", + "Promo code copied to clipboard!": "Copiato!", + "Copy Code": "Copia codice", + "Your invite code was successfully applied!": "Codice applicato!", + "Payment Options": "Opzioni pagamento", + "wait 1 minute to receive message": "attendi 1 minuto", + "You have copied the promo code.": "Hai copiato il codice.", + "Select Payment Amount": "Seleziona importo", + "The promotion period has ended.": "Promozione finita.", + "Promo Code Accepted": "Codice accettato", + "Tap on the promo code to copy it!": "Tocca per copiare!", + "Lowest Price Achieved": "Prezzo più basso", + "Cannot apply further discounts.": "Niente più sconti.", + "Promo Already Used": "Già usato", + "Invitation Used": "Invito usato", + "You have already used this promo code.": "Codice già usato.", + "Insert Your Promo Code": "Inserisci codice", + "Enter promo code here": "Codice qui", + "Please enter a valid promo code": "Inserisci codice valido", + "Awfar Car": "Auto Economica", + "Old and affordable, perfect for budget rides.": "Economica e accessibile.", + " If you need to reach me, please contact the driver directly at": " Contatta l'autista al", + "No Car or Driver Found in your area.": "Nessuna auto o autista in zona.", + "Please Try anther time ": "Riprova un'altra volta ", + "There no Driver Aplly your order sorry for that ": "Nessuno ha accettato, spiacenti ", + "Trip Cancelled": "Corsa Annullata", + "The Driver Will be in your location soon .": "L'autista arriverà presto.", + "The distance less than 500 meter.": "Distanza < 500m.", + "Promo End !": "Promo Finita!", + "There is no notification yet": "Nessuna notifica", + "Use Touch ID or Face ID to confirm payment": "Usa Touch ID o Face ID", + "Contact us for any questions on your order.": "Contattaci per domande.", + "Pyament Cancelled .": "Pagamento Annullato.", + "type here": "scrivi qui", + "Scan Driver License": "Scansiona Patente", + "Please put your licence in these border": "Metti la patente nel bordo", + "Camera not initialized yet": "Camera non pronta", + "Take Image": "Scatta foto", + "AI Page": "Pagina AI", + "Take Picture Of ID Card": "Foto Carta d'Identità", + "Take Picture Of Driver License Card": "Foto Patente", + "We are process picture please wait ": "Elaborazione foto, attendi ", + "There is no data yet.": "Nessun dato.", + "Name :": "Nome :", + "Drivers License Class: ": "Classe Patente: ", + "Document Number: ": "Numero Documento: ", + "Address: ": "Indirizzo: ", + "Height: ": "Altezza: ", + "Expiry Date: ": "Scadenza: ", + "Date of Birth: ": "Data di Nascita: ", + "You can't continue with us .\\nYou should renew Driver license": "Devi rinnovare la patente", + "Detect Your Face ": "Rileva Volto ", + "Go to next step\\nscan Car License.": "Avanti\\nscansiona Libretto.", + "Name in arabic": "Nome (Locale)", + "Drivers License Class": "Classe Patente", + "Selected Date": "Data Selezionata", + "Select Time": "Seleziona Ora", + "Selected Time": "Ora Selezionata", + "Selected Date and Time": "Data e Ora", + "Lets check Car license ": "Controlliamo Libretto ", + "Car": "Auto", + "Plate": "Targa", + "Rides": "Corse", + "Selected driver": "Autista selezionato", + "Lets check License Back Face": "Controlliamo Retro", + "Car License Card": "Libretto Circolazione", + "No image selected yet": "Nessuna immagine", + "Made :": "Marca :", + "model :": "Modello :", + "VIN :": "Telaio :", + "year :": "Anno :", + "ُExpire Date": "Data Scadenza", + "Login Driver": "Accesso Autista", + "Password must br at least 6 character.": "Password min 6 caratteri.", + "if you don't have account": "se non hai un account", + "Here recorded trips audio": "Audio viaggi", + "Register as Driver": "Registrati come Autista", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Selezionando \"Accetto\", accetto i Termini d'Uso e ", + "Log Out Page": "Pagina uscita", + "Log Off": "Esci", + "Register Driver": "Registra Autista", + "Verify Email For Driver": "Verifica Email Autista", + "Admin DashBoard": "Dashboard Admin", + "Your name": "Il tuo nome", + "your ride is applied": "corsa richiesta", + "H and": "O e", + "JOD": "€", + "m": "m", + "We search nearst Driver to you": "Cerchiamo autista vicino", + "please wait till driver accept your order": "attendi accettazione", + "No accepted orders? Try raising your trip fee to attract riders.": "Aumenta la tariffa.", + "You should select one": "Selezionane uno", + "The driver accept your order for": "Accettato per", + "The driver on your way": "Autista in arrivo", + "Total price from ": "Prezzo totale da ", + "Order Details Intaleq": "Dettagli Ordine", + "Selected file:": "File selezionato:", + "Your trip cost is": "Costo viaggio", + "this will delete all files from your device": "eliminerà tutti i file", + "Exclusive offers and discounts always with the Intaleq app": "Offerte esclusive", + "Submit Question": "Invia domanda", + "Please enter your Question.": "Inserisci domanda.", + "Help Details": "Dettagli aiuto", + "No trip yet found": "Nessun viaggio", + "No Response yet.": "Nessuna risposta.", + " You Earn today is ": " Guadagno oggi: ", + " You Have in": " Hai in", + "Total points is ": "Punti totali: ", + "Total Connection Duration:": "Durata connessione:", + "Passenger name : ": "Passeggero: ", + "Cost Of Trip IS ": "Costo: ", + "Arrival time": "Ora arrivo", + "arrival time to reach your point": "ora arrivo al punto", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Prezzo dinamico o tempo/distanza.", + "Hello this is Driver": "Ciao sono l'Autista", + "Is the Passenger in your Car ?": "Passeggero in auto?", + "Please wait for the passenger to enter the car before starting the trip.": "Attendi passeggero.", + "No ,still Waiting.": "No, attendo.", + "I arrive you": "Arrivato", + "I Arrive your site": "Arrivato al sito", + "You are not in near to passenger location": "Sei lontano", + "please go to picker location exactly": "vai al punto esatto", + "You Can Cancel Trip And get Cost of Trip From": "Annulla e ottieni costo da", + "Are you sure to cancel?": "Sicuro di annullare?", + "Insert Emergincy Number": "Inserisci Numero SOS", + "Best choice for comfort car and flexible route and stops point": "Auto comfort e percorso flessibile", + "Insert": "Inserisci", + "This is for scooter or a motorcycle.": "Per scooter o moto.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Viaggio diretto, prezzo fisso.", + "You can decline a request without any cost": "Rifiuta senza costi", + "Perfect for adventure seekers who want to experience something new and exciting": "Per chi cerca avventura", + "My current location is:": "Mia posizione:", + "and I have a trip on": "e ho un viaggio su", + "App with Passenger": "App con Passeggero", + "You will be pay the cost to driver or we will get it from you on next trip": "Pagherai all'autista o al prossimo viaggio", + "Trip has Steps": "Viaggio a tappe", + "Distance from Passenger to destination is ": "Distanza Passeggero da destinazione: ", + "price is": "prezzo è", + "This ride type does not allow changes to the destination or additional stops": "Nessun cambio/fermata", + "This price may be changed": "Prezzo variabile", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Niente SIM? Chiama tramite app.", + "This ride type allows changes, but the price may increase": "Cambi permessi, prezzo può salire", + "Select one message": "Scegli messaggio", + "I'm waiting for you": "Ti aspetto", + "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.": "Velocità > 100 km/h. Rallenta.", + "Warning: Intaleqing detected!": "Avviso: Eccesso velocità!", + "Please help! Contact me as soon as possible.": "Aiuto! Contattami subito.", + "Share Trip Details": "Condividi Dettagli", + "Car Plate is ": "Targa: ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 punti = 300 €\\nGuadagna", + "the 300 points equal 300 L.E": "300 punti = 300 €", + "The payment was not approved. Please try again.": "Pagamento non approvato. Riprova.", + "Payment Failed": "Pagamento Fallito", + "This is a scheduled notification.": "Notifica programmata.", + "An error occurred during the payment process.": "Errore pagamento.", + "The payment was approved.": "Approvato.", + "Payment Successful": "Pagamento Riuscito", + "No ride found yet": "Nessuna corsa trovata", + "Accept Order": "Accetta Ordine", + "Bottom Bar Example": "Esempio", + "Driver phone": "Telefono Autista", + "Statistics": "Statistiche", + "Origin": "Origine", + "Destination": "Destinazione", + "Driver Name": "Nome Autista", + "Driver Car Plate": "Targa Autista", + "Available for rides": "Disponibile", + "Scan Id": "Scansiona ID", + "Camera not initilaized yet": "Camera non pronta", + "Scan ID MklGoogle": "Scansiona ID", + "Language": "Lingua", + "Jordan": "Giordania", + "USA": "USA", + "Egypt": "Egitto", + "Turkey": "Turchia", + "Saudi Arabia": "Arabia Saudita", + "Qatar": "Qatar", + "Bahrain": "Bahrain", + "Kuwait": "Kuwait", + "But you have a negative salary of": "Saldo negativo:", + "Promo Code": "Codice Promo", + "Your trip distance is": "Distanza viaggio:", + "Enter promo code": "Inserisci codice", + "You have promo!": "Hai promo!", + "Cost Duration": "Costo Durata", + "Duration is": "Durata:", + "Leave": "Lascia", + "Join": "Unisci", + "Heading your way now. Please be ready.": "Arrivo. Fatti trovare pronto.", + "Approaching your area. Should be there in 3 minutes.": "Vicino. Lì in 3 minuti.", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Traffico. Altro punto raccolta?", + "This ride is already taken by another driver.": "Corsa già presa.", + "You Should be select reason.": "Seleziona motivo.", + "Waiting for Driver ...": "Attesa Autista...", + "Latest Recent Trip": "Ultimo Viaggio", + "from your list": "dalla lista", + "Do you want to change Work location": "Cambiare Lavoro", + "Do you want to change Home location": "Cambiare Casa", + "We Are Sorry That we dont have cars in your Location!": "Spiacenti, niente auto in zona!", + "Choose from Map": "Scegli da Mappa", + "Pick your ride location on the map - Tap to confirm": "Scegli punto sulla mappa - Tocca per confermare", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq è sicura e affidabile.", + "With Intaleq, you can get a ride to your destination in minutes.": "Corsa in minuti.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Impegno per la sicurezza, autisti verificati.", + "Pick from map": "Scegli da mappa", + "No Car in your site. Sorry!": "Nessuna auto. Spiacenti!", + "Nearest Car for you about ": "Auto più vicina tra circa ", + "From :": "Da:", + "Get Details of Trip": "Dettagli", + "If you want add stop click here": "Per aggiungere fermata clicca qui", + "Where you want go ": "Dove vuoi andare ", + "My Card": "La mia carta", + "Start Record": "Avvia registrazione", + "History of Trip": "Cronologia", + "Helping Center": "Centro assistenza", + "Record saved": "Salvato", + "Trips recorded": "Viaggi registrati", + "Select Your Country": "Seleziona Paese", + "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.": "Seleziona il paese per informazioni accurate.", + "Are you sure to delete recorded files": "Eliminare file?", + "Select recorded trip": "Seleziona viaggio", + "Card Number": "Numero Carta", + "Hi, Where to ": "Ciao, dove ", + "Pick your destination from Map": "Destinazione da Mappa", + "Add Stops": "Aggiungi Fermate", + "Get Direction": "Indicazioni", + "Add Location": "Aggiungi Posizione", + "Switch Rider": "Cambia Passeggero", + "You will arrive to your destination after timer end.": "Arrivo al termine del timer.", + "You can cancel trip": "Puoi annullare", + "The driver waitting you in picked location .": "L'autista ti aspetta.", + "Pay with Your": "Paga con", + "Pay with Credit Card": "Paga con Carta", + "Show Promos to Charge": "Promo Ricarica", + "Point": "Punto", + "How many hours would you like to wait?": "Quante ore di attesa?", + "Driver Wallet": "Portafoglio Autista", + "Choose between those Type Cars": "Scegli tipo auto", + "hour": "ora", + "Select Waiting Hours": "Ore Attesa", + "Total Points is": "Punti Totali", + "You will receive a code in SMS message": "Riceverai SMS", + "Done": "Fatto", + "Total Budget from trips is ": "Budget totale viaggi: ", + "Total Amount:": "Importo Totale:", + "Total Budget from trips by\\nCredit card is ": "Budget totale Carte: ", + "This amount for all trip I get from Passengers": "Importo dai Passeggeri", + "Pay from my budget": "Paga dal budget", + "This amount for all trip I get from Passengers and Collected For me in": "Importo raccolto", + "You can buy points from your budget": "Compra punti dal budget", + "insert amount": "inserisci importo", + "You can buy Points to let you online\\nby this list below": "Compra Punti per andare online", + "Create Wallet to receive your money": "Crea Portafoglio", + "Enter your feedback here": "Inserisci feedback", + "Please enter your feedback.": "Inserisci feedback.", + "Feedback": "Feedback", + "Submit ": "Invia ", + "Click here to Show it in Map": "Mostra su Mappa", + "Canceled": "Annullato", + "No I want": "No voglio", + "Email is": "Email:", + "Phone Number is": "Telefono:", + "Date of Birth is": "Data Nascita:", + "Sex is ": "Sesso: ", + "Car Details": "Dettagli Auto", + "VIN is": "Telaio:", + "Color is ": "Colore: ", + "Make is ": "Marca: ", + "Model is": "Modello:", + "Year is": "Anno:", + "Expiration Date ": "Scadenza: ", + "Edit Your data": "Modifica dati", + "write vin for your car": "scrivi telaio", + "VIN": "Telaio", + "Please verify your identity": "Verifica identità", + "write Color for your car": "scrivi colore", + "write Make for your car": "scrivi marca", + "write Model for your car": "scrivi modello", + "write Year for your car": "scrivi anno", + "write Expiration Date for your car": "scrivi scadenza", + "Tariffs": "Tariffe", + "Minimum fare": "Tariffa minima", + "Maximum fare": "Tariffa massima", + "Flag-down fee": "Tariffa base", + "Including Tax": "IVA inclusa", + "BookingFee": "Costo Prenotazione", + "Morning": "Mattina", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 - 10:30", + "Evening": "Sera", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 - 15:00", + "Night": "Notte", + "You have in account": "Hai nel conto", + "Select Country": "Seleziona Paese", + "Ride Today : ": "Corsa Oggi: ", + "Change Home location ?": "تغيير موقع المنزل؟", + "Change Work location ?": "تغيير موقع العمل؟", + "from 23:59 till 05:30": "23:59 - 05:30", + "Rate Driver": "Vota Autista", + "Total Cost is ": "Costo Totale: ", + "Write note": "Scrivi nota", + "Time to arrive": "Ora arrivo", + "Ride Summaries": "Riepiloghi", + "Total Cost": "Costo Totale", + "Average of Hours of": "Media ore", + " is ON for this month": " è ON questo mese", + "Days": "Giorni", + "Total Hours on month": "Ore Totali mese", + "Counts of Hours on days": "Ore per giorni", + "OrderId": "ID Ordine", + "created time": "ora creazione", + "Intaleq Over": "Intaleq Finito", + "I will slow down": "Rallenterò", + "Map Passenger": "Mappa Passeggero", + "Be Slowly": "Vai piano", + "If you want to make Google Map App run directly when you apply order": "Apri Google Maps direttamente", + "You can change the language of the app": "Cambia lingua app", + "Your Budget less than needed": "Budget insufficiente", + "You can change the Country to get all features": "Cambia Paese per tutte le funzioni", + "There is no Car or Driver in your area.": "Non ci sono auto o autisti nella tua zona.", + "Change Country": "Cambia Paese" + }, + "zh": { + "1 Passenger": "1 Passenger", + "2 Passengers": "2 Passengers", + "3 Passengers": "3 Passengers", + "4 Passengers": "4 Passengers", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "Account": "Account", + "Actions": "Actions", + "Active Users": "Active Users", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "After this period\\nYou can't cancel!": "بعد هالوقت\\nما تقدر تلغي!", + "Age is": "Age is", + "Alert": "Alert", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "Appearance": "Appearance", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Arrived": "Arrived", + "Audio Recording": "Audio Recording", + "Call": "Call", + "Call Support": "Call Support", + "Call left": "Call left", + "Change Photo": "Change Photo", + "Choose from Gallery": "Choose from Gallery", + "Choose from contact": "Choose from contact", + "Click to track the trip": "Click to track the trip", + "Close panel": "Close panel", + "Coming": "Coming", + "Complete Payment": "Complete Payment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pickup Location": "Confirm Pickup Location", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Crop Photo": "Crop Photo", + "Dark Mode": "Dark Mode", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete Recording?": "Delete Recording?", + "Destination Set": "Destination Set", + "Distance": "Distance", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Drawing route on map...": "Drawing route on map...", + "Driver Phone": "Driver Phone", + "Driver is Going To You": "Driver is Going To You", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter your City": "Enter your City", + "Enter your Password": "Enter your Password", + "Failed to book trip: \\$e": "Failed to book trip: \\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Finished": "Finished", + "Fixed Price": "Fixed Price", + "General": "General", + "Grant": "Grant", + "Have a Promo Code?": "Have a Promo Code?", + "Hello! I'm inviting you to try Intaleq.": "هلا! أدعوك تجرب تطبيق انطلق.", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi, Where to": "Hi, Where to", + "Home": "Home", + "I am currently located at": "I am currently located at", + "I'm Safe": "I'm Safe", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "Image Upload Failed": "Image Upload Failed", + "Intaleq Passenger": "Intaleq Passenger", + "Invite": "Invite", + "Join a channel": "Join a channel", + "Last Name": "Last Name", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Light Mode": "Light Mode", + "Listen": "Listen", + "Location": "Location", + "Location Received": "Location Received", + "Logout": "Logout", + "Map Error": "Map Error", + "Message": "Message", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "N/A": "N/A", + "No Notifications": "No Notifications", + "No Recordings Found": "No Recordings Found", + "No Rides now!": "No Rides now!", + "No contacts available": "No contacts available", + "No i want": "No i want", + "No notification data found.": "No notification data found.", + "No routes available for this destination.": "No routes available for this destination.", + "No user found": "No user found", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "On Trip": "On Trip", + "Open": "Open", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Order VIP Canceld": "Order VIP Canceld", + "Passenger": "Passenger", + "Passenger cancel order": "Passenger cancel order", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay with PayPal": "Pay with PayPal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick start point on map": "Pick start point on map", + "Plan Your Route": "Plan Your Route", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your phone number": "Please enter your phone number", + "Please go to Car now": "Please go to Car now", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Preferences": "Preferences", + "Profile photo updated": "Profile photo updated", + "Quick Message": "Quick Message", + "Rating is": "Rating is", + "Received empty route data.": "Received empty route data.", + "Record": "Record", + "Record your trips to see them here.": "Record your trips to see them here.", + "Rejected Orders Count": "Rejected Orders Count", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Name": "Save Name", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Select Appearance": "Select Appearance", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select This Ride": "Select This Ride", + "Select betweeen types": "Select betweeen types", + "Send Email": "Send Email", + "Send SOS": "Send SOS", + "Send WhatsApp Message": "Send WhatsApp Message", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Set Destination": "Set Destination", + "Set Phone Number": "Set Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Share": "Share", + "Share Trip": "Share Trip", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Start Point": "Start Point", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stop": "Stop", + "Submit Rating": "Submit Rating", + "Support & Info": "Support & Info", + "System Default": "System Default", + "Take a Photo": "Take a Photo", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "Time": "Time", + "To :": "To :", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Total Invites": "Total Invites", + "Total Price": "Total Price", + "Trip booked successfully": "Trip booked successfully", + "Type your message...": "Type your message...", + "Unknown Location": "Unknown Location", + "Update Name": "Update Name", + "Verified Passenger": "Verified Passenger", + "View Map": "View Map", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting...": "Waiting...", + "Warning": "Warning", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "WhatsApp": "WhatsApp", + "Why do you want to cancel?": "Why do you want to cancel?", + "Yes": "Yes", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You will choose one of above!": "You will choose one of above!", + "Your Rewards": "Your Rewards", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "as the driver.": "as the driver.", + "cancelled": "cancelled", + "due to a previous trip.": "due to a previous trip.", + "insert sos phone": "insert sos phone", + "is driving a": "is driving a", + "min added to fare": "min added to fare", + "phone not verified": "phone not verified", + "to arrive you.": "to arrive you.", + "unknown": "unknown", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "with license plate": "with license plate", + "witout zero": "witout zero", + "you must insert token code": "you must insert token code", + "Syria": "叙利亚", + "SYP": "叙利亚镑", + "Order": "طلب", + "OrderVIP": "طلب VIP", + "Cancel Trip": "إلغاء المشوار", + "Passenger Cancel Trip": "الراكب ألغى المشوار", + "VIP Order": "طلب VIP", + "The driver accepted your trip": "الكابتن قبل مشوارك", + "message From passenger": "رسالة من الراكب", + "Cancel": "إلغاء", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "تم إلغاء المشوار. المبلغ رجع لمحفظتك.", + "token change": "تغيير الرمز", + "Changed my mind": "我改变了主意", + "Please write the reason...": "请填写原因...", + "Found another transport": "找到了其他交通工具", + "Driver is taking too long": "司机来得太慢了", + "Driver asked me to cancel": "司机要求我取消订单", + "Wrong pickup location": "上车地点错误", + "Other": "غير ذلك", + "Don't Cancel": "不要取消", + "No Drivers Found": "未找到司机", + "Sorry, there are no cars available of this type right now.": "抱歉,目前没有此类车型。", + "Refresh Map": "刷新地图", + "face detect": "التحقق من الوجه", + "Face Detection Result": "نتيجة التحقق", + "similar": "مطابق", + "not similar": "غير مطابق", + "Searching for nearby drivers...": "正在寻找附近的司机...", + "Error": "خطأ", + "Failed to search, please try again later": "搜索失败,请稍后重试", + "Connection Error": "连接错误", + "Please check your internet connection": "请检查您的网络连接", + "Sorry 😔": "抱歉 😔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "司机因紧急情况取消了行程。\\n您想立即寻找其他司机吗?", + "Search for another driver": "寻找其他司机", + "We apologize 😔": "我们深表歉意 😔", + "No drivers found at the moment.\\nPlease try again later.": "目前未找到司机。\\n请稍后重试。", + "Hi ,I will go now": "هلا، أنا بطلع الحين", + "Passenger come to you": "الراكب جايك", + "Call Income": "مكالمة واردة", + "Call Income from Passenger": "مكالمة من الراكب", + "Criminal Document Required": "صحيفة خلو السوابق مطلوبة", + "You should have upload it .": "لازم ترفعها طال عمرك.", + "Call End": "انتهاء المكالمة", + "The order has been accepted by another driver.": "الطلب أخذه كابتن ثاني.", + "The order Accepted by another Driver": "الطلب راح لكابتن ثاني", + "We regret to inform you that another driver has accepted this order.": "المعذرة، في كابتن ثاني سبقك وأخذ الطلب.", + "Driver Applied the Ride for You": "الكابتن قدم الطلب لك", + "Applied": "تم التقديم", + "Please go to Car Driver": "تفضل عند الكابتن", + "Ok I will go now.": "أبشر، رايح له الحين.", + "Accepted Ride": "المشوار مقبول", + "Driver Accepted the Ride for You": "الكابتن قبل المشوار عشانك", + "Promo": "كود خصم", + "Show latest promo": "عرض الخصومات", + "Trip Monitoring": "متابعة المشوار", + "Driver Is Going To Passenger": "الكابتن متوجه للراكب", + "Please stay on the picked point.": "خليك في الموقع المحدد لا هنت.", + "message From Driver": "رسالة من الكابتن", + "Trip is Begin": "بدأ المشوار", + "Cancel Trip from driver": "إلغاء من الكابتن", + "We will look for a new driver.\\nPlease wait.": "بنشوف لك كابتن ثاني.\\nانتظر لاهنت.", + "The driver canceled your ride.": "الكابتن ألغى مشوارك.", + "Driver Finish Trip": "الكابتن خلص المشوار", + "you will pay to Driver": "الدفع للكابتن", + "Don’t forget your personal belongings.": "انتبه لأغراضك الشخصية.", + "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": "تأكد إن أغراضك معك وإن الباقي رجع للمحفظة قبل تنزل. شكراً لاستخدامك انطلق.", + "Finish Monitor": "إنهاء المتابعة", + "Trip finished": "انتهت الرحلة", + "Call Income from Driver": "اتصال من الكابتن", + "Driver Cancelled Your Trip": "الكابتن كنسل الرحلة", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "بتدفع حق وقت الكابتن، شوف محفظتك في انطلق", + "Order Applied": "تم الطلب", + "welcome to intaleq": "حياك في انطلق", + "login or register subtitle": "دخل رقم جوالك للدخول أو التسجيل", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "ما تقدر ترفع شكوى على هالمشوار. يمكن ما كمل أو ما بدأ.", + "phone number label": "رقم الجوال", + "phone number required": "مطلوب رقم الجوال", + "send otp button": "أرسل كود التحقق", + "verify your number title": "تحقق من رقمك", + "otp sent subtitle": "أرسلنا كود من 5 أرقام على\\n@phoneNumber", + "verify and continue button": "تحقق وكمال", + "enter otp validation": "دخل الكود (5 أرقام)", + "one last step title": "خطوة أخيرة", + "complete profile subtitle": "كمل بياناتك عشان تبدأ", + "first name label": "الاسم الأول", + "first name required": "الاسم الأول مطلوب", + "last name label": "اسم العائلة", + "Verify OTP": "تأكيد الرمز", + "Verification Code": "رمز التحقق", + "We have sent a verification code to your mobile number:": "طرشنا لك رمز التحقق على جوالك:", + "Verify": "تأكيد", + "Resend Code": "إعادة إرسال", + "You can resend in": "تقدر تعيد الإرسال بعد", + "seconds": "ثانية", + "Please enter the complete 6-digit code.": "دخل الرمز كامل (6 أرقام).", + "last name required": "اسم العائلة مطلوب", + "email optional label": "الإيميل (اختياري)", + "complete registration button": "إتمام التسجيل", + "User with this phone number or email already exists.": "هالرقم أو الإيميل مسجل من قبل.", + "otp sent success": "تم إرسال الرمز للواتساب.", + "failed to send otp": "فشل إرسال الرمز.", + "server error try again": "خطأ في السيرفر، حاول مرة ثانية.", + "an error occurred": "صار خطأ غير متوقع: @error", + "otp verification failed": "رمز التحقق غلط.", + "registration failed": "فشل التسجيل.", + "welcome user": "يا هلا، @firstName!", + "Don't forget your personal belongings.": "لا تنسى أغراضك.", + "Share App": "شارك التطبيق", + "Wallet": "المحفظة", + "Balance": "الرصيد", + "Profile": "الملف الشخصي", + "Contact Support": "تواصل مع الدعم", + "Session expired. Please log in again.": "الجلسة انتهت. سجل دخولك مرة ثانية.", + "Security Warning": "⚠️ تنبيه أمني", + "Potential security risks detected. The application may not function correctly.": "اكتشفنا مخاطر أمنية. يمكن التطبيق ما يشتغل صح.", + "please order now": "اطلب الحين", + "Where to": "وين الوجهة؟", + "Where are you going?": "وين رايح؟", + "Quick Actions": "إجراءات سريعة", + "My Balance": "رصيدي", + "Order History": "سجل الطلبات", + "Contact Us": "اتصل بنا", + "Driver": "كابتن", + "Complaint": "شكوى", + "Promos": "العروض", + "Recent Places": "الأماكن الأخيرة", + "From": "من", + "WhatsApp Location Extractor": "جلب الموقع من واتساب", + "Location Link": "رابط الموقع", + "Paste location link here": "الصق الرابط هنا", + "Go to this location": "رح لهالموقع", + "Paste WhatsApp location link": "حط رابط موقع الواتساب", + "Select Order Type": "اختر نوع الطلب", + "Choose who this order is for": "الطلب لمين؟", + "I want to order for myself": "بطلب لنفسي", + "I want to order for someone else": "بطلب لشخص ثاني", + "Order for someone else": "اطلب لغيرك", + "Order for myself": "اطلب لنفسي", + "Are you want to go this site": "تبي تروح هالمكان؟", + "No": "لا", + "Intaleq Wallet": "محفظة انطلق", + "Have a promo code?": "عندك كود خصم؟", + "Your Wallet balance is ": "رصيدك بالمحفظة: ", + "Cash": "كاش", + "Pay directly to the captain": "ادفع للكابتن كاش", + "Top up Wallet to continue": "اشحن المحفظة عشان تكمل", + "Or pay with Cash instead": "أو ادفع كاش", + "Confirm & Find a Ride": "أكد ودور كابتن", + "Balance:": "الرصيد:", + "Alerts": "تنبيهات", + "Welcome Back!": "هلا بك من جديد!", + "Current Balance": "الرصيد الحالي", + "Set Wallet Phone Number": "حط رقم للمحفظة", + "Link a phone number for transfers": "اربط رقم للتحويلات", + "Payment History": "سجل المدفوعات", + "View your past transactions": "شوف عملياتك السابقة", + "Top up Wallet": "شحن المحفظة", + "Add funds using our secure methods": "ضيف رصيد بطرق آمنة", + "Increase Fare": "زيد السعر", + "No drivers accepted your request yet": "ماحد قبل طلبك لسه", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "لو زودت السعر ممكن يجيك كابتن أسرع. تبي تزيد السعر؟", + "Please make sure not to leave any personal belongings in the car.": "تأكد إنك ما نسيت شي في السيارة.", + "Cancel Ride": "إلغاء المشوار", + "Route Not Found": "الطريق غير معروف", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "ما لقينا طريق للوجهة هذي. جرب تختار نقطة ثانية.", + "You can call or record audio during this trip.": "تقدر تتصل أو تسجل صوت خلال المشوار.", + "Warning: Speeding detected!": "تنبيه: سرعة عالية!", + "Comfort": "مريح", + "Intaleq Balance": "رصيد انطلق", + "Electric": "كهربائية", + "Lady": "نواعم", + "Van": "عائلية (فان)", + "Rayeh Gai": "رايح جاي", + "Join Intaleq as a driver using my referral code!": "سجل كابتن في انطلق بكود الدعوة حقي!", + "Use code:": "استخدم الكود:", + "Download the Intaleq Driver app now and earn rewards!": "حمل تطبيق كابتن انطلق واكسب مكافآت!", + "Get a discount on your first Intaleq ride!": "لك خصم على أول مشوار في انطلق!", + "Use my referral code:": "استخدم كود الدعوة:", + "Download the Intaleq app now and enjoy your ride!": "حمل تطبيق انطلق واستمتع بمشوارك!", + "Contacts Loaded": "تم تحميل الأسماء", + "Showing": "عرض", + "of": "من", + "Customer not found": "العميل غير موجود", + "Wallet is blocked": "المحفظة موقوفة", + "Customer phone is not active": "جوال العميل مو شغال", + "Balance not enough": "الرصيد ما يكفي", + "Balance limit exceeded": "تجاوزت حد الرصيد", + "Incorrect sms code": "⚠️ رمز التحقق غلط. حاول مرة ثانية.", + "contacts. Others were hidden because they don't have a phone number.": "جهة اتصال. الباقي مخفي عشان ما عندهم أرقام.", + "No contacts found": "ما لقينا جهات اتصال", + "No contacts with phone numbers were found on your device.": "ما في أرقام بجهازك.", + "Permission denied": "ما في صلاحية", + "Contact permission is required to pick contacts": "نحتاج صلاحية الأسماء.", + "An error occurred while picking contacts:": "صار خطأ وحنا نختار الأسماء:", + "Please enter a correct phone": "دخل رقم جوال صح", + "Success": "تم", + "Invite sent successfully": "أرسلنا الدعوة", + "Use my invitation code to get a special gift on your first ride!": "استخدم كودي عشان يجيك هدية بأول مشوار!", + "Your personal invitation code is:": "كود الدعوة حقك:", + "Be sure to use it quickly! This code expires at": "استعجل عليه! الكود ينتهي في", + "Download the app now:": "حمل التطبيق:", + "See you on the road!": "نشوفك بالدرب!", + "This phone number has already been invited.": "هالرقم قد أرسلنا له دعوة.", + "An unexpected error occurred. Please try again.": "صار خطأ غير متوقع. حاول مرة ثانية.", + "You deserve the gift": "تستاهل الهدية", + "Claim your 20 LE gift for inviting": "اطلب هديتك (20 ريال) للدعوة", + "You have got a gift for invitation": "جتك هدية عشان الدعوة", + "You have earned 20": "كسبت 20", + "LE": "ر.س", + "Vibration feedback for all buttons": "اهتزاز لكل الأزرار", + "Share with friends and earn rewards": "شارك مع ربعك واكسب", + "Gift Already Claimed": "أخذت الهدية من قبل", + "You have already received your gift for inviting": "قد استلمت هديتك على هالدعوة", + "Keep it up!": "كفو عليك!", + "has completed": "كمل", + "trips": "مشاوير", + "Personal Information": "المعلومات الشخصية", + "Name": "الاسم", + "Not set": "مو محدد", + "Gender": "الجنس", + "Education": "التعليم", + "Work & Contact": "العمل والتواصل", + "Employment Type": "نوع الوظيفة", + "Marital Status": "الحالة الاجتماعية", + "SOS Phone": "رقم الطوارئ", + "Sign Out": "تسجيل خروج", + "Delete My Account": "حذف حسابي", + "Update Gender": "تحديث الجنس", + "Update": "تحديث", + "Update Education": "تحديث التعليم", + "Are you sure? This action cannot be undone.": "متأكد؟ ما تقدر تتراجع بعدين.", + "Confirm your Email": "أكد إيميلك", + "Type your Email": "اكتب إيميلك", + "Delete Permanently": "حذف نهائي", + "Male": "رجل", + "Female": "أنثى", + "High School Diploma": "ثانوي", + "Associate Degree": "دبلوم", + "Bachelor's Degree": "بكالوريوس", + "Master's Degree": "ماجستير", + "Doctoral Degree": "دكتوراه", + "Select your preferred language for the app interface.": "اختر لغة التطبيق.", + "Language Options": "خيارات اللغة", + "You can claim your gift once they complete 2 trips.": "تقدر تأخذ الهدية إذا كملوا مشوارين.", + "Closest & Cheapest": "الأقرب والأرخص", + "Comfort choice": "خيار الراحة", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "تنقل بسيارة كهربائية حديثة وهادية. خيار فخم وصديق للبيئة.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان واسعة للعوايل والمجموعات. راحة وأمان وتوفير.", + "Quiet & Eco-Friendly": "هادية وصديقة للبيئة", + "Lady Captain for girls": "كابتن سيدة للبنات", + "Van for familly": "فان للعائلة", + "Are you sure to delete this location?": "متأكد تبي تحذف هالموقع؟", + "Submit a Complaint": "رفع شكوى", + "Submit Complaint": "إرسال الشكوى", + "No trip history found": "ما فيه سجل مشاوير", + "Your past trips will appear here.": "مشاويرك السابقة بتطلع هنا.", + "1. Describe Your Issue": "١. وش المشكلة؟", + "Enter your complaint here...": "اكتب شكواك هنا...", + "2. Attach Recorded Audio": "٢. أرفق تسجيل صوتي", + "No audio files found.": "ما لقينا ملفات صوتية.", + "Confirm Attachment": "تأكيد الإرفاق", + "Attach this audio file?": "ترفق هالملف الصوتي؟", + "Uploaded": "تم الرفع", + "3. Review Details & Response": "٣. مراجعة التفاصيل والرد", + "Date": "التاريخ", + "Today's Promos": "عروض اليوم", + "No promos available right now.": "ما فيه عروض حالياً.", + "Check back later for new offers!": "شيك بعدين يمكن فيه عروض!", + "Valid Until:": "صالح لين:", + "CODE": "验证码", + "I Agree": "أوافق", + "Continue": "متابعة", + "Enable Location": "تفعيل الموقع", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "عشان نخدمك صح، نبي نعرف موقعك. بنستخدمه عشان نلقى لك كباتن قريبين.", + "Allow Location Access": "السماح بالوصول للموقع", + "Welcome to Intaleq!": "حياك الله في انطلق!", + "Before we start, please review our terms.": "قبل نبدأ، راجع شروطنا لاهنت.", + "Your journey starts here": "مشوارك يبدأ هنا", + "Cancel Search": "إلغاء البحث", + "Set pickup location": "حدد موقع الانطلاق", + "Move the map to adjust the pin": "حرك الخريطة عشان تظبط الموقع", + "Searching for the nearest captain...": "جاري البحث عن أقرب كابتن...", + "No one accepted? Try increasing the fare.": "ماحد قبل؟ جرب تزيد السعر.", + "Increase Your Trip Fee (Optional)": "زيد سعر المشوار (اختياري)", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ما لقينا كباتن للحين. فكر تزيد السعر عشان يوافقون أسرع.", + "No, thanks": "لا، شكراً", + "Increase Fee": "زيد السعر", + "Copy": "نسخ", + "Promo Copied!": "تم نسخ الكود!", + "Code": "代码", + "Send Intaleq app to him": "أرسل له تطبيق انطلق", + "No passenger found for the given phone number": "ما لقينا راكب بهالرقم", + "No user found for the given phone number": "ما لقينا مستخدم بهالرقم", + "This price is": "هالسعر هو", + "Work": "الدوام", + "Add Home": "إضافة البيت", + "Notifications": "الإشعارات", + "💳 Pay with Credit Card": "💳 ادفع بالبطاقة", + "⚠️ You need to choose an amount!": "⚠️ لازم تختار مبلغ!", + "💰 Pay with Wallet": "💰 ادفع بالمحفظة", + "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق لتغيير اللغة.", + "joined": "انضم", + "Driver joined the channel": "الكابتن دخل الشات", + "Driver left the channel": "الكابتن طلع من الشات", + "Call Page": "صفحة الاتصال", + "Call Left": "مكالمات باقية", + " Next as Cash !": " التالي كاش!", + "To use Wallet charge it": "عشان تستخدم المحفظة اشحنها", + "We are searching for the nearest driver to you": "ندور لك أقرب كابتن", + "Best choice for cities": "أفضل خيار للمدن", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة مريحة للسفر بين المدن.", + "This trip is for women only": "المشوار للنساء فقط", + "Total budgets on month": "ميزانية الشهر", + "You have call from driver": "عندك اتصال من الكابتن", + "Intaleq": "انطلق", + "passenger agreement": "اتفاقية الراكب", + "To become a passenger, you must review and agree to the ": "عشان تصير راكب، لازم توافق على ", + "agreement subtitle": "للمتابعة، وافق على الشروط والخصوصية.", + "terms of use": "شروط الاستخدام", + " and acknowledge our Privacy Policy.": " وتقر بسياسة الخصوصية.", + "and acknowledge our": "وتقر بـ", + "privacy policy": "سياسة الخصوصية.", + "i agree": "موافق", + "Driver already has 2 trips within the specified period.": "الكابتن عنده مشوارين بهالوقت.", + "The invitation was sent successfully": "أرسلنا الدعوة", + "You should select your country": "اختر دولتك", + "Scooter": "سكوتر", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "مشوار بحجز مسبق، يمديك تختار أفضل الكباتن والسيارات.", + "Mishwar Vip": "مشوار VIP", + "The driver waiting you in picked location .": "الكابتن ينتظرك في الموقع.", + "About Us": "من نحن", + "You can change the vibration feedback for all buttons": "تقدر تغير اهتزاز الأزرار", + "Most Secure Methods": "طرق آمنة", + "In-App VOIP Calls": "مكالمات صوتية بالتطبيق", + "Recorded Trips for Safety": "مشاوير مسجلة للأمان", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nونهتم بالأسعار تكون مناسبة.", + "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:": "انطلق تطبيق مشاوير مصمم لأمانك وميزانيتك. نوصلك بكباتن ثقة.", + "Sign In by Apple": "دخول بـ Apple", + "Sign In by Google": "دخول بـ Google", + "How do I request a ride?": "كيف أطلب مشوار؟", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "خطوات طلب مشوار بتطبيق انطلق.", + "What types of vehicles are available?": "وش أنواع السيارات؟", + "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.": "نوفر خيارات كثيرة مثل الاقتصادية والمريحة والفخمة.", + "How can I pay for my ride?": "كيف أدفع؟", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "تقدر تدفع كاش أو بالبطاقة.", + "Can I cancel my ride?": "أقدر ألغي المشوار؟", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "是的,您可以在特定条件下(例如分配司机前)取消行程。详情请参阅 Intaleq 取消政策。", + "Driver Registration & Requirements": "تسجيل الكباتن", + "How can I register as a driver?": "كيف أسجل كابتن؟", + "What are the requirements to become a driver?": "وش الشروط؟", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "زور موقعنا أو كلم الدعم.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "عندنا شات داخل التطبيق.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "سلامتك تهمنا. نتحقق من الكباتن وعندنا تتبع للمشوار.", + "Frequently Questions": "الأسئلة الشائعة", + "User does not exist.": "المستخدم مو موجود.", + "We need your phone number to contact you and to help you.": "نحتاج رقمك للتواصل.", + "You will recieve code in sms message": "بيجيك كود في رسالة", + "Please enter": "الرجاء إدخال", + "We need your phone number to contact you and to help you receive orders.": "نحتاج رقمك عشان تستقبل طلبات.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "الاسم في خلو السوابق ما يطابق الرخصة.", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "رقم الهوية في الرخصة ما يطابق الهوية.", + "Capture an Image of Your Criminal Record": "صور صحيفة خلو السوابق", + "IssueDate": "تاريخ الإصدار", + "Capture an Image of Your car license front": "صور استمارة السيارة (وجه)", + "Capture an Image of Your ID Document front": "صور الهوية (وجه)", + "NationalID": "رقم الهوية/الإقامة", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "شارك التطبيق مع ربعك واكسب مكافآت.", + "FullName": "الاسم الكامل", + "No invitation found yet!": "ما فيه دعوات!", + "InspectionResult": "نتيجة الفحص", + "Criminal Record": "خلو السوابق", + "The email or phone number is already registered.": "الإيميل أو الرقم مسجل.", + "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.": "عشان تصير كابتن، ارفع رخصتك والهوية والاستمارة. النظام بيراجعها بسرعة.", + "Documents check": "فحص المستندات", + "Driver's License": "رخصة القيادة", + "for your first registration!": "لتسجيلك الأول!", + "Get it Now!": "خذها الحين!", + "before": "قبل", + "Code not approved": "الكود مرفوض", + "3000 LE": "3000 ر.س", + "Do you have an invitation code from another driver?": "عندك كود دعوة من كابتن ثاني؟", + "Paste the code here": "الصق الكود", + "No, I don't have a code": "لا، ما عندي", + "Audio uploaded successfully.": "تم رفع الصوت.", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالي للي يبون سيارات جديدة وحرية اختيار الطريق", + "Share this code with your friends and earn rewards when they use it!": "شارك الكود واكسب!", + "Enter phone": "دخل الرقم", + "complete, you can claim your gift": "اكتمل، اطلب هديتك", + "When": "متى", + "Enter driver's phone": "رقم الكابتن", + "Send Invite": "إرسال دعوة", + "Show Invitations": "عرض الدعوات", + "License Type": "نوع الرخصة", + "National Number": "رقم الهوية", + "Name (Arabic)": "الاسم (عربي)", + "Name (English)": "الاسم (إنجليزي)", + "Address": "العنوان", + "Issue Date": "تاريخ الإصدار", + "Expiry Date": "تاريخ الانتهاء", + "License Categories": "فئات الرخصة", + "driver_license": "رخصة_قيادة", + "Capture an Image of Your Driver License": "صور رخصتك", + "ID Documents Back": "ظهر الهوية", + "National ID": "رقم الهوية", + "Occupation": "المهنة", + "Religion": "الديانة", + "Full Name (Marital)": "الاسم الكامل", + "Expiration Date": "تاريخ الانتهاء", + "Capture an Image of Your ID Document Back": "صور ظهر الهوية", + "ID Documents Front": "وجه الهوية", + "First Name": "الاسم الأول", + "CardID": "رقم البطاقة", + "Vehicle Details Front": "تفاصيل المركبة (أمام)", + "Plate Number": "رقم اللوحة", + "Owner Name": "اسم المالك", + "Vehicle Details Back": "تفاصيل المركبة (خلف)", + "Make": "الشركة المصنعة", + "Model": "الموديل", + "Year": "السنة", + "Chassis": "رقم الشاصي", + "Color": "اللون", + "Displacement": "سعة المحرك", + "Fuel": "الوقود", + "Tax Expiry Date": "تاريخ انتهاء الضريبة", + "Inspection Date": "تاريخ الفحص الدوري", + "Capture an Image of Your car license back": "صور استمارة السيارة (قفا)", + "Capture an Image of Your Driver's License": "صور رخصتك", + "Sign in with Google for easier email and name entry": "ادخل بقوقل أسهل", + "You will choose allow all the time to be ready receive orders": "اختر 'السماح طوال الوقت' لاستقبال الطلبات", + "Get to your destination quickly and easily.": "وصل وجهتك بسرعة وسهولة.", + "Enjoy a safe and comfortable ride.": "استمتع بمشوار آمن ومريح.", + "Choose Language": "اختر اللغة", + "Pay with Wallet": "ادفع بالمحفظة", + "Invalid MPIN": "رمز خطأ", + "Invalid OTP": "كود غلط", + "Enter your email address": "دخل إيميلك", + "Please enter Your Email.": "دخل الإيميل لاهنت.", + "Enter your phone number": "دخل رقمك", + "Please enter your phone number.": "دخل رقم الجوال.", + "Please enter Your Password.": "دخل كلمة المرور.", + "if you dont have account": "إذا ما عندك حساب", + "Register": "تسجيل", + "Accept Ride's Terms & Review Privacy Notice": "الموافقة على الشروط", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "باختيار 'أوافق'، أقر بأني قريت الشروط وعمري 18 وفوق.", + "First name": "الاسم الأول", + "Enter your first name": "دخل اسمك", + "Please enter your first name.": "دخل الاسم الأول.", + "Last name": "اسم العائلة", + "Enter your last name": "دخل اسم العائلة", + "Please enter your last name.": "دخل اسم العائلة.", + "City": "المدينة", + "Please enter your City.": "دخل مدينتك.", + "Verify Email": "تأكيد الإيميل", + "We sent 5 digit to your Email provided": "أرسلنا 5 أرقام لإيميلك", + "5 digit": "5 أرقام", + "Send Verification Code": "أرسل كود التحقق", + "Your Ride Duration is ": "مدة المشوار: ", + "You will be thier in": "بتوصل خلال", + "You trip distance is": "مسافة المشوار:", + "Fee is": "السعر:", + "From : ": "من: ", + "To : ": "إلى: ", + "Add Promo": "ضيف خصم", + "Confirm Selection": "تأكيد الاختيار", + "distance is": "المسافة هي", + "Privacy Policy": "سياسة الخصوصية", + "Intaleq LLC": "شركة انطلق", + "Syria'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.": "خدمة مشاركة مشاوير رائدة في الخليج.", + "Intaleq is the first ride-sharing app in Syria, designed to connect you with the nearest drivers for a quick and convenient travel experience.": "انطلق يوصلك بأقرب الكباتن.", + "Why Choose Intaleq?": "ليش انطلق؟", + "Closest to You": "الأقرب لك", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "نوصلك بأقرب كباتن عشان ما تتأخر.", + "Uncompromising Security": "أمان تام", + "Lady Captains Available": "كباتن سيدات", + "Recorded Trips (Voice & AI Analysis)": "مشاوير مسجلة", + "Fastest Complaint Response": "استجابة سريعة للشكاوى", + "Our dedicated customer service team ensures swift resolution of any issues.": "فريقنا يحل مشاكلك بسرعة.", + "Affordable for Everyone": "أسعار تناسب الكل", + "Frequently Asked Questions": "الأسئلة المتكررة", + "Getting Started": "البداية", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "افتح التطبيق، حدد وجهتك، واطلب المشوار.", + "Vehicle Options": "خيارات السيارات", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "نوفر خيارات تناسبك.", + "Payments": "الدفع", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "ادفع كاش أو بطاقة.", + "Ride Management": "إدارة المشاوير", + "Yes, you can cancel your ride, but please note that cancellation fees may apply depending on how far in advance you cancel.": "تقدر تلغي، بس يمكن فيه رسوم.", + "For Drivers": "للكباتن", + "Driver Registration": "تسجيل الكابتن", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "للتسجيل زر موقعنا.", + "Visit Website/Contact Support": "الموقع / الدعم", + "Close": "إغلاق", + "We are searching for the nearest driver": "ندور أقرب كابتن", + "Communication": "التواصل", + "How do I communicate with the other party (passenger/driver)?": "كيف أتواصل؟", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "عن طريق الشات في التطبيق.", + "Safety & Security": "الأمان", + "What safety measures does Intaleq offer?": "وش إجراءات الأمان؟", + "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.": "تحقق من الكابتن وتتبع المشوار.", + "Enjoy competitive prices across all trip options, making travel accessible.": "أسعار منافسة.", + "Variety of Trip Choices": "خيارات متنوعة", + "Choose the trip option that perfectly suits your needs and preferences.": "اختر اللي يناسبك.", + "Your Choice, Our Priority": "اختيارك يهمنا", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "لك الحرية في الاختيار.", + "duration is": "المدة:", + "Setting": "إعدادات", + "Find answers to common questions": "إجابات الأسئلة", + "I don't need a ride anymore": "ما عاد أحتاج مشوار", + "I was just trying the application": "أجرب التطبيق بس", + "No driver accepted my request": "ماحد قبل طلبي", + "I added the wrong pick-up/drop-off location": "الموقع غلط", + "I don't have a reason": "ما عندي سبب", + "Can we know why you want to cancel Ride ?": "ليش تبي تلغي؟", + "Add Payment Method": "إضافة طريقة دفع", + "Ride Wallet": "محفظة المشوار", + "Payment Method": "طريقة الدفع", + "Type here Place": "اكتب المكان", + "Are You sure to ride to": "متأكد تبي تروح لـ", + "Confirm": "تأكيد", + "You are Delete": "أنت بتحذف", + "Deleted": "انحذف", + "You Dont Have Any places yet !": "ما عندك أماكن!", + "From : Current Location": "من: موقعك الحالي", + "My Cared": "بطاقاتي", + "Add Card": "إضافة بطاقة", + "Add Credit Card": "إضافة بطاقة ائتمان", + "Please enter the cardholder name": "اسم صاحب البطاقة", + "Please enter the expiry date": "تاريخ الانتهاء", + "Please enter the CVV code": "كود CVV", + "Go To Favorite Places": "للأماكن المفضلة", + "Go to this Target": "روح للهدف", + "My Profile": "ملفي", + "Are you want to go to this site": "تبي تروح هنا؟", + "MyLocation": "موقعي", + "my location": "موقعي", + "Target": "الهدف", + "You Should choose rate figure": "لازم تختار تقييم", + "Login Captin": "دخول الكابتن", + "Register Captin": "تسجيل كابتن", + "Send Verfication Code": "أرسل الرمز", + "KM": "كم", + "End Ride": "إنهاء المشوار", + "Minute": "دقيقة", + "Go to passenger Location now": "رح لموقع الراكب الحين", + "Duration of the Ride is ": "مدة المشوار: ", + "Distance of the Ride is ": "مسافة المشوار: ", + "Name of the Passenger is ": "اسم الراكب: ", + "Hello this is Captain": "هلا، معك الكابتن", + "Start the Ride": "ابدأ المشوار", + "Please Wait If passenger want To Cancel!": "انتظر يمكن الراكب يلغي!", + "Total Duration:": "المدة الكلية:", + "Active Duration:": "المدة الفعلية:", + "Waiting for Captin ...": "بانتظار الكابتن...", + "Age is ": "العمر: ", + "Rating is ": "التقييم: ", + " to arrive you.": " عشان يوصلك.", + "Tariff": "التعرفة", + "Settings": "الإعدادات", + "Feed Back": "رأيك", + "Please enter a valid 16-digit card number": "دخل رقم بطاقة صح (16 رقم)", + "Add Phone": "إضافة رقم", + "Please enter a phone number": "دخل رقم جوال", + "You dont Add Emergency Phone Yet!": "ما ضفت رقم طوارئ!", + "You will arrive to your destination after ": "بتوصل بعد ", + "You can cancel Ride now": "تقدر تلغي الحين", + "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي إذا تأخر الكابتن", + "If you in Car Now. Press Start The Ride": "إذا ركبت، اضغط ابدأ المشوار", + "You Dont Have Any amount in": "ما عندك رصيد في", + "Wallet!": "المحفظة!", + "You Have": "عندك", + "Save Credit Card": "حفظ البطاقة", + "Show Promos": "عرض الخصومات", + "10 and get 4% discount": "10 وخذ خصم 4%", + "20 and get 6% discount": "20 وخذ خصم 6%", + "40 and get 8% discount": "40 وخذ خصم 8%", + "100 and get 11% discount": "100 وخذ خصم 11%", + "Pay with Your PayPal": "ادفع بـ PayPal", + "You will choose one of above !": "اختر واحد من اللي فوق!", + "Edit Profile": "تعديل الملف", + "Copy this Promo to use it in your Ride!": "انسخ الكود واستخدمه!", + "To change some Settings": "لتغيير الإعدادات", + "Order Request Page": "صفحة الطلب", + "Rouats of Trip": "مسارات المشوار", + "Passenger Name is ": "اسم الراكب: ", + "Total From Passenger is ": "المجموع من الراكب: ", + "Duration To Passenger is ": "الوقت للراكب: ", + "Distance To Passenger is ": "المسافة للراكب: ", + "Total For You is ": "لك: ", + "Distance is ": "المسافة: ", + " KM": " كم", + "Duration of Trip is ": "مدة المشوار: ", + " Minutes": " دقائق", + "Apply Order": "قبول الطلب", + "Refuse Order": "رفض الطلب", + "Rate Captain": "قيم الكابتن", + "Enter your Note": "اكتب ملاحظة", + "Type something...": "اكتب شي...", + "Submit rating": "إرسال التقييم", + "Rate Passenger": "قيم الراكب", + "Ride Summary": "ملخص المشوار", + "welcome_message": "أهلاً بك في انطلق!", + "app_description": "انطلق تطبيق آمن وموثوق.", + "get_to_destination": "وصل وجهتك بسرعة.", + "get_a_ride": "مع انطلق، الموتر يجيك بدقايق.", + "safe_and_comfortable": "استمتع بمشوار آمن.", + "committed_to_safety": "نهتم بسلامتك.", + "your ride is Accepted": "مشوارك انقبل", + "Driver is waiting at pickup.": "الكابتن ينتظرك عند نقطة الركوب.", + "Driver is on the way": "الكابتن بالطريق", + "Contact Options": "خيارات التواصل", + "Send a custom message": "أرسل رسالة", + "Type your message": "اكتب رسالتك", + "I will go now": "بمشي الحين", + "You Have Tips": "عندك إكرامية", + " tips\\nTotal is": " إكرامية\\nالمجموع", + "Your fee is ": "أجرتك: ", + "Do you want to pay Tips for this Driver": "تبي تعطي الكابتن إكرامية؟", + "Tip is ": "الإكرامية: ", + "Are you want to wait drivers to accept your order": "تبي تنتظر الكباتن؟", + "This price is fixed even if the route changes for the driver.": "السعر ثابت حتى لو تغير الطريق.", + "The price may increase if the route changes.": "ممكن يزيد السعر لو تغير الطريق.", + "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", + "We are search for nearst driver": "ندور أقرب كابتن", + "Your order is being prepared": "طلبك يتجهز", + "The drivers are reviewing your request": "الكباتن يشوفون طلبك", + "Your order sent to drivers": "أرسلنا طلبك للكباتن", + "You can call or record audio of this trip": "تقدر تتصل أو تسجل صوت", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "بدأ المشوار! تقدر تكلم الطوارئ، تشارك رحلتك، أو تسجل صوت.", + "Camera Access Denied.": "ما في وصول للكاميرا.", + "Open Settings": "افتح الإعدادات", + "GPS Required Allow !.": "شغل الـ GPS!", + "Your Account is Deleted": "انحذف حسابك", + "Are you sure to delete your account?": "متأكد تبي تحذف حسابك؟", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "بتمسح بياناتك بعد أسبوعين\\nوما تقدر ترجع بعد شهر", + "Enter Your First Name": "دخل اسمك الأول", + "Are you Sure to LogOut?": "بتسجل خروج؟", + "Email Wrong": "الإيميل غلط", + "Email you inserted is Wrong.": "الإيميل اللي كتبته غلط.", + "You have finished all times ": "خلصت محاولاتك", + "if you want help you can email us here": "تبي مساعدة؟ راسلنا", + "Thanks": "شكراً", + "Email Us": "راسلنا", + "I cant register in your app in face detection ": "مو قادر أسجل بسبب بصمة الوجه", + "Hi": "هلا", + "No face detected": "ما تعرفنا على الوجه", + "Image detecting result is ": "نتيجة الفحص: ", + "from 3 times Take Attention": "من 3 مرات، انتبه", + "Be sure for take accurate images please\\nYou have": "تأكد إن الصورة واضحة\\nعندك", + "image verified": "الصورة تمام", + "Next": "التالي", + "There is no help Question here": "ما في سؤال مساعدة", + "You dont have Points": "ما عندك نقاط", + "You Are Stopped For this Day !": "توقفت اليوم!", + "You must be charge your Account": "لازم تشحن حسابك", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "رفضت 3 مشاوير اليوم.\\nنشوفك بكره!", + "Recharge my Account": "شحن حسابي", + "Ok , See you Tomorrow": "تمام، أشوفك بكره", + "You are Stopped": "أنت موقوف", + "Connected": "متصل", + "Not Connected": "غير متصل", + "Your are far from passenger location": "أنت بعيد عن الراكب", + "go to your passenger location before\\nPassenger cancel trip": "رح لموقع الراكب قبل يكنسل", + "You will get cost of your work for this trip": "بتاخذ حق مشوارك", + " in your wallet": " بمحفظتك", + "you gain": "كسبت", + "Order Cancelled by Passenger": "الطلب تكنسل من الراكب", + "Feedback data saved successfully": "حفظنا تقييمك", + "No Promo for today .": "ما في عروض اليوم.", + "Select your destination": "اختر وجهتك", + "Search for your Start point": "ابحث عن نقطة البداية", + "Search for waypoint": "ابحث عن نقطة توقف", + "Current Location": "الموقع الحالي", + "Add Location 1": "إضافة موقع 1", + "You must Verify email !.": "لازم تأكد الإيميل!", + "Cropper": "قص الصورة", + "Saved Sucssefully": "تم الحفظ", + "Select Date": "اختر التاريخ", + "Birth Date": "تاريخ الميلاد", + "Ok": "تم", + "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 ر.س", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "الـ 500 نقطة بـ 30 ر.س لك\\nروح اكسب فلوسك", + "token updated": "تحدث الرمز", + "Add Location 2": "إضافة موقع 2", + "Add Location 3": "إضافة موقع 3", + "Add Location 4": "إضافة موقع 4", + "Waiting for your location": "ننتظر موقعك", + "Search for your destination": "ابحث عن وجهتك", + "Hi! This is": "هلا! هذا", + " I am using": " أنا استخدم", + " to ride with": " عشان اركب مع", + " as the driver.": " ككابتن.", + "is driving a ": "يسوق ", + " with license plate ": " لوحتها ", + " I am currently located at ": " أنا حالياً في ", + "Please go to Car now ": "روح للسيارة الحين", + "You will receive a code in WhatsApp Messenger": "بيجيك كود ع الواتساب", + "If you need assistance, contact us": "تحتاج مساعدة؟ كلمنا", + "Promo Ended": "انتهى العرض", + "Enter the promo code and get": "دخل الكود واحصل على", + "DISCOUNT": "خصم", + "No wallet record found": "ما لقينا سجل للمحفظة", + "for": "لـ", + "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% بس. عندنا تأمين وصيانة.", + "You can contact us during working hours from 12:00 - 19:00.": "كلمناه من 12 لـ 7.", + "Choose a contact option": "اختر طريقة تواصل", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "الدوام من 12 لـ 7.\\nأرسل واتساب أو إيميل.", + "Promo code copied to clipboard!": "نسخت الكود!", + "Copy Code": "نسخ الكود", + "Your invite code was successfully applied!": "تم تطبيق كود الدعوة!", + "Payment Options": "خيارات الدفع", + "wait 1 minute to receive message": "انتظر دقيقة توصلك الرسالة", + "You have copied the promo code.": "نسخت كود الخصم.", + "Select Payment Amount": "اختر المبلغ", + "The promotion period has ended.": "خلصت فترة العرض.", + "Promo Code Accepted": "انقبل الكود", + "Tap on the promo code to copy it!": "اضغط ع الكود عشان تنسخه!", + "Lowest Price Achieved": "أقل سعر", + "Cannot apply further discounts.": "ما تقدر تخصم أكثر.", + "Promo Already Used": "الكود مستخدم", + "Invitation Used": "الدعوة مستخدمة", + "You have already used this promo code.": "استخدمت هالكود من قبل.", + "Insert Your Promo Code": "حط كود الخصم", + "Enter promo code here": "اكتب الكود هنا", + "Please enter a valid promo code": "دخل كود صحيح", + "Awfar Car": "سيارة توفير", + "Old and affordable, perfect for budget rides.": "اقتصادية ومناسبة للميزانية.", + " If you need to reach me, please contact the driver directly at": " إذا بغيتني، كلم الكابتن على", + "No Car or Driver Found in your area.": "ما لقينا سيارة أو كابتن حولك.", + "Please Try anther time ": "جرب وقت ثاني", + "There no Driver Aplly your order sorry for that ": "ماحد قبل طلبك، المعذرة", + "Trip Cancelled": "المشوار تكنسل", + "The Driver Will be in your location soon .": "الكابتن بيوصلك قريب.", + "The distance less than 500 meter.": "المسافة أقل من 500 متر.", + "Promo End !": "انتهى العرض!", + "There is no notification yet": "ما في إشعارات", + "Use Touch ID or Face ID to confirm payment": "استخدم البصمة لتأكيد الدفع", + "Contact us for any questions on your order.": "تواصل معنا لو عندك سؤال.", + "Pyament Cancelled .": "إلغاء الدفع.", + "type here": "اكتب هنا", + "Scan Driver License": "امسح الرخصة", + "Please put your licence in these border": "حط الرخصة داخل الإطار", + "Camera not initialized yet": "الكاميرا لسه", + "Take Image": "صور", + "AI Page": "صفحة الذكاء الاصطناعي", + "Take Picture Of ID Card": "صور الهوية", + "Take Picture Of Driver License Card": "صور الرخصة", + "We are process picture please wait ": "نعالج الصورة، انتظر شوي", + "There is no data yet.": "ما في بيانات.", + "Name :": "الاسم:", + "Drivers License Class: ": "فئة الرخصة:", + "Document Number: ": "رقم الوثيقة:", + "Address: ": "العنوان:", + "Height: ": "الطول:", + "Expiry Date: ": "تاريخ الانتهاء:", + "Date of Birth: ": "تاريخ الميلاد:", + "You can't continue with us .\\nYou should renew Driver license": "ما تقدر تكمل معنا.\\nلازم تجدد الرخصة", + "Detect Your Face ": "تحقق من وجهك", + "Go to next step\\nscan Car License.": "الخطوة الجاية\\nمسح الاستمارة.", + "Name in arabic": "الاسم بالعربي", + "Drivers License Class": "فئة الرخصة", + "Selected Date": "التاريخ المحدد", + "Select Time": "اختر الوقت", + "Selected Time": "الوقت المحدد", + "Selected Date and Time": "التاريخ والوقت", + "Lets check Car license ": "نشيك الاستمارة", + "Car": "سيارة", + "Plate": "لوحة", + "Rides": "مشاوير", + "Selected driver": "الكابتن المختار", + "Lets check License Back Face": "نشيك ظهر الرخصة", + "Car License Card": "استمارة السيارة", + "No image selected yet": "ما اخترت صورة", + "Made :": "الصنع:", + "model :": "الموديل:", + "VIN :": "رقم الهيكل:", + "year :": "السنة:", + "ُExpire Date": "تاريخ الانتهاء", + "Login Driver": "دخول كابتن", + "Password must br at least 6 character.": "كلمة المرور 6 حروف ع الأقل.", + "if you don't have account": "ما عندك حساب", + "Here recorded trips audio": "تسجيلات المشاوير هنا", + "Register as Driver": "سجل كابتن", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "باختيار \"أوافق\"، أكون وافقت على الشروط و ", + "Log Out Page": "صفحة الخروج", + "Log Off": "تسجيل خروج", + "Register Driver": "تسجيل كابتن", + "Verify Email For Driver": "تأكيد إيميل الكابتن", + "Admin DashBoard": "لوحة التحكم", + "Your name": "اسمك", + "your ride is applied": "انطلب مشوارك", + "H and": "س و", + "JOD": "ر.س", + "m": "د", + "We search nearst Driver to you": "ندور لك أقرب كابتن", + "please wait till driver accept your order": "انتظر الكابتن يقبل", + "No accepted orders? Try raising your trip fee to attract riders.": "ماحد قبل؟ ارفع السعر.", + "You should select one": "لازم تختار واحد", + "The driver accept your order for": "الكابتن قبل بـ", + "The driver on your way": "الكابتن جايك", + "Total price from ": "السعر الكلي من ", + "Order Details Intaleq": "تفاصيل الطلب", + "Selected file:": "الملف المختار:", + "Your trip cost is": "تكلفة مشوارك:", + "this will delete all files from your device": "بيمسح كل الملفات من جهازك", + "Exclusive offers and discounts always with the Intaleq app": "عروض حصرية دائماً مع انطلق", + "Submit Question": "أرسل سؤال", + "Please enter your Question.": "اكتب سؤالك.", + "Help Details": "تفاصيل المساعدة", + "No trip yet found": "ما لقينا مشوار", + "No Response yet.": "ما في رد للحين.", + " You Earn today is ": " دخلك اليوم: ", + " You Have in": " عندك في", + "Total points is ": "مجموع النقاط ", + "Total Connection Duration:": "مدة الاتصال:", + "Passenger name : ": "اسم الراكب: ", + "Cost Of Trip IS ": "تكلفة المشوار: ", + "Arrival time": "وقت الوصول", + "arrival time to reach your point": "وقت الوصول لنقطتك", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "للانطلاق والسكوتر السعر متغير. للراحة السعر بالوقت والمسافة.", + "Hello this is Driver": "هلا، أنا الكابتن", + "Is the Passenger in your Car ?": "الراكب معك؟", + "Please wait for the passenger to enter the car before starting the trip.": "انتظر الراكب يركب قبل تبدأ.", + "No ,still Waiting.": "لا، لسه أنتظر.", + "I arrive you": "وصلت", + "I Arrive your site": "وصلت موقعك", + "You are not in near to passenger location": "أنت بعيد عن الراكب", + "please go to picker location exactly": "رح لموقع الركوب بالضبط", + "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي وتأخذ حقك من", + "Are you sure to cancel?": "متأكد تبي تلغي؟", + "Insert Emergincy Number": "دخل رقم الطوارئ", + "Best choice for comfort car and flexible route and stops point": "أفضل خيار لسيارة مريحة ومسار مرن", + "Insert": "إدخال", + "This is for scooter or a motorcycle.": "هذا للسكوتر أو الدباب.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "مشوار مباشر بسعر ثابت. الكابتن يلتزم بالمسار.", + "You can decline a request without any cost": "تقدر ترفض بدون تكلفة", + "Perfect for adventure seekers who want to experience something new and exciting": "لمحبي المغامرة", + "My current location is:": "موقعي الحالي:", + "and I have a trip on": "وعندي مشوار على", + "App with Passenger": "التطبيق مع الراكب", + "You will be pay the cost to driver or we will get it from you on next trip": "بتدفع للكابتن أو نأخذها منك المشوار الجاي", + "Trip has Steps": "الرحلة فيها وقفات", + "Distance from Passenger to destination is ": "المسافة للوجهة: ", + "price is": "السعر:", + "This ride type does not allow changes to the destination or additional stops": "ما تقدر تغير الوجهة أو توقف", + "This price may be changed": "السعر ممكن يتغير", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة؟ عادي! كلم الكابتن من التطبيق.", + "This ride type allows changes, but the price may increase": "تقدر تغير بس السعر بيزيد", + "Select one message": "اختر رسالة", + "I'm waiting for you": "أنا أنتظرك", + "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. هدي السرعة لسلامتك.", + "Warning: Intaleqing detected!": "تحذير: سرعة عالية!", + "Please help! Contact me as soon as possible.": "فزعة! كلمني بسرعة.", + "Share Trip Details": "شارك تفاصيل المشوار", + "Car Plate is ": "اللوحة: ", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 نقطة تساوي 300 ر.س لك\\nرح اكسب فلوسك", + "the 300 points equal 300 L.E": "300 نقطة بـ 300 ر.س", + "The payment was not approved. Please try again.": "الدفع ما انقبل. جرب مرة ثانية.", + "Payment Failed": "فشل الدفع", + "This is a scheduled notification.": "هذا إشعار مجدول.", + "An error occurred during the payment process.": "خطأ في الدفع.", + "The payment was approved.": "تم الدفع.", + "Payment Successful": "الدفع ناجح", + "No ride found yet": "ما لقينا مشوار", + "Accept Order": "قبول الطلب", + "Bottom Bar Example": "مثال الشريط السفلي", + "Driver phone": "جوال الكابتن", + "Statistics": "الإحصائيات", + "Origin": "الانطلاق", + "Destination": "الوصول", + "Driver Name": "اسم الكابتن", + "Driver Car Plate": "لوحة الكابتن", + "Available for rides": "متاح للمشاوير", + "Scan Id": "مسح الهوية", + "Camera not initilaized yet": "الكاميرا لسه", + "Scan ID MklGoogle": "مسح الهوية MklGoogle", + "Language": "اللغة", + "Jordan": "الأردن", + "USA": "أمريكا", + "Egypt": "مصر", + "Turkey": "تركيا", + "Saudi Arabia": "السعودية", + "Qatar": "قطر", + "Bahrain": "البحرين", + "Kuwait": "الكويت", + "But you have a negative salary of": "بس عليك سالب بقيمة", + "Promo Code": "كود الخصم", + "Your trip distance is": "مسافة مشوارك:", + "Enter promo code": "دخل الكود", + "You have promo!": "عندك خصم!", + "Cost Duration": "تكلفة الوقت", + "Duration is": "المدة:", + "Leave": "مغادرة", + "Join": "انضمام", + "Heading your way now. Please be ready.": "جايك بالطريق. خلك جاهز.", + "Approaching your area. Should be there in 3 minutes.": "قربت منك. 3 دقايق وأكون عندك.", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "زحمة هنا. تقدر تغير موقع الركوب؟", + "This ride is already taken by another driver.": "المشوار راح لكابتن ثاني.", + "You Should be select reason.": "لازم تختار سبب.", + "Waiting for Driver ...": "بانتظار الكابتن...", + "Latest Recent Trip": "آخر مشوار", + "from your list": "من قائمتك", + "Do you want to change Work location": "تغير موقع الدوام؟", + "Do you want to change Home location": "تغير موقع البيت؟", + "We Are Sorry That we dont have cars in your Location!": "آسفين، ما في سيارات حولك!", + "Choose from Map": "اختر من الخريطة", + "Pick your ride location on the map - Tap to confirm": "حدد موقعك ع الخريطة - اضغط للتأكيد", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "انطلق تطبيق مشاوير آمن وموثوق.", + "With Intaleq, you can get a ride to your destination in minutes.": "مع انطلق، توصل وجهتك بدقايق.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "ملتزمين بالسلامة، وكل كباتننا مفحوصين أمنياً.", + "Pick from map": "اختر من الخريطة", + "No Car in your site. Sorry!": "ما في سيارة عندك. المعذرة!", + "Nearest Car for you about ": "أقرب سيارة لك بعد ", + "From :": "من:", + "Get Details of Trip": "تفاصيل المشوار", + "If you want add stop click here": "تبي تضيف وقفة اضغط هنا", + "Where you want go ": "وين تبي تروح ", + "My Card": "بطاقتي", + "Start Record": "ابدأ التسجيل", + "History of Trip": "سجل المشاوير", + "Helping Center": "مركز المساعدة", + "Record saved": "انحفظ التسجيل", + "Trips recorded": "المشاوير المسجلة", + "Select 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.": "عشان نعطيك معلومات دقيقة، اختر دولتك.", + "Are you sure to delete recorded files": "متأكد تبي تحذف الملفات؟", + "Select recorded trip": "اختر مشوار مسجل", + "Card Number": "رقم البطاقة", + "Hi, Where to ": "هلا، لوين؟", + "Pick your destination from Map": "حدد وجهتك من الخريطة", + "Add Stops": "إضافة وقفات", + "Get Direction": "الاتجاهات", + "Add Location": "إضافة موقع", + "Switch Rider": "تغيير الراكب", + "You will arrive to your destination after timer end.": "بتوصل بعد انتهاء المؤقت.", + "You can cancel trip": "تقدر تكنسل", + "The driver waitting you in picked location .": "الكابتن ينتظرك.", + "Pay with Your": "ادفع بـ", + "Pay with Credit Card": "ادفع بالبطاقة", + "Show Promos to Charge": "عروض الشحن", + "Point": "نقطة", + "How many hours would you like to wait?": "كم ساعة تبي تنتظر؟", + "Driver Wallet": "محفظة الكابتن", + "Choose between those Type Cars": "اختر نوع السيارة", + "hour": "ساعة", + "Select Waiting Hours": "اختر ساعات الانتظار", + "Total Points is": "مجموع النقاط", + "You will receive a code in SMS message": "بيجيك كود برسالة نصية", + "Done": "تم", + "Total Budget from trips is ": "إجمالي الدخل: ", + "Total Amount:": "المبلغ الكلي:", + "Total Budget from trips by\\nCredit card is ": "إجمالي الدخل بالبطاقة: ", + "This amount for all trip I get from Passengers": "هذا المبلغ من كل الركاب", + "Pay from my budget": "ادفع من رصيدي", + "This amount for all trip I get from Passengers and Collected For me in": "المبلغ المجمع لي في", + "You can buy points from your budget": "تقدر تشتري نقاط من رصيدك", + "insert amount": "دخل المبلغ", + "You can buy Points to let you online\\nby this list below": "اشتر نقاط عشان تكون متصل\\nمن القائمة", + "Create Wallet to receive your money": "أنشئ محفظة لاستلام فلوسك", + "Enter your feedback here": "اكتب ملاحظتك", + "Please enter your feedback.": "اكتب ملاحظتك لاهنت.", + "Feedback": "ملاحظات", + "Submit ": "إرسال ", + "Click here to Show it in Map": "اضغط للعرض على الخريطة", + "Canceled": "ملغي", + "No I want": "لا أبي", + "Email is": "الإيميل:", + "Phone Number is": "الجوال:", + "Date of Birth is": "تاريخ الميلاد:", + "Sex is ": "الجنس: ", + "Car Details": "تفاصيل السيارة", + "VIN is": "رقم الهيكل:", + "Color is ": "اللون: ", + "Make is ": "الشركة:", + "Model is": "الموديل:", + "Year is": "السنة:", + "Expiration Date ": "تاريخ الانتهاء: ", + "Edit Your data": "تعديل بياناتك", + "write vin for your car": "اكتب رقم الهيكل", + "VIN": "رقم الهيكل", + "Please verify your identity": "تحقق من هويتك", + "write Color for your car": "اكتب اللون", + "write Make for your car": "اكتب الشركة", + "write Model for your car": "اكتب الموديل", + "write Year for your car": "اكتب السنة", + "write Expiration Date for your car": "اكتب تاريخ الانتهاء", + "Tariffs": "التعرفة", + "Minimum fare": "أقل سعر", + "Maximum fare": "أعلى سعر", + "Flag-down fee": "فتح الباب", + "Including Tax": "شامل الضريبة", + "BookingFee": "رسوم الحجز", + "Morning": "صباح", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30", + "Evening": "مساء", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 3:00", + "Night": "ليل", + "You have in account": "عندك بالحساب", + "Select Country": "اختر الدولة", + "Ride Today : ": "مشوار اليوم: ", + "from 23:59 till 05:30": "من 11:59 م لـ 5:30 ص", + "Rate Driver": "قيم الكابتن", + "Total Cost is ": "التكلفة الكلية: ", + "Write note": "اكتب ملاحظة", + "Time to arrive": "وقت الوصول", + "Ride Summaries": "ملخص المشاوير", + "Total Cost": "التكلفة الكلية", + "Average of Hours of": "معدل الساعات", + " is ON for this month": " متصل هالشهر", + "Days": "أيام", + "Total Hours on month": "ساعات الشهر", + "Counts of Hours on days": "عدد الساعات بالأيام", + "OrderId": "رقم الطلب", + "created time": "وقت الإنشاء", + "Intaleq Over": "انتهى المشوار", + "I will slow down": "بهدي السرعة", + "Map Passenger": "خريطة الراكب", + "Be Slowly": "على مهلك", + "If you want to make Google Map App run directly when you apply order": "تبي قوقل ماب يفتح علطول؟", + "You can change the language of the app": "تغيير اللغة", + "Your Budget less than needed": "رصيدك أقل من المطلوب", + "You can change the Country to get all features": "غير الدولة عشان كل الميزات", + "There is no Car or Driver in your area.": "您所在的区域没有车辆或司机。", + "Change Country": "تغيير الدولة" + } +} \ No newline at end of file diff --git a/scratch/test_simple.py b/scratch/test_simple.py new file mode 100644 index 0000000..327a99f --- /dev/null +++ b/scratch/test_simple.py @@ -0,0 +1 @@ +print("Hello from python script") diff --git a/scratch/verify_driver_translations.py b/scratch/verify_driver_translations.py new file mode 100644 index 0000000..9936738 --- /dev/null +++ b/scratch/verify_driver_translations.py @@ -0,0 +1,81 @@ +import os +import re + +languages = ['ar_eg', 'ar_jo', 'ar_sy', 'en', 'de', 'el', 'es', 'fa', 'fr', 'hi', 'it', 'ru', 'tr', 'ur', 'zh'] +local_dir = "siro_driver/lib/controller/local" + +def parse_dart_map(filepath): + translations = {} + if not os.path.exists(filepath): + print(f"Error: file {filepath} does not exist!") + return None + with open(filepath, 'r', encoding='utf-8') as f: + content = f.read() + + # Matches: "key": "value" + pattern = re.compile(r'^\s*([\'"])(.*?)\1\s*:\s*([\'"])(.*?)\3\s*,?\s*$', re.MULTILINE) + matches = pattern.findall(content) + for match in matches: + key = match[1] + val = match[3] + # Store raw keys and values to check escaping + translations[key] = val + return translations + +parsed_data = {} +all_valid = True + +for lang in languages: + filepath = os.path.join(local_dir, f"{lang}.dart") + trans = parse_dart_map(filepath) + if trans is None: + all_valid = False + continue + parsed_data[lang] = trans + print(f"Verified {lang}.dart: parsed {len(trans)} entries.") + if len(trans) != 2660: + print(f" ERROR: Expected 2660 entries, got {len(trans)}") + all_valid = False + +if not all_valid: + print("Verification FAILED on basic counts.") + exit(1) + +# Check that key sets are identical +ref_lang = languages[0] +ref_keys = set(parsed_data[ref_lang].keys()) + +for lang in languages[1:]: + keys = set(parsed_data[lang].keys()) + if keys != ref_keys: + print(f"ERROR: Key sets differ between {ref_lang} and {lang}!") + print(f" Keys in {ref_lang} not in {lang}: {len(ref_keys - keys)}") + print(f" Keys in {lang} not in {ref_lang}: {len(keys - ref_keys)}") + all_valid = False + +# Check for escaping errors (e.g. unescaped dollar signs in double-quoted strings in the Dart source code) +# In the raw file content, any dollar sign must be preceded by a backslash unless it is already escaped. +# Let's inspect the files directly for raw '$' characters that are not preceded by '\' +dollar_pattern = re.compile(r'(?()) { Get.put(CaptainWalletController()); @@ -278,7 +289,7 @@ class HomeCaptainController extends GetxController { try { _checkFatigueBeforeOnline(); // Throws exception if tired - if (double.parse(totalPoints) > -200) { + if (double.parse(totalPoints) > minPointsThreshold) { locationController.startLocationUpdates(); HapticFeedback.heavyImpact(); activeStartTime = DateTime.now(); @@ -455,8 +466,8 @@ class HomeCaptainController extends GetxController { await sql.getCustomQuery(customQuery); countRefuse = results[0]['count'].toString(); update(); - if (double.parse(totalPoints) <= -200) { - // if (int.parse(countRefuse) > 3 || double.parse(totalPoints) <= -200) { + if (double.parse(totalPoints) <= minPointsThreshold) { + // if (int.parse(countRefuse) > 3 || double.parse(totalPoints) <= minPointsThreshold) { locationController.stopLocationUpdates(); activeStartTime = null; activeTimer?.cancel(); diff --git a/siro_driver/lib/controller/local/ar_eg.dart b/siro_driver/lib/controller/local/ar_eg.dart index 9ed8625..b948000 100644 --- a/siro_driver/lib/controller/local/ar_eg.dart +++ b/siro_driver/lib/controller/local/ar_eg.dart @@ -1,2209 +1,2662 @@ final Map ar_eg = { -" \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", -" and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية.", -" is ON for this month": "مفعلة ده الشهر", -"\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"نقاط", -"\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'رحلة", -"\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'رحلة", -"\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'تمت إضافته لرصيدك", -"\$title \$subtitle": "\$title \$subtitle", -"\${\"amount": "\${\"المبلغ", -"\${\"Minimum transfer amount is": "\${\"أقل مبلغ للتحويل هو", -"\${\"NationalID": "\${\"الرقم القومي", -"\${\"NEXT STEP": "\${\"الخطوة الجاية", -"\${\"Passenger cancelled the ride.": "\${\"الراكب ألغى الرحلة.", -"\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"إجمالي الميزانيات في الشهر\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", -"\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"إجمالي الرحلات في الشهر\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", -"\${\"transaction_id": "\${\"رقم العملية", -"\${\"Transfer Fee": "\${\"رسوم التحويل", -"\${\"You must leave at least": "\${\"لازم تسيب على الأقل", -"\${'*Siro APP CODE*": "\${'*كود تطبيق سيرو*", -"\${'*Siro DRIVER CODE*": "\${'*كود سائق سيرو*", -"\${'Address": "\${'العنوان", -"\${'Address: ": "\${'العنوان: ", -"\${'Age": "\${'العمر", -"\${'An unexpected error occurred:": "\${'حصل خطأ غير متوقع:", -"\${'Average of Hours of": "\${'متوسط ساعات", -"\${'Be sure for take accurate images please\nYou have": "\${'خلي بالك من إنك تلتقط صور واضحة من فضلك\nمعاك", -"\${'before": "\${'قبل", -"\${'Car Expire": "\${'انتهاء صلاحية العربية", -"\${'Car Kind": "\${'نوع العربية", -"\${'Car Plate": "\${'لوحة العربية", -"\${'Chassis": "\${'الشاسيه", -"\${'Color": "\${'اللون", -"\${'Date of Birth": "\${'تاريخ الميلاد", -"\${'Date of Birth: ": "\${'تاريخ الميلاد: ", -"\${'Displacement": "\${'السعة", -"\${'Document Number: ": "\${'رقم المستند: ", -"\${'Drivers License Class": "\${'فئة رخصة القيادة", -"\${'Drivers License Class: ": "\${'فئة رخصة القيادة: ", -"\${'expected": "\${'متوقع", -"\${'Expiry Date": "\${'تاريخ الانتهاء", -"\${'Expiry Date: ": "\${'تاريخ الانتهاء: ", -"\${'Failed to save driver data": "\${'فشل حفظ بيانات السايق", -"\${'Fuel": "\${'الوقود", -"\${'FullName": "\${'الاسم الكامل", -"\${'Height: ": "\${'الطول: ", -"\${'Hi": "\${'أهلاً", -"\${'How can I register as a driver?": "\${'إزاي أسجل نفسي كسايق؟", -"\${'Inspection Date": "\${'تاريخ الفحص", -"\${'InspectionResult": "\${'نتيجة الفحص", -"\${'IssueDate": "\${'تاريخ الإصدار", -"\${'License Expiry Date": "\${'تاريخ انتهاء الرخصة", -"\${'Made :": "\${'الصناعة :", -"\${'Make": "\${'الماركة", -"\${'Model": "\${'الموديل", -"\${'model :": "\${'الموديل :", -"\${'Name": "\${'الاسم", -"\${'Name :": "\${'الاسم :", -"\${'Name in arabic": "\${'الاسم بالعربي", -"\${'National Number": "\${'الرقم القومي", -"\${'NationalID": "\${'الرقم القومي", -"\${'Next Level:": "\${'المستوى الجاي:", -"\${'OrderId": "\${'رقم الطلب", -"\${'Owner Name": "\${'اسم المالك", -"\${'Plate Number": "\${'رقم اللوحة", -"\${'Please enter": "\${'من فضلك ادخل", -"\${'Please wait": "\${'من فضلك انتظر", -"\${'Price:": "\${'السعر:", -"\${'Remaining:": "\${'المتبقي:", -"\${'Ride": "\${'الرحلة", -"\${'Tax Expiry Date": "\${'تاريخ انتهاء الضريبة", -"\${'The price must be over than ": "\${'السعر لازم يكون أكتر من ", -"\${'The reason is": "\${'السبب هو", -"\${'Transaction successful": "\${'تمت العملية بنجاح", -"\${'Update": "\${'تحديث", -"\${'VIN :": "\${'الرقم التعريفي (VIN) :", -"\${'wallet_credited_message": "\${'تمت إضافة المبلغ لمحفظتك", -"\${'We have sent a verification code to your mobile number:": "\${'أرسلنا كود التحقق لرقم موبايلك:", -"\${'When": "\${'متى", -"\${'Year": "\${'السنة", -"\${'year :": "\${'السنة :", -"\${'You can resend in": "\${'تقدر تعيد الإرسال خلال", -"\${'You gained": "\${'كسبت", -"\${'You have call from driver": "\${'معاك مكالمة من السايق", -"\${'You have in account": "\${'معاك في الحساب", -"\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", -"\${'الوقت المتبقي": "\${'الوقت المتبقي", -"\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", -"\${'ُExpire Date": "\${'تاريخ الانتهاء", -"\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'رحلة", -"\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'رحلة", -"\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", -"\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", -"\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'نقاط", -"\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'رحلات", -"\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", -"\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'إنجازات", -"\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'تقييمات", -"\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'نشط", -"\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'إجمالي الدعوات", -"\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'مكافآت", -"\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'أيام", -"'": "'", -"([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"نص", -"([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"نص", -"([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"نص", -"([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"نص", -"([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'نص", -"([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'نص", -"([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'نص", -")[1]}": ")[1]}", -"*Siro APP CODE*": "*كود تطبيق سيرو*", -"*Siro DRIVER CODE*": "*كود سايق سيرو*", -"--": "--", -"-1% commission": "خصم 1% من العمولة", -"-2% commission": "خصم 2% من العمولة", -"-5% commission": "خصم 5% من العمولة", -". I am at least 18 years of age.": ". عمري 18 سنة أو أكتر.", -". I am at least 18 years old.": ". عمري 18 سنة أو أكتر.", -". The app will connect you with a nearby driver.": ". التطبيق هيوصلك بسايق قريب منك.", -"0.05 \${'JOD": "0.05 \${'دينار أردني", -"0.47 \${'JOD": "0.47 \${'دينار أردني", -"1 \${'JOD": "1 \${'دينار أردني", -"1 \${'LE": "1 \${'جنيه مصري", -"1', 'Share your code": "1', 'شارك كودك", -"1. Describe Your Issue": "1. وصف مشكلتك", -"1. Select Ride": "1. اختر الرحلة", -"10 and get 4% discount": "10 وخد خصم 4%", -"100 and get 11% discount": "100 وخد خصم 11%", -"15 \${'LE": "15 \${'جنيه مصري", -"15000 \${'LE": "15000 \${'جنيه مصري", -"1999": "1999", -"2', 'Friend signs up": "2', 'صديقك يسجل", -"2. Attach Recorded Audio": "2. أرفق الصوت المسجل", -"2. Attach Recorded Audio (Optional)": "2. أرفق الصوت المسجل (اختياري)", -"2. Describe Your Issue": "2. اكتب وصف للمشكلة", -"20 \${'LE": "20 \${'جنيه مصري", -"20 and get 6% discount": "20 وخد خصم 6%", -"200 \${'JOD": "200 \${'دينار أردني", -"27\\\\": "27\\\\", -"3 digit": "3 أرقام", -"3', 'Both earn rewards": "3', 'الاتنين يكسبوا مكافآت", -"3. Attach Recorded Audio (Optional)": "3. أرفق الصوت المسجل (اختياري)", -"3. Review Details & Response": "3. راجع التفاصيل والرد", -"300 LE": "300 جنيه مصري", -"3000 LE": "3000 جنيه مصري", -"4', 'Bonus at 10 trips": "4', 'بونص لما تعمل 10 رحلات", -"4. Review Details & Response": "4. راجع التفاصيل والرد", -"40 and get 8% discount": "40 وخد خصم 8%", -"5 digit": "5 أرقام", -"<< BACK": "<< رجوع", -"\\\$": "\\\$", -"\\\$error": "حصل خطأ", -"\\\$pricePoint": "\\\$pricePoint", -"\\\$title \\\$subtitle": "\\\$title \\\$subtitle", -"\\\${AppInformation.appName} Wallet": "محفظة \\\${AppInformation.appName}", -"\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nكمان بنعطي أولوية للتكلفة المناسبة، وبنقدّم أسعار تنافسية عشان رحلاتك تكون في متناول إيديك.", -"A connection error occurred": "حصل خطأ في الاتصال", -"A new version of the app is available. Please update to the latest version.": "في إصدار جديد من التطبيق. من فضلك حدّث للإصدار الأخير.", -"A promotion record for this driver already exists for today.": "في سجل ترويجي ده السايق ده النهاردة بالفعل.", -"A trip with a prior reservation, allowing you to choose the best captains and cars.": "رحلة محجوزة مسبقًا، وتخليك تختار أفضل الكباتن والعربية.", -"About Us": "من نحن", -"Abu Dhabi Commercial Bank – Egypt": "بنك أبوظبي التجاري – مصر", -"Abu Dhabi Islamic Bank – Egypt": "بنك أبوظبي الإسلامي – مصر", -"Accept": "قبول", -"Accept Order": "اقبل الطلب", -"Accept Ride": "اقبل الرحلة", -"accepted": "مقبولة", -"Accepted Ride": "تم قبول الرحلة", -"Accepted your order": "قبل طلبك", -"accepted your order": "قبل طلبك", -"accepted your order at price": "قبل طلبك بالسعر", -"Account": "الحساب", -"Account Updated": "تم تحديث الحساب", -"Achievements": "الإنجازات", -"Active Duration": "مدة النشاط", -"Active Duration:": "مدة النشاط:", -"Active Ride": "الرحلة النشطة", -"Active ride in progress. Leaving might stop tracking. Exit?": "في رحلة شغالة دلوقتي. الخروج ممكن يوقف التتبع. عايز تخرج؟", -"Active Users": "المستخدمين النشطين", -"Activities": "الأنشطة", -"Add a comment (optional)": "أضف تعليق (اختياري)", -"Add a Stop": "أضف محطة", -"Add Balance": "أضف رصيد", -"Add bank Account": "أضف حساب بنكي", -"Add Card": "أضف كارت", -"Add Credit Card": "أضف كارت ائتمان", -"Add criminal page": "أضف صحيفة الحالة الجنائية", -"Add funds using our secure methods": "أضف فلوس باستخدام طرقنا الآمنة", -"Add Home": "أضف البيت", -"Add Location": "أضف موقع", -"Add Location 1": "أضف الموقع 1", -"Add Location 2": "أضف الموقع 2", -"Add Location 3": "أضف الموقع 3", -"Add Location 4": "أضف الموقع 4", -"Add new car": "أضف عربيّة جديدة", -"Add Payment Method": "أضف طريقة دفع", -"Add Phone": "أضف موبايل", -"Add Promo": "أضف كود خصم", -"Add Question": "أضف سؤال", -"Add SOS Phone": "أضف رقم طوارئ", -"Add Stops": "أضف محطات", -"Add to Passenger Wallet": "أضف لمحفظة الراكب", -"Add wallet phone you use": "أضف رقم محفظة الموبايل اللي بتعمله", -"Add Work": "أضف الشغل", -"Address": "العنوان", -"Address:": "العنوان:", -"Admin DashBoard": "لوحة تحكم الأدمن", -"Affordable for Everyone": "مناسب للكل", -"After this period": "بعد الفترة دي", -"Afternoon Promo": "عرض بعد الظهر", -"Afternoon Promo Rides": "رحلات عرض بعد الظهر", -"Age": "العمر", -"age": "العمر", -"Age is": "العمر هو", -"agreement subtitle": "عنوان الاتفاقية", -"Agricultural Bank of Egypt": "البنك الزراعي المصري", -"Ahli United Bank": "بنك الأهلي المتحد", -"AI failed to extract info": "فشل الذكاء الاصطناعي في استخراج المعلومات", -"AI Page": "صفحة الذكاء الاصطناعي", -"Air condition Trip": "رحلة بتكييف", -"airport": "المطار", -"Al Ahli Bank of Kuwait – Egypt": "بنك الأهلي الكويتي – مصر", -"Al Baraka Bank Egypt B.S.C.": "بنك البركة مصر", -"Alert": "تنبيه", -"alert": "تنبيه", -"Alerts": "التنبيهات", -"Alex Bank Egypt": "بنك الإسكندرية مصر", -"Allow Location Access": "اسمح بالوصول للموقع", -"Allow overlay permission": "اسمح بصلاحية العرض فوق التطبيقات", -"Allowing location access will help us display orders near you. Please enable it now.": "السماح بالوصول للموقع هيخلينا نعرض الطلبات القريبة منك. من فضلك شغّله دلوقتي.", -"Already have an account? Login": "معندكش حساب؟ سجّل دخول", -"And acknowledge our": "وأوافق على", -"and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية.", -"and acknowledge the": "وأوافق على", -"and I have a trip on": "ومعايا رحلة على", -"Any comments about the passenger?": "في أي تعليق على الراكب؟", -"App Dark Mode": "الوضع الداكن للتطبيق", -"App Preferences": "تفضيلات التطبيق", -"App with Passenger": "التطبيق مع الراكب", -"app_description": "وصف التطبيق", -"Applied": "تم التطبيق", -"Apply": "تطبيق", -"Apply Order": "تطبيق الطلب", -"Apply Promo Code": "طبّق كود الخصم", -"Approaching your area. Should be there in 3 minutes.": "قاعد يقرب من منطقتك. هيوصل خلال 3 دقايق.", -"Approve Driver Documents": "الموافقة على مستندات السايق", -"ar": "ar", -"ar-gulf": "ar-gulf", -"ar-ma": "ar-ma", -"Arab African International Bank": "البنك العربي الأفريقي الدولي", -"Arab Bank PLC": "البنك العربي", -"Arab Banking Corporation - Egypt S.A.E": "الشركة العربية المصرفية - مصر", -"Arab International Bank": "البنك العربي الدولي", -"Arab Investment Bank": "بنك الاستثمار العربي", -"Are you sure to cancel?": "متأكد إنك عايز تلغي؟", -"Are you sure to delete recorded files": "متأكد إنك عايز تحذف الملفات المسجلة؟", -"Are you sure to delete this location?": "متأكد إنك عايز تحذف الموقع ده؟", -"Are you sure to delete your account?": "متأكد إنك عايز تحذف حسابك؟", -"Are you sure to exit ride ?": "متأكد إنك عايز تخرج من الرحلة؟", -"Are you sure to exit ride?": "متأكد إنك عايز تخرج من الرحلة؟", -"Are You sure to LogOut?": "متأكد إنك عايز تسجّل خروج؟", -"Are you sure to make this car as default": "متأكد إنك عايز تخلي العربية دي الافتراضية؟", -"Are You sure to ride to": "متأكد إنك عايز تركب لـ", -"Are you sure you want to cancel and collect the fee?": "متأكد إنك عايز تلغي وتقبض الرسوم؟", -"Are you sure you want to cancel this trip?": "متأكد إنك عايز تلغي الرحلة دي؟", -"Are you sure you want to logout?": "متأكد إنك عايز تسجّل خروج؟", -"Are you sure?": "متأكد؟", -"Are you sure? This action cannot be undone.": "متأكد؟ الإجراء ده مش هيرجع تاني.", -"Are you want to change": "عايز تغيّر", -"Are you want to go this site": "عايز تروح للموقع ده؟", -"Are you want to go to this site": "عايز تروح للموقع ده؟", -"Are you want to wait drivers to accept your order": "عايز تنتظر السايقين يقبلوا طلبك؟", -"Arrival time": "وقت الوصول", -"arrival time to reach your point": "وقت الوصول لنقطتك", -"as the driver.": "كسايق.", -"Associate Degree": "دبلوم متوسط", -"attach audio of complain": "أرفق صوت الشكوى", -"attach correct audio": "أرفق الصوت الصحيح", -"Attach this audio file?": "تربط الملف الصوتي ده؟", -"Attention": "تنبيه", -"ATTIJARIWAFA BANK Egypt": "بنك التجاري وفا مصر", -"Audio file not attached": "مفيش ملف صوتي مرفق", -"Audio uploaded successfully.": "تم رفع الملف الصوتي بنجاح.", -"Authentication failed": "فشلت المصادقة", -"Available Balance": "الرصيد المتاح", -"Available for rides": "متاح للرحلات", -"Available Rides": "الرحلات المتاحة", -"Average of Hours of": "متوسط ساعات", -"Awaiting response...": "بانتظار الرد...", -"Awfar Car": "عربيّة أوفر", -"Bachelor\\'s Degree": "ليسانس", -"Back": "رجوع", -"Back to other sign-in options": "ارجع لخيارات تسجيل الدخول التانية", -"Bahrain": "البحرين", -"Balance": "الرصيد", -"Balance limit exceeded": "تم تجاوز حد الرصيد", -"Balance not enough": "الرصيد مش كافي", -"Balance:": "الرصيد:", -"Bank Account": "حساب بنكي", -"Bank account added successfully": "تمت إضافة الحساب البنكي بنجاح", -"Bank Card Payment": "دفع بكروت البنك", -"Banque Du Caire": "بنك القاهرة", -"Banque Misr": "بنك مصر", -"Basic features": "ميزات أساسية", -"Be Slowly": "خليها هادية", -"be sure": "خلي بالك", -"Be sure for take accurate images please": "خلي بالك من إنك تلتقط صور واضحة من فضلك", -"Be sure for take accurate images please\nYou have": "خلي بالك من إنك تلتقط صور واضحة من فضلك\nمعاك", -"Be sure to use it quickly! This code expires at": "خلي بالك من استخدامه بسرعة! الكود ده بيخلص في", -"Because we are near, you have the flexibility to choose the ride that works best for you.": "عشان إحنا قريبين، عندك المرونة تختار الرحلة اللي أنسب ليك.", -"before": "قبل", -"Before we start, please review our terms.": "قبل ما نبدأ، من فضلك راجع شروطنا.", -"Behavior Page": "صفحة السلوك", -"Behavior Score": "درجة السلوك", -"below, I confirm that I have read and agree to the": "تحت، أنا أؤكد إني قريت ووافقت على", -"below, I have reviewed and agree to the Terms of Use and acknowledge the": "تحت، أنا راجعت ووافقت على شروط الاستخدام وأقرّ بـ", -"below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "تحت، أنا راجعت ووافقت على شروط الاستخدام وأقرّ بإشعار الخصوصية. عمري 18 سنة أو أكتر.", -"Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "أحسن اختيار لعربيّة مريحة مع طريق مرن ومحطات توقف. المطار ده بيوفر تأشيرة دخول بالسعر ده.", -"Best choice for cities": "أحسن اختيار للمدن", -"Best choice for comfort car and flexible route and stops point": "أحسن اختيار لعربيّة مريحة مع طريق مرن ومحطات توقف", -"Best Day": "أحسن يوم", -"Biometric Authentication": "المصادقة البيومترية", -"Birth Date": "تاريخ الميلاد", -"Birth year must be 4 digits": "سنة الميلاد لازم تكون 4 أرقام", -"birthdate": "تاريخ الميلاد", -"Birthdate Mismatch": "عدم تطابق تاريخ الميلاد", -"Birthdate on ID front and back does not match.": "تاريخ الميلاد على الوجه الأمامي والخلفي للبطاقة مش متطابق.", -"Blom Bank": "بنك بلوم", -"Bonus gift": "هدية بونص", -"bonus_added": "البونص المضاف", -"BookingFee": "رسوم الحجز", -"Bottom Bar Example": "مثال الشريط السفلي", -"But you have a negative salary of": "بس معك راتب سلبي بقيمة", -"by": "بواسطة", -"by this list below": "بالقائمة دي تحت", -"Calculating...": "بيتم الحساب...", -"Call": "اتصل", -"Call Connected": "تم الاتصال", -"Call Driver": "اتصل بالسايق", -"Call End": "انتهت المكالمة", -"Call Ended": "انتهت المكالمة", -"Call Income": "مكالمة واردة", -"Call Income from Driver": "مكالمة واردة من السايق", -"Call Income from Passenger": "مكالمة واردة من الراكب", -"Call Left": "مكالمة فائتة", -"Call Options": "خيارات الاتصال", -"Call Page": "صفحة الاتصال", -"Call Passenger": "اتصل بالراكب", -"Call Support": "اتصل بالدعم", -"Calling": "بيتم الاتصال بـ", -"Calling non-Syrian numbers is not supported": "الاتصال بالأرقام غير السورية مش مدعوم", -"Camera Access Denied.": "تم رفض الوصول للكاميرا.", -"Camera not initialized yet": "الكاميرا مش اتشغلت لسه", -"Camera not initilaized yet": "الكاميرا مش اتشغلت لسه", -"Can I cancel my ride?": "أقدر ألغي رحلتي؟", -"Can we know why you want to cancel Ride ?": "نعرف ليه عايز تلغي الرحلة؟", -"Cancel": "إلغاء", -"cancel": "إلغاء", -"Cancel & Collect Fee": "إلغاء واستلام الرسوم", -"Cancel Ride": "إلغاء الرحلة", -"Cancel Search": "إلغاء البحث", -"Cancel Trip": "إلغاء الرحلة", -"Cancel Trip from driver": "إلغاء الرحلة من السايق", -"Cancel Trip?": "تلغي الرحلة؟", -"Canceled": "ملغاة", -"Canceled Orders": "الطلبات الملغاة", -"Cancelled": "ملغاة", -"Cancelled by Passenger": "تم الإلغاء بواسطة الراكب", -"Cannot apply further discounts.": "مش قادر تطبق خصومات زيادة.", -"Captain": "الكابتن", -"Capture an Image of Your car license back": "التقط صورة للوجه الخلفي لرخصة عربيتك", -"Capture an Image of Your car license front": "التقط صورة للوجه الأمامي لرخصة عربيتك", -"Capture an Image of Your car license front ": "التقط صورة للوجه الأمامي لرخصة عربيتك", -"Capture an Image of Your Criminal Record": "التقط صورة لصحيفة الحالة الجنائية بتاعتك", -"Capture an Image of Your Driver License": "التقط صورة لرخصة قيادتك", -"Capture an Image of Your Driver’s License": "التقط صورة لرخصة قيادتك", -"Capture an Image of Your ID Document Back": "التقط صورة للوجه الخلفي لبطاقتك الشخصية", -"Capture an Image of Your ID Document front": "التقط صورة للوجه الأمامي لبطاقتك الشخصية", -"Car": "عربيّة", -"Car Color": "لون العربية", -"Car Color (Hex)": "لون العربية (سداسي)", -"Car Color (Name)": "لون العربية (الاسم)", -"Car Color:": "لون العربية:", -"Car Details": "تفاصيل العربية", -"Car Expire": "انتهاء صلاحية العربية", -"Car Kind": "نوع العربية", -"Car License Card": "رخصة تسجيل العربية", -"Car Make (e.g., Toyota)": "ماركة العربية (زي تويوتا)", -"Car Make:": "ماركة العربية:", -"Car Model (e.g., Corolla)": "موديل العربية (زي كورولا)", -"Car Model:": "موديل العربية:", -"Car Plate": "لوحة العربية", -"Car Plate is": "لوحة العربية هي", -"Car Plate Number": "رقم لوحة العربية", -"Car Plate:": "لوحة العربية:", -"Car Registration (Back)": "تسجيل العربية (الخلفي)", -"Car Registration (Front)": "تسجيل العربية (الأمامي)", -"Car Type": "نوع العربية", -"car_back": "خلفي العربية", -"car_color": "لون العربية", -"car_front": "أمامي العربية", -"car_license_back": "الجانب الخلفي لرخصة العربية", -"car_license_front": "الجانب الأمامي لرخصة العربية", -"car_model": "موديل العربية", -"car_plate": "لوحة العربية", -"Card Earnings": "أرباح الكارت", -"Card Number": "رقم الكارت", -"Card Payment": "دفع بالكارت", -"CardID": "رقم الكارت", -"carType'] ?? 'Fixed Price": "carType'] ?? 'سعر ثابت", -"Cash": "كاش", -"Cash Earnings": "أرباح كاش", -"Cash Out": "سحب الفلوس", -"Central Bank Of Egypt": "البنك المركزي المصري", -"Century Rider": "سايق القرن", -"Challenges": "التحديات", -"Change Country": "غيّر الدولة", -"change device": "غيّر الجهاز", -"Change Home location?": "تغيّر موقع البيت؟", -"Change Ride": "غيّر الرحلة", -"Change Route": "غيّر الطريق", -"Change the app language": "غيّر لغة التطبيق", -"Change Work location?": "تغيّر موقع الشغل؟", -"Charge your Account": "اشحن حسابك", -"Charge your account.": "اشحن حسابك.", -"Chassis": "الشاسيه", -"Check back later for new offers!": "راجع تاني بعد شوية عشان تشوف عروض جديدة!", -"Checking for updates...": "بيتم التحقق من وجود تحديثات...", -"Choose a contact option": "اختر خيار جهة اتصال", -"Choose between those Type Cars": "اختر بين أنواع العربية دي", -"Choose Claim Method": "اختر طريقة الاستلام", -"Choose from contact": "اختر من جهات الاتصال", -"Choose from Map": "اختر من الخريطة", -"Choose how you want to call the passenger": "اختر إزاي عايز تتصل بالراكب", -"Choose Language": "اختر اللغة", -"Choose the trip option that perfectly suits your needs and preferences.": "اختر خيار الرحلة اللي يناسب احتياجاتك وتفضيلاتك تمامًا.", -"Choose who this order is for": "اختر الطلب ده لمين", -"Choose your ride": "اختر رحلتك", -"Citi Bank N.A. Egypt": "سيتي بنك مصر", -"City": "المدينة", -"Claim": "استلام", -"Claim Reward": "استلم المكافأة", -"Claim your 20 LE gift for inviting": "استلم هديتك البالغة 20 جنيه مصري مقابل الدعوة", -"Claimed": "تم الاستلام", -"Click here point": "اضغط هنا", -"Click here to Show it in Map": "اضغط هنا عشان تعرضه على الخريطة", -"CliQ": "CliQ", -"CliQ Payment": "دفع عبر CliQ", -"Close": "إغلاق", -"Closest & Cheapest": "الأقرب والأرخص", -"Closest to You": "الأقرب ليك", -"CODE": "الكود", -"Code": "الكود", -"Code approved": "تمت الموافقة على الكود", -"Code copied!": "تم نسخ الكود!", -"Code not approved": "الكود مش مقبول", -"Collect Cash": "اجمع كاش", -"Collect Payment": "اجمع الدفع", -"Color": "اللون", -"Color is": "اللون هو", -"color.beige": "بيج", -"color.black": "أسود", -"color.blue": "أزرق", -"color.bronze": "برونزي", -"color.brown": "بني", -"color.burgundy": "بورجوندي", -"color.champagne": "شمبانيا", -"color.darkGreen": "أخضر غامق", -"color.gold": "ذهبي", -"color.gray": "رمادي", -"color.green": "أخضر", -"color.gunmetal": "معدني رمادي", -"color.maroon": "بني محمر", -"color.navy": "أزرق داكن", -"color.orange": "برتقالي", -"color.purple": "بنفسجي", -"color.red": "أحمر", -"color.silver": "فضي", -"color.white": "أبيض", -"color.yellow": "أصفر", -"Comfort": "كومفورت", -"Comfort choice": "خيار مريح", -"Comfort ❄️": "كومفورت ❄️", -"Comfort: For cars newer than 2017 with air conditioning.": "كومفورت: للعربيات الأحدث من 2017 والمزودة بتكييف.", -"Coming Soon": "قريبًا", -"Commercial International Bank - Egypt S.A.E": "البنك التجاري الدولي - مصر", -"Commission": "العمولة", -"committed_to_safety": "ملتزم بالسلامة", -"Communication": "التواصل", -"Compatible, you may notice some slowness": "متوافق، ممكن تلاقيه شوية بطئ", -"Compensation Received": "تم استلام التعويض", -"Complaint": "شكوى", -"Complaint cannot be filed for this ride. It may not have been completed or started.": "مش قادر تقدم شكوى للرحلة دي. ممكن تكون مش اتكملت أو بدأت لسه.", -"Complaint data saved successfully": "تم حفظ بيانات الشكوى بنجاح", -"Complete 100 trips": "اكمل 100 رحلة", -"Complete 50 trips": "اكمل 50 رحلة", -"Complete 500 trips": "اكمل 500 رحلة", -"Complete Payment": "اكمل الدفع", -"complete profile subtitle": "عنوان إكمال الملف الشخصي", -"complete registration button": "زر إكمال التسجيل", -"Complete your first trip": "اكمل رحلتك الأولى", -"complete, you can claim your gift": "لما تكمل، تقدر تستلم هديتك", -"Completed": "مكتملة", -"Confirm": "تأكيد", -"Confirm & Find a Ride": "تأكيد والعثور على رحلة", -"Confirm Attachment": "تأكيد المرفق", -"Confirm Cancellation": "تأكيد الإلغاء", -"Confirm Payment": "تأكيد الدفع", -"Confirm payment with biometrics": "تأكيد الدفع باستخدام القياسات الحيوية", -"Confirm Pick-up Location": "تأكيد موقع الالتقاط", -"Confirm Selection": "تأكيد الاختيار", -"Confirm Trip": "تأكيد الرحلة", -"Confirm your Email": "تأكيد بريدك الإلكتروني", -"Confirmation": "تأكيد", -"Connected": "متصل", -"Connecting...": "بيتم الاتصال...", -"Connection error": "خطأ في الاتصال", -"connection_failed": "فشل الاتصال", -"Contact Options": "خيارات الاتصال", -"Contact permission is required to pick a contact": "مطلوب إذن جهات الاتصال عشان تختار جهة اتصال", -"Contact permission is required to pick contacts": "مطلوب إذن جهات الاتصال عشان تختار جهات الاتصال", -"Contact Support": "اتصل بالدعم", -"Contact Support to Recharge": "اتصل بالدعم عشان تشحن", -"Contact Us": "اتصل بينا", -"Contact us for any questions on your order.": "اتصل بينا لأي استفسارات عن طلبك.", -"Contacts Loaded": "تم تحميل جهات الاتصال", -"Contacts sync completed successfully!": "اكتملت مزامنة جهات الاتصال بنجاح!", -"Continue": "متابعة", -"Continue Ride": "تابع الرحلة", -"Continue straight": "استمر بشكل مستقيم", -"Continue to App": "تابع للتطبيق", -"copied to clipboard": "تم النسخ للحافظة", -"Copy": "نسخ", -"Copy Code": "نسخ الكود", -"Copy this Promo to use it in your Ride!": "انسخ العرض الترويجي ده عشان تستخدمه في رحلتك!", -"Cost": "التكلفة", -"Cost Duration": "مدة التكلفة", -"cost is": "التكلفة هي", -"Cost Of Trip IS": "تكلفة الرحلة هي", -"Could not load trip details.": "ماقدرش نحمل تفاصيل الرحلة.", -"Could not start ride. Please check internet.": "ماقدرش نبدأ الرحلة. من فضلك تحقق من الإنترنت.", -"Counts of budgets on days": "عدد الميزانيات حسب الأيام", -"Counts of Hours on days": "عدد الساعات حسب الأيام", -"Counts of rides on days": "عدد الرحلات حسب الأيام", -"Create Account": "إنشاء حساب", -"Create Account with Email": "إنشاء حساب باستخدام البريد الإلكتروني", -"Create Driver Account": "إنشاء حساب سايق", -"Create new Account": "إنشاء حساب جديد", -"Create Wallet to receive your money": "أنشئ محفظة عشان تستلم فلوسك", -"created time": "وقت الإنشاء", -"Credit": "رصيد", -"Credit Agricole Egypt S.A.E": "كريدي أجريكول مصر", -"Credit card is": "كارت الائتمان هو", -"Criminal Document": "المستند الجنائي", -"Criminal Document Required": "المستند الجنائي مطلوب", -"Criminal Record": "صحيفة الحالة الجنائية", -"Cropper": "أداة الاقتصاص", -"Current Balance": "الرصيد الحالي", -"Current Location": "الموقع الحالي", -"Customer MSISDN doesn’t have customer wallet": "رقم موبايل العميل مش فيه محفظة عميل", -"Customer not found": "ما لقيناش العميل", -"Customer phone is not active": "موبايل العميل مش شغال", -"Daily Challenges": "التحديات اليومية", -"Daily Goal": "الهدف اليومي", -"Date": "التاريخ", -"Date and Time Picker": "منتقي التاريخ والوقت", -"Date of Birth": "تاريخ الميلاد", -"Date of Birth is": "تاريخ الميلاد هو", -"Date of Birth:": "تاريخ الميلاد:", -"Day Off": "يوم إجازة", -"Day Streak": "سلسلة الأيام", -"Days": "الأيام", -"de": "de", -"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سيرو،", -"Debit": "خصم", -"Debit Card": "كارت خصم", -"Dec 15 - Dec 21, 2024": "15 ديسمبر - 21 ديسمبر 2024", -"Decline": "رفض", -"default_tone": "النغمة الافتراضية", -"Delete": "حذف", -"Delete My Account": "احذف حسابي", -"Delete Permanently": "حذف نهائي", -"Deleted": "تم الحذف", -"deleted": "تم الحذف", -"Delivery": "توصيل", -"Destination": "الوجهة", -"Destination Location": "موقع الوجهة", -"Destination selected": "تم اختيار الوجهة", -"Detect Your Face": "اكتشف وجهك", -"Detect Your Face ": "اكتشف وجهك", -"detected": "تم الكشف", -"Device Change Detected": "تم اكتشاف تغيير الجهاز", -"Device Compatibility": "توافق الجهاز", -"Diamond badge": "شارة الماس", -"Diesel": "ديزل", -"Directions": "الاتجاهات", -"DISCOUNT": "خصم", -"Displacement": "السعة", -"Distance": "المسافة", -"Distance from Passenger to destination is": "المسافة من الراكب للوجهة هي", -"Distance is": "المسافة هي", -"distance is": "المسافة هي", -"Distance of the Ride is": "مسافة الرحلة هي", -"Distance To Passenger is": "المسافة للراكب هي", -"Do you have a disease for a long time?": "معاك مرض مزمن من زمان؟", -"Do you have an invitation code from another driver?": "معاك كود دعوة من سايق تاني؟", -"Do you want to change Home location": "عايز تغيّر موقع البيت؟", -"Do you want to change Work location": "عايز تغيّر موقع الشغل؟", -"Do you want to collect your earnings?": "عايز تجمع أرباحك؟", -"Do you want to go to this location?": "عايز تروح للموقع ده؟", -"Do you want to pay Tips for this Driver": "عايز تدفع إكرامية للسايق ده؟", -"Docs": "المستندات", -"Doctoral Degree": "دكتوراه", -"Document Number:": "رقم المستند:", -"Documents check": "فحص المستندات", -"Don't have an account? Register": "ممعكش حساب؟ سجّل دلوقتي", -"Done": "تم", -"Don’t forget your personal belongings.": "متتنسيش حاجاتك الشخصية.", -"Download the app now:": "حمّل التطبيق دلوقتي:", -"Download the Siro app now and enjoy your ride!": "حمّل تطبيق سيرو دلوقتي واستمتع برحلتك!", -"Download the Siro Driver app now and earn rewards!": "حمّل تطبيق سايق سيرو دلوقتي واكسب مكافآت!", -"Drawing route on map...": "بيتم رسم الطريق على الخريطة...", -"Driver": "السايق", -"Driver Accepted Request": "السايق قبل الطلب", -"Driver Accepted the Ride for You": "السايق قبل الرحلة ليك", -"Driver Agreement": "اتفاقية السايق", -"Driver already has 2 trips within the specified period.": "السايق معاه رحلتين ضمن الفترة المحددة بالفعل.", -"Driver Applied the Ride for You": "السايق قدّم على الرحلة ليك", -"Driver Balance": "رصيد السايق", -"Driver Behavior": "سلوك السايق", -"Driver Cancel Your Trip": "السايق ألغى رحلتك", -"Driver Cancelled Your Trip": "السايق ألغى رحلتك", -"Driver Car Plate": "لوحة عربيّة السايق", -"Driver Finish Trip": "السايق أنهى الرحلة", -"Driver Invitations": "دعوات السايقين", -"Driver Is Going To Passenger": "السايق رايح للراكب", -"Driver is on the way": "السايق في الطريق", -"Driver is waiting": "السايق بيستنا", -"Driver is waiting at pickup.": "السايق بيستنا في نقطة الالتقاط.", -"Driver joined the channel": "السايق انضم للقناة", -"Driver left the channel": "السايق خرج من القناة", -"Driver Level": "مستوى السايق", -"Driver License (Back)": "رخصة القيادة (الخلفي)", -"Driver License (Front)": "رخصة القيادة (الأمامي)", -"Driver List": "قائمة السايقين", -"Driver Login": "تسجيل دخول السايق", -"Driver Message": "رسالة السايق", -"Driver Name": "اسم السايق", -"Driver Name:": "اسم السايق:", -"Driver phone": "موبايل السايق", -"Driver Phone:": "موبايل السايق:", -"Driver Portal": "بوابة السايق", -"Driver Referral": "إحالة السايق", -"Driver Registration": "تسجيل السايق", -"Driver Registration & Requirements": "تسجيل السايق والمتطلبات", -"Driver Wallet": "محفظة السايق", -"driver' ? 'Invite Driver": "driver' ? 'دعوة سايق", -"Driver's Personal Information": "المعلومات الشخصية للسايق", -"DRIVER123": "DRIVER123", -"driver_license": "رخصة القيادة", -"Drivers": "السايقين", -"Drivers License Class": "فئة رخصة القيادة", -"Drivers License Class:": "فئة رخصة القيادة:", -"Drivers received orders": "السايقين استلموا طلبات", -"Driving Behavior": "سلوك القيادة", -"Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "بسبب الإلغاءات الكتير (3 مرات)، تم تعليق استلام الطلبات لمدة 4 ساعات.", -"Duration": "المدة", -"Duration is": "المدة هي", -"duration is": "المدة هي", -"Duration of the Ride is": "مدة الرحلة هي", -"Duration of Trip is": "مدة الرحلة هي", -"Duration To Passenger is": "المدة لحد ما الراكب يوصل هي", -"E-Cash payment gateway": "بوابة دفع E-Cash", -"E-mail validé.\\\\": "تم التحقق من البريد الإلكتروني.\\\\", -"e.g., 0912345678": "مثال: 0912345678", -"Earnings": "الأرباح", -"Earnings & Distance": "الأرباح والمسافة", -"Earnings Summary": "ملخص الأرباح", -"Edit": "تعديل", -"Edit Profile": "تعديل الملف الشخصي", -"Edit Your data": "عدّل بياناتك", -"Education": "التعليم", -"education": "التعليم", -"EGP": "جنيه مصري", -"Egypt": "مصر", -"Egypt Post": "البريد المصري", -"Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", -"Egypt': return 'EGP": "Egypt': return 'جنيه مصري", -"Egyptian Arab Land Bank": "البنك العقاري المصري العربي", -"Egyptian Gulf Bank": "البنك المصري الخليجي", -"el": "el", -"Electric": "كهربائي", -"Email": "البريد الإلكتروني", -"Email is": "البريد الإلكتروني هو", -"Email must be correct.": "البريد الإلكتروني لازم يكون صحيح.", -"email optional label": "تسمية البريد الإلكتروني الاختياري", -"Email Us": "راسلنا", -"Email Wrong": "البريد الإلكتروني غلط", -"Email you inserted is Wrong.": "البريد الإلكتروني اللي أدخلته غلط.", -"email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'أهلاً", -"Emergency Contact": "جهة اتصال طوارئ", -"Emergency Number": "رقم الطوارئ", -"Emirates National Bank of Dubai": "بنك الإمارات الوطني دبي", -"Employment Type": "نوع التوظيف", -"Enable Location": "تفعيل الموقع", -"Enable Location Access": "تفعيل الوصول للموقع", -"Enable Location Permission": "تفعيل إذن الموقع", -"End": "إنهاء", -"end": "نهاية", -"End Ride": "أنهي الرحلة", -"End Trip": "أنهي الرحلة", -"end_name'] ?? 'Destination Location": "end_name'] ?? 'موقع الوجهة", -"endName'] ?? 'Destination": "endName'] ?? 'الوجهة", -"Enjoy a safe and comfortable ride.": "استمتع برحلة آمنة ومريحة.", -"Enjoy competitive prices across all trip options, making travel accessible.": "استمتع بأسعار تنافسية عبر كل خيارات الرحلات، مما يجعل السفر في متناول إيديك.", -"Ensure the passenger is in the car.": "تأكد إن الراكب داخل العربية.", -"Enter a valid email": "أدخل بريد إلكتروني صحيح", -"Enter a valid year": "أدخل سنة صحيحة", -"Enter Amount Paid": "أدخل المبلغ المدفوع", -"Enter Health Insurance Provider": "أدخل مزوّد التأمين الصحي", -"enter otp validation": "أدخل التحقق من OTP", -"Enter phone": "أدخل الموبايل", -"Enter phone number": "أدخل رقم الموبايل", -"Enter promo code": "أدخل كود الخصم", -"Enter promo code here": "أدخل كود الخصم هنا", -"Enter the 3-digit code": "أدخل الكود المكوّن من 3 أرقام", -"Enter the promo code and get": "أدخل كود الخصم واحصل على", -"Enter your City": "أدخل مدينتك", -"Enter your code below to apply the discount.": "أدخل كودك تحت عشان تطبق الخصم.", -"Enter your complaint here": "أدخل شكواك هنا", -"Enter your complaint here...": "أدخل شكواك هنا...", -"Enter your email": "أدخل بريدك الإلكتروني", -"Enter your email address": "أدخل عنوان بريدك الإلكتروني", -"Enter your feedback here": "أدخل ملاحظاتك هنا", -"Enter Your First Name": "أدخل اسمك الأول", -"Enter your first name": "أدخل اسمك الأول", -"Enter your last name": "أدخل اسمك الأخير", -"Enter your Note": "أدخل ملاحظتك", -"Enter your Password": "أدخل كلمة المرور", -"Enter your password": "أدخل كلمة المرور", -"Enter your phone number": "أدخل رقم موبايلك", -"Enter your promo code": "أدخل كود الخصم بتاعك", -"Enter your Question here": "أدخل سؤالك هنا", -"Enter your wallet number": "أدخل رقم محفظتك", -"Error": "حصل خطأ", -"error": "خطأ", -"Error connecting call": "حصل خطأ في الاتصال بالمكالمة", -"Error processing request": "حصل خطأ في معالجة الطلب", -"Error starting voice call": "حصل خطأ في بدء المكالمة الصوتية", -"Error uploading proof": "حصل خطأ في رفع الإثبات", -"Error', 'An application error occurred.": "خطأ', 'حصل خطأ في التطبيق.", -"error'] ?? 'Failed to claim reward": "error'] ?? 'فشل في استلام المكافأة", -"error_processing_document": "حصل خطأ في معالجة المستند", -"es": "es", -"Evening": "المساء", -"Excellent": "ممتاز", -"Exclusive offers and discounts always with the Sefer app": "عروض وخصومات حصرية دايماً مع تطبيق سفر", -"Exclusive offers and discounts always with the Siro app": "عروض وخصومات حصرية دايماً مع تطبيق سيرو", -"Exit": "خروج", -"Exit Ride?": "تخرج من الرحلة؟", -"expected": "متوقّع", -"Expiration Date": "تاريخ الانتهاء", -"expiration_date": "تاريخ الانتهاء", -"Expired Driver’s License": "رخصة قيادة منتهية الصلاحية", -"Expired License": "رخصة منتهية الصلاحية", -"Expired License', 'Your driver’s license has expired.": "رخصة منتهية الصلاحية', 'رخصة قيادتك انتهت.", -"Expiry Date": "تاريخ الانتهاء", -"Expiry Date:": "تاريخ الانتهاء:", -"Export Development Bank of Egypt": "بنك التصدير والاستيراد المصري", -"Extra 200 pts when they complete 10 trips": "200 نقطة إضافية لما يكملوا 10 رحلات", -"fa": "fa", -"face detect": "كشف الوجه", -"Face Detection Result": "نتيجة كشف الوجه", -"Failed": "فشل", -"Failed to add place. Please try again later.": "فشل في إضافة المكان. من فضلك جرب تاني بعد شوية.", -"Failed to cancel ride": "فشل في إلغاء الرحلة", -"Failed to claim reward": "فشل في استلام المكافأة", -"Failed to connect to the server. Please try again.": "فشل في الاتصال بالسيرفر. من فضلك جرب تاني.", -"Failed to fetch rides. Please try again.": "فشل في جلب الرحلات. من فضلك جرب تاني.", -"Failed to finish ride. Please check internet.": "فشل في إنهاء الرحلة. من فضلك تحقق من الإنترنت.", -"Failed to initiate call session. Please try again.": "فشل في بدء جلسة المكالمة. من فضلك جرب تاني.", -"Failed to initiate payment. Please try again.": "فشل في بدء الدفع. من فضلك جرب تاني.", -"Failed to load profile data.": "فشل في تحميل بيانات الملف الشخصي.", -"Failed to process route points": "فشل في معالجة نقاط الطريق", -"Failed to save driver data": "فشل في حفظ بيانات السايق", -"Failed to send invite": "فشل في إرسال الدعوة", -"failed to send otp": "فشل في إرسال OTP", -"Failed to upload audio file.": "فشل في رفع ملف الصوت.", -"Faisal Islamic Bank of Egypt": "بنك فيصل الإسلامي المصري", -"false": "غلط", -"Fastest Complaint Response": "أسرع رد على الشكاوى", -"Favorite Places": "الأماكن المفضلة", -"Fee is": "الرسوم هي", -"Feed Back": "ملاحظات", -"Feedback": "ملاحظات", -"Feedback data saved successfully": "تم حفظ بيانات الملاحظات بنجاح", -"Female": "أنثى", -"Find answers to common questions": "لاقي إجابات للأسئلة الشائعة", -"Finish & Submit": "إنهاء وإرسال", -"Finish Monitor": "إنهاء المراقبة", -"Finished": "منتهية", -"First Abu Dhabi Bank": "بنك أبوظبي الأول", -"First Name": "الاسم الأول", -"First name": "الاسم الأول", -"first name label": "تسمية الاسم الأول", -"first name required": "الاسم الأول مطلوب", -"First Trip": "أول رحلة", -"Five Star Driver": "سايق خمس نجوم", -"Fixed Price": "سعر ثابت", -"Flag-down fee": "رسوم بداية الرحلة", -"for": "لـ", -"for ": "لـ ", -"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 transfer fees": "لرسوم التحويل", -"for your first registration!": "لتسجيلك الأول!", -"fr": "fr", -"Free Call": "مكالمة مجانية", -"Frequently Asked Questions": "الأسئلة الشائعة", -"Frequently Questions": "أسئلة متكررة", -"Fri": "الجمعة", -"From": "من", -"from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 07:30 لـ 10:30 (الخميس، الجمعة، السبت، الاثنين)", -"from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 15:00 (الخميس، الجمعة، السبت، الاثنين)", -"from 23:59 till 05:30": "من 23:59 لـ 05:30", -"from 3 times Take Attention": "من 3 مرات، خلي بالك", -"from 3:00pm to 6:00 pm": "من 3:00 مساءً لـ 6:00 مساءً", -"from 7:00am to 10:00am": "من 7:00 صباحًا لـ 10:00 صباحًا", -"From :": "من :", -"From : Current Location": "من : الموقع الحالي", -"From Budget": "من الميزانية", -"from your favorites": "من مفضلاتك", -"from your list": "من قائمتك", -"From:": "من:", -"fromBudget": "من الميزانية", -"Fuel": "الوقود", -"Fuel Type": "نوع الوقود", -"Full Name": "الاسم الكامل", -"Full Name (Marital)": "الاسم الكامل (الحالة الاجتماعية)", -"FullName": "الاسم الكامل", -"Gender": "الجنس", -"gender": "الجنس", -"General": "عام", -"General Authority For Supply Commodities": "الهيئة العامة للسلع التموينية", -"Get": "احصل على", -"Get a discount on your first Siro ride!": "احصل على خصم على رحلتك الأولى مع سيرو!", -"Get Details of Trip": "احصل على تفاصيل الرحلة", -"Get Direction": "احصل على الاتجاهات", -"Get features for your country": "احصل على الميزات الخاصة ببلدك", -"Get it Now!": "احصل عليه دلوقتي!", -"Get to your destination quickly and easily.": "وصل لوجهتك بسرعة وسهولة.", -"get_a_ride": "احصل على رحلة", -"get_to_destination": "الوصول للوجهة", -"Getting Started": "البدء", -"Gift Already Claimed": "تم استلام الهدية بالفعل", -"Go": "اذهب", -"Go Now": "اذهب دلوقتي", -"Go Online": "اذهب أونلاين", -"Go To Favorite Places": "اذهب للأماكن المفضلة", -"Go to next step": "اذهب للخطوة الجاية", -"Go to next step\nscan Car License.": "اذهب للخطوة الجاية\nامسح رخصة العربية.", -"Go to passenger Location": "اذهب لموقع الراكب", -"Go to passenger Location now": "اذهب لموقع الراكب دلوقتي", -"Go to passenger:": "اذهب للراكب:", -"Go to this location": "اذهب للموقع ده", -"Go to this Target": "اذهب للهدف ده", -"go to your passenger location before": "اذهب لموقع راكبك قبل", -"go to your passenger location before\nPassenger cancel trip": "اذهب لموقع راكبك قبل ما يلغي الراكب الرحلة", -"Goal Achieved!": "تم تحقيق الهدف!", -"Gold badge": "شارة ذهبية", -"Good": "جيد", -"Google Map App": "تطبيق خرائط جوجل", -"GPS Required Allow !.": "مطلوب السماح بـ GPS !.", -"h": "ساعة", -"H and": "و", -"Hard Brake": "فرامل قوية", -"Hard Brakes": "الفرامل القوية", -"hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'فرامل قوية", -"has been added to your budget": "تمت إضافته لميزانيتك", -"has completed": "اكتمل", -"Have a promo code?": "معاك كود خصم؟", -"Head": "الرأس", -"Heading your way now. Please be ready.": "قاعد يجيك دلوقتي. من فضلك استعد.", -"Health Insurance": "التأمين الصحي", -"Heatmap": "خريطة الحرارة", -"Height:": "الطول:", -"Hello": "أهلاً", -"Hello this is Captain": "أهلاً، ده الكابتن", -"Hello this is Driver": "أهلاً، ده السايق", -"Help & Support": "المساعدة والدعم", -"Help Details": "تفاصيل المساعدة", -"Helping Center": "مركز المساعدة", -"Helping Page": "صفحة المساعدة", -"Here recorded trips audio": "هنا صوت الرحلات المسجلة", -"Hi": "أهلاً", -"hi": "أهلاً", -"Hi ,I Arrive your site": "أهلاً، وصلت لموقعك", -"Hi ,I will go now": "أهلاً، هروح دلوقتي", -"Hi! This is": "أهلاً! ده", -"Hi, I will go now": "أهلاً، هروح دلوقتي", -"Hi, Where to": "أهلاً، فين؟", -"High priority": "أولوية عالية", -"High School Diploma": "شهادة الثانوية العامة", -"History": "السجل", -"History of Trip": "سجل الرحلات", -"History Page": "صفحة السجل", -"Home": "الرئيسية", -"Home Page": "الصفحة الرئيسية", -"Home Saved": "تم حفظ البيت", -"hour": "ساعة", -"Hours": "ساعات", -"hours before trying again.": "ساعات قبل ما تجرب تاني.", -"Housing And Development Bank": "بنك الإسكان والتعمير", -"How can I pay for my ride?": "إزاي أقدر أدفع لرحلتي؟", -"How can I register as a driver?": "إزاي أقدر أسجل نفسي كسايق؟", -"How do I communicate with the other party (passenger/driver)?": "إزاي أقدر أتواصل مع الطرف التاني (الراكب/السايق)؟", -"How do I request a ride?": "إزاي أطلب رحلة؟", -"How It Works": "إزاي شغال", -"How many hours would you like to wait?": "كام ساعة عايز تنتظر؟", -"How much do you want to earn today?": "عايز تكسب كام النهاردة؟", -"How much longer will you be?": "هتتأخر كام؟", -"How much Passenger pay?": "الراكب هيدفع كام؟", -"How to use App": "إزاي تستخدم التطبيق", -"How to use Siro": "إزاي تستخدم سيرو", -"How was the passenger?": "إزاي كان الراكب؟", -"How was your trip with": "إزاي كانت رحلتك مع", -"How would you like to receive your reward?": "إزاي عايز تستلم مكافأتك؟", -"How would you rate our app?": "إزاي بتقيّم تطبيقنا؟", -"HSBC Bank Egypt S.A.E": "بنك إتش إس بي سي مصر", -"Hybrid": "هجين", -"I added the wrong pick-up/drop-off location": "أضفت موقع الالتقاط/التنزيل غلط", -"I Agree": "أوافق", -"i agree": "أوافق", -"I am currently located at": "أنا موجود دلوقتي في", -"I am using": "أنا بستخدم", -"I Arrive": "وصلت", -"I arrive you": "وصلت ليك", -"I Arrive your site": "وصلت لموقعك", -"I cant register in your app in face detection": "مقدرش أسجل في تطبيقكم عن طريق كشف الوجه", -"I cant register in your app in face detection ": "مقدرش أسجل في تطبيقكم عن طريق كشف الوجه", -"I Have Arrived": "أنا وصلت", -"I want to order for myself": "عايز أطلب لنفسي", -"I want to order for someone else": "عايز أطلب لشخص تاني", -"I was just trying the application": "كنت بس أجرب التطبيق", -"I will go now": "هرح دلوقتي", -"I will slow down": "هخليها هادية", -"I've arrived.": "وصلت.", -"ID Documents Back": "وثائق الهوية (الخلفي)", -"ID Documents Front": "وثائق الهوية (الأمامي)", -"ID Mismatch": "عدم تطابق الهوية", -"id': 1, 'name': 'Car": "id': 1, 'name': 'عربيّة", -"id': 1, 'name': 'Petrol": "id': 1, 'name': 'بنزين", -"id': 2, 'name': 'Diesel": "id': 2, 'name': 'ديزل", -"id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'موتوسيكل", -"id': 3, 'name': 'Electric": "id': 3, 'name': 'كهربائي", -"id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'فان / باص", -"id': 4, 'name': 'Hybrid": "id': 4, 'name': 'هجين", -"id_back": "خلفي الهوية", -"id_card_back": "الجانب الخلفي لبطاقة الهوية", -"id_card_front": "الجانب الأمامي لبطاقة الهوية", -"id_front": "أمامي الهوية", -"if you dont have account": "إذا ممعكش حساب", -"If you in Car Now. Press Start The Ride": "إذا كنت في العربية دلوقتي، اضغط ابدأ الرحلة", -"If you need any help or have question this is right site to do that and your welcome": "إذا احتجت أي مساعدة أو عندك سؤال، ده المكان الصح ده، وأهلاً بيك", -"If you need any help or have questions, this is the right place to do that. You are welcome!": "إذا احتجت أي مساعدة أو عندك أسئلة، ده المكان الصح ده. أهلاً بيك!", -"If you need assistance, contact us": "إذا احتجت مساعدة، اتصل بينا", -"If you need to reach me, please contact the driver directly at": "إذا احتجت توصل لي، من فضلك اتصل بالسايق مباشرة على", -"If you want add stop click here": "إذا عايز تضيف محطة، اضغط هنا", -"if you want help you can email us here": "إذا عايز مساعدة، تقدر تراسلنا هنا", -"If you want order to another person": "إذا عايز تطلب لشخص تاني", -"If you want to make Google Map App run directly when you apply order": "إذا عايز تطبيق خرائط جوجل يشتغل مباشرة لما تقدم الطلب", -"If your car license has the new design, upload the front side with two images.": "إذا رخصة عربيتك عليها التصميم الجديد، ارفع الوجه الأمامي بصورة مزدوجة.", -"Image detecting result is": "نتيجة كشف الصورة هي", -"Image detecting result is ": "نتيجة كشف الصورة هي", -"Image Upload Failed": "فشل رفع الصورة", -"image verified": "تم التحقق من الصورة", -"Improve app performance": "تحسين أداء التطبيق", -"in your": "في", -"in your wallet": "في محفظتك", -"In-App VOIP Calls": "مكالمات VOIP داخل التطبيق", -"Including Tax": "شامل الضريبة", -"Incoming Call...": "مكالمة واردة...", -"Incorrect sms code": "كود SMS غلط", -"incorrect_document_message": "رسالة المستند مش صحيح", -"incorrect_document_title": "عنوان المستند مش صحيح", -"Increase Fare": "زيادة الأجرة", -"Increase Fee": "زيادة الرسوم", -"Increase Your Trip Fee (Optional)": "زيادة رسوم رحلتك (اختياري)", -"Increasing the fare might attract more drivers. Would you like to increase the price?": "زيادة الأجرة ممكن تجذب سايقين أكتر. عايز ترفع السعر؟", -"Industrial Development Bank": "بنك التنمية الصناعية", -"Ineligible for Offer": "مش مؤهل للعرض", -"Info": "معلومات", -"Insert": "إدخال", -"Insert Account Bank": "أدخل الحساب البنكي", -"insert amount": "أدخل المبلغ", -"Insert Card Bank Details to Receive Your Visa Money Weekly": "أدخل تفاصيل كارت البنك عشان تستلم فلوس الفيزا أسبوعيًا", -"Insert card number": "أدخل رقم الكارت", -"Insert Emergency Number": "أدخل رقم الطوارئ", -"Insert Emergincy Number": "أدخل رقم الطوارئ", -"Insert mobile wallet number": "أدخل رقم محفظة الموبايل", -"Insert Payment Details": "أدخل تفاصيل الدفع", -"Insert SOS Phone": "أدخل رقم طوارئ", -"Insert Wallet phone number": "أدخل رقم موبايل المحفظة", -"Insert your mobile wallet details to receive your money weekly": "أدخل تفاصيل محفظة الموبايل بتاعتك عشان تستلم فلوسك أسبوعيًا", -"Insert Your Promo Code": "أدخل كود الخصم بتاعك", -"Inspection Date": "تاريخ الفحص", -"InspectionResult": "نتيجة الفحص", -"Install our app:": "ثبّت تطبيقنا:", -"Insufficient Balance": "الرصيد مش كافي", -"Invalid customer MSISDN": "رقم موبايل العميل مش صحيح", -"Invalid MPIN": "MPIN مش صحيح", -"Invalid OTP": "OTP مش صحيح", -"Invitation Used": "تم استخدام الدعوة", -"Invitations Sent": "تم إرسال الدعوات", -"Invite": "دعوة", -"Invite a Driver": "ادعُ سايق", -"Invite another driver and both get a gift after he completes 100 trips!": "ادعُ سايق تاني واتنينكم هتاخدوا هدية بعد ما يكمل 100 رحلة!", -"Invite code already used": "كود الدعوة اتستخدم بالفعل", -"Invite Driver": "دعوة سايق", -"Invite Rider": "دعوة راكب", -"Invite sent successfully": "تم إرسال الدعوة بنجاح", -"is calling you": "بيتصل بيك", -"Is device compatible": "هل الجهاز متوافق", -"is driving a": "قاعد يسوق", -"is ON for this month": "مفعلة ده الشهر", -"is reviewing your order. They may need more information or a higher price.": "بيراجع طلبك. ممكن يحتاجوا معلومات أكتر أو سعر أعلى.", -"Is the Passenger in your Car ?": "الراكب في عربيتك؟", -"Is the Passenger in your Car?": "الراكب في عربيتك؟", -"Issue Date": "تاريخ الإصدار", -"IssueDate": "تاريخ الإصدار", -"it": "it", -"JOD": "دينار أردني", -"Join": "انضم", -"Join Siro as a driver using my referral code!": "انضم لسيرو كسايق باستخدام كود الإحالة بتاعي!", -"joined": "انضم", -"Jordan": "الأردن", -"Just now": "دلوقتي", -"Keep it up!": "أحسنت! كمل كده!", -"kilometer": "كيلومتر", -"KM": "كم", -"Kuwait": "الكويت", -"L.E": "جنيه مصري", -"L.S": "ليرة سورية", -"Lady": "سائقة", -"Lady Captain for girls": "كابتن نسائي للبنات", -"Lady Captains Available": "كباتن نسائيين متاحين", -"Lady 👩": "سائقة 👩", -"Lady: For girl drivers.": "نسائي: للسايقات الإناث.", -"Language": "اللغة", -"Language Options": "خيارات اللغة", -"Last 10 Trips": "آخر 10 رحلات", -"Last Name": "اسم العائلة", -"Last name": "اسم العائلة", -"last name label": "تسمية اسم العائلة", -"last name required": "اسم العائلة مطلوب", -"Last updated:": "آخر تحديث:", -"Later": "لاحقًا", -"Latest Recent Trip": "أحدث رحلة", -"LE": "جنيه مصري", -"Leaderboard": "لوحة المتصدرين", -"Learn more about our app and mission": "اعرف أكتر عن تطبيقنا ورسالتنا", -"Leave": "مغادرة", -"Leave a detailed comment (Optional)": "اترك تعليق مفصل (اختياري)", -"Let the passenger scan this code to sign up": "خلي الراكب يمسح الكود ده عشان يسجل", -"Lets check Car license": "خلي بالنا نفحص رخصة العربية", -"Lets check Car license ": "خلي بالنا نفحص رخصة العربية", -"Lets check License Back Face": "خلي بالنا نفحص الوجه الخلفي للرخصة", -"License Categories": "فئات الرخصة", -"License Expiry Date": "تاريخ انتهاء الرخصة", -"License Type": "نوع الرخصة", -"Link a phone number for transfers": "ربط رقم موبايل للتحويلات", -"ll let you know when the review is complete.": "هنخبرك لما تكتمل المراجعة.", -"Location Access Required": "الوصول للموقع مطلوب", -"Location Link": "رابط الموقع", -"Location Tracking Active": "تتبع الموقع نشط", -"Log Off": "تسجيل الخروج", -"Log Out Page": "صفحة تسجيل الخروج", -"Login": "تسجيل الدخول", -"Login Captin": "تسجيل دخول الكابتن", -"Login Driver": "تسجيل دخول السايق", -"Login failed": "فشل تسجيل الدخول", -"login or register subtitle": "عنوان تسجيل الدخول أو التسجيل", -"Logout": "تسجيل الخروج", -"Lowest Price Achieved": "تم تحقيق أقل سعر", -"m": "م", -"m at the agreed-upon location": "في الموقع المتفق عليه", -"m inviting you to try Siro.": "بادعوك تجرب سيرو.", -"m waiting for you": "بانتظارك", -"m waiting for you at the specified location.": "بانتظارك في الموقع المحدد.", -"Made :": "الصناعة :", -"Maintain 5.0 rating": "حافظ على تقييم 5.0", -"Maintenance Center": "مركز الصيانة", -"Maintenance Offer": "عرض الصيانة", -"Make": "الماركة", -"Make a U-turn": "اعمل دوران", -"Make is": "الماركة هي", -"Make purchases.": "عمل مشتريات.", -"Male": "ذكر", -"Map Dark Mode": "الوضع الداكن للخريطة", -"Map Passenger": "خريطة الراكب", -"Marital Status": "الحالة الاجتماعية", -"Mashreq Bank": "بنك المشرق", -"Mashwari": "مشاري", -"Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "مشاري: للرحلات المرنة اللي بيختار فيها الراكب العربية والسايق بترتيب مسبق.", -"Master\\'s Degree": "ماجستير", -"Max Speed": "السرعة القصوى", -"Maximum fare": "الأجرة القصوى", -"Maximum Level Reached!": "تم الوصول لأعلى مستوى!", -"Message": "رسالة", -"message From Driver": "رسالة من السايق", -"message From passenger": "رسالة من الراكب", -"message'] ?? 'An unknown server error occurred": "message'] ?? 'حصل خطأ غير معروف في السيرفر", -"message'] ?? 'Claim failed": "message'] ?? 'فشل الاستلام", -"message'] ?? 'Failed to send OTP.": "message'] ?? 'فشل إرسال OTP.", -"message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'فشل في إنشاء الفاتورة", -"Meter Fare": "أجرة العداد", -"Microphone permission is required for voice calls": "مطلوب إذن الميكروفون للمكالمات الصوتية", -"MIDBANK": "ميد بنك", -"min": "دقيقة", -"Minimum fare": "الأجرة الدنيا", -"Minute": "دقيقة", -"minute": "دقيقة", -"Minutes": "دقايق", -"minutes before trying again.": "دقايق قبل ما تجرب تاني.", -"Mishwar Vip": "مشوار VIP", -"Missing Documents": "مستندات ناقصة", -"Mobile Wallets": "محافظ الموبايل", -"Model": "الموديل", -"model :": "الموديل :", -"Model is": "الموديل هو", -"moi\\\\": "moi\\\\", -"Mon": "الاثنين", -"Monthly Report": "التقرير الشهري", -"Monthly Streak": "سلسلة شهرية", -"More": "المزيد", -"Morning": "الصباح", -"Morning Promo": "عرض الصباح", -"Morning Promo Rides": "رحلات عرض الصباح", -"Most Secure Methods": "أكثر الطرق أمانًا", -"Motorcycle": "موتوسيكل", -"Move the map to adjust the pin": "حرّك الخريطة عشان تعدّل الدبوس", -"mtn": "mtn", -"MTN Cash": "MTN Cash", -"Mute": "كتم الصوت", -"My Balance": "رصيدي", -"My Card": "كارتي", -"My Cared": "كارتي", -"My Cars": "عربياتي", -"My current location is:": "مواقعي الحالي هو:", -"My Location": "مواقعي", -"my location": "مواقعي", -"My location is correct. You can search for me using the navigation app": "مواقعي صحيح. تقدر تبحث عليا باستخدام تطبيق الملاحة", -"My Profile": "ملفي الشخصي", -"My Schedule": "جدولي", -"My Wallet": "محفظتي", -"MyLocation": "مواقعي", -"N/A": "غير متاح", -"Name": "الاسم", -"Name (Arabic)": "الاسم (بالعربي)", -"Name (English)": "الاسم (بالإنجليزي)", -"Name :": "الاسم :", -"Name in arabic": "الاسم بالعربي", -"Name must be at least 2 characters": "الاسم لازم يكون مكون من حرفين على الأقل", -"Name of the Passenger is": "اسم الراكب هو", -"Nasser Social Bank": "بنك ناصر الاجتماعي", -"National Bank of Egypt": "البنك الأهلي المصري", -"National Bank of Greece": "البنك الوطني اليوناني", -"National Bank of Kuwait – Egypt": "البنك الوطني الكويتي – مصر", -"National ID": "الرقم القومي", -"National ID (Back)": "الرقم القومي (الخلفي)", -"National ID (Front)": "الرقم القومي (الأمامي)", -"National ID must be 11 digits": "الرقم القومي لازم يكون مكون من 11 رقم", -"National ID Number": "رقم الرقم القومي", -"National Number": "الرقم القومي", -"NationalID": "الرقم القومي", -"Navigation": "الملاحة", -"Nearest Car": "أقرب عربيّة", -"Nearest Car for you about": "أقرب عربيّة ليك بعد حوالي", -"Nearest Car: ~": "أقرب عربيّة: ~", -"Need assistance? Contact us": "عايز مساعدة؟ اتصل بينا", -"Need help? Contact Us": "عايز مساعدة؟ اتصل بينا", -"Needs Improvement": "بحاجة لتحسين", -"Net Profit": "صافي الربح", -"Network error": "خطأ في الشبكة", -"Next": "التالي", -"NEXT >>": "التالي >>", -"Next as Cash !": "الجاي كاش!", -"Next Level:": "المستوى الجاي:", -"NEXT STEP": "الخطوة الجاية", -"Night": "الليل", -"No": "لا", -"No ,still Waiting.": "لا، لسه بانتظر.", -"No accepted orders? Try raising your trip fee to attract riders.": "مفيش طلبات مقبولة؟ جرّب ترفع رسوم رحلتك عشان تجذب ركاب.", -"No audio files found for this ride.": "مفيش ملفات صوتية للرحلة دي.", -"No audio files found.": "مفيش ملفات صوتية.", -"No audio files recorded.": "مفيش ملفات صوتية مسجلة.", -"No Captain Accepted Your Order": "مفيش كابتن قبل طلبك", -"No Car in your site. Sorry!": "مفيش عربيّة في موقعك. آسف!", -"No Car or Driver Found in your area.": "مفيش عربيّة أو سايق في منطقتك.", -"No cars are available at the moment. Please try again later.": "مفيش عربيات متاحة دلوقتي. من فضلك جرب تاني بعد شوية.", -"No cars nearby": "مفيش عربيات قريبة", -"No contact selected": "مفيش جهة اتصال مختارة", -"No contacts found": "مفيش جهات اتصال", -"No contacts with phone numbers found": "مفيش جهات اتصال بأرقام موبايلات", -"No contacts with phone numbers were found on your device.": "مفيش جهات اتصال بأرقام موبايلات على جهازك.", -"No data yet": "مفيش بيانات لسه", -"No data yet!": "مفيش بيانات لسه!", -"No driver accepted my request": "مفيش سايق قبل طلبي", -"No drivers accepted your request yet": "مفيش سايقين قبلوا طلبك لسه", -"No drivers available": "مفيش سايقين متاحين", -"No drivers available at the moment. Please try again later.": "مفيش سايقين متاحين دلوقتي. من فضلك جرب تاني بعد شوية.", -"No face detected": "مفيش وجه اتكتشف", -"No favorite places yet!": "مفيش أماكن مفضلة لسه!", -"No I want": "لا، أنا عايز", -"No i want": "لا، أنا عايز", -"No image selected yet": "مفيش صورة مختارة لسه", -"No internet connection": "مفيش اتصال بالإنترنت", -"No invitation found": "مفيش دعوة", -"No invitation found yet!": "مفيش دعوة لسه!", -"No one accepted? Try increasing the fare.": "مفيش حد قبل؟ جرّب ترفع الأجرة.", -"No orders available": "مفيش طلبات متاحة", -"No passenger found for the given phone number": "مفيش راكب برقم الموبايل ده", -"No phone number": "مفيش رقم موبايل", -"No Promo for today .": "مفيش عروض ترويجية النهاردة.", -"No promos available right now.": "مفيش عروض ترويجية متاحة دلوقتي.", -"No questions asked yet.": "مفيش أسئلة لسه.", -"No Response yet.": "مفيش رد لسه.", -"No ride found yet": "مفيش رحلة لسه", -"No ride yet": "مفيش رحلة لسه", -"No Rides Available": "مفيش رحلات متاحة", -"No rides available for your vehicle type.": "مفيش رحلات متاحة لنوع عربيتك.", -"No rides available right now.": "مفيش رحلات متاحة دلوقتي.", -"No rides found to complain about.": "مفيش رحلات عشان تقدم شكوى عنها.", -"No Rides Yet": "مفيش رحلات لسه", -"No route points found": "مفيش نقاط طريق", -"No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "مفيش شريحة SIM، مفيش مشكلة! اتصل بسايقك مباشرة من خلال تطبيقنا. بنستخدم تقنية متقدمة عشان نضمن خصوصيتك.", -"No statistics yet": "مفيش إحصائيات لسه", -"No transactions this week": "مفيش معاملات الأسبوع ده", -"No transactions yet": "مفيش معاملات لسه", -"No trip data available": "مفيش بيانات رحلة متاحة", -"No trip history found": "مفيش سجل رحلات", -"No trip yet found": "مفيش رحلة لسه", -"No user found for the given phone number": "مفيش مستخدم برقم الموبايل ده", -"No wallet record found": "مفيش سجل محفظة", -"No, I want to cancel this trip": "لا، أنا عايز ألغي الرحلة دي", -"No, still Waiting.": "لا، لسه بانتظر.", -"No, thanks": "لا، شكراً", -"No,I want": "لا، أنا عايز", -"Non Egypt": "غير مصر", -"non_id_card_back": "خلفي غير الهوية", -"non_id_card_front": "أمامي غير الهوية", -"Not Connected": "مش متصل", -"Not set": "مش محدد", -"not similar": "مش متشابه", -"Not updated": "مش محدّث", -"Notifications": "الإشعارات", -"Now select start pick": "دلوقتي اختر نقطة البداية", -"Occupation": "المهنة", -"of": "من", -"Offline": "غير متصل", -"OK": "تمام", -"Ok": "تمام", -"Ok , See you Tomorrow": "تمام، أشوفك بكرة", -"Ok I will go now.": "تمام، هروح دلوقتي.", -"Old and affordable, perfect for budget rides.": "قديمة ومناسبة، مثالية للرحلات ذات الميزانية المحدودة.", -"on": "على", -"one last step title": "عنوان الخطوة الأخيرة", -"Online": "متصل", -"Online Duration": "مدة الاتصال", -"Only Syrian phone numbers are allowed": "مسموح بس بأرقام الموبايلات السورية", -"Open App": "افتح التطبيق", -"Open app and go to passenger": "افتح التطبيق واذهب للراكب", -"Open in Maps": "افتح في الخرائط", -"Open Settings": "افتح الإعدادات", -"Open the app to stay updated and ready for upcoming tasks.": "افتح التطبيق عشان تفضل محدّث وجاهز للمهام الجاية.", -"Opted out": "تم إلغاء الاشتراك", -"Or": "أو", -"Or pay with Cash instead": "أو ادفع كاش بدل كده", -"Order": "طلب", -"Order Accepted": "تم قبول الطلب", -"Order Accepted by another driver": "تم قبول الطلب من سايق تاني", -"Order Applied": "تم تطبيق الطلب", -"Order Cancelled": "تم إلغاء الطلب", -"Order Cancelled by Passenger": "تم إلغاء الطلب من الراكب", -"Order Details Siro": "تفاصيل طلب سيرو", -"Order for myself": "طلب لنفسي", -"Order for someone else": "طلب لشخص تاني", -"Order History": "سجل الطلبات", -"Order ID": "رقم الطلب", -"Order Request Page": "صفحة طلب الرحلة", -"Order Under Review": "الطلب قيد المراجعة", -"OrderId": "رقم الطلب", -"Orders Page": "صفحة الطلبات", -"OrderVIP": "طلب VIP", -"Origin": "نقطة الانطلاق", -"Original Fare": "الأجرة الأصلية", -"Other": "أخرى", -"OTP is incorrect or expired": "OTP غلط أو منتهي الصلاحية", -"otp sent subtitle": "عنوان إرسال OTP", -"otp sent success": "تم إرسال OTP بنجاح", -"otp verification failed": "فشل التحقق من OTP", -"Our dedicated customer service team ensures swift resolution of any issues.": "فريق خدمة العملاء المخصص لنا بيضمن حل أي مشكلات بسرعة.", -"Overall Behavior Score": "درجة السلوك الإجمالية", -"Overlay": "العرض العلوي", -"Owner Name": "اسم المالك", -"Passenger": "الراكب", -"Passenger & Status": "الراكب والحالة", -"passenger agreement": "اتفاقية الراكب", -"passenger amount to me": "مبلغ الراكب لي", -"Passenger Cancel Trip": "الراكب يلغي الرحلة", -"Passenger cancel trip": "الراكب يلغي الرحلة", -"Passenger cancelled order": "الراكب ألغى الطلب", -"Passenger cancelled the ride.": "الراكب ألغى الرحلة.", -"Passenger come to you": "الراكب جاي ليك", -"Passenger Information": "معلومات الراكب", -"Passenger Invitations": "دعوات الركاب", -"Passenger Name": "اسم الراكب", -"Passenger name :": "اسم الراكب :", -"Passenger Name is": "اسم الراكب هو", -"Passenger name:": "اسم الراكب:", -"Passenger paid amount": "المبلغ اللي دفعه الراكب", -"Passenger Referral": "إحالة الراكب", -"Passengers": "الركاب", -"Password": "كلمة المرور", -"Password must be at least 6 characters": "كلمة المرور لازم تكون مكونة من 6 أحرف على الأقل", -"Password must be at least 6 characters.": "كلمة المرور لازم تكون مكونة من 6 أحرف على الأقل.", -"Password must br at least 6 character.": "كلمة المرور لازم تكون مكونة من 6 أحرف على الأقل.", -"Paste location link here": "الصق رابط الموقع هنا", -"Paste the code here": "الصق الكود هنا", -"Paste WhatsApp location link": "الصق رابط موقع الواتساب", -"Pay": "ادفع", -"Pay by MTN Wallet": "الدفع عبر محفظة MTN", -"Pay by Sham Cash": "الدفع عبر شام كاش", -"Pay by Syriatel Wallet": "الدفع عبر محفظة سيريتل", -"Pay directly to the captain": "ادفع مباشرة للكابتن", -"Pay from my budget": "الدفع من ميزانيتي", -"Pay remaining to Wallet?": "تدفع المتبقي للمحفظة؟", -"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 (الاسم المستعار: siroapp)", -"Pay with Credit Card": "الدفع بكارت ائتمان", -"Pay with Debit Card": "الدفع بكارت خصم", -"Pay with Wallet": "الدفع عبر المحفظة", -"Pay with Your": "الدفع باستخدام", -"Pay with Your PayPal": "الدفع باستخدام باي بال بتاعك", -"Payment details added successfully": "تمت إضافة تفاصيل الدفع بنجاح", -"Payment Failed": "فشل الدفع", -"Payment History": "سجل الدفع", -"Payment Method": "طريقة الدفع", -"Payment Method:": "طريقة الدفع:", -"Payment Options": "خيارات الدفع", -"Payment Successful": "تم الدفع بنجاح", -"Payment Successful!": "تم الدفع بنجاح!", -"payment_success": "تمت العملية بنجاح", -"Payments": "المدفوعات", -"pending": "قيد الانتظار", -"Percent Canceled": "نسبة الإلغاء", -"Percent Completed": "نسبة الإنجاز", -"Percent Rejected": "نسبة الرفض", -"Perfect for adventure seekers who want to experience something new and exciting": "مثالية لمحبي المغامرات اللي عايزين يجربوا حاجة جديدة ومثيرة", -"Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالية للركاب الباحثين عن أحدث موديلات العربيات مع حرية اختيار أي طريق يحبوه", -"Permission denied": "تم رفض الإذن", -"Personal Information": "المعلومات الشخصية", -"Petrol": "بنزين", -"Phone": "الموبايل", -"Phone Check": "فحص الموبايل", -"Phone Number": "رقم الموبايل", -"Phone Number Check": "فحص رقم الموبايل", -"Phone Number is": "رقم الموبايل هو", -"Phone number is already verified": "رقم الموبايل تم التحقق منه بالفعل", -"Phone Number is not Egypt phone": "رقم الموبايل مش رقم موبايل مصري", -"Phone Number is not Egypt phone ": "رقم الموبايل مش رقم موبايل مصري", -"Phone number is verified before": "رقم الموبايل تم التحقق منه سابقًا", -"phone number label": "تسمية رقم الموبايل", -"Phone number must be exactly 11 digits long": "رقم الموبايل لازم يكون مكون من 11 رقم بالضبط", -"Phone number must be valid.": "رقم الموبايل لازم يكون صحيح.", -"phone number of driver": "رقم موبايل السايق", -"phone number required": "رقم الموبايل مطلوب", -"Phone number seems too short": "يبدو إن رقم الموبايل قصير جدًا", -"Phone Number wrong": "رقم الموبايل غلط", -"Phone Wallet Saved Successfully": "تم حفظ محفظة الموبايل بنجاح", -"Pick from map": "اختر من الخريطة", -"Pick from map destination": "اختر الوجهة من الخريطة", -"Pick or Tap to confirm": "اختر أو اضغط للتأكيد", -"Pick your destination from Map": "اختر وجهتك من الخريطة", -"Pick your ride location on the map - Tap to confirm": "اختر موقع رحلتك على الخريطة - اضغط للتأكيد", -"Pickup Location": "موقع الالتقاط", -"Place added successfully! Thanks for your contribution.": "تمت إضافة المكان بنجاح! شكراً لمساهمتك.", -"Plate": "اللوحة", -"Plate Number": "رقم اللوحة", -"Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "من فضلك اسمح بالوصول للموقع \"طوال الوقت\" عشان تستلم طلبات الرحلات حتى لما التطبيق يكون في الخلفية.", -"Please allow location access at all times to receive ride requests and ensure smooth service.": "من فضلك اسمح بالوصول للموقع طوال الوقت عشان تستلم طلبات الرحلات وتضمن خدمة سلسة.", -"Please check back later for available rides.": "من فضلك راجع تاني بعد شوية عشان تشوف رحلات متاحة.", -"Please complete more distance before ending.": "من فضلك اكمل مسافة أكتر قبل ما تنهي.", -"Please describe your issue before submitting.": "من فضلك وصف مشكلتك قبل ما ترسل.", -"Please enter": "من فضلك ادخل", -"Please enter a correct phone": "من فضلك ادخل موبايل صحيح", -"Please enter a description of the issue.": "من فضلك ادخل وصف للمشكلة.", -"Please enter a health insurance status.": "من فضلك ادخل حالة التأمين الصحي.", -"Please enter a phone number": "من فضلك ادخل رقم موبايل", -"Please enter a valid 16-digit card number": "من فضلك ادخل رقم كارت صحيح مكون من 16 رقم", -"Please enter a valid card 16-digit number.": "من فضلك ادخل رقم كارت صحيح مكون من 16 رقم.", -"Please enter a valid email": "من فضلك ادخل بريد إلكتروني صحيح", -"Please enter a valid email.": "من فضلك ادخل بريد إلكتروني صحيح.", -"Please enter a valid insurance provider": "من فضلك ادخل مزوّد تأمين صحيح", -"Please enter a valid phone number.": "من فضلك ادخل رقم موبايل صحيح.", -"Please enter a valid promo code": "من فضلك ادخل كود خصم صحيح", -"Please enter phone number": "من فضلك ادخل رقم الموبايل", -"Please enter the cardholder name": "من فضلك ادخل اسم حامل الكارت", -"Please enter the complete 6-digit code.": "من فضلك ادخل الكود الكامل المكون من 6 أرقام.", -"Please enter the CVV code": "من فضلك ادخل كود CVV", -"Please enter the emergency number.": "من فضلك ادخل رقم الطوارئ.", -"Please enter the expiry date": "من فضلك ادخل تاريخ الانتهاء", -"Please enter the number without the leading 0": "من فضلك ادخل الرقم من غير الصفر الأولي", -"Please enter your City.": "من فضلك ادخل مدينتك.", -"Please enter your complaint.": "من فضلك ادخل شكواك.", -"Please enter Your Email.": "من فضلك ادخل بريدك الإلكتروني.", -"Please enter your Email.": "من فضلك ادخل بريدك الإلكتروني.", -"Please enter your feedback.": "من فضلك ادخل ملاحظاتك.", -"Please enter your first name.": "من فضلك ادخل اسمك الأول.", -"Please enter your last name.": "من فضلك ادخل اسمك الأخير.", -"Please enter Your Password.": "من فضلك ادخل كلمة المرور.", -"Please enter your Password.": "من فضلك ادخل كلمة المرور.", -"Please enter your phone number": "من فضلك ادخل رقم موبايلك", -"Please enter your phone number.": "من فضلك ادخل رقم موبايلك.", -"Please enter your question": "من فضلك ادخل سؤالك", -"Please enter your Question.": "من فضلك ادخل سؤالك.", -"Please go closer to the passenger location (less than 150m)": "من فضلك اقرب أكتر لموقع الراكب (أقل من 150 متر)", -"Please go to Car Driver": "من فضلك اذهب لسايق العربية", -"Please go to Car now": "من فضلك اذهب للعربية دلوقتي", -"please go to picker location exactly": "من فضلك اذهب لموقع الالتقاط بالظبط", -"Please go to the pickup location exactly": "من فضلك اذهب لموقع الالتقاط بالظبط", -"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 order now": "من فضلك اطلب دلوقتي", -"Please paste the transfer message": "من فضلك الصق رسالة التحويل", -"Please provide details about any long-term diseases.": "من فضلك قدّم تفاصيل عن أي أمراض طويلة الأمد.", -"Please put your licence in these border": "من فضلك حط رخصتك في الإطار ده", -"Please select a contact": "من فضلك اختر جهة اتصال", -"Please select a date": "من فضلك اختر تاريخ", -"Please select a rating before submitting.": "من فضلك اختر تقييم قبل ما ترسل.", -"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": "من فضلك حول المبلغ للاسم المستعار: siroapp", -"Please try again in a few moments": "من فضلك جرب تاني بعد شوية لحظات", -"Please Try anther time": "من فضلك جرب تاني", -"Please upload a clear photo of your face to be identified by passengers.": "من فضلك ارفع صورة واضحة لوجهك عشان الركاب يتعرفوا عليك.", -"Please upload all 4 required documents.": "من فضلك ارفع كل المستندات المطلوبة الأربعة.", -"Please upload this license.": "من فضلك ارفع الرخصة دي.", -"Please verify your identity": "من فضلك تحقق من هويتك", -"Please wait": "من فضلك انتظر", -"Please wait for all documents to finish uploading before registering.": "من فضلك انتظر لحد ما كل المستندات تخلص رفعها قبل ما تسجل.", -"Please wait for the passenger to enter the car before starting the trip.": "من فضلك انتظر لحد ما الراكب يدخل العربية قبل ما تبدأ الرحلة.", -"Please Wait If passenger want To Cancel!": "من فضلك انتظر إذا الراكب عايز يلغي!", -"please wait till driver accept your order": "من فضلك انتظر لحد ما السايق يقبل طلبك", -"Please wait while we prepare your trip.": "من فضلك انتظر واحنا بنحضر رحلتك.", -"Point": "نقطة", -"Points": "نقاط", -"points": "نقاط", -"Policy restriction on calls": "قيود السياسة على المكالمات", -"Potential security risks detected. The application may not function correctly.": "اتكتشف مخاطر أمنية محتملة. التطبيق ممكن مايشتغلش بشكل صحيح.", -"Potential security risks detected. The application may not function correctly.": "اتكتشف مخاطر أمنية محتملة. التطبيق ممكن مايشتغلش بشكل صحيح.", -"Potential security risks detected. The application will close in @seconds seconds.": "اتكتشف مخاطر أمنية محتملة. التطبيق هيقفل خلال @seconds ثانية.", -"Pre-booking": "حجز مسبق", -"Press here": "اضغط هنا", -"Press to hear": "اضغط عشان تسمع", -"Price": "السعر", -"Price is": "السعر هو", -"price is": "السعر هو", -"Price of trip": "سعر الرحلة", -"Price:": "السعر:", -"Priority medium": "أولوية متوسطة", -"Priority support": "دعم ذو أولوية", -"Privacy Notice": "إشعار الخصوصية", -"Privacy Policy": "سياسة الخصوصية", -"privacy policy": "سياسة الخصوصية", -"Profile": "الملف الشخصي", -"Profile Photo Required": "صورة الملف الشخصي مطلوبة", -"Profile Picture": "صورة الملف الشخصي", -"Progress:": "التقدم:", -"Promo": "عرض ترويجي", -"Promo Already Used": "تم استخدام العرض الترويجي بالفعل", -"Promo Code": "كود الخصم", -"Promo Code Accepted": "تم قبول كود الخصم", -"Promo code copied to clipboard!": "تم نسخ كود الخصم للحافظة!", -"Promo Copied!": "تم نسخ العرض!", -"Promo End !": "انتهى العرض!", -"Promo Ended": "انتهى العرض", -"Promos": "العروض", -"Promos For Today": "العروض ليوم النهاردة", -"Promos For today": "العروض ليوم النهاردة", -"Promotions": "العروض الترويجية", -"PTS": "نقاط", -"Pyament Cancelled .": "تم إلغاء الدفع.", -"Qatar": "قطر", -"Qatar National Bank Alahli": "البنك الأهلي القطري", -"Question": "سؤال", -"Quick Actions": "إجراءات سريعة", -"Quick Invite": "دعوة سريعة", -"Quick Invite Link:": "رابط الدعوة السريعة:", -"Quick Messages": "رسائل سريعة", -"Quiet & Eco-Friendly": "هادئ وصديق للبيئة", -"Raih Gai: For same-day return trips longer than 50km.": "رايح جاي: للرحلات ذهابًا وإيابًا في نفس اليوم وأطول من 50 كم.", -"Rate": "تقييم", -"Rate Captain": "قيّم الكابتن", -"Rate Driver": "قيّم السايق", -"Rate Our App": "قيّم تطبيقنا", -"Rate Passenger": "قيّم الراكب", -"Rating": "التقييم", -"Rating is": "التقييم هو", -"Rating submitted successfully": "تم إرسال التقييم بنجاح", -"rating_count": "عدد التقييمات", -"rating_driver": "تقييم السايق", -"Rayeh Gai": "رايح جاي", -"Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة رحلات ذهابًا وإيابًا للسفر المريح بين المدن، سهلة وموثوقة.", -"re eligible for a special offer!": "هتبقى مؤهل لعرض خاص!", -"Reason": "السبب", -"Recent Places": "الأماكن الأخيرة", -"Recent Transactions": "المعاملات الأخيرة", -"Recharge Balance": "شحن الرصيد", -"Recharge Balance Packages": "باقات شحن الرصيد", -"Recharge my Account": "شحن حسابي", -"Record": "تسجيل", -"Record saved": "تم حفظ التسجيل", -"Recorded Trips (Voice & AI Analysis)": "الرحلات المسجلة (الصوت وتحليل الذكاء الاصطناعي)", -"Recorded Trips for Safety": "الرحلات المسجلة لأغراض السلامة", -"Refer 5 drivers": "أحيل 5 سايقين", -"Referral Center": "مركز الإحالات", -"Referrals": "الإحالات", -"Refresh": "تحديث", -"Refresh Market": "تحديث السوق", -"Refresh Status": "تحديث الحالة", -"Refuse Order": "رفض الطلب", -"Refused": "مرفوض", -"Register": "تسجيل", -"Register as Driver": "التسجيل كسايق", -"Register Captin": "تسجيل الكابتن", -"Register Driver": "تسجيل السايق", -"Registration": "التسجيل", -"Registration completed successfully!": "تم التسجيل بنجاح!", -"registration failed": "فشل التسجيل", -"Registration failed. Please try again.": "فشل التسجيل. من فضلك جرب تاني.", -"registration_date": "تاريخ التسجيل", -"Reject": "رفض", -"reject your order.": "رفض طلبك.", -"rejected": "مرفوض", -"Rejected Orders": "الطلبات المرفوضة", -"Rejected Orders Count": "عدد الطلبات المرفوضة", -"Religion": "الدين", -"Remainder": "المتبقي", -"remaining": "المتبقي", -"Remaining time": "الوقت المتبقي", -"Remaining:": "المتبقي:", -"Report": "تقرير", -"Required field": "حقل مطلوب", -"Resend Code": "إعادة إرسال الكود", -"Resend code": "إعادة إرسال الكود", -"reviews": "التقييمات", -"Reward Claimed": "تم استلام المكافأة", -"Reward claimed successfully!": "تم استلام المكافأة بنجاح!", -"Reward Status": "حالة المكافأة", -"Ride": "الرحلة", -"Ride History": "سجل الرحلات", -"Ride info": "معلومات الرحلة", -"Ride information not found. Please refresh the page.": "مفيش معلومات الرحلة. من فضلك حدّث الصفحة.", -"Ride Management": "إدارة الرحلات", -"Ride Status": "حالة الرحلة", -"Ride Summaries": "ملخصات الرحلات", -"Ride Summary": "ملخص الرحلة", -"Ride Today :": "الرحلات النهاردة :", -"Ride Wallet": "محفظة الرحلة", -"Rides": "الرحلات", -"rides": "الرحلات", -"Road Legend": "أسطورة الطريق", -"Road Warrior": "محارب الطريق", -"Rouats of Trip": "محطات الرحلة", -"Route Not Found": "مفيش طريق", -"Routs of Trip": "محطات الرحلة", -"ru": "ru", -"Run Google Maps directly": "شغّل خرائط جوجل مباشرة", -"s Degree": "درجة", -"s heavy traffic here. Can you suggest an alternate pickup point?": "فيه زحمة مرورية شديدة هنا. تقدر تقترح نقطة التقاء بديلة؟", -"s License": "رخصته", -"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. Please verify and provide the correct documents.": "رخصته. من فضلك تحقق وقدّم المستندات الصحيحة.", -"s Personal Information": "المعلومات الشخصية", -"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 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 Terms & Review Privacy Notice": "شروطه ومراجعة إشعار الخصوصية", -"s time to check the Siro app!": "حان الوقت للتحقق من تطبيق سيرو!", -"S.P": "ليرة سورية", -"SAFAR Wallet": "محفظة سفر", -"safe_and_comfortable": "آمن ومريح", -"Safety & Security": "السلامة والأمان", -"Safety First 🛑": "السلامة أولًا 🛑", -"Same device detected": "اتكتشف نفس الجهاز", -"Sat": "السبت", -"Saudi Arabia": "السعودية", -"Save": "حفظ", -"Save & Call": "حفظ والاتصال", -"Save Credit Card": "حفظ كارت الائتمان", -"Saved Sucssefully": "تم الحفظ بنجاح", -"scams operations": "عمليات احتيال", -"scan Car License.": "امسح رخصة العربية.", -"Scan Driver License": "امسح رخصة القيادة", -"Scan Id": "امسح الهوية", -"Scan ID Api": "امسح الهوية API", -"Scan ID MklGoogle": "امسح الهوية MklGoogle", -"Scan ID Tesseract": "امسح الهوية Tesseract", -"Scheduled Time:": "الوقت المجدول:", -"Scooter": "سكوتر", -"Score": "الدرجة", -"Search country": "ابحث عن الدولة", -"Search for a starting point": "ابحث عن نقطة البداية", -"Search for waypoint": "ابحث عن نقطة الطريق", -"Search for your destination": "ابحث عن وجهتك", -"Search for your Start point": "ابحث عن نقطة بدايتك", -"Search name or number...": "ابحث باسم أو رقم...", -"Searching for the nearest captain...": "بيتم البحث عن أقرب كابتن...", -"seconds": "ثواني", -"Security Warning": "تحذير أمني", -"security_warning": "تحذير أمني", -"See you on the road!": "أشوفك على الطريق!", -"See you Tomorrow!": "أشوفك بكرة!", -"Select a Bank": "اختر بنك", -"Select a Contact": "اختر جهة اتصال", -"Select a File": "اختر ملف", -"Select a file": "اختر ملف", -"Select a quick message": "اختر رسالة سريعة", -"Select Country": "اختر الدولة", -"Select Date": "اختر التاريخ", -"Select date and time of trip": "اختر تاريخ ووقت الرحلة", -"Select how you want to charge your account": "اختر إزاي عايز تشحن حسابك", -"Select Name of Your Bank": "اختر اسم بنكك", -"Select one message": "اختر رسالة واحدة", -"Select Order Type": "اختر نوع الطلب", -"Select Payment Amount": "اختر مبلغ الدفع", -"Select Payment Method": "اختر طريقة الدفع", -"Select recorded trip": "اختر الرحلة المسجلة", -"Select This Ride": "اختر الرحلة دي", -"Select Time": "اختر الوقت", -"Select Waiting Hours": "اختر ساعات الانتظار", -"Select Your Country": "اختر دولتك", -"Select your destination": "اختر وجهتك", -"Select your preferred language for the app interface.": "اختر لغتك المفضلة لواجهة التطبيق.", -"Selected Date": "التاريخ المحدد", -"Selected Date and Time": "التاريخ والوقت المحددين", -"Selected driver": "السايق المحدد", -"Selected file:": "الملف المحدد:", -"Selected Location": "الموقع المحدد", -"Selected Time": "الوقت المحدد", -"Send a custom message": "إرسال رسالة مخصصة", -"Send Email": "إرسال بريد إلكتروني", -"Send Invite": "إرسال دعوة", -"Send Message": "إرسال رسالة", -"send otp button": "زر إرسال OTP", -"Send Siro app to him": "أرسل تطبيق سيرو له", -"Send to Driver Again": "إرسال للسايق تاني", -"Send Verfication Code": "إرسال كود التحقق", -"Send Verification Code": "إرسال كود التحقق", -"Send WhatsApp Message": "إرسال رسالة واتساب", -"Send your referral code to friends": "أرسل كود الإحالة بتاعك للأصدقاء", -"Server error": "خطأ في السيرفر", -"server error try again": "خطأ في السيرفر، جرب تاني", -"Server error. Please try again.": "خطأ في السيرفر. من فضلك جرب تاني.", -"server_error": "خطأ في السيرفر", -"server_error_message": "حصل خطأ في الاتصال بالسيرفر", -"Session expired. Please log in again.": "الجلسة انتهت. من فضلك سجّل دخول تاني.", -"Set Daily Goal": "تحديد الهدف اليومي", -"Set Goal": "تحديد الهدف", -"Set Location on Map": "تعيين الموقع على الخريطة", -"Set Phone Number": "تعيين رقم الموبايل", -"Set pickup location": "تعيين موقع الالتقاط", -"Set Wallet Phone Number": "تعيين رقم موبايل المحفظة", -"Setting": "إعداد", -"Settings": "الإعدادات", -"Sex is": "الجنس هو", -"Sham Cash": "شام كاش", -"ShamCash Account": "حساب شام كاش", -"Share": "مشاركة", -"Share App": "مشاركة التطبيق", -"Share Code": "مشاركة الكود", -"Share the app with another new driver": "شارك التطبيق مع سايق جديد تاني", -"Share the app with another new passenger": "شارك التطبيق مع راكب جديد تاني", -"Share this code to earn rewards": "شارك الكود ده عشان تكسب مكافآت", -"Share this code with other drivers. Both of you will receive rewards!": "شارك الكود ده مع سايقين تانيين. هتاخدوا مكافآت كلّكم!", -"Share this code with passengers and earn rewards when they use it!": "شارك الكود ده مع الركاب واكسب مكافآت لما يستخدموه!", -"Share this code with your friends and earn rewards when they use it!": "شارك الكود ده مع أصحابك واكسب مكافآت لما يستخدموه!", -"Share Trip Details": "مشاركة تفاصيل الرحلة", -"Share via": "مشاركة عبر", -"Share with friends and earn rewards": "شارك مع أصحابك واكسب مكافآت", -"Share your experience to help us improve...": "شارك تجربتك عشان تساعدنا نتحسن...", -"Show behavior page": "عرض صفحة السلوك", -"Show health insurance providers near me": "عرض مزوّدي التأمين الصحي القريبين مني", -"Show Invitations": "عرض الدعوات", -"Show latest promo": "عرض آخر عرض ترويجي", -"Show maintenance center near my location": "عرض مركز الصيانة القريب من موقعي", -"Show my Cars": "عرض عربياتي", -"Show My Trip Count": "عرض عدد رحلاتي", -"Show Promos": "عرض العروض", -"Show Promos to Charge": "عرض العروض للشحن", -"Showing": "عرض", -"Sign In by Apple": "تسجيل الدخول عبر آبل", -"Sign In by Google": "تسجيل الدخول عبر جوجل", -"Sign in for a seamless experience": "سجّل دخول عشان تجربة سلسة", -"Sign in to start your journey": "سجّل دخول عشان تبدأ رحلتك", -"Sign in with a provider for easy access": "سجّل دخول باستخدام مزوّد للوصول السهل", -"Sign in with Apple": "تسجيل الدخول عبر آبل", -"Sign In with Google": "تسجيل الدخول عبر جوجل", -"Sign in with Google for easier email and name entry": "سجّل دخول عبر جوجل لإدخال البريد الإلكتروني والاسم بسهولة", -"Sign Out": "تسجيل الخروج", -"Silver badge": "شارة فضية", -"similar": "متشابه", -"Siro": "سيرو", -"Siro Balance": "رصيد سيرو", -"Siro Driver": "سايق سيرو", -"Siro DRIVER CODE": "كود سايق سيرو", -"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 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 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 LLC": "شركة سيرو ذ.م.م", -"Siro LLC\n\${'Syria": "شركة سيرو ذ.م.م\n\${'سوريا", -"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 Order": "طلب سيرو", -"Siro Over": "سيرو انتهى", -"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 Reminder": "تذكير سيرو", -"Siro Wallet": "محفظة سيرو", -"Siro Wallet Features:": "ميزات محفظة سيرو:", -"Siro's Response": "رد سيرو", -"Siro123": "سيرو123", -"Siro: For fixed salary and endpoints.": "سيرو: للراتب الثابت ونقاط النهاية.", -"Slide to End Trip": "اسحب لإنهاء الرحلة", -"So go and gain your money": "اذهب واستلم فلوسك", -"Social Butterfly": "الفراشة الاجتماعية", -"Societe Arabe Internationale De Banque": "المجتمع العربي الدولي للبنوك", -"Something went wrong. Please try again.": "حصل حاجة غلط. من فضلك جرب تاني.", -"Sorry": "آسف", -"Sorry, the order was taken by another driver.": "آسف، الطلب أخذه سايق تاني.", -"SOS": "الطوارئ", -"SOS Phone": "هاتف الطوارئ", -"Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان فسيحة مثالية للعائلات والمجموعات. سفر مريح وآمن وفعال من حيث التكلفة مع بعض.", -"Speaker": "مكبّر الصوت", -"Special Order": "طلب خاص", -"Speed": "السرعة", -"Speed Order": "طلب سريع", -"Speed 🔻": "السرعة 🔻", -"Standard Call": "مكالمة قياسية", -"Standard support": "دعم قياسي", -"Start": "ابدأ", -"start": "ابدأ", -"Start Navigation?": "تبدأ الملاحة؟", -"Start Record": "ابدأ التسجيل", -"Start Ride": "ابدأ الرحلة", -"Start sharing your code!": "ابدأ بمشاركة كودك!", -"Start the Ride": "ابدأ الرحلة", -"Start Trip": "ابدأ الرحلة", -"Start Trip?": "ابدأ الرحلة؟", -"start_name'] ?? 'Pickup Location": "start_name'] ?? 'موقع الالتقاط", -"Starting contacts sync in background...": "بيتم بدء مزامنة جهات الاتصال في الخلفية...", -"startName'] ?? 'Unknown Location": "startName'] ?? 'موقع غير معروف", -"Statistic": "إحصائية", -"Statistics": "الإحصائيات", -"Status": "الحالة", -"Status is": "الحالة هي", -"Stay": "ابقَ", -"Step-by-step instructions on how to request a ride through the Siro app.": "تعليمات خطوة بخطوة حول كيفية طلب رحلة من خلال تطبيق سيرو.", -"Stop": "توقف", -"Store your money with us and receive it in your bank as a monthly salary.": "احفظ فلوسك معانا واحصل عليها في بنكك كراتب شهري.", -"string": "نص", -"Submission Failed": "فشل الإرسال", -"SUBMIT": "إرسال", -"Submit": "إرسال", -"Submit ": "إرسال", -"Submit a Complaint": "تقديم شكوى", -"Submit Complaint": "إرسال شكوى", -"Submit Question": "إرسال سؤال", -"Submit Rating": "إرسال التقييم", -"Submit rating": "إرسال التقييم", -"Submit Your Complaint": "إرسال شكواك", -"Submit Your Question": "إرسال سؤالك", -"Success": "نجاح", -"Suez Canal Bank": "بنك قناة السويس", -"Summary of your daily activity": "ملخص نشاطك اليومي", -"Sun": "الأحد", -"Support": "الدعم", -"Support Reply": "رد الدعم", -"Swipe to End Trip": "اسحب لإنهاء الرحلة", -"Switch between light and dark map styles": "بدّل بين أنماط الخريطة الفاتحة والداكنة", -"Switch between light and dark themes": "بدّل بين السمات الفاتحة والداكنة", -"Switch Rider": "تبديل الراكب", -"SYP": "ليرة سورية", -"Syria": "سوريا", -"Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", -"Syria': return 'SYP": "Syria': return 'ليرة سورية", -"syriatel": "سيريتل", -"Syriatel Cash": "سيريتل كاش", -"t an Egyptian phone number": "رقم موبايل مصري", -"t be late": "متتأخرش", -"t cancel!": "متلغيش!", -"t continue with us .": "مقدرش تكمل معانا.", -"t continue with us .\nYou should renew Driver license": "مقدرش تكمل معانا.\nلازم تجدد رخصة القيادة", -"t find a valid route to this destination. Please try selecting a different point.": "ملاقيش طريق صالح للوجهة دي. من فضلك جرب تختار نقطة تانية.", -"t forget your personal belongings.": "متتنسيش حاجاتك الشخصية.", -"t forget your ride!": "متتنسيش رحلتك!", -"t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ملاقيش سايقين لسه. فكّر في زيادة رسوم رحلتك عشان تجعل عرضك أكثر جاذبية للسايقين.", -"t have a code": "ممعكش كود", -"t have a phone number.": "ممعكش رقم موبايل.", -"t have a reason": "ممعكش سبب", -"t have account": "ممعكش حساب", -"t have enough money in your Siro wallet": "ممعكش فلوس كافية في محفظة سيرو بتاعتك", -"t moved sufficiently!": "متحركتش بشكل كافي!", -"t need a ride anymore": "محتاجش رحلة تاني", -"t return to use app after 1 month": "متقدر ترجع تستخدم التطبيق بعد شهر", -"t start trip if not": "متبدأش الرحلة إذا مش", -"t start trip if passenger not in your car": "متبدأش الرحلة إذا الراكب مش في عربيتك", -"Take Image": "التقط صورة", -"Take Photo Now": "التقط صورة دلوقتي", -"Take Picture Of Driver License Card": "التقط صورة لرخصة قيادة السايق", -"Take Picture Of ID Card": "التقط صورة لبطاقة الهوية", -"Tap on the promo code to copy it!": "اضغط على كود الخصم عشان تنسخه!", -"Tap to upload": "اضغط عشان ترفع", -"Target": "الهدف", -"Tariff": "التعريفة", -"Tariffs": "التعريفات", -"Tax Expiry Date": "تاريخ انتهاء الضريبة", -"Terms of Use": "شروط الاستخدام", -"terms of use": "شروط الاستخدام", -"Terms of Use & Privacy Notice": "شروط الاستخدام وإشعار الخصوصية", -"Thank You!": "شكرًا لك!", -"Thanks": "شكرًا", -"the 300 points equal 300 L.E": "الـ 300 نقطة بتساوي 300 جنيه مصري", -"the 300 points equal 300 L.E for you": "الـ 300 نقطة بتساوي 300 جنيه مصري ليك", -"The 300 points equal 300 L.E for you\nSo go and gain your money": "الـ 300 نقطة بتساوي 300 جنيه مصري ليك\nاذهب واستلم فلوسك", -"the 300 points equal 300 L.E for you\nSo go and gain your money": "الـ 300 نقطة بتساوي 300 جنيه مصري ليك\nاذهب واستلم فلوسك", -"the 3000 points equal 3000 L.E": "الـ 3000 نقطة بتساوي 3000 جنيه مصري", -"the 3000 points equal 3000 L.E for you": "الـ 3000 نقطة بتساوي 3000 جنيه مصري ليك", -"The 30000 points equal 30000 S.P for you\nSo go and gain your money": "الـ 30000 نقطة بتساوي 30000 ليرة سورية ليك\nاذهب واستلم فلوسك", -"the 500 points equal 30 JOD": "الـ 500 نقطة بتساوي 30 دينار أردني", -"the 500 points equal 30 JOD for you": "الـ 500 نقطة بتساوي 30 دينار أردني ليك", -"the 500 points equal 30 JOD for you\nSo go and gain your money": "الـ 500 نقطة بتساوي 30 دينار أردني ليك\nاذهب واستلم فلوسك", -"The Amount is less than": "المبلغ أقل من", -"The app may not work optimally": "ممكن التطبيق مايشتغلش بأحسن شكل", -"The audio file is not uploaded yet.\nDo you want to submit without it?": "ملف الصوت مش اترفع لسه.\nعايز ترسل من غيره؟", -"The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", -"The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "السياق ما بيقدرش أي تفاصيل عن الشكوى، فمقدرش أقدم حل للمشكلة دي. من فضلك قدّم المعلومات اللازمة، وهأكون سعيد بمساعدتك.", -"The distance less than 500 meter.": "المسافة أقل من 500 متر.", -"The driver accept your order for": "السايق قبل طلبك مقابل", -"The driver accepted your order for": "السايق قبل طلبك مقابل", -"The driver accepted your trip": "السايق قبل رحلتك", -"The driver canceled your ride.": "السايق ألغى رحلتك.", -"The driver is approaching.": "السايق قاعد يقرب.", -"The driver on your way": "السايق في طريقه ليك", -"The driver waiting you in picked location .": "السايق بيستناك في موقع الالتقاط.", -"The driver waitting you in picked location .": "السايق بيستناك في موقع الالتقاط.", -"The Driver Will be in your location soon .": "السايق هيكون في موقعك قريبًا.", -"The drivers are reviewing your request": "السايقين بيقوموا بمراجعة طلبك", -"The email or phone number is already registered.": "البريد الإلكتروني أو رقم الموبايل مسجل بالفعل.", -"The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "الاسم الكامل في صحيفة الحالة الجنائية بتاعتك مش متطابق مع اللي في رخصة قيادتك. من فضلك تحقق وقدّم المستندات الصحيحة.", -"The invitation was sent successfully": "تم إرسال الدعوة بنجاح", -"The map will show an approximate view.": "الخريطة هتعرض عرض تقديري.", -"The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "الرقم القومي في رخصة قيادتك مش متطابق مع اللي في وثيقة هويتك. من فضلك تحقق وقدّم المستندات الصحيحة.", -"The order Accepted by another Driver": "تم قبول الطلب من سايق تاني", -"The order has been accepted by another driver.": "تم قبول الطلب من سايق تاني.", -"The payment was approved.": "تمت الموافقة على الدفع.", -"The payment was not approved. Please try again.": "متمتش الموافقة على الدفع. من فضلك جرب تاني.", -"The period of this code is 24 hours": "مدة صلاحية الكود ده هي 24 ساعة", -"The price may increase if the route changes.": "السعر ممكن يزيد لو الطريق اتغير.", -"The price must be over than": "السعر لازم يكون أكتر من", -"The promotion period has ended.": "انتهت فترة العرض الترويجي.", -"The reason is": "السبب هو", -"The selected contact does not have a phone number": "جهة الاتصال المحددة مفيهاش رقم موبايل", -"The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "بلشت الرحلة! متترددش تتصل بأرقام الطوارئ، أو تشارك رحلتك، أو تفعّل تسجيل الصوت للرحلة", -"The United Bank": "البنك المتحد", -"There is no data yet.": "مفيش بيانات لسه.", -"There is no help Question here": "مفيش سؤال مساعدة هنا", -"There is no notification yet": "مفيش إشعار لسه", -"There no Driver Aplly your order sorry for that": "مفيش سايق قدّم على طلبك، آسف لذلك", -"They register using your code": "بيسجلوا باستخدام كودك", -"This amount for all trip I get from Passengers": "المبلغ ده لكل الرحلات اللي جبتها من الركاب", -"This amount for all trip I get from Passengers and Collected For me in": "المبلغ ده لكل الرحلات اللي جبتها من الركاب واتجمع لي في", -"This driver is not registered": "السايق ده مش مسجل", -"This for new registration": "ده للتسجيل الجديد", -"This is a scheduled notification.": "ده إشعار مجدول.", -"this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "ده هو عدد كل رحلاتك في عرض بعد الظهر النهاردة من 3:00 مساءً لـ 6:00 مساءً", -"this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "ده هو عدد كل رحلاتك في عرض بعد الظهر النهاردة من 3:00 مساءً لـ 6:00 مساءً", -"this is count of your all trips in the morning promo today from 7:00am to 10:00am": "ده هو عدد كل رحلاتك في عرض الصباح النهاردة من 7:00 صباحًا لـ 10:00 صباحًا", -"this is count of your all trips in the morning promo today from 7:00am-10:00am": "ده هو عدد كل رحلاتك في عرض الصباح النهاردة من 7:00 صباحًا لـ 10:00 صباحًا", -"This is for delivery or a motorcycle.": "ده للتوصيل أو موتوسيكل.", -"This is for scooter or a motorcycle.": "ده للسكوتر أو موتوسيكل.", -"This is the total number of rejected orders per day after accepting the orders": "ده هو العدد الإجمالي للطلبات المرفوضة يوميًا بعد قبول الطلبات", -"This page is only available for Android devices": "الصفحة دي متاحة بس لأجهزة أندرويد", -"This phone number has already been invited.": "رقم الموبايل ده اتدعا بالفعل.", -"This price is": "السعر ده هو", -"This price is fixed even if the route changes for the driver.": "السعر ده ثابت حتى لو الطريق اتغير بالنسبة للسايق.", -"This price may be changed": "السعر ده ممكن يتغير", -"This ride is already applied by another driver.": "الرحلة دي اتقدم عليها سايق تاني بالفعل.", -"This ride is already taken by another driver.": "الرحلة دي أخذها سايق تاني بالفعل.", -"This ride type allows changes, but the price may increase": "نوع الرحلة ده بيسمح بالتغييرات، بس السعر ممكن يزيد", -"This ride type does not allow changes to the destination or additional stops": "نوع الرحلة ده مش بيسمح بتغيير الوجهة أو إضافة محطات إضافية", -"This ride was just accepted by another driver.": "الرحلة دي اتقبلت للتو من سايق تاني.", -"This service will be available soon.": "الخدمة دي هتتوفر قريبًا.", -"This Trip Cancelled": "تم إلغاء الرحلة دي", -"This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "الرحلة دي بتروح مباشرة من نقطة بدايتك لوجهتك بسعر ثابت. السايق لازم يتبع الطريق المخطط", -"This trip is for women only": "الرحلة دي للنساء بس", -"This Trip Was Cancelled": "تم إلغاء الرحلة دي", -"this will delete all files from your device": "ده هيمسح كل الملفات من جهازك", -"This will delete all recorded files from your device.": "ده هيمسح كل الملفات المسجلة من جهازك.", -"Thu": "الخميس", -"Time": "الوقت", -"Time Finish is": "وقت الانتهاء هو", -"time Selected": "الوقت المحدد", -"Time to arrive": "وقت الوصول", -"Time to Passenger": "الوقت للراكب", -"Time to Passenger is": "الوقت للراكب هو", -"Times of Trip": "أوقات الرحلة", -"TimeStart is": "وقت البدء هو", -"Tip is": "الإكرامية هي", -"tips": "الإكراميات", -"tips\nTotal is": "الإكراميات\nالإجمالي هو", -"title': 'scams operations": "title': 'عمليات احتيال", -"to": "لـ", -"To :": "لـ :", -"to arrive you.": "يوصل ليك.", -"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 change Language the App": "عشان تغيّر لغة التطبيق", -"To change some Settings": "عشان تغيّر بعض الإعدادات", -"To display orders instantly, please grant permission to draw over other apps.": "عشان تعرض الطلبات فورًا، من فضلك منح الإذن بالعرض فوق التطبيقات التانية.", -"To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "عشان نضمنلك أحسن تجربة، بنقترح تعديل الإعدادات عشان تناسب جهازك. عايز تكمل؟", -"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 Home": "للبيت", -"to receive ride requests even when the app is in the background.": "عشان تستلم طلبات الرحلات حتى لما التطبيق يكون في الخلفية.", -"To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "عشان تسجل كسايق أو تتعرف على المتطلبات، من فضلك زور موقعنا أو اتصل بدعم سيرو مباشرة.", -"to ride with": "تركب مع", -"To use Wallet charge it": "عشان تستخدم المحفظة، اشحنها", -"To Work": "للشغل", -"Today": "النهاردة", -"Today Overview": "نظرة عامة على النهاردة", -"token change": "تغيير الرمز", -"token updated": "تم تحديث الرمز", -"Top up Balance": "شحن الرصيد", -"Top up Balance to continue": "شحن الرصيد عشان تكمل", -"Top up Wallet": "شحن المحفظة", -"Top up Wallet to continue": "شحن المحفظة عشان تكمل", -"Total Amount:": "المبلغ الإجمالي:", -"Total Budget from trips by": "إجمالي الميزانية من الرحلات بواسطة", -"Total Budget from trips by\nCredit card is": "إجمالي الميزانية من الرحلات بواسطة\nكارت الائتمان هو", -"Total Budget from trips is": "إجمالي الميزانية من الرحلات هو", -"Total Budget is": "إجمالي الميزانية هو", -"Total budgets on month": "إجمالي الميزانيات في الشهر", -"Total Connection": "إجمالي الاتصال", -"Total Connection Duration:": "إجمالي مدة الاتصال:", -"Total Cost": "التكلفة الإجمالية", -"Total Cost is": "التكلفة الإجمالية هي", -"Total Duration:": "إجمالي المدة:", -"Total Earnings": "إجمالي الأرباح", -"Total For You is": "الإجمالي ليك هو", -"Total From Passenger is": "الإجمالي من الراكب هو", -"Total Hours on month": "إجمالي الساعات في الشهر", -"Total Invites": "إجمالي الدعوات", -"Total is": "الإجمالي هو", -"Total Net": "صافي الإجمالي", -"Total Orders": "إجمالي الطلبات", -"Total Points": "إجمالي النقاط", -"Total Points is": "إجمالي النقاط هو", -"Total points is": "إجمالي النقاط هو", -"Total Price": "السعر الإجمالي", -"Total price from": "السعر الإجمالي من", -"Total Rides": "إجمالي الرحلات", -"Total rides on month": "إجمالي الرحلات في الشهر", -"Total Trips": "إجمالي الرحلات", -"Total wallet is": "إجمالي المحفظة هو", -"Total Weekly Earnings": "إجمالي الأرباح الأسبوعية", -"Total weekly is": "إجمالي الأسبوعي هو", -"towards": "باتجاه", -"tr": "tr", -"Transaction failed": "فشلت المعاملة", -"Transaction failed, please try again.": "فشلت المعاملة، من فضلك جرب تاني.", -"Transaction successful": "تمت المعاملة بنجاح", -"transaction_failed": "فشلت المعاملة", -"transaction_id": "رقم المعاملة", -"Transactions this week": "المعاملات الأسبوع ده", -"Transfer": "تحويل", -"Transfer budget": "تحويل الميزانية", -"Transfer money multiple times.": "حوّل الفلوس كذا مرة.", -"transfer Successful": "تم التحويل بنجاح", -"Transfer to anyone.": "حوّل لأي حد.", -"Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "سافر في عربيّة كهربائية حديثة وهادئة. اختيار فاخر وصديق للبيئة لرحلة سلسة.", -"Traveled": "تم السفر", -"Trip": "الرحلة", -"Trip Cancelled": "الرحلة اتلغت", -"Trip Cancelled from driver. We are looking for a new driver. Please wait.": "الرحلة اتلغت من السايق. إحنا بنبص على سايق جديد. من فضلك انتظر.", -"Trip Cancelled. The cost of the trip will be added to your wallet.": "الرحلة اتلغت. تكلفة الرحلة هتتضاف لمحفظتك.", -"Trip Cancelled. The cost of the trip will be deducted from your wallet.": "الرحلة اتلغت. تكلفة الرحلة هتنخصم من محفظتك.", -"Trip Completed": "تمت الرحلة", -"Trip Detail": "تفاصيل الرحلة", -"Trip Details": "تفاصيل الرحلة", -"Trip Finished": "خلصت الرحلة", -"Trip finished": "الرحلة خلصت", -"Trip has Steps": "الرحلة فيها محطات", -"Trip ID": "معرف الرحلة", -"Trip Info": "معلومات الرحلة", -"Trip is Begin": "بلشت الرحلة", -"Trip Monitor": "مراقب الرحلة", -"Trip Monitoring": "مراقبة الرحلة", -"Trip Started": "بلشت الرحلة", -"Trip Status:": "حالة الرحلة:", -"Trip Summary with": "ملخص الرحلة مع", -"Trip taken": "تم أخذ الرحلة", -"Trip Timeline": "الجدول الزمني للرحلة", -"Trip updated successfully": "تم تحديث الرحلة بنجاح", -"Trips": "الرحلات", -"trips": "الرحلات", -"Trips recorded": "الرحلات المسجلة", -"Trips: \$trips / \$target": "الرحلات: \$trips / \$target", -"true": "صح", -"Tue": "الثلاثاء", -"Turkey": "تركيا", -"Turn left": "انعطف يسار", -"Turn right": "انعطف يمين", -"Turn sharp left": "انعطف يسار حاد", -"Turn sharp right": "انعطف يمين حاد", -"Turn slight left": "انعطف يسار خفيف", -"Turn slight right": "انعطف يمين خفيف", -"Type a message...": "اكتب رسالة...", -"Type Any thing": "اكتب أي حاجة", -"type here": "اكتب هنا", -"Type here Place": "اكتب هنا المكان", -"Type something": "اكتب حاجة", -"Type something...": "اكتب حاجة...", -"Type your Email": "اكتب بريدك الإلكتروني", -"Type your message": "اكتب رسالتك", -"Type your message...": "اكتب رسالتك...", -"Types of Trips in Siro:": "أنواع الرحلات في سيرو:", -"Uncompromising Security": "أمان بدون تنازلات", -"Unknown": "غير معروف", -"Unknown Driver": "سايق غير معروف", -"Unknown Location": "موقع غير معروف", -"unknown_document": "مستند غير معروف", -"Update": "تحديث", -"Update Available": "في تحديث جديد", -"Update Education": "تحديث التعليم", -"Update Gender": "تحديث الجنس", -"Updated": "تم التحديث", -"Updated successfully": "تم التحديث بنجاح", -"upgrade price": "رفع السعر", -"Upload Documents": "رفع المستندات", -"Upload or AI failed": "فشل الرفع أو الذكاء الاصطناعي", -"Uploaded": "تم الرفع", -"uploaded sucssefuly": "تم الرفع بنجاح", -"USA": "أمريكا", -"Use code:": "استخدم الكود:", -"Use my invitation code to get a special gift on your first ride!": "استخدم كود الدعوة بتاعي عشان تاخد هدية خاصة في رحلتك الأولى!", -"Use my referral code:": "استخدم كود الإحالة بتاعي:", -"Use this code in registration": "استخدم الكود ده في التسجيل", -"Use Touch ID or Face ID to confirm payment": "استخدم Touch ID أو Face ID لتأكيد الدفع", -"User does not exist.": "المستخدم مش موجود.", -"User does not have a wallet #1652": "المستخدم مالوش محفظة #1652", -"User not found": "ملاقيش المستخدم", -"User not logged in": "المستخدم مش مسجّل دخول", -"User with this phone number or email already exists.": "المستخدم برقم الموبايل أو البريد الإلكتروني ده موجود بالفعل.", -"Uses cellular network": "بيستخدم شبكة الموبايل", -"Valid Until:": "صالح لحد:", -"Value": "القيمة", -"Van": "فان", -"Van / Bus": "فان / باص", -"Van for familly": "فان للعائلة", -"Variety of Trip Choices": "تنوع خيارات الرحلات", -"ve arrived.": "وصلت.", -"ve been trying to reach you but your phone is off.": "كنت بحاول أوصل ليك بس موبايلك مقفول.", -"Vehicle": "المركبة", -"Vehicle Category": "فئة المركبة", -"Vehicle Details": "تفاصيل المركبة", -"Vehicle Details Back": "تفاصيل المركبة (الخلفي)", -"Vehicle Details Front": "تفاصيل المركبة (الأمامي)", -"Vehicle Information": "معلومات المركبة", -"Vehicle Options": "خيارات المركبة", -"Verification Code": "كود التحقق", -"Verify": "التحقق", -"verify and continue button": "زر التحقق والمتابعة", -"Verify Email": "التحقق من البريد الإلكتروني", -"Verify Email For Driver": "التحقق من البريد الإلكتروني للسايق", -"Verify OTP": "التحقق من OTP", -"verify your number title": "عنوان التحقق من رقمك", -"Vibration": "الاهتزاز", -"Vibration feedback for all buttons": "تغذية اهتزازية لكل الأزرار", -"Vibration feedback for buttons": "تغذية اهتزازية للأزرار", -"Videos Tutorials": "فيديوهات تعليمية", -"View All": "عرض الكل", -"View your past transactions": "شوف معاملاتك السابقة", -"VIN": "الرقم التعريفي (VIN)", -"vin": "الرقم التعريفي (VIN)", -"VIN :": "الرقم التعريفي (VIN) :", -"VIN is": "الرقم التعريفي (VIN) هو", -"VIP first": "أولوية VIP", -"VIP Order": "طلب VIP", -"VIP Order Accepted": "تم قبول طلب VIP", -"VIP Orders": "طلبات VIP", -"Visa": "فيزا", -"Visit our website or contact Siro support for information on driver registration and requirements.": "قم بزيارة موقعنا أو اتصل بدعم سيرو للحصول على معلومات حول تسجيل السايق والمتطلبات.", -"Visit Website/Contact Support": "زيارة الموقع/الاتصال بالدعم", -"Voice call over internet": "مكالمة صوتية عبر الإنترنت", -"Voice Calling": "المكالمات الصوتية", -"wait 1 minute to receive message": "انتظر دقيقة واحدة عشان تستلم الرسالة", -"Wait for timer": "انتظر المؤقت", -"Waiting": "بانتظار", -"Waiting for Captin ...": "بانتظار الكابتن...", -"Waiting for Driver ...": "بانتظار السايق...", -"Waiting for trips": "بانتظار الرحلات", -"Waiting for your location": "بانتظار موقعك", -"Waiting Time": "وقت الانتظار", -"Waiting VIP": "بانتظار VIP", -"Wallet": "المحفظة", -"Wallet Add": "إضافة للمحفظة", -"Wallet Added": "تمت الإضافة للمحفظة", -"Wallet Added\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة للمحفظة \${(remainingFee).toStringAsFixed(0)}", -"Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة للمحفظة \\\${(remainingFee).toStringAsFixed(0)}", -"wallet due to a previous trip.": "محفظة بسبب رحلة سابقة.", -"Wallet is blocked": "المحفظة مقفولة", -"Wallet Payment": "الدفع عبر المحفظة", -"Wallet Phone Number": "رقم موبايل المحفظة", -"Wallet Type": "نوع المحفظة", -"Wallet!": "المحفظة!", -"wallet_credited_message": "تمت الإضافة", -"wallet_updated": "تم تحديث المحفظة", -"Warning": "تحذير", -"Warning: Siroing detected!": "تحذير: اتكتشف مخالفات!", -"Warning: Speeding detected!": "تحذير: اتكتشف تجاوز السرعة!", -"We are looking for a captain but the price may increase to let a captain accept": "إحنا بنبص على كابتن بس السعر ممكن يزيد عشان كابتن يقبل", -"We are process picture please wait": "إحنا بنشتغل على الصورة، من فضلك انتظر", -"We are process picture please wait ": "إحنا بنشتغل على الصورة، من فضلك انتظر", -"We are search for nearst driver": "إحنا بنبص على أقرب سايق", -"We are searching for the nearest driver": "إحنا بنبص على أقرب سايق ليك", -"We are searching for the nearest driver to you": "إحنا بنبص على أقرب سايق ليك", -"We Are Sorry That we dont have cars in your Location!": "آسفين إن إحنا مالناش عربيات في موقعك!", -"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 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:": "أرسلنا كود التحقق لرقم موبايلك:", -"We need access to your location to match you with nearby passengers and ensure accurate navigation.": "نحتاج للوصول لموقعك عشان نوصلك بركاب قريبين ونضمن ملاحة دقيقة.", -"We need access to your location to match you with nearby passengers and provide accurate navigation.": "نحتاج للوصول لموقعك عشان نوصلك بركاب قريبين ونوفر توجيه دقيق.", -"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 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 أرقام لبريدك الإلكتروني اللي قدّمته", -"We use location to get accurate and nearest passengers for you": "بنستخدم الموقع عشان نلاقي ركاب دقيقين وقريبين ليك", -"We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "بنستخدم موقعك الدقيق عشان نلاقي أقرب سايق متاح ونوفر معلومات دقيقة للاستلام والتنزيل. تقدر تدير ده في الإعدادات.", -"We will look for a new driver.\nPlease wait.": "هنبحث عن سايق جديد.\nمن فضلك انتظر.", -"We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "هنرسل لك إشعار بمجرد الموافقة على حسابك. تقدر تغلق الصفحة دي بأمان، وهنعلمك لما تكتمل المراجعة.", -"Wed": "الأربعاء", -"Weekly Budget": "الميزانية الأسبوعية", -"Weekly Challenges": "التحديات الأسبوعية", -"Weekly Earnings": "الأرباح الأسبوعية", -"Weekly Plan": "الخطة الأسبوعية", -"Weekly Streak": "سلسلة أسبوعية", -"Weekly Summary": "الملخص الأسبوعي", -"Welcome": "أهلاً وسهلاً", -"Welcome Back!": "مرحبًا بعودتك!", -"Welcome Offer!": "عرض ترحيبي!", -"welcome to siro": "أهلاً بك في سيرو", -"Welcome to Siro!": "أهلاً بك في سيرو!", -"welcome user": "أهلاً بالمستخدم", -"welcome_message": "رسالة الترحيب", -"welcome_to_siro": "أهلاً بك في سيرو", -"What are the order details we provide to you?": "إيه تفاصيل الطلب اللي بنقدملك؟", -"What are the requirements to become a driver?": "إيه المتطلبات عشان تصير سايق؟", -"What is the feature of our wallet?": "إيه ميزة محفظتنا؟", -"What is Types of Trips in Siro?": "إيه أنواع الرحلات في سيرو؟", -"What safety measures does Siro offer?": "إيه إجراءات السلامة اللي بيقدمها سيرو؟", -"What types of vehicles are available?": "إيه أنواع العربيات المتاحة؟", -"WhatsApp": "واتساب", -"WhatsApp Location Extractor": "مستخرج موقع الواتساب", -"whatsapp', phone1, 'Hello": "واتساب', phone1, 'أهلاً", -"When": "متى", -"When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "لما تكمل 500 رحلة، هتبقى مؤهل للعروض الحصرية للتأمين الصحي.", -"When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "لما تكمل 600 رحلة، هتبقى مؤهل لتلقى عروض ص" + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية.", + " is ON for this month": "مفعلة ده الشهر", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"نص", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"نص", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"نص", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"نص", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'نص", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'نص", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'نص", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*كود تطبيق سيرو*", + "*Siro DRIVER CODE*": "*كود سايق سيرو*", + "--": "--", + "-1% commission": "خصم 1% من العمولة", + "-2% commission": "خصم 2% من العمولة", + "-5% commission": "خصم 5% من العمولة", + ". I am at least 18 years of age.": ". عمري 18 سنة أو أكتر.", + ". I am at least 18 years old.": ". عمري 18 سنة أو أكتر.", + ". The app will connect you with a nearby driver.": ". التطبيق هيوصلك بسايق قريب منك.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'دينار أردني", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'دينار أردني", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'دينار أردني", + "1 \\\${'LE": "1 \\\${'جنيه مصري", + "1', 'Share your code": "1', 'شارك كودك", + "1. Describe Your Issue": "1. وصف مشكلتك", + "1. Select Ride": "1. اختر الرحلة", + "10 and get 4% discount": "10 وخد خصم 4%", + "100 and get 11% discount": "100 وخد خصم 11%", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'جنيه مصري", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'جنيه مصري", + "1999": "1999", + "2', 'Friend signs up": "2', 'صديقك يسجل", + "2. Attach Recorded Audio": "2. أرفق الصوت المسجل", + "2. Attach Recorded Audio (Optional)": "2. أرفق الصوت المسجل (اختياري)", + "2. Describe Your Issue": "2. اكتب وصف للمشكلة", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'جنيه مصري", + "20 and get 6% discount": "20 وخد خصم 6%", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'دينار أردني", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 أرقام", + "3', 'Both earn rewards": "3', 'الاتنين يكسبوا مكافآت", + "3. Attach Recorded Audio (Optional)": "3. أرفق الصوت المسجل (اختياري)", + "3. Review Details & Response": "3. راجع التفاصيل والرد", + "300 LE": "300 جنيه مصري", + "3000 LE": "3000 جنيه مصري", + "4', 'Bonus at 10 trips": "4', 'بونص لما تعمل 10 رحلات", + "4. Review Details & Response": "4. راجع التفاصيل والرد", + "40 and get 8% discount": "40 وخد خصم 8%", + "5 digit": "5 أرقام", + "<< BACK": "<< رجوع", + "A connection error occurred": "حصل خطأ في الاتصال", + "A new version of the app is available. Please update to the latest version.": "في إصدار جديد من التطبيق. من فضلك حدّث للإصدار الأخير.", + "A promotion record for this driver already exists for today.": "في سجل ترويجي ده السايق ده النهاردة بالفعل.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "رحلة محجوزة مسبقًا، وتخليك تختار أفضل الكباتن والعربية.", + "AI Page": "صفحة الذكاء الاصطناعي", + "AI failed to extract info": "فشل الذكاء الاصطناعي في استخراج المعلومات", + "ATTIJARIWAFA BANK Egypt": "بنك التجاري وفا مصر", + "About Us": "من نحن", + "Abu Dhabi Commercial Bank – Egypt": "بنك أبوظبي التجاري – مصر", + "Abu Dhabi Islamic Bank – Egypt": "بنك أبوظبي الإسلامي – مصر", + "Accept": "قبول", + "Accept Order": "اقبل الطلب", + "Accept Ride": "اقبل الرحلة", + "Accepted Ride": "تم قبول الرحلة", + "Accepted your order": "قبل طلبك", + "Account": "الحساب", + "Account Updated": "تم تحديث الحساب", + "Achievements": "الإنجازات", + "Active Duration": "مدة النشاط", + "Active Duration:": "مدة النشاط:", + "Active Ride": "الرحلة النشطة", + "Active Users": "المستخدمين النشطين", + "Active ride in progress. Leaving might stop tracking. Exit?": "في رحلة شغالة دلوقتي. الخروج ممكن يوقف التتبع. عايز تخرج؟", + "Activities": "الأنشطة", + "Add Balance": "أضف رصيد", + "Add Card": "أضف كارت", + "Add Credit Card": "أضف كارت ائتمان", + "Add Home": "أضف البيت", + "Add Location": "أضف موقع", + "Add Location 1": "أضف الموقع 1", + "Add Location 2": "أضف الموقع 2", + "Add Location 3": "أضف الموقع 3", + "Add Location 4": "أضف الموقع 4", + "Add Payment Method": "أضف طريقة دفع", + "Add Phone": "أضف موبايل", + "Add Promo": "أضف كود خصم", + "Add Question": "أضف سؤال", + "Add SOS Phone": "أضف رقم طوارئ", + "Add Stops": "أضف محطات", + "Add Work": "أضف الشغل", + "Add a Stop": "أضف محطة", + "Add a comment (optional)": "أضف تعليق (اختياري)", + "Add bank Account": "أضف حساب بنكي", + "Add criminal page": "أضف صحيفة الحالة الجنائية", + "Add funds using our secure methods": "أضف فلوس باستخدام طرقنا الآمنة", + "Add new car": "أضف عربيّة جديدة", + "Add to Passenger Wallet": "أضف لمحفظة الراكب", + "Add wallet phone you use": "أضف رقم محفظة الموبايل اللي بتعمله", + "Address": "العنوان", + "Address:": "العنوان:", + "Admin DashBoard": "لوحة تحكم الأدمن", + "Affordable for Everyone": "مناسب للكل", + "After this period": "بعد الفترة دي", + "Afternoon Promo": "عرض بعد الظهر", + "Afternoon Promo Rides": "رحلات عرض بعد الظهر", + "Age": "العمر", + "Age is": "العمر هو", + "Agricultural Bank of Egypt": "البنك الزراعي المصري", + "Ahli United Bank": "بنك الأهلي المتحد", + "Air condition Trip": "رحلة بتكييف", + "Al Ahli Bank of Kuwait – Egypt": "بنك الأهلي الكويتي – مصر", + "Al Baraka Bank Egypt B.S.C.": "بنك البركة مصر", + "Alert": "تنبيه", + "Alerts": "التنبيهات", + "Alex Bank Egypt": "بنك الإسكندرية مصر", + "Allow Location Access": "اسمح بالوصول للموقع", + "Allow overlay permission": "اسمح بصلاحية العرض فوق التطبيقات", + "Allowing location access will help us display orders near you. Please enable it now.": "السماح بالوصول للموقع هيخلينا نعرض الطلبات القريبة منك. من فضلك شغّله دلوقتي.", + "Already have an account? Login": "معندكش حساب؟ سجّل دخول", + "Amount": "المبلغ", + "Amount to charge:": "المبلغ المراد شحنه:", + "An OTP has been sent to your number.": "تم إرسال رمز التحقق إلى رقمك.", + "An application error occurred during upload.": "حدث خطأ في التطبيق أثناء الرفع.", + "An application error occurred.": "حدث خطأ في التطبيق.", + "An error occurred": "حدث خطأ", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "حدث خطأ أثناء مزامنة جهات الاتصال: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "حدث خطأ أثناء مزامنة جهات الاتصال: \\\\\\\$e", + "An error occurred during the payment process.": "حدث خطأ أثناء عملية الدفع.", + "An error occurred while connecting to the server.": "حدث خطأ أثناء الاتصال بالخادم.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "حدث خطأ أثناء تحميل جهات الاتصال: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "حدث خطأ أثناء تحميل جهات الاتصال: \\\\\\\$e", + "An error occurred while picking a contact": "حدث خطأ أثناء اختيار جهة اتصال", + "An error occurred while picking contacts:": "حدث خطأ أثناء اختيار جهات الاتصال:", + "An error occurred while saving driver data": "حدث خطأ أثناء حفظ بيانات السائق", + "An unexpected error occurred. Please try again.": "حدث خطأ غير متوقع. يرجى المحاولة مرة أخرى.", + "An unexpected error occurred:": "حدث خطأ غير متوقع:", + "An unknown server error occurred": "حدث خطأ غير معروف في الخادم.", + "And acknowledge our": "وأوافق على", + "Any comments about the passenger?": "في أي تعليق على الراكب؟", + "App Dark Mode": "الوضع الداكن للتطبيق", + "App Preferences": "تفضيلات التطبيق", + "App with Passenger": "التطبيق مع الراكب", + "Applied": "تم التطبيق", + "Apply": "تطبيق", + "Apply Order": "تطبيق الطلب", + "Apply Promo Code": "طبّق كود الخصم", + "Approaching your area. Should be there in 3 minutes.": "قاعد يقرب من منطقتك. هيوصل خلال 3 دقايق.", + "Approve Driver Documents": "الموافقة على مستندات السايق", + "Arab African International Bank": "البنك العربي الأفريقي الدولي", + "Arab Bank PLC": "البنك العربي", + "Arab Banking Corporation - Egypt S.A.E": "الشركة العربية المصرفية - مصر", + "Arab International Bank": "البنك العربي الدولي", + "Arab Investment Bank": "بنك الاستثمار العربي", + "Are You sure to LogOut?": "متأكد إنك عايز تسجّل خروج؟", + "Are You sure to ride to": "متأكد إنك عايز تركب لـ", + "Are you Sure to LogOut?": "متأكد إنك بدك تطلع من الحساب؟", + "Are you sure to cancel?": "متأكد إنك عايز تلغي؟", + "Are you sure to delete recorded files": "متأكد إنك عايز تحذف الملفات المسجلة؟", + "Are you sure to delete this location?": "متأكد إنك عايز تحذف الموقع ده؟", + "Are you sure to delete your account?": "متأكد إنك عايز تحذف حسابك؟", + "Are you sure to exit ride ?": "متأكد إنك عايز تخرج من الرحلة؟", + "Are you sure to exit ride?": "متأكد إنك عايز تخرج من الرحلة؟", + "Are you sure to make this car as default": "متأكد إنك عايز تخلي العربية دي الافتراضية؟", + "Are you sure you want to cancel and collect the fee?": "متأكد إنك عايز تلغي وتقبض الرسوم؟", + "Are you sure you want to cancel this trip?": "متأكد إنك عايز تلغي الرحلة دي؟", + "Are you sure you want to logout?": "متأكد إنك عايز تسجّل خروج؟", + "Are you sure?": "متأكد؟", + "Are you sure? This action cannot be undone.": "متأكد؟ الإجراء ده مش هيرجع تاني.", + "Are you want to change": "عايز تغيّر", + "Are you want to go this site": "عايز تروح للموقع ده؟", + "Are you want to go to this site": "عايز تروح للموقع ده؟", + "Are you want to wait drivers to accept your order": "عايز تنتظر السايقين يقبلوا طلبك؟", + "Arrival time": "وقت الوصول", + "Associate Degree": "دبلوم متوسط", + "Attach this audio file?": "تربط الملف الصوتي ده؟", + "Attention": "تنبيه", + "Audio file not attached": "مفيش ملف صوتي مرفق", + "Audio uploaded successfully.": "تم رفع الملف الصوتي بنجاح.", + "Authentication failed": "فشلت المصادقة", + "Available Balance": "الرصيد المتاح", + "Available Rides": "الرحلات المتاحة", + "Available for rides": "متاح للرحلات", + "Average of Hours of": "متوسط ساعات", + "Awaiting response...": "بانتظار الرد...", + "Awfar Car": "عربيّة أوفر", + "Bachelor\\'s Degree": "ليسانس", + "Back": "رجوع", + "Back to other sign-in options": "ارجع لخيارات تسجيل الدخول التانية", + "Bahrain": "البحرين", + "Balance": "الرصيد", + "Balance limit exceeded": "تم تجاوز حد الرصيد", + "Balance not enough": "الرصيد مش كافي", + "Balance:": "الرصيد:", + "Bank Account": "حساب بنكي", + "Bank Card Payment": "دفع بكروت البنك", + "Bank account added successfully": "تمت إضافة الحساب البنكي بنجاح", + "Banque Du Caire": "بنك القاهرة", + "Banque Misr": "بنك مصر", + "Basic features": "ميزات أساسية", + "Be Slowly": "خليها هادية", + "Be sure for take accurate images please": "خلي بالك من إنك تلتقط صور واضحة من فضلك", + "Be sure for take accurate images please\\nYou have": "خلي بالك من إنك تلتقط صور واضحة من فضلك\\nمعاك", + "Be sure to use it quickly! This code expires at": "خلي بالك من استخدامه بسرعة! الكود ده بيخلص في", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "عشان إحنا قريبين، عندك المرونة تختار الرحلة اللي أنسب ليك.", + "Before we start, please review our terms.": "قبل ما نبدأ، من فضلك راجع شروطنا.", + "Behavior Page": "صفحة السلوك", + "Behavior Score": "درجة السلوك", + "Best Day": "أحسن يوم", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "أحسن اختيار لعربيّة مريحة مع طريق مرن ومحطات توقف. المطار ده بيوفر تأشيرة دخول بالسعر ده.", + "Best choice for cities": "أحسن اختيار للمدن", + "Best choice for comfort car and flexible route and stops point": "أحسن اختيار لعربيّة مريحة مع طريق مرن ومحطات توقف", + "Biometric Authentication": "المصادقة البيومترية", + "Birth Date": "تاريخ الميلاد", + "Birth year must be 4 digits": "سنة الميلاد لازم تكون 4 أرقام", + "Birthdate Mismatch": "عدم تطابق تاريخ الميلاد", + "Birthdate on ID front and back does not match.": "تاريخ الميلاد على الوجه الأمامي والخلفي للبطاقة مش متطابق.", + "Blom Bank": "بنك بلوم", + "Bonus gift": "هدية بونص", + "BookingFee": "رسوم الحجز", + "Bottom Bar Example": "مثال الشريط السفلي", + "But you have a negative salary of": "بس معك راتب سلبي بقيمة", + "CODE": "الكود", + "Calculating...": "بيتم الحساب...", + "Call": "اتصل", + "Call Connected": "تم الاتصال", + "Call Driver": "اتصل بالسايق", + "Call End": "انتهت المكالمة", + "Call Ended": "انتهت المكالمة", + "Call Income": "مكالمة واردة", + "Call Income from Driver": "مكالمة واردة من السايق", + "Call Income from Passenger": "مكالمة واردة من الراكب", + "Call Left": "مكالمة فائتة", + "Call Options": "خيارات الاتصال", + "Call Page": "صفحة الاتصال", + "Call Passenger": "اتصل بالراكب", + "Call Support": "اتصل بالدعم", + "Calling": "بيتم الاتصال بـ", + "Calling non-Syrian numbers is not supported": "الاتصال بالأرقام غير السورية مش مدعوم", + "Camera Access Denied.": "تم رفض الوصول للكاميرا.", + "Camera not initialized yet": "الكاميرا مش اتشغلت لسه", + "Camera not initilaized yet": "الكاميرا مش اتشغلت لسه", + "Can I cancel my ride?": "أقدر ألغي رحلتي؟", + "Can we know why you want to cancel Ride ?": "نعرف ليه عايز تلغي الرحلة؟", + "Cancel": "إلغاء", + "Cancel & Collect Fee": "إلغاء واستلام الرسوم", + "Cancel Ride": "إلغاء الرحلة", + "Cancel Search": "إلغاء البحث", + "Cancel Trip": "إلغاء الرحلة", + "Cancel Trip from driver": "إلغاء الرحلة من السايق", + "Cancel Trip?": "تلغي الرحلة؟", + "Canceled": "ملغاة", + "Canceled Orders": "الطلبات الملغاة", + "Cancelled": "ملغاة", + "Cancelled by Passenger": "تم الإلغاء بواسطة الراكب", + "Cannot apply further discounts.": "مش قادر تطبق خصومات زيادة.", + "Captain": "الكابتن", + "Capture an Image of Your Criminal Record": "التقط صورة لصحيفة الحالة الجنائية بتاعتك", + "Capture an Image of Your Driver License": "التقط صورة لرخصة قيادتك", + "Capture an Image of Your Driver’s License": "التقط صورة لرخصة قيادتك", + "Capture an Image of Your ID Document Back": "التقط صورة للوجه الخلفي لبطاقتك الشخصية", + "Capture an Image of Your ID Document front": "التقط صورة للوجه الأمامي لبطاقتك الشخصية", + "Capture an Image of Your car license back": "التقط صورة للوجه الخلفي لرخصة عربيتك", + "Capture an Image of Your car license front": "التقط صورة للوجه الأمامي لرخصة عربيتك", + "Capture an Image of Your car license front ": "التقط صورة للوجه الأمامي لرخصة عربيتك", + "Car": "عربيّة", + "Car Color": "لون العربية", + "Car Color (Hex)": "لون العربية (سداسي)", + "Car Color (Name)": "لون العربية (الاسم)", + "Car Color:": "لون العربية:", + "Car Details": "تفاصيل العربية", + "Car Expire": "انتهاء صلاحية العربية", + "Car Kind": "نوع العربية", + "Car License Card": "رخصة تسجيل العربية", + "Car Make (e.g., Toyota)": "ماركة العربية (زي تويوتا)", + "Car Make:": "ماركة العربية:", + "Car Model (e.g., Corolla)": "موديل العربية (زي كورولا)", + "Car Model:": "موديل العربية:", + "Car Plate": "لوحة العربية", + "Car Plate Number": "رقم لوحة العربية", + "Car Plate is": "لوحة العربية هي", + "Car Plate:": "لوحة العربية:", + "Car Registration (Back)": "تسجيل العربية (الخلفي)", + "Car Registration (Front)": "تسجيل العربية (الأمامي)", + "Car Type": "نوع العربية", + "Card Earnings": "أرباح الكارت", + "Card Number": "رقم الكارت", + "Card Payment": "دفع بالكارت", + "CardID": "رقم الكارت", + "Cash": "كاش", + "Cash Earnings": "أرباح كاش", + "Cash Out": "سحب الفلوس", + "Central Bank Of Egypt": "البنك المركزي المصري", + "Century Rider": "سايق القرن", + "Challenges": "التحديات", + "Change Country": "غيّر الدولة", + "Change Home location?": "تغيّر موقع البيت؟", + "Change Ride": "غيّر الرحلة", + "Change Route": "غيّر الطريق", + "Change Work location?": "تغيّر موقع الشغل؟", + "Change the app language": "غيّر لغة التطبيق", + "Charge your Account": "اشحن حسابك", + "Charge your account.": "اشحن حسابك.", + "Chassis": "الشاسيه", + "Check back later for new offers!": "راجع تاني بعد شوية عشان تشوف عروض جديدة!", + "Checking for updates...": "بيتم التحقق من وجود تحديثات...", + "Choose Claim Method": "اختر طريقة الاستلام", + "Choose Language": "اختر اللغة", + "Choose a contact option": "اختر خيار جهة اتصال", + "Choose between those Type Cars": "اختر بين أنواع العربية دي", + "Choose from Map": "اختر من الخريطة", + "Choose from contact": "اختر من جهات الاتصال", + "Choose how you want to call the passenger": "اختر إزاي عايز تتصل بالراكب", + "Choose the trip option that perfectly suits your needs and preferences.": "اختر خيار الرحلة اللي يناسب احتياجاتك وتفضيلاتك تمامًا.", + "Choose who this order is for": "اختر الطلب ده لمين", + "Choose your ride": "اختر رحلتك", + "Citi Bank N.A. Egypt": "سيتي بنك مصر", + "City": "المدينة", + "Claim": "استلام", + "Claim Reward": "استلم المكافأة", + "Claim your 20 LE gift for inviting": "استلم هديتك البالغة 20 جنيه مصري مقابل الدعوة", + "Claimed": "تم الاستلام", + "CliQ": "CliQ", + "CliQ Payment": "دفع عبر CliQ", + "Click here point": "اضغط هنا", + "Click here to Show it in Map": "اضغط هنا عشان تعرضه على الخريطة", + "Close": "إغلاق", + "Closest & Cheapest": "الأقرب والأرخص", + "Closest to You": "الأقرب ليك", + "Code": "الكود", + "Code approved": "تمت الموافقة على الكود", + "Code copied!": "تم نسخ الكود!", + "Code not approved": "الكود مش مقبول", + "Collect Cash": "اجمع كاش", + "Collect Payment": "اجمع الدفع", + "Color": "اللون", + "Color is": "اللون هو", + "Comfort": "كومفورت", + "Comfort choice": "خيار مريح", + "Comfort ❄️": "كومفورت ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "كومفورت: للعربيات الأحدث من 2017 والمزودة بتكييف.", + "Coming Soon": "قريبًا", + "Commercial International Bank - Egypt S.A.E": "البنك التجاري الدولي - مصر", + "Commission": "العمولة", + "Communication": "التواصل", + "Compatible, you may notice some slowness": "متوافق، ممكن تلاقيه شوية بطئ", + "Compensation Received": "تم استلام التعويض", + "Complaint": "شكوى", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "مش قادر تقدم شكوى للرحلة دي. ممكن تكون مش اتكملت أو بدأت لسه.", + "Complaint data saved successfully": "تم حفظ بيانات الشكوى بنجاح", + "Complete 100 trips": "اكمل 100 رحلة", + "Complete 50 trips": "اكمل 50 رحلة", + "Complete 500 trips": "اكمل 500 رحلة", + "Complete Payment": "اكمل الدفع", + "Complete your first trip": "اكمل رحلتك الأولى", + "Completed": "مكتملة", + "Confirm": "تأكيد", + "Confirm & Find a Ride": "تأكيد والعثور على رحلة", + "Confirm Attachment": "تأكيد المرفق", + "Confirm Cancellation": "تأكيد الإلغاء", + "Confirm Payment": "تأكيد الدفع", + "Confirm Pick-up Location": "تأكيد موقع الالتقاط", + "Confirm Selection": "تأكيد الاختيار", + "Confirm Trip": "تأكيد الرحلة", + "Confirm payment with biometrics": "تأكيد الدفع باستخدام القياسات الحيوية", + "Confirm your Email": "تأكيد بريدك الإلكتروني", + "Confirmation": "تأكيد", + "Connected": "متصل", + "Connecting...": "بيتم الاتصال...", + "Connection error": "خطأ في الاتصال", + "Contact Options": "خيارات الاتصال", + "Contact Support": "اتصل بالدعم", + "Contact Support to Recharge": "اتصل بالدعم عشان تشحن", + "Contact Us": "اتصل بينا", + "Contact permission is required to pick a contact": "مطلوب إذن جهات الاتصال عشان تختار جهة اتصال", + "Contact permission is required to pick contacts": "مطلوب إذن جهات الاتصال عشان تختار جهات الاتصال", + "Contact us for any questions on your order.": "اتصل بينا لأي استفسارات عن طلبك.", + "Contacts Loaded": "تم تحميل جهات الاتصال", + "Contacts sync completed successfully!": "اكتملت مزامنة جهات الاتصال بنجاح!", + "Continue": "متابعة", + "Continue Ride": "تابع الرحلة", + "Continue straight": "استمر بشكل مستقيم", + "Continue to App": "تابع للتطبيق", + "Copy": "نسخ", + "Copy Code": "نسخ الكود", + "Copy this Promo to use it in your Ride!": "انسخ العرض الترويجي ده عشان تستخدمه في رحلتك!", + "Cost": "التكلفة", + "Cost Duration": "مدة التكلفة", + "Cost Of Trip IS": "تكلفة الرحلة هي", + "Could not load trip details.": "ماقدرش نحمل تفاصيل الرحلة.", + "Could not start ride. Please check internet.": "ماقدرش نبدأ الرحلة. من فضلك تحقق من الإنترنت.", + "Counts of Hours on days": "عدد الساعات حسب الأيام", + "Counts of budgets on days": "عدد الميزانيات حسب الأيام", + "Counts of rides on days": "عدد الرحلات حسب الأيام", + "Create Account": "إنشاء حساب", + "Create Account with Email": "إنشاء حساب باستخدام البريد الإلكتروني", + "Create Driver Account": "إنشاء حساب سايق", + "Create Wallet to receive your money": "أنشئ محفظة عشان تستلم فلوسك", + "Create new Account": "إنشاء حساب جديد", + "Credit": "رصيد", + "Credit Agricole Egypt S.A.E": "كريدي أجريكول مصر", + "Credit card is": "كارت الائتمان هو", + "Criminal Document": "المستند الجنائي", + "Criminal Document Required": "المستند الجنائي مطلوب", + "Criminal Record": "صحيفة الحالة الجنائية", + "Cropper": "أداة الاقتصاص", + "Current Balance": "الرصيد الحالي", + "Current Location": "الموقع الحالي", + "Customer MSISDN doesn’t have customer wallet": "رقم موبايل العميل مش فيه محفظة عميل", + "Customer not found": "ما لقيناش العميل", + "Customer phone is not active": "موبايل العميل مش شغال", + "DISCOUNT": "خصم", + "DRIVER123": "DRIVER123", + "Daily Challenges": "التحديات اليومية", + "Daily Goal": "الهدف اليومي", + "Date": "التاريخ", + "Date and Time Picker": "منتقي التاريخ والوقت", + "Date of Birth": "تاريخ الميلاد", + "Date of Birth is": "تاريخ الميلاد هو", + "Date of Birth:": "تاريخ الميلاد:", + "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سيرو،", + "Debit": "خصم", + "Debit Card": "كارت خصم", + "Dec 15 - Dec 21, 2024": "15 ديسمبر - 21 ديسمبر 2024", + "Decline": "رفض", + "Delete": "حذف", + "Delete My Account": "احذف حسابي", + "Delete Permanently": "حذف نهائي", + "Deleted": "تم الحذف", + "Delivery": "توصيل", + "Destination": "الوجهة", + "Destination Location": "موقع الوجهة", + "Destination selected": "تم اختيار الوجهة", + "Detect Your Face": "اكتشف وجهك", + "Detect Your Face ": "اكتشف وجهك", + "Device Change Detected": "تم اكتشاف تغيير الجهاز", + "Device Compatibility": "توافق الجهاز", + "Diamond badge": "شارة الماس", + "Diesel": "ديزل", + "Directions": "الاتجاهات", + "Displacement": "السعة", + "Distance": "المسافة", + "Distance To Passenger is": "المسافة للراكب هي", + "Distance from Passenger to destination is": "المسافة من الراكب للوجهة هي", + "Distance is": "المسافة هي", + "Distance of the Ride is": "مسافة الرحلة هي", + "Do you have a disease for a long time?": "معاك مرض مزمن من زمان؟", + "Do you have an invitation code from another driver?": "معاك كود دعوة من سايق تاني؟", + "Do you want to change Home location": "عايز تغيّر موقع البيت؟", + "Do you want to change Work location": "عايز تغيّر موقع الشغل؟", + "Do you want to collect your earnings?": "عايز تجمع أرباحك؟", + "Do you want to go to this location?": "عايز تروح للموقع ده؟", + "Do you want to pay Tips for this Driver": "عايز تدفع إكرامية للسايق ده؟", + "Docs": "المستندات", + "Doctoral Degree": "دكتوراه", + "Document Number:": "رقم المستند:", + "Documents check": "فحص المستندات", + "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 app now:": "حمّل التطبيق دلوقتي:", + "Drawing route on map...": "بيتم رسم الطريق على الخريطة...", + "Driver": "السايق", + "Driver Accepted Request": "السايق قبل الطلب", + "Driver Accepted the Ride for You": "السايق قبل الرحلة ليك", + "Driver Agreement": "اتفاقية السايق", + "Driver Applied the Ride for You": "السايق قدّم على الرحلة ليك", + "Driver Balance": "رصيد السايق", + "Driver Behavior": "سلوك السايق", + "Driver Cancel Your Trip": "السايق ألغى رحلتك", + "Driver Cancelled Your Trip": "السايق ألغى رحلتك", + "Driver Car Plate": "لوحة عربيّة السايق", + "Driver Finish Trip": "السايق أنهى الرحلة", + "Driver Invitations": "دعوات السايقين", + "Driver Is Going To Passenger": "السايق رايح للراكب", + "Driver Level": "مستوى السايق", + "Driver License (Back)": "رخصة القيادة (الخلفي)", + "Driver License (Front)": "رخصة القيادة (الأمامي)", + "Driver List": "قائمة السايقين", + "Driver Login": "تسجيل دخول السايق", + "Driver Message": "رسالة السايق", + "Driver Name": "اسم السايق", + "Driver Name:": "اسم السايق:", + "Driver Phone:": "موبايل السايق:", + "Driver Portal": "بوابة السايق", + "Driver Referral": "إحالة السايق", + "Driver Registration": "تسجيل السايق", + "Driver Registration & Requirements": "تسجيل السايق والمتطلبات", + "Driver Wallet": "محفظة السايق", + "Driver already has 2 trips within the specified period.": "السايق معاه رحلتين ضمن الفترة المحددة بالفعل.", + "Driver is on the way": "السايق في الطريق", + "Driver is waiting": "السايق بيستنا", + "Driver is waiting at pickup.": "السايق بيستنا في نقطة الالتقاط.", + "Driver joined the channel": "السايق انضم للقناة", + "Driver left the channel": "السايق خرج من القناة", + "Driver phone": "موبايل السايق", + "Driver's Personal Information": "المعلومات الشخصية للسايق", + "Drivers": "السايقين", + "Drivers License Class": "فئة رخصة القيادة", + "Drivers License Class:": "فئة رخصة القيادة:", + "Drivers received orders": "السايقين استلموا طلبات", + "Driving Behavior": "سلوك القيادة", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "بسبب الإلغاءات الكتير (3 مرات)، تم تعليق استلام الطلبات لمدة 4 ساعات.", + "Duration": "المدة", + "Duration To Passenger is": "المدة لحد ما الراكب يوصل هي", + "Duration is": "المدة هي", + "Duration of Trip is": "مدة الرحلة هي", + "Duration of the Ride is": "مدة الرحلة هي", + "E-Cash payment gateway": "بوابة دفع E-Cash", + "E-mail validé.\\\\": "تم التحقق من البريد الإلكتروني.\\\\", + "E-mail validé.\\\\\\\\": "تم التحقق من البريد الإلكتروني.\\\\\\\\", + "EGP": "جنيه مصري", + "Earnings": "الأرباح", + "Earnings & Distance": "الأرباح والمسافة", + "Earnings Summary": "ملخص الأرباح", + "Edit": "تعديل", + "Edit Profile": "تعديل الملف الشخصي", + "Edit Your data": "عدّل بياناتك", + "Education": "التعليم", + "Egypt": "مصر", + "Egypt Post": "البريد المصري", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'جنيه مصري", + "Egyptian Arab Land Bank": "البنك العقاري المصري العربي", + "Egyptian Gulf Bank": "البنك المصري الخليجي", + "Electric": "كهربائي", + "Email": "البريد الإلكتروني", + "Email Us": "راسلنا", + "Email Wrong": "البريد الإلكتروني غلط", + "Email is": "البريد الإلكتروني هو", + "Email must be correct.": "البريد الإلكتروني لازم يكون صحيح.", + "Email you inserted is Wrong.": "البريد الإلكتروني اللي أدخلته غلط.", + "Emergency Contact": "جهة اتصال طوارئ", + "Emergency Number": "رقم الطوارئ", + "Emirates National Bank of Dubai": "بنك الإمارات الوطني دبي", + "Employment Type": "نوع التوظيف", + "Enable Location": "تفعيل الموقع", + "Enable Location Access": "تفعيل الوصول للموقع", + "Enable Location Permission": "تفعيل إذن الموقع", + "End": "إنهاء", + "End Ride": "أنهي الرحلة", + "End Trip": "أنهي الرحلة", + "Enjoy a safe and comfortable ride.": "استمتع برحلة آمنة ومريحة.", + "Enjoy competitive prices across all trip options, making travel accessible.": "استمتع بأسعار تنافسية عبر كل خيارات الرحلات، مما يجعل السفر في متناول إيديك.", + "Ensure the passenger is in the car.": "تأكد إن الراكب داخل العربية.", + "Enter Amount Paid": "أدخل المبلغ المدفوع", + "Enter Health Insurance Provider": "أدخل مزوّد التأمين الصحي", + "Enter Your First Name": "أدخل اسمك الأول", + "Enter a valid email": "أدخل بريد إلكتروني صحيح", + "Enter a valid year": "أدخل سنة صحيحة", + "Enter phone": "أدخل الموبايل", + "Enter phone number": "أدخل رقم الموبايل", + "Enter promo code": "أدخل كود الخصم", + "Enter promo code here": "أدخل كود الخصم هنا", + "Enter the 3-digit code": "أدخل الكود المكوّن من 3 أرقام", + "Enter the promo code and get": "أدخل كود الخصم واحصل على", + "Enter your City": "أدخل مدينتك", + "Enter your Note": "أدخل ملاحظتك", + "Enter your Password": "أدخل كلمة المرور", + "Enter your Question here": "أدخل سؤالك هنا", + "Enter your code below to apply the discount.": "أدخل كودك تحت عشان تطبق الخصم.", + "Enter your complaint here": "أدخل شكواك هنا", + "Enter your complaint here...": "أدخل شكواك هنا...", + "Enter your email": "أدخل بريدك الإلكتروني", + "Enter your email address": "أدخل عنوان بريدك الإلكتروني", + "Enter your feedback here": "أدخل ملاحظاتك هنا", + "Enter your first name": "أدخل اسمك الأول", + "Enter your last name": "أدخل اسمك الأخير", + "Enter your password": "أدخل كلمة المرور", + "Enter your phone number": "أدخل رقم موبايلك", + "Enter your promo code": "أدخل كود الخصم بتاعك", + "Enter your wallet number": "أدخل رقم محفظتك", + "Error": "حصل خطأ", + "Error connecting call": "حصل خطأ في الاتصال بالمكالمة", + "Error processing request": "حصل خطأ في معالجة الطلب", + "Error starting voice call": "حصل خطأ في بدء المكالمة الصوتية", + "Error uploading proof": "حصل خطأ في رفع الإثبات", + "Error', 'An application error occurred.": "خطأ', 'حصل خطأ في التطبيق.", + "Evening": "المساء", + "Excellent": "ممتاز", + "Exclusive offers and discounts always with the Sefer app": "عروض وخصومات حصرية دايماً مع تطبيق سفر", + "Exclusive offers and discounts always with the Siro app": "عروض وخصومات حصرية دايماً مع تطبيق سيرو", + "Exit": "خروج", + "Exit Ride?": "تخرج من الرحلة؟", + "Expiration Date": "تاريخ الانتهاء", + "Expired Driver’s License": "رخصة قيادة منتهية الصلاحية", + "Expired License": "رخصة منتهية الصلاحية", + "Expired License', 'Your driver’s license has expired.": "رخصة منتهية الصلاحية', 'رخصة قيادتك انتهت.", + "Expiry Date": "تاريخ الانتهاء", + "Expiry Date:": "تاريخ الانتهاء:", + "Export Development Bank of Egypt": "بنك التصدير والاستيراد المصري", + "Extra 200 pts when they complete 10 trips": "200 نقطة إضافية لما يكملوا 10 رحلات", + "Face Detection Result": "نتيجة كشف الوجه", + "Failed": "فشل", + "Failed to add place. Please try again later.": "فشل في إضافة المكان. من فضلك جرب تاني بعد شوية.", + "Failed to cancel ride": "فشل في إلغاء الرحلة", + "Failed to claim reward": "فشل في استلام المكافأة", + "Failed to connect to the server. Please try again.": "فشل في الاتصال بالسيرفر. من فضلك جرب تاني.", + "Failed to fetch rides. Please try again.": "فشل في جلب الرحلات. من فضلك جرب تاني.", + "Failed to finish ride. Please check internet.": "فشل في إنهاء الرحلة. من فضلك تحقق من الإنترنت.", + "Failed to initiate call session. Please try again.": "فشل في بدء جلسة المكالمة. من فضلك جرب تاني.", + "Failed to initiate payment. Please try again.": "فشل في بدء الدفع. من فضلك جرب تاني.", + "Failed to load profile data.": "فشل في تحميل بيانات الملف الشخصي.", + "Failed to process route points": "فشل في معالجة نقاط الطريق", + "Failed to save driver data": "فشل في حفظ بيانات السايق", + "Failed to send invite": "فشل في إرسال الدعوة", + "Failed to upload audio file.": "فشل في رفع ملف الصوت.", + "Faisal Islamic Bank of Egypt": "بنك فيصل الإسلامي المصري", + "Fastest Complaint Response": "أسرع رد على الشكاوى", + "Favorite Places": "الأماكن المفضلة", + "Fee is": "الرسوم هي", + "Feed Back": "ملاحظات", + "Feedback": "ملاحظات", + "Feedback data saved successfully": "تم حفظ بيانات الملاحظات بنجاح", + "Female": "أنثى", + "Find answers to common questions": "لاقي إجابات للأسئلة الشائعة", + "Finish & Submit": "إنهاء وإرسال", + "Finish Monitor": "إنهاء المراقبة", + "Finished": "منتهية", + "First Abu Dhabi Bank": "بنك أبوظبي الأول", + "First Name": "الاسم الأول", + "First Trip": "أول رحلة", + "First name": "الاسم الأول", + "Five Star Driver": "سايق خمس نجوم", + "Fixed Price": "سعر ثابت", + "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": "لرحلات سيرو والسكوتر، يتم حساب السعر ديناميكيًا. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة", + "Free Call": "مكالمة مجانية", + "Frequently Asked Questions": "الأسئلة الشائعة", + "Frequently Questions": "أسئلة متكررة", + "Fri": "الجمعة", + "From": "من", + "From :": "من :", + "From : Current Location": "من : الموقع الحالي", + "From Budget": "من الميزانية", + "From:": "من:", + "Fuel": "الوقود", + "Fuel Type": "نوع الوقود", + "Full Name": "الاسم الكامل", + "Full Name (Marital)": "الاسم الكامل (الحالة الاجتماعية)", + "FullName": "الاسم الكامل", + "GPS Required Allow !.": "مطلوب السماح بـ GPS !.", + "Gender": "الجنس", + "General": "عام", + "General Authority For Supply Commodities": "الهيئة العامة للسلع التموينية", + "Get": "احصل على", + "Get Details of Trip": "احصل على تفاصيل الرحلة", + "Get Direction": "احصل على الاتجاهات", + "Get a discount on your first Siro ride!": "احصل على خصم على رحلتك الأولى مع سيرو!", + "Get features for your country": "احصل على الميزات الخاصة ببلدك", + "Get it Now!": "احصل عليه دلوقتي!", + "Get to your destination quickly and easily.": "وصل لوجهتك بسرعة وسهولة.", + "Getting Started": "البدء", + "Gift Already Claimed": "تم استلام الهدية بالفعل", + "Go": "اذهب", + "Go Now": "اذهب دلوقتي", + "Go Online": "اذهب أونلاين", + "Go To Favorite Places": "اذهب للأماكن المفضلة", + "Go to next step": "اذهب للخطوة الجاية", + "Go to next step\\nscan Car License.": "اذهب للخطوة الجاية\\nامسح رخصة العربية.", + "Go to passenger Location": "اذهب لموقع الراكب", + "Go to passenger Location now": "اذهب لموقع الراكب دلوقتي", + "Go to passenger:": "اذهب للراكب:", + "Go to this Target": "اذهب للهدف ده", + "Go to this location": "اذهب للموقع ده", + "Goal Achieved!": "تم تحقيق الهدف!", + "Gold badge": "شارة ذهبية", + "Good": "جيد", + "Google Map App": "تطبيق خرائط جوجل", + "H and": "و", + "HSBC Bank Egypt S.A.E": "بنك إتش إس بي سي مصر", + "Hard Brake": "فرامل قوية", + "Hard Brakes": "الفرامل القوية", + "Have a promo code?": "معاك كود خصم؟", + "Head": "الرأس", + "Heading your way now. Please be ready.": "قاعد يجيك دلوقتي. من فضلك استعد.", + "Health Insurance": "التأمين الصحي", + "Heatmap": "خريطة الحرارة", + "Height:": "الطول:", + "Hello": "أهلاً", + "Hello this is Captain": "أهلاً، ده الكابتن", + "Hello this is Driver": "أهلاً، ده السايق", + "Help & Support": "المساعدة والدعم", + "Help Details": "تفاصيل المساعدة", + "Helping Center": "مركز المساعدة", + "Helping Page": "صفحة المساعدة", + "Here recorded trips audio": "هنا صوت الرحلات المسجلة", + "Hi": "أهلاً", + "Hi ,I Arrive your site": "أهلاً، وصلت لموقعك", + "Hi ,I will go now": "أهلاً، هروح دلوقتي", + "Hi! This is": "أهلاً! ده", + "Hi, I will go now": "أهلاً، هروح دلوقتي", + "Hi, Where to": "أهلاً، فين؟", + "High School Diploma": "شهادة الثانوية العامة", + "High priority": "أولوية عالية", + "History": "السجل", + "History Page": "صفحة السجل", + "History of Trip": "سجل الرحلات", + "Home": "الرئيسية", + "Home Page": "الصفحة الرئيسية", + "Home Saved": "تم حفظ البيت", + "Hours": "ساعات", + "Housing And Development Bank": "بنك الإسكان والتعمير", + "How It Works": "إزاي شغال", + "How can I pay for my ride?": "إزاي أقدر أدفع لرحلتي؟", + "How can I register as a driver?": "إزاي أقدر أسجل نفسي كسايق؟", + "How do I communicate with the other party (passenger/driver)?": "إزاي أقدر أتواصل مع الطرف التاني (الراكب/السايق)؟", + "How do I request a ride?": "إزاي أطلب رحلة؟", + "How many hours would you like to wait?": "كام ساعة عايز تنتظر؟", + "How much Passenger pay?": "الراكب هيدفع كام؟", + "How much do you want to earn today?": "عايز تكسب كام النهاردة؟", + "How much longer will you be?": "هتتأخر كام؟", + "How to use App": "إزاي تستخدم التطبيق", + "How to use Siro": "إزاي تستخدم سيرو", + "How was the passenger?": "إزاي كان الراكب؟", + "How was your trip with": "إزاي كانت رحلتك مع", + "How would you like to receive your reward?": "إزاي عايز تستلم مكافأتك؟", + "How would you rate our app?": "إزاي بتقيّم تطبيقنا؟", + "Hybrid": "هجين", + "I Agree": "أوافق", + "I Arrive": "وصلت", + "I Arrive your site": "وصلت لموقعك", + "I Have Arrived": "أنا وصلت", + "I added the wrong pick-up/drop-off location": "أضفت موقع الالتقاط/التنزيل غلط", + "I am currently located at": "أنا موجود دلوقتي في", + "I am using": "أنا بستخدم", + "I arrive you": "وصلت ليك", + "I cant register in your app in face detection": "مقدرش أسجل في تطبيقكم عن طريق كشف الوجه", + "I cant register in your app in face detection ": "مقدرش أسجل في تطبيقكم عن طريق كشف الوجه", + "I want to order for myself": "عايز أطلب لنفسي", + "I want to order for someone else": "عايز أطلب لشخص تاني", + "I was just trying the application": "كنت بس أجرب التطبيق", + "I will go now": "هرح دلوقتي", + "I will slow down": "هخليها هادية", + "I've arrived.": "وصلت.", + "ID Documents Back": "وثائق الهوية (الخلفي)", + "ID Documents Front": "وثائق الهوية (الأمامي)", + "ID Mismatch": "عدم تطابق الهوية", + "If you in Car Now. Press Start The Ride": "إذا كنت في العربية دلوقتي، اضغط ابدأ الرحلة", + "If you need any help or have question this is right site to do that and your welcome": "إذا احتجت أي مساعدة أو عندك سؤال، ده المكان الصح ده، وأهلاً بيك", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "إذا احتجت أي مساعدة أو عندك أسئلة، ده المكان الصح ده. أهلاً بيك!", + "If you need assistance, contact us": "إذا احتجت مساعدة، اتصل بينا", + "If you need to reach me, please contact the driver directly at": "إذا احتجت توصل لي، من فضلك اتصل بالسايق مباشرة على", + "If you want add stop click here": "إذا عايز تضيف محطة، اضغط هنا", + "If you want order to another person": "إذا عايز تطلب لشخص تاني", + "If you want to make Google Map App run directly when you apply order": "إذا عايز تطبيق خرائط جوجل يشتغل مباشرة لما تقدم الطلب", + "If your car license has the new design, upload the front side with two images.": "إذا رخصة عربيتك عليها التصميم الجديد، ارفع الوجه الأمامي بصورة مزدوجة.", + "Image Upload Failed": "فشل رفع الصورة", + "Image detecting result is": "نتيجة كشف الصورة هي", + "Image detecting result is ": "نتيجة كشف الصورة هي", + "Improve app performance": "تحسين أداء التطبيق", + "In-App VOIP Calls": "مكالمات VOIP داخل التطبيق", + "Including Tax": "شامل الضريبة", + "Incoming Call...": "مكالمة واردة...", + "Incorrect sms code": "كود SMS غلط", + "Increase Fare": "زيادة الأجرة", + "Increase Fee": "زيادة الرسوم", + "Increase Your Trip Fee (Optional)": "زيادة رسوم رحلتك (اختياري)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "زيادة الأجرة ممكن تجذب سايقين أكتر. عايز ترفع السعر؟", + "Industrial Development Bank": "بنك التنمية الصناعية", + "Ineligible for Offer": "مش مؤهل للعرض", + "Info": "معلومات", + "Insert": "إدخال", + "Insert Account Bank": "أدخل الحساب البنكي", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "أدخل تفاصيل كارت البنك عشان تستلم فلوس الفيزا أسبوعيًا", + "Insert Emergency Number": "أدخل رقم الطوارئ", + "Insert Emergincy Number": "أدخل رقم الطوارئ", + "Insert Payment Details": "أدخل تفاصيل الدفع", + "Insert SOS Phone": "أدخل رقم طوارئ", + "Insert Wallet phone number": "أدخل رقم موبايل المحفظة", + "Insert Your Promo Code": "أدخل كود الخصم بتاعك", + "Insert card number": "أدخل رقم الكارت", + "Insert mobile wallet number": "أدخل رقم محفظة الموبايل", + "Insert your mobile wallet details to receive your money weekly": "أدخل تفاصيل محفظة الموبايل بتاعتك عشان تستلم فلوسك أسبوعيًا", + "Inspection Date": "تاريخ الفحص", + "InspectionResult": "نتيجة الفحص", + "Install our app:": "ثبّت تطبيقنا:", + "Insufficient Balance": "الرصيد مش كافي", + "Invalid MPIN": "MPIN مش صحيح", + "Invalid OTP": "OTP مش صحيح", + "Invalid customer MSISDN": "رقم موبايل العميل مش صحيح", + "Invitation Used": "تم استخدام الدعوة", + "Invitations Sent": "تم إرسال الدعوات", + "Invite": "دعوة", + "Invite Driver": "دعوة سايق", + "Invite Rider": "دعوة راكب", + "Invite a Driver": "ادعُ سايق", + "Invite another driver and both get a gift after he completes 100 trips!": "ادعُ سايق تاني واتنينكم هتاخدوا هدية بعد ما يكمل 100 رحلة!", + "Invite code already used": "كود الدعوة اتستخدم بالفعل", + "Invite sent successfully": "تم إرسال الدعوة بنجاح", + "Is device compatible": "هل الجهاز متوافق", + "Is the Passenger in your Car ?": "الراكب في عربيتك؟", + "Is the Passenger in your Car?": "الراكب في عربيتك؟", + "Issue Date": "تاريخ الإصدار", + "IssueDate": "تاريخ الإصدار", + "JOD": "دينار أردني", + "Join": "انضم", + "Join Siro as a driver using my referral code!": "انضم لسيرو كسايق باستخدام كود الإحالة بتاعي!", + "Jordan": "الأردن", + "Just now": "دلوقتي", + "KM": "كم", + "Keep it up!": "أحسنت! كمل كده!", + "Kuwait": "الكويت", + "L.E": "جنيه مصري", + "L.S": "ليرة سورية", + "LE": "جنيه مصري", + "Lady": "سائقة", + "Lady Captain for girls": "كابتن نسائي للبنات", + "Lady Captains Available": "كباتن نسائيين متاحين", + "Lady 👩": "سائقة 👩", + "Lady: For girl drivers.": "نسائي: للسايقات الإناث.", + "Language": "اللغة", + "Language Options": "خيارات اللغة", + "Last 10 Trips": "آخر 10 رحلات", + "Last Name": "اسم العائلة", + "Last name": "اسم العائلة", + "Last updated:": "آخر تحديث:", + "Later": "لاحقًا", + "Latest Recent Trip": "أحدث رحلة", + "Leaderboard": "لوحة المتصدرين", + "Learn more about our app and mission": "اعرف أكتر عن تطبيقنا ورسالتنا", + "Leave": "مغادرة", + "Leave a detailed comment (Optional)": "اترك تعليق مفصل (اختياري)", + "Let the passenger scan this code to sign up": "خلي الراكب يمسح الكود ده عشان يسجل", + "Lets check Car license": "خلي بالنا نفحص رخصة العربية", + "Lets check Car license ": "خلي بالنا نفحص رخصة العربية", + "Lets check License Back Face": "خلي بالنا نفحص الوجه الخلفي للرخصة", + "License Categories": "فئات الرخصة", + "License Expiry Date": "تاريخ انتهاء الرخصة", + "License Type": "نوع الرخصة", + "Link a phone number for transfers": "ربط رقم موبايل للتحويلات", + "Location Access Required": "الوصول للموقع مطلوب", + "Location Link": "رابط الموقع", + "Location Tracking Active": "تتبع الموقع نشط", + "Log Off": "تسجيل الخروج", + "Log Out Page": "صفحة تسجيل الخروج", + "Login": "تسجيل الدخول", + "Login Captin": "تسجيل دخول الكابتن", + "Login Driver": "تسجيل دخول السايق", + "Login failed": "فشل تسجيل الدخول", + "Logout": "تسجيل الخروج", + "Lowest Price Achieved": "تم تحقيق أقل سعر", + "MIDBANK": "ميد بنك", + "MTN Cash": "MTN Cash", + "Made :": "الصناعة :", + "Maintain 5.0 rating": "حافظ على تقييم 5.0", + "Maintenance Center": "مركز الصيانة", + "Maintenance Offer": "عرض الصيانة", + "Make": "الماركة", + "Make a U-turn": "اعمل دوران", + "Make is": "الماركة هي", + "Make purchases.": "عمل مشتريات.", + "Male": "ذكر", + "Map Dark Mode": "الوضع الداكن للخريطة", + "Map Passenger": "خريطة الراكب", + "Marital Status": "الحالة الاجتماعية", + "Mashreq Bank": "بنك المشرق", + "Mashwari": "مشاري", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "مشاري: للرحلات المرنة اللي بيختار فيها الراكب العربية والسايق بترتيب مسبق.", + "Master\\'s Degree": "ماجستير", + "Max Speed": "السرعة القصوى", + "Maximum Level Reached!": "تم الوصول لأعلى مستوى!", + "Maximum fare": "الأجرة القصوى", + "Message": "رسالة", + "Meter Fare": "أجرة العداد", + "Microphone permission is required for voice calls": "مطلوب إذن الميكروفون للمكالمات الصوتية", + "Minimum fare": "الأجرة الدنيا", + "Minute": "دقيقة", + "Minutes": "دقايق", + "Mishwar Vip": "مشوار VIP", + "Missing Documents": "مستندات ناقصة", + "Mobile Wallets": "محافظ الموبايل", + "Model": "الموديل", + "Model is": "الموديل هو", + "Mon": "الاثنين", + "Monthly Report": "التقرير الشهري", + "Monthly Streak": "سلسلة شهرية", + "More": "المزيد", + "Morning": "الصباح", + "Morning Promo": "عرض الصباح", + "Morning Promo Rides": "رحلات عرض الصباح", + "Most Secure Methods": "أكثر الطرق أمانًا", + "Motorcycle": "موتوسيكل", + "Move the map to adjust the pin": "حرّك الخريطة عشان تعدّل الدبوس", + "Mute": "كتم الصوت", + "My Balance": "رصيدي", + "My Card": "كارتي", + "My Cared": "كارتي", + "My Cars": "عربياتي", + "My Location": "مواقعي", + "My Profile": "ملفي الشخصي", + "My Schedule": "جدولي", + "My Wallet": "محفظتي", + "My current location is:": "مواقعي الحالي هو:", + "My location is correct. You can search for me using the navigation app": "مواقعي صحيح. تقدر تبحث عليا باستخدام تطبيق الملاحة", + "MyLocation": "مواقعي", + "N/A": "غير متاح", + "NEXT >>": "التالي >>", + "NEXT STEP": "الخطوة الجاية", + "Name": "الاسم", + "Name (Arabic)": "الاسم (بالعربي)", + "Name (English)": "الاسم (بالإنجليزي)", + "Name :": "الاسم :", + "Name in arabic": "الاسم بالعربي", + "Name must be at least 2 characters": "الاسم لازم يكون مكون من حرفين على الأقل", + "Name of the Passenger is": "اسم الراكب هو", + "Nasser Social Bank": "بنك ناصر الاجتماعي", + "National Bank of Egypt": "البنك الأهلي المصري", + "National Bank of Greece": "البنك الوطني اليوناني", + "National Bank of Kuwait – Egypt": "البنك الوطني الكويتي – مصر", + "National ID": "الرقم القومي", + "National ID (Back)": "الرقم القومي (الخلفي)", + "National ID (Front)": "الرقم القومي (الأمامي)", + "National ID Number": "رقم الرقم القومي", + "National ID must be 11 digits": "الرقم القومي لازم يكون مكون من 11 رقم", + "National Number": "الرقم القومي", + "NationalID": "الرقم القومي", + "Navigation": "الملاحة", + "Nearest Car": "أقرب عربيّة", + "Nearest Car for you about": "أقرب عربيّة ليك بعد حوالي", + "Nearest Car: ~": "أقرب عربيّة: ~", + "Need assistance? Contact us": "عايز مساعدة؟ اتصل بينا", + "Need help? Contact Us": "عايز مساعدة؟ اتصل بينا", + "Needs Improvement": "بحاجة لتحسين", + "Net Profit": "صافي الربح", + "Network error": "خطأ في الشبكة", + "Next": "التالي", + "Next Level:": "المستوى الجاي:", + "Next as Cash !": "الجاي كاش!", + "Night": "الليل", + "No": "لا", + "No ,still Waiting.": "لا، لسه بانتظر.", + "No Captain Accepted Your Order": "مفيش كابتن قبل طلبك", + "No Car in your site. Sorry!": "مفيش عربيّة في موقعك. آسف!", + "No Car or Driver Found in your area.": "مفيش عربيّة أو سايق في منطقتك.", + "No I want": "لا، أنا عايز", + "No Promo for today .": "مفيش عروض ترويجية النهاردة.", + "No Response yet.": "مفيش رد لسه.", + "No Rides Available": "مفيش رحلات متاحة", + "No Rides Yet": "مفيش رحلات لسه", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "مفيش شريحة SIM، مفيش مشكلة! اتصل بسايقك مباشرة من خلال تطبيقنا. بنستخدم تقنية متقدمة عشان نضمن خصوصيتك.", + "No accepted orders? Try raising your trip fee to attract riders.": "مفيش طلبات مقبولة؟ جرّب ترفع رسوم رحلتك عشان تجذب ركاب.", + "No audio files found for this ride.": "مفيش ملفات صوتية للرحلة دي.", + "No audio files found.": "مفيش ملفات صوتية.", + "No audio files recorded.": "مفيش ملفات صوتية مسجلة.", + "No cars are available at the moment. Please try again later.": "مفيش عربيات متاحة دلوقتي. من فضلك جرب تاني بعد شوية.", + "No cars nearby": "مفيش عربيات قريبة", + "No contact selected": "مفيش جهة اتصال مختارة", + "No contacts found": "مفيش جهات اتصال", + "No contacts with phone numbers found": "مفيش جهات اتصال بأرقام موبايلات", + "No contacts with phone numbers were found on your device.": "مفيش جهات اتصال بأرقام موبايلات على جهازك.", + "No data yet": "مفيش بيانات لسه", + "No data yet!": "مفيش بيانات لسه!", + "No driver accepted my request": "مفيش سايق قبل طلبي", + "No drivers accepted your request yet": "مفيش سايقين قبلوا طلبك لسه", + "No drivers available": "مفيش سايقين متاحين", + "No drivers available at the moment. Please try again later.": "مفيش سايقين متاحين دلوقتي. من فضلك جرب تاني بعد شوية.", + "No face detected": "مفيش وجه اتكتشف", + "No favorite places yet!": "مفيش أماكن مفضلة لسه!", + "No i want": "لا، أنا عايز", + "No image selected yet": "مفيش صورة مختارة لسه", + "No internet connection": "مفيش اتصال بالإنترنت", + "No invitation found": "مفيش دعوة", + "No invitation found yet!": "مفيش دعوة لسه!", + "No one accepted? Try increasing the fare.": "مفيش حد قبل؟ جرّب ترفع الأجرة.", + "No orders available": "مفيش طلبات متاحة", + "No passenger found for the given phone number": "مفيش راكب برقم الموبايل ده", + "No phone number": "مفيش رقم موبايل", + "No promos available right now.": "مفيش عروض ترويجية متاحة دلوقتي.", + "No questions asked yet.": "مفيش أسئلة لسه.", + "No ride found yet": "مفيش رحلة لسه", + "No ride yet": "مفيش رحلة لسه", + "No rides available for your vehicle type.": "مفيش رحلات متاحة لنوع عربيتك.", + "No rides available right now.": "مفيش رحلات متاحة دلوقتي.", + "No rides found to complain about.": "مفيش رحلات عشان تقدم شكوى عنها.", + "No route points found": "مفيش نقاط طريق", + "No statistics yet": "مفيش إحصائيات لسه", + "No transactions this week": "مفيش معاملات الأسبوع ده", + "No transactions yet": "مفيش معاملات لسه", + "No trip data available": "مفيش بيانات رحلة متاحة", + "No trip history found": "مفيش سجل رحلات", + "No trip yet found": "مفيش رحلة لسه", + "No user found for the given phone number": "مفيش مستخدم برقم الموبايل ده", + "No wallet record found": "مفيش سجل محفظة", + "No, I want to cancel this trip": "لا، أنا عايز ألغي الرحلة دي", + "No, still Waiting.": "لا، لسه بانتظر.", + "No, thanks": "لا، شكراً", + "No,I want": "لا، أنا عايز", + "Non Egypt": "غير مصر", + "Not Connected": "مش متصل", + "Not set": "مش محدد", + "Not updated": "مش محدّث", + "Notifications": "الإشعارات", + "Now select start pick": "دلوقتي اختر نقطة البداية", + "OK": "تمام", + "OTP is incorrect or expired": "OTP غلط أو منتهي الصلاحية", + "Occupation": "المهنة", + "Offline": "غير متصل", + "Ok": "تمام", + "Ok , See you Tomorrow": "تمام، أشوفك بكرة", + "Ok I will go now.": "تمام، هروح دلوقتي.", + "Old and affordable, perfect for budget rides.": "قديمة ومناسبة، مثالية للرحلات ذات الميزانية المحدودة.", + "Online": "متصل", + "Online Duration": "مدة الاتصال", + "Only Syrian phone numbers are allowed": "مسموح بس بأرقام الموبايلات السورية", + "Open App": "افتح التطبيق", + "Open Settings": "افتح الإعدادات", + "Open app and go to passenger": "افتح التطبيق واذهب للراكب", + "Open in Maps": "افتح في الخرائط", + "Open the app to stay updated and ready for upcoming tasks.": "افتح التطبيق عشان تفضل محدّث وجاهز للمهام الجاية.", + "Opted out": "تم إلغاء الاشتراك", + "Or": "أو", + "Or pay with Cash instead": "أو ادفع كاش بدل كده", + "Order": "طلب", + "Order Accepted": "تم قبول الطلب", + "Order Accepted by another driver": "تم قبول الطلب من سايق تاني", + "Order Applied": "تم تطبيق الطلب", + "Order Cancelled": "تم إلغاء الطلب", + "Order Cancelled by Passenger": "تم إلغاء الطلب من الراكب", + "Order Details Siro": "تفاصيل طلب سيرو", + "Order History": "سجل الطلبات", + "Order ID": "رقم الطلب", + "Order Request Page": "صفحة طلب الرحلة", + "Order Under Review": "الطلب قيد المراجعة", + "Order for myself": "طلب لنفسي", + "Order for someone else": "طلب لشخص تاني", + "OrderId": "رقم الطلب", + "OrderVIP": "طلب VIP", + "Orders Page": "صفحة الطلبات", + "Origin": "نقطة الانطلاق", + "Original Fare": "الأجرة الأصلية", + "Other": "أخرى", + "Our dedicated customer service team ensures swift resolution of any issues.": "فريق خدمة العملاء المخصص لنا بيضمن حل أي مشكلات بسرعة.", + "Overall Behavior Score": "درجة السلوك الإجمالية", + "Overlay": "العرض العلوي", + "Owner Name": "اسم المالك", + "PTS": "نقاط", + "Passenger": "الراكب", + "Passenger & Status": "الراكب والحالة", + "Passenger Cancel Trip": "الراكب يلغي الرحلة", + "Passenger Information": "معلومات الراكب", + "Passenger Invitations": "دعوات الركاب", + "Passenger Name": "اسم الراكب", + "Passenger Name is": "اسم الراكب هو", + "Passenger Referral": "إحالة الراكب", + "Passenger cancel trip": "الراكب يلغي الرحلة", + "Passenger cancelled order": "الراكب ألغى الطلب", + "Passenger cancelled the ride.": "الراكب ألغى الرحلة.", + "Passenger come to you": "الراكب جاي ليك", + "Passenger name :": "اسم الراكب :", + "Passenger name:": "اسم الراكب:", + "Passenger paid amount": "المبلغ اللي دفعه الراكب", + "Passengers": "الركاب", + "Password": "كلمة المرور", + "Password must be at least 6 characters": "كلمة المرور لازم تكون مكونة من 6 أحرف على الأقل", + "Password must be at least 6 characters.": "كلمة المرور لازم تكون مكونة من 6 أحرف على الأقل.", + "Password must br at least 6 character.": "كلمة المرور لازم تكون مكونة من 6 أحرف على الأقل.", + "Paste WhatsApp location link": "الصق رابط موقع الواتساب", + "Paste location link here": "الصق رابط الموقع هنا", + "Paste the code here": "الصق الكود هنا", + "Pay": "ادفع", + "Pay by MTN Wallet": "الدفع عبر محفظة MTN", + "Pay by Sham Cash": "الدفع عبر شام كاش", + "Pay by Syriatel Wallet": "الدفع عبر محفظة سيريتل", + "Pay directly to the captain": "ادفع مباشرة للكابتن", + "Pay from my budget": "الدفع من ميزانيتي", + "Pay remaining to Wallet?": "تدفع المتبقي للمحفظة؟", + "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 (الاسم المستعار: siroapp)", + "Pay with Credit Card": "الدفع بكارت ائتمان", + "Pay with Debit Card": "الدفع بكارت خصم", + "Pay with Wallet": "الدفع عبر المحفظة", + "Pay with Your": "الدفع باستخدام", + "Pay with Your PayPal": "الدفع باستخدام باي بال بتاعك", + "Payment Failed": "فشل الدفع", + "Payment History": "سجل الدفع", + "Payment Method": "طريقة الدفع", + "Payment Method:": "طريقة الدفع:", + "Payment Options": "خيارات الدفع", + "Payment Successful": "تم الدفع بنجاح", + "Payment Successful!": "تم الدفع بنجاح!", + "Payment details added successfully": "تمت إضافة تفاصيل الدفع بنجاح", + "Payments": "المدفوعات", + "Percent Canceled": "نسبة الإلغاء", + "Percent Completed": "نسبة الإنجاز", + "Percent Rejected": "نسبة الرفض", + "Perfect for adventure seekers who want to experience something new and exciting": "مثالية لمحبي المغامرات اللي عايزين يجربوا حاجة جديدة ومثيرة", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالية للركاب الباحثين عن أحدث موديلات العربيات مع حرية اختيار أي طريق يحبوه", + "Permission denied": "تم رفض الإذن", + "Personal Information": "المعلومات الشخصية", + "Petrol": "بنزين", + "Phone": "الموبايل", + "Phone Check": "فحص الموبايل", + "Phone Number": "رقم الموبايل", + "Phone Number Check": "فحص رقم الموبايل", + "Phone Number is": "رقم الموبايل هو", + "Phone Number is not Egypt phone": "رقم الموبايل مش رقم موبايل مصري", + "Phone Number is not Egypt phone ": "رقم الموبايل مش رقم موبايل مصري", + "Phone Number wrong": "رقم الموبايل غلط", + "Phone Wallet Saved Successfully": "تم حفظ محفظة الموبايل بنجاح", + "Phone number is already verified": "رقم الموبايل تم التحقق منه بالفعل", + "Phone number is verified before": "رقم الموبايل تم التحقق منه سابقًا", + "Phone number must be exactly 11 digits long": "رقم الموبايل لازم يكون مكون من 11 رقم بالضبط", + "Phone number must be valid.": "رقم الموبايل لازم يكون صحيح.", + "Phone number seems too short": "يبدو إن رقم الموبايل قصير جدًا", + "Pick from map": "اختر من الخريطة", + "Pick from map destination": "اختر الوجهة من الخريطة", + "Pick or Tap to confirm": "اختر أو اضغط للتأكيد", + "Pick your destination from Map": "اختر وجهتك من الخريطة", + "Pick your ride location on the map - Tap to confirm": "اختر موقع رحلتك على الخريطة - اضغط للتأكيد", + "Pickup Location": "موقع الالتقاط", + "Place added successfully! Thanks for your contribution.": "تمت إضافة المكان بنجاح! شكراً لمساهمتك.", + "Plate": "اللوحة", + "Plate Number": "رقم اللوحة", + "Please Try anther time": "من فضلك جرب تاني", + "Please Wait If passenger want To Cancel!": "من فضلك انتظر إذا الراكب عايز يلغي!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "من فضلك اسمح بالوصول للموقع \"طوال الوقت\" عشان تستلم طلبات الرحلات حتى لما التطبيق يكون في الخلفية.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "من فضلك اسمح بالوصول للموقع طوال الوقت عشان تستلم طلبات الرحلات وتضمن خدمة سلسة.", + "Please check back later for available rides.": "من فضلك راجع تاني بعد شوية عشان تشوف رحلات متاحة.", + "Please complete more distance before ending.": "من فضلك اكمل مسافة أكتر قبل ما تنهي.", + "Please describe your issue before submitting.": "من فضلك وصف مشكلتك قبل ما ترسل.", + "Please enter": "من فضلك ادخل", + "Please enter Your Email.": "من فضلك ادخل بريدك الإلكتروني.", + "Please enter Your Password.": "من فضلك ادخل كلمة المرور.", + "Please enter a correct phone": "من فضلك ادخل موبايل صحيح", + "Please enter a description of the issue.": "من فضلك ادخل وصف للمشكلة.", + "Please enter a health insurance status.": "من فضلك ادخل حالة التأمين الصحي.", + "Please enter a phone number": "من فضلك ادخل رقم موبايل", + "Please enter a valid 16-digit card number": "من فضلك ادخل رقم كارت صحيح مكون من 16 رقم", + "Please enter a valid card 16-digit number.": "من فضلك ادخل رقم كارت صحيح مكون من 16 رقم.", + "Please enter a valid email": "من فضلك ادخل بريد إلكتروني صحيح", + "Please enter a valid email.": "من فضلك ادخل بريد إلكتروني صحيح.", + "Please enter a valid insurance provider": "من فضلك ادخل مزوّد تأمين صحيح", + "Please enter a valid phone number.": "من فضلك ادخل رقم موبايل صحيح.", + "Please enter a valid promo code": "من فضلك ادخل كود خصم صحيح", + "Please enter phone number": "من فضلك ادخل رقم الموبايل", + "Please enter the CVV code": "من فضلك ادخل كود CVV", + "Please enter the cardholder name": "من فضلك ادخل اسم حامل الكارت", + "Please enter the complete 6-digit code.": "من فضلك ادخل الكود الكامل المكون من 6 أرقام.", + "Please enter the emergency number.": "من فضلك ادخل رقم الطوارئ.", + "Please enter the expiry date": "من فضلك ادخل تاريخ الانتهاء", + "Please enter the number without the leading 0": "من فضلك ادخل الرقم من غير الصفر الأولي", + "Please enter your City.": "من فضلك ادخل مدينتك.", + "Please enter your Email.": "من فضلك ادخل بريدك الإلكتروني.", + "Please enter your Password.": "من فضلك ادخل كلمة المرور.", + "Please enter your Question.": "من فضلك ادخل سؤالك.", + "Please enter your complaint.": "من فضلك ادخل شكواك.", + "Please enter your feedback.": "من فضلك ادخل ملاحظاتك.", + "Please enter your first name.": "من فضلك ادخل اسمك الأول.", + "Please enter your last name.": "من فضلك ادخل اسمك الأخير.", + "Please enter your phone number": "من فضلك ادخل رقم موبايلك", + "Please enter your phone number.": "من فضلك ادخل رقم موبايلك.", + "Please enter your question": "من فضلك ادخل سؤالك", + "Please go closer to the passenger location (less than 150m)": "من فضلك اقرب أكتر لموقع الراكب (أقل من 150 متر)", + "Please go to Car Driver": "من فضلك اذهب لسايق العربية", + "Please go to Car now": "من فضلك اذهب للعربية دلوقتي", + "Please go to the pickup location exactly": "من فضلك اذهب لموقع الالتقاط بالظبط", + "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 paste the transfer message": "من فضلك الصق رسالة التحويل", + "Please provide details about any long-term diseases.": "من فضلك قدّم تفاصيل عن أي أمراض طويلة الأمد.", + "Please put your licence in these border": "من فضلك حط رخصتك في الإطار ده", + "Please select a contact": "من فضلك اختر جهة اتصال", + "Please select a date": "من فضلك اختر تاريخ", + "Please select a rating before submitting.": "من فضلك اختر تقييم قبل ما ترسل.", + "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": "من فضلك حول المبلغ للاسم المستعار: siroapp", + "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.": "من فضلك ارفع كل المستندات المطلوبة الأربعة.", + "Please upload this license.": "من فضلك ارفع الرخصة دي.", + "Please verify your identity": "من فضلك تحقق من هويتك", + "Please wait": "من فضلك انتظر", + "Please wait for all documents to finish uploading before registering.": "من فضلك انتظر لحد ما كل المستندات تخلص رفعها قبل ما تسجل.", + "Please wait for the passenger to enter the car before starting the trip.": "من فضلك انتظر لحد ما الراكب يدخل العربية قبل ما تبدأ الرحلة.", + "Please wait while we prepare your trip.": "من فضلك انتظر واحنا بنحضر رحلتك.", + "Point": "نقطة", + "Points": "نقاط", + "Policy restriction on calls": "قيود السياسة على المكالمات", + "Potential security risks detected. The application may not function correctly.": "اتكتشف مخاطر أمنية محتملة. التطبيق ممكن مايشتغلش بشكل صحيح.", + "Potential security risks detected. The application may not function correctly.": "اتكتشف مخاطر أمنية محتملة. التطبيق ممكن مايشتغلش بشكل صحيح.", + "Potential security risks detected. The application will close in @seconds seconds.": "اتكتشف مخاطر أمنية محتملة. التطبيق هيقفل خلال @seconds ثانية.", + "Pre-booking": "حجز مسبق", + "Press here": "اضغط هنا", + "Press to hear": "اضغط عشان تسمع", + "Price": "السعر", + "Price is": "السعر هو", + "Price of trip": "سعر الرحلة", + "Price:": "السعر:", + "Priority medium": "أولوية متوسطة", + "Priority support": "دعم ذو أولوية", + "Privacy Notice": "إشعار الخصوصية", + "Privacy Policy": "سياسة الخصوصية", + "Profile": "الملف الشخصي", + "Profile Photo Required": "صورة الملف الشخصي مطلوبة", + "Profile Picture": "صورة الملف الشخصي", + "Progress:": "التقدم:", + "Promo": "عرض ترويجي", + "Promo Already Used": "تم استخدام العرض الترويجي بالفعل", + "Promo Code": "كود الخصم", + "Promo Code Accepted": "تم قبول كود الخصم", + "Promo Copied!": "تم نسخ العرض!", + "Promo End !": "انتهى العرض!", + "Promo Ended": "انتهى العرض", + "Promo code copied to clipboard!": "تم نسخ كود الخصم للحافظة!", + "Promos": "العروض", + "Promos For Today": "العروض ليوم النهاردة", + "Promos For today": "العروض ليوم النهاردة", + "Promotions": "العروض الترويجية", + "Pyament Cancelled .": "تم إلغاء الدفع.", + "Qatar": "قطر", + "Qatar National Bank Alahli": "البنك الأهلي القطري", + "Question": "سؤال", + "Quick Actions": "إجراءات سريعة", + "Quick Invite": "دعوة سريعة", + "Quick Invite Link:": "رابط الدعوة السريعة:", + "Quick Messages": "رسائل سريعة", + "Quiet & Eco-Friendly": "هادئ وصديق للبيئة", + "Raih Gai: For same-day return trips longer than 50km.": "رايح جاي: للرحلات ذهابًا وإيابًا في نفس اليوم وأطول من 50 كم.", + "Rate": "تقييم", + "Rate Captain": "قيّم الكابتن", + "Rate Driver": "قيّم السايق", + "Rate Our App": "قيّم تطبيقنا", + "Rate Passenger": "قيّم الراكب", + "Rating": "التقييم", + "Rating is": "التقييم هو", + "Rating submitted successfully": "تم إرسال التقييم بنجاح", + "Rayeh Gai": "رايح جاي", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة رحلات ذهابًا وإيابًا للسفر المريح بين المدن، سهلة وموثوقة.", + "Reason": "السبب", + "Recent Places": "الأماكن الأخيرة", + "Recent Transactions": "المعاملات الأخيرة", + "Recharge Balance": "شحن الرصيد", + "Recharge Balance Packages": "باقات شحن الرصيد", + "Recharge my Account": "شحن حسابي", + "Record": "تسجيل", + "Record saved": "تم حفظ التسجيل", + "Recorded Trips (Voice & AI Analysis)": "الرحلات المسجلة (الصوت وتحليل الذكاء الاصطناعي)", + "Recorded Trips for Safety": "الرحلات المسجلة لأغراض السلامة", + "Refer 5 drivers": "أحيل 5 سايقين", + "Referral Center": "مركز الإحالات", + "Referrals": "الإحالات", + "Refresh": "تحديث", + "Refresh Market": "تحديث السوق", + "Refresh Status": "تحديث الحالة", + "Refuse Order": "رفض الطلب", + "Refused": "مرفوض", + "Register": "تسجيل", + "Register Captin": "تسجيل الكابتن", + "Register Driver": "تسجيل السايق", + "Register as Driver": "التسجيل كسايق", + "Registration": "التسجيل", + "Registration completed successfully!": "تم التسجيل بنجاح!", + "Registration failed. Please try again.": "فشل التسجيل. من فضلك جرب تاني.", + "Reject": "رفض", + "Rejected Orders": "الطلبات المرفوضة", + "Rejected Orders Count": "عدد الطلبات المرفوضة", + "Religion": "الدين", + "Remainder": "المتبقي", + "Remaining time": "الوقت المتبقي", + "Remaining:": "المتبقي:", + "Report": "تقرير", + "Required field": "حقل مطلوب", + "Resend Code": "إعادة إرسال الكود", + "Resend code": "إعادة إرسال الكود", + "Reward Claimed": "تم استلام المكافأة", + "Reward Status": "حالة المكافأة", + "Reward claimed successfully!": "تم استلام المكافأة بنجاح!", + "Ride": "الرحلة", + "Ride History": "سجل الرحلات", + "Ride Management": "إدارة الرحلات", + "Ride Status": "حالة الرحلة", + "Ride Summaries": "ملخصات الرحلات", + "Ride Summary": "ملخص الرحلة", + "Ride Today :": "الرحلات النهاردة :", + "Ride Wallet": "محفظة الرحلة", + "Ride info": "معلومات الرحلة", + "Ride information not found. Please refresh the page.": "مفيش معلومات الرحلة. من فضلك حدّث الصفحة.", + "Rides": "الرحلات", + "Road Legend": "أسطورة الطريق", + "Road Warrior": "محارب الطريق", + "Rouats of Trip": "محطات الرحلة", + "Route Not Found": "مفيش طريق", + "Routs of Trip": "محطات الرحلة", + "Run Google Maps directly": "شغّل خرائط جوجل مباشرة", + "S.P": "ليرة سورية", + "SAFAR Wallet": "محفظة سفر", + "SOS": "الطوارئ", + "SOS Phone": "هاتف الطوارئ", + "SUBMIT": "إرسال", + "SYP": "ليرة سورية", + "Safety & Security": "السلامة والأمان", + "Safety First 🛑": "السلامة أولًا 🛑", + "Same device detected": "اتكتشف نفس الجهاز", + "Sat": "السبت", + "Saudi Arabia": "السعودية", + "Save": "حفظ", + "Save & Call": "حفظ والاتصال", + "Save Credit Card": "حفظ كارت الائتمان", + "Saved Sucssefully": "تم الحفظ بنجاح", + "Scan Driver License": "امسح رخصة القيادة", + "Scan ID Api": "امسح الهوية API", + "Scan ID MklGoogle": "امسح الهوية MklGoogle", + "Scan ID Tesseract": "امسح الهوية Tesseract", + "Scan Id": "امسح الهوية", + "Scheduled Time:": "الوقت المجدول:", + "Scooter": "سكوتر", + "Score": "الدرجة", + "Search country": "ابحث عن الدولة", + "Search for a starting point": "ابحث عن نقطة البداية", + "Search for waypoint": "ابحث عن نقطة الطريق", + "Search for your Start point": "ابحث عن نقطة بدايتك", + "Search for your destination": "ابحث عن وجهتك", + "Search name or number...": "ابحث باسم أو رقم...", + "Searching for the nearest captain...": "بيتم البحث عن أقرب كابتن...", + "Security Warning": "تحذير أمني", + "See you Tomorrow!": "أشوفك بكرة!", + "See you on the road!": "أشوفك على الطريق!", + "Select Country": "اختر الدولة", + "Select Date": "اختر التاريخ", + "Select Name of Your Bank": "اختر اسم بنكك", + "Select Order Type": "اختر نوع الطلب", + "Select Payment Amount": "اختر مبلغ الدفع", + "Select Payment Method": "اختر طريقة الدفع", + "Select This Ride": "اختر الرحلة دي", + "Select Time": "اختر الوقت", + "Select Waiting Hours": "اختر ساعات الانتظار", + "Select Your Country": "اختر دولتك", + "Select a Bank": "اختر بنك", + "Select a Contact": "اختر جهة اتصال", + "Select a File": "اختر ملف", + "Select a file": "اختر ملف", + "Select a quick message": "اختر رسالة سريعة", + "Select date and time of trip": "اختر تاريخ ووقت الرحلة", + "Select how you want to charge your account": "اختر إزاي عايز تشحن حسابك", + "Select one message": "اختر رسالة واحدة", + "Select recorded trip": "اختر الرحلة المسجلة", + "Select your destination": "اختر وجهتك", + "Select your preferred language for the app interface.": "اختر لغتك المفضلة لواجهة التطبيق.", + "Selected Date": "التاريخ المحدد", + "Selected Date and Time": "التاريخ والوقت المحددين", + "Selected Location": "الموقع المحدد", + "Selected Time": "الوقت المحدد", + "Selected driver": "السايق المحدد", + "Selected file:": "الملف المحدد:", + "Send Email": "إرسال بريد إلكتروني", + "Send Invite": "إرسال دعوة", + "Send Message": "إرسال رسالة", + "Send Siro app to him": "أرسل تطبيق سيرو له", + "Send Verfication Code": "إرسال كود التحقق", + "Send Verification Code": "إرسال كود التحقق", + "Send WhatsApp Message": "إرسال رسالة واتساب", + "Send a custom message": "إرسال رسالة مخصصة", + "Send to Driver Again": "إرسال للسايق تاني", + "Send your referral code to friends": "أرسل كود الإحالة بتاعك للأصدقاء", + "Server error": "خطأ في السيرفر", + "Server error. Please try again.": "خطأ في السيرفر. من فضلك جرب تاني.", + "Session expired. Please log in again.": "الجلسة انتهت. من فضلك سجّل دخول تاني.", + "Set Daily Goal": "تحديد الهدف اليومي", + "Set Goal": "تحديد الهدف", + "Set Location on Map": "تعيين الموقع على الخريطة", + "Set Phone Number": "تعيين رقم الموبايل", + "Set Wallet Phone Number": "تعيين رقم موبايل المحفظة", + "Set pickup location": "تعيين موقع الالتقاط", + "Setting": "إعداد", + "Settings": "الإعدادات", + "Sex is": "الجنس هو", + "Sham Cash": "شام كاش", + "ShamCash Account": "حساب شام كاش", + "Share": "مشاركة", + "Share App": "مشاركة التطبيق", + "Share Code": "مشاركة الكود", + "Share Trip Details": "مشاركة تفاصيل الرحلة", + "Share the app with another new driver": "شارك التطبيق مع سايق جديد تاني", + "Share the app with another new passenger": "شارك التطبيق مع راكب جديد تاني", + "Share this code to earn rewards": "شارك الكود ده عشان تكسب مكافآت", + "Share this code with other drivers. Both of you will receive rewards!": "شارك الكود ده مع سايقين تانيين. هتاخدوا مكافآت كلّكم!", + "Share this code with passengers and earn rewards when they use it!": "شارك الكود ده مع الركاب واكسب مكافآت لما يستخدموه!", + "Share this code with your friends and earn rewards when they use it!": "شارك الكود ده مع أصحابك واكسب مكافآت لما يستخدموه!", + "Share via": "مشاركة عبر", + "Share with friends and earn rewards": "شارك مع أصحابك واكسب مكافآت", + "Share your experience to help us improve...": "شارك تجربتك عشان تساعدنا نتحسن...", + "Show Invitations": "عرض الدعوات", + "Show My Trip Count": "عرض عدد رحلاتي", + "Show Promos": "عرض العروض", + "Show Promos to Charge": "عرض العروض للشحن", + "Show behavior page": "عرض صفحة السلوك", + "Show health insurance providers near me": "عرض مزوّدي التأمين الصحي القريبين مني", + "Show latest promo": "عرض آخر عرض ترويجي", + "Show maintenance center near my location": "عرض مركز الصيانة القريب من موقعي", + "Show my Cars": "عرض عربياتي", + "Showing": "عرض", + "Sign In by Apple": "تسجيل الدخول عبر آبل", + "Sign In by Google": "تسجيل الدخول عبر جوجل", + "Sign In with Google": "تسجيل الدخول عبر جوجل", + "Sign Out": "تسجيل الخروج", + "Sign in for a seamless experience": "سجّل دخول عشان تجربة سلسة", + "Sign in to start your journey": "سجّل دخول عشان تبدأ رحلتك", + "Sign in with Apple": "تسجيل الدخول عبر آبل", + "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": "Siro 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.": "سيرو: للراتب الثابت ونقاط النهاية.", + "Slide to End Trip": "اسحب لإنهاء الرحلة", + "So go and gain your money": "اذهب واستلم فلوسك", + "Social Butterfly": "الفراشة الاجتماعية", + "Societe Arabe Internationale De Banque": "المجتمع العربي الدولي للبنوك", + "Something went wrong. Please try again.": "حصل حاجة غلط. من فضلك جرب تاني.", + "Sorry": "آسف", + "Sorry, the order was taken by another driver.": "آسف، الطلب أخذه سايق تاني.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان فسيحة مثالية للعائلات والمجموعات. سفر مريح وآمن وفعال من حيث التكلفة مع بعض.", + "Speaker": "مكبّر الصوت", + "Special Order": "طلب خاص", + "Speed": "السرعة", + "Speed Order": "طلب سريع", + "Speed 🔻": "السرعة 🔻", + "Standard Call": "مكالمة قياسية", + "Standard support": "دعم قياسي", + "Start": "ابدأ", + "Start Navigation?": "تبدأ الملاحة؟", + "Start Record": "ابدأ التسجيل", + "Start Ride": "ابدأ الرحلة", + "Start Trip": "ابدأ الرحلة", + "Start Trip?": "ابدأ الرحلة؟", + "Start sharing your code!": "ابدأ بمشاركة كودك!", + "Start the Ride": "ابدأ الرحلة", + "Starting contacts sync in background...": "بيتم بدء مزامنة جهات الاتصال في الخلفية...", + "Statistic": "إحصائية", + "Statistics": "الإحصائيات", + "Status": "الحالة", + "Status is": "الحالة هي", + "Stay": "ابقَ", + "Step-by-step instructions on how to request a ride through the Siro app.": "تعليمات خطوة بخطوة حول كيفية طلب رحلة من خلال تطبيق سيرو.", + "Stop": "توقف", + "Store your money with us and receive it in your bank as a monthly salary.": "احفظ فلوسك معانا واحصل عليها في بنكك كراتب شهري.", + "Submission Failed": "فشل الإرسال", + "Submit": "إرسال", + "Submit ": "إرسال", + "Submit Complaint": "إرسال شكوى", + "Submit Question": "إرسال سؤال", + "Submit Rating": "إرسال التقييم", + "Submit Your Complaint": "إرسال شكواك", + "Submit Your Question": "إرسال سؤالك", + "Submit a Complaint": "تقديم شكوى", + "Submit rating": "إرسال التقييم", + "Success": "نجاح", + "Suez Canal Bank": "بنك قناة السويس", + "Summary of your daily activity": "ملخص نشاطك اليومي", + "Sun": "الأحد", + "Support": "الدعم", + "Support Reply": "رد الدعم", + "Swipe to End Trip": "اسحب لإنهاء الرحلة", + "Switch Rider": "تبديل الراكب", + "Switch between light and dark map styles": "بدّل بين أنماط الخريطة الفاتحة والداكنة", + "Switch between light and dark themes": "بدّل بين السمات الفاتحة والداكنة", + "Syria": "سوريا", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'ليرة سورية", + "Syriatel Cash": "سيريتل كاش", + "Take Image": "التقط صورة", + "Take Photo Now": "التقط صورة دلوقتي", + "Take Picture Of Driver License Card": "التقط صورة لرخصة قيادة السايق", + "Take Picture Of ID Card": "التقط صورة لبطاقة الهوية", + "Tap on the promo code to copy it!": "اضغط على كود الخصم عشان تنسخه!", + "Tap to upload": "اضغط عشان ترفع", + "Target": "الهدف", + "Tariff": "التعريفة", + "Tariffs": "التعريفات", + "Tax Expiry Date": "تاريخ انتهاء الضريبة", + "Terms of Use": "شروط الاستخدام", + "Terms of Use & Privacy Notice": "شروط الاستخدام وإشعار الخصوصية", + "Thank You!": "شكرًا لك!", + "Thanks": "شكرًا", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "الـ 300 نقطة بتساوي 300 جنيه مصري ليك\\nاذهب واستلم فلوسك", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "الـ 30000 نقطة بتساوي 30000 ليرة سورية ليك\\nاذهب واستلم فلوسك", + "The Amount is less than": "المبلغ أقل من", + "The Driver Will be in your location soon .": "السايق هيكون في موقعك قريبًا.", + "The United Bank": "البنك المتحد", + "The app may not work optimally": "ممكن التطبيق مايشتغلش بأحسن شكل", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "ملف الصوت مش اترفع لسه.\\nعايز ترسل من غيره؟", + "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "السياق ما بيقدرش أي تفاصيل عن الشكوى، فمقدرش أقدم حل للمشكلة دي. من فضلك قدّم المعلومات اللازمة، وهأكون سعيد بمساعدتك.", + "The distance less than 500 meter.": "المسافة أقل من 500 متر.", + "The driver accept your order for": "السايق قبل طلبك مقابل", + "The driver accepted your order for": "السايق قبل طلبك مقابل", + "The driver accepted your trip": "السايق قبل رحلتك", + "The driver canceled your ride.": "السايق ألغى رحلتك.", + "The driver is approaching.": "السايق قاعد يقرب.", + "The driver on your way": "السايق في طريقه ليك", + "The driver waiting you in picked location .": "السايق بيستناك في موقع الالتقاط.", + "The driver waitting you in picked location .": "السايق بيستناك في موقع الالتقاط.", + "The drivers are reviewing your request": "السايقين بيقوموا بمراجعة طلبك", + "The email or phone number is already registered.": "البريد الإلكتروني أو رقم الموبايل مسجل بالفعل.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "الاسم الكامل في صحيفة الحالة الجنائية بتاعتك مش متطابق مع اللي في رخصة قيادتك. من فضلك تحقق وقدّم المستندات الصحيحة.", + "The invitation was sent successfully": "تم إرسال الدعوة بنجاح", + "The map will show an approximate view.": "الخريطة هتعرض عرض تقديري.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "الرقم القومي في رخصة قيادتك مش متطابق مع اللي في وثيقة هويتك. من فضلك تحقق وقدّم المستندات الصحيحة.", + "The order Accepted by another Driver": "تم قبول الطلب من سايق تاني", + "The order has been accepted by another driver.": "تم قبول الطلب من سايق تاني.", + "The payment was approved.": "تمت الموافقة على الدفع.", + "The payment was not approved. Please try again.": "متمتش الموافقة على الدفع. من فضلك جرب تاني.", + "The period of this code is 24 hours": "مدة صلاحية الكود ده هي 24 ساعة", + "The price may increase if the route changes.": "السعر ممكن يزيد لو الطريق اتغير.", + "The price must be over than": "السعر لازم يكون أكتر من", + "The promotion period has ended.": "انتهت فترة العرض الترويجي.", + "The reason is": "السبب هو", + "The selected contact does not have a phone number": "جهة الاتصال المحددة مفيهاش رقم موبايل", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "بلشت الرحلة! متترددش تتصل بأرقام الطوارئ، أو تشارك رحلتك، أو تفعّل تسجيل الصوت للرحلة", + "There is no data yet.": "مفيش بيانات لسه.", + "There is no help Question here": "مفيش سؤال مساعدة هنا", + "There is no notification yet": "مفيش إشعار لسه", + "There no Driver Aplly your order sorry for that": "مفيش سايق قدّم على طلبك، آسف لذلك", + "They register using your code": "بيسجلوا باستخدام كودك", + "This Trip Cancelled": "تم إلغاء الرحلة دي", + "This Trip Was Cancelled": "تم إلغاء الرحلة دي", + "This amount for all trip I get from Passengers": "المبلغ ده لكل الرحلات اللي جبتها من الركاب", + "This amount for all trip I get from Passengers and Collected For me in": "المبلغ ده لكل الرحلات اللي جبتها من الركاب واتجمع لي في", + "This driver is not registered": "السايق ده مش مسجل", + "This for new registration": "ده للتسجيل الجديد", + "This is a scheduled notification.": "ده إشعار مجدول.", + "This is for delivery or a motorcycle.": "ده للتوصيل أو موتوسيكل.", + "This is for scooter or a motorcycle.": "ده للسكوتر أو موتوسيكل.", + "This is the total number of rejected orders per day after accepting the orders": "ده هو العدد الإجمالي للطلبات المرفوضة يوميًا بعد قبول الطلبات", + "This page is only available for Android devices": "الصفحة دي متاحة بس لأجهزة أندرويد", + "This phone number has already been invited.": "رقم الموبايل ده اتدعا بالفعل.", + "This price is": "السعر ده هو", + "This price is fixed even if the route changes for the driver.": "السعر ده ثابت حتى لو الطريق اتغير بالنسبة للسايق.", + "This price may be changed": "السعر ده ممكن يتغير", + "This ride is already applied by another driver.": "الرحلة دي اتقدم عليها سايق تاني بالفعل.", + "This ride is already taken by another driver.": "الرحلة دي أخذها سايق تاني بالفعل.", + "This ride type allows changes, but the price may increase": "نوع الرحلة ده بيسمح بالتغييرات، بس السعر ممكن يزيد", + "This ride type does not allow changes to the destination or additional stops": "نوع الرحلة ده مش بيسمح بتغيير الوجهة أو إضافة محطات إضافية", + "This ride was just accepted by another driver.": "الرحلة دي اتقبلت للتو من سايق تاني.", + "This service will be available soon.": "الخدمة دي هتتوفر قريبًا.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "الرحلة دي بتروح مباشرة من نقطة بدايتك لوجهتك بسعر ثابت. السايق لازم يتبع الطريق المخطط", + "This trip is for women only": "الرحلة دي للنساء بس", + "This will delete all recorded files from your device.": "ده هيمسح كل الملفات المسجلة من جهازك.", + "Thu": "الخميس", + "Time": "الوقت", + "Time Finish is": "وقت الانتهاء هو", + "Time to Passenger": "الوقت للراكب", + "Time to Passenger is": "الوقت للراكب هو", + "Time to arrive": "وقت الوصول", + "TimeStart is": "وقت البدء هو", + "Times of Trip": "أوقات الرحلة", + "Tip is": "الإكرامية هي", + "To :": "لـ :", + "To Home": "للبيت", + "To Work": "للشغل", + "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 change Language the App": "عشان تغيّر لغة التطبيق", + "To change some Settings": "عشان تغيّر بعض الإعدادات", + "To display orders instantly, please grant permission to draw over other apps.": "عشان تعرض الطلبات فورًا، من فضلك منح الإذن بالعرض فوق التطبيقات التانية.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "عشان نضمنلك أحسن تجربة، بنقترح تعديل الإعدادات عشان تناسب جهازك. عايز تكمل؟", + "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 use Wallet charge it": "عشان تستخدم المحفظة، اشحنها", + "Today": "النهاردة", + "Today Overview": "نظرة عامة على النهاردة", + "Top up Balance": "شحن الرصيد", + "Top up Balance to continue": "شحن الرصيد عشان تكمل", + "Top up Wallet": "شحن المحفظة", + "Top up Wallet to continue": "شحن المحفظة عشان تكمل", + "Total Amount:": "المبلغ الإجمالي:", + "Total Budget from trips by": "إجمالي الميزانية من الرحلات بواسطة", + "Total Budget from trips by\\nCredit card is": "إجمالي الميزانية من الرحلات بواسطة\\nكارت الائتمان هو", + "Total Budget from trips is": "إجمالي الميزانية من الرحلات هو", + "Total Budget is": "إجمالي الميزانية هو", + "Total Connection": "إجمالي الاتصال", + "Total Connection Duration:": "إجمالي مدة الاتصال:", + "Total Cost": "التكلفة الإجمالية", + "Total Cost is": "التكلفة الإجمالية هي", + "Total Duration:": "إجمالي المدة:", + "Total Earnings": "إجمالي الأرباح", + "Total For You is": "الإجمالي ليك هو", + "Total From Passenger is": "الإجمالي من الراكب هو", + "Total Hours on month": "إجمالي الساعات في الشهر", + "Total Invites": "إجمالي الدعوات", + "Total Net": "صافي الإجمالي", + "Total Orders": "إجمالي الطلبات", + "Total Points": "إجمالي النقاط", + "Total Points is": "إجمالي النقاط هو", + "Total Price": "السعر الإجمالي", + "Total Rides": "إجمالي الرحلات", + "Total Trips": "إجمالي الرحلات", + "Total Weekly Earnings": "إجمالي الأرباح الأسبوعية", + "Total budgets on month": "إجمالي الميزانيات في الشهر", + "Total is": "الإجمالي هو", + "Total points is": "إجمالي النقاط هو", + "Total price from": "السعر الإجمالي من", + "Total rides on month": "إجمالي الرحلات في الشهر", + "Total wallet is": "إجمالي المحفظة هو", + "Total weekly is": "إجمالي الأسبوعي هو", + "Transaction failed": "فشلت المعاملة", + "Transaction failed, please try again.": "فشلت المعاملة، من فضلك جرب تاني.", + "Transaction successful": "تمت المعاملة بنجاح", + "Transactions this week": "المعاملات الأسبوع ده", + "Transfer": "تحويل", + "Transfer budget": "تحويل الميزانية", + "Transfer money multiple times.": "حوّل الفلوس كذا مرة.", + "Transfer to anyone.": "حوّل لأي حد.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "سافر في عربيّة كهربائية حديثة وهادئة. اختيار فاخر وصديق للبيئة لرحلة سلسة.", + "Traveled": "تم السفر", + "Trip": "الرحلة", + "Trip Cancelled": "الرحلة اتلغت", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "الرحلة اتلغت من السايق. إحنا بنبص على سايق جديد. من فضلك انتظر.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "الرحلة اتلغت. تكلفة الرحلة هتتضاف لمحفظتك.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "الرحلة اتلغت. تكلفة الرحلة هتنخصم من محفظتك.", + "Trip Completed": "تمت الرحلة", + "Trip Detail": "تفاصيل الرحلة", + "Trip Details": "تفاصيل الرحلة", + "Trip Finished": "خلصت الرحلة", + "Trip ID": "معرف الرحلة", + "Trip Info": "معلومات الرحلة", + "Trip Monitor": "مراقب الرحلة", + "Trip Monitoring": "مراقبة الرحلة", + "Trip Started": "بلشت الرحلة", + "Trip Status:": "حالة الرحلة:", + "Trip Summary with": "ملخص الرحلة مع", + "Trip Timeline": "الجدول الزمني للرحلة", + "Trip finished": "الرحلة خلصت", + "Trip has Steps": "الرحلة فيها محطات", + "Trip is Begin": "بلشت الرحلة", + "Trip taken": "تم أخذ الرحلة", + "Trip updated successfully": "تم تحديث الرحلة بنجاح", + "Trips": "الرحلات", + "Trips recorded": "الرحلات المسجلة", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "الرحلات: \\\$trips / \\\$target", + "Tue": "الثلاثاء", + "Turkey": "تركيا", + "Turn left": "انعطف يسار", + "Turn right": "انعطف يمين", + "Turn sharp left": "انعطف يسار حاد", + "Turn sharp right": "انعطف يمين حاد", + "Turn slight left": "انعطف يسار خفيف", + "Turn slight right": "انعطف يمين خفيف", + "Type Any thing": "اكتب أي حاجة", + "Type a message...": "اكتب رسالة...", + "Type here Place": "اكتب هنا المكان", + "Type something": "اكتب حاجة", + "Type something...": "اكتب حاجة...", + "Type your Email": "اكتب بريدك الإلكتروني", + "Type your message": "اكتب رسالتك", + "Type your message...": "اكتب رسالتك...", + "Types of Trips in Siro:": "أنواع الرحلات في سيرو:", + "USA": "أمريكا", + "Uncompromising Security": "أمان بدون تنازلات", + "Unknown": "غير معروف", + "Unknown Driver": "سايق غير معروف", + "Unknown Location": "موقع غير معروف", + "Update": "تحديث", + "Update Available": "في تحديث جديد", + "Update Education": "تحديث التعليم", + "Update Gender": "تحديث الجنس", + "Updated": "تم التحديث", + "Updated successfully": "تم التحديث بنجاح", + "Upload Documents": "رفع المستندات", + "Upload or AI failed": "فشل الرفع أو الذكاء الاصطناعي", + "Uploaded": "تم الرفع", + "Use Touch ID or Face ID to confirm payment": "استخدم Touch ID أو Face ID لتأكيد الدفع", + "Use code:": "استخدم الكود:", + "Use my invitation code to get a special gift on your first ride!": "استخدم كود الدعوة بتاعي عشان تاخد هدية خاصة في رحلتك الأولى!", + "Use my referral code:": "استخدم كود الإحالة بتاعي:", + "Use this code in registration": "استخدم الكود ده في التسجيل", + "User does not exist.": "المستخدم مش موجود.", + "User does not have a wallet #1652": "المستخدم مالوش محفظة #1652", + "User not found": "ملاقيش المستخدم", + "User not logged in": "المستخدم مش مسجّل دخول", + "User with this phone number or email already exists.": "المستخدم برقم الموبايل أو البريد الإلكتروني ده موجود بالفعل.", + "Uses cellular network": "بيستخدم شبكة الموبايل", + "VIN": "الرقم التعريفي (VIN)", + "VIN :": "الرقم التعريفي (VIN) :", + "VIN is": "الرقم التعريفي (VIN) هو", + "VIP Order": "طلب VIP", + "VIP Order Accepted": "تم قبول طلب VIP", + "VIP Orders": "طلبات VIP", + "VIP first": "أولوية VIP", + "Valid Until:": "صالح لحد:", + "Value": "القيمة", + "Van": "فان", + "Van / Bus": "فان / باص", + "Van for familly": "فان للعائلة", + "Variety of Trip Choices": "تنوع خيارات الرحلات", + "Vehicle": "المركبة", + "Vehicle Category": "فئة المركبة", + "Vehicle Details": "تفاصيل المركبة", + "Vehicle Details Back": "تفاصيل المركبة (الخلفي)", + "Vehicle Details Front": "تفاصيل المركبة (الأمامي)", + "Vehicle Information": "معلومات المركبة", + "Vehicle Options": "خيارات المركبة", + "Verification Code": "كود التحقق", + "Verify": "التحقق", + "Verify Email": "التحقق من البريد الإلكتروني", + "Verify Email For Driver": "التحقق من البريد الإلكتروني للسايق", + "Verify OTP": "التحقق من OTP", + "Vibration": "الاهتزاز", + "Vibration feedback for all buttons": "تغذية اهتزازية لكل الأزرار", + "Vibration feedback for buttons": "تغذية اهتزازية للأزرار", + "Videos Tutorials": "فيديوهات تعليمية", + "View All": "عرض الكل", + "View your past transactions": "شوف معاملاتك السابقة", + "Visa": "فيزا", + "Visit Website/Contact Support": "زيارة الموقع/الاتصال بالدعم", + "Visit our website or contact Siro support for information on driver registration and requirements.": "قم بزيارة موقعنا أو اتصل بدعم سيرو للحصول على معلومات حول تسجيل السايق والمتطلبات.", + "Voice Calling": "المكالمات الصوتية", + "Voice call over internet": "مكالمة صوتية عبر الإنترنت", + "Wait for timer": "انتظر المؤقت", + "Waiting": "بانتظار", + "Waiting Time": "وقت الانتظار", + "Waiting VIP": "بانتظار VIP", + "Waiting for Captin ...": "بانتظار الكابتن...", + "Waiting for Driver ...": "بانتظار السايق...", + "Waiting for trips": "بانتظار الرحلات", + "Waiting for your location": "بانتظار موقعك", + "Wallet": "المحفظة", + "Wallet Add": "إضافة للمحفظة", + "Wallet Added": "تمت الإضافة للمحفظة", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة للمحفظة \\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة للمحفظة \\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "الدفع عبر المحفظة", + "Wallet Phone Number": "رقم موبايل المحفظة", + "Wallet Type": "نوع المحفظة", + "Wallet is blocked": "المحفظة مقفولة", + "Wallet!": "المحفظة!", + "Warning": "تحذير", + "Warning: Siroing 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 process picture please wait": "إحنا بنشتغل على الصورة، من فضلك انتظر", + "We are process picture please wait ": "إحنا بنشتغل على الصورة، من فضلك انتظر", + "We are search for nearst driver": "إحنا بنبص على أقرب سايق", + "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 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:": "أرسلنا كود التحقق لرقم موبايلك:", + "We need access to your location to match you with nearby passengers and ensure accurate navigation.": "نحتاج للوصول لموقعك عشان نوصلك بركاب قريبين ونضمن ملاحة دقيقة.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "نحتاج للوصول لموقعك عشان نوصلك بركاب قريبين ونوفر توجيه دقيق.", + "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 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 أرقام لبريدك الإلكتروني اللي قدّمته", + "We use location to get accurate and nearest passengers for you": "بنستخدم الموقع عشان نلاقي ركاب دقيقين وقريبين ليك", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "بنستخدم موقعك الدقيق عشان نلاقي أقرب سايق متاح ونوفر معلومات دقيقة للاستلام والتنزيل. تقدر تدير ده في الإعدادات.", + "We will look for a new driver.\\nPlease wait.": "هنبحث عن سايق جديد.\\nمن فضلك انتظر.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "هنرسل لك إشعار بمجرد الموافقة على حسابك. تقدر تغلق الصفحة دي بأمان، وهنعلمك لما تكتمل المراجعة.", + "Wed": "الأربعاء", + "Weekly Budget": "الميزانية الأسبوعية", + "Weekly Challenges": "التحديات الأسبوعية", + "Weekly Earnings": "الأرباح الأسبوعية", + "Weekly Plan": "الخطة الأسبوعية", + "Weekly Streak": "سلسلة أسبوعية", + "Weekly Summary": "الملخص الأسبوعي", + "Welcome": "أهلاً وسهلاً", + "Welcome Back!": "مرحبًا بعودتك!", + "Welcome Offer!": "عرض ترحيبي!", + "Welcome to Siro!": "أهلاً بك في سيرو!", + "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 the feature of our wallet?": "إيه ميزة محفظتنا؟", + "What safety measures does Siro offer?": "إيه إجراءات السلامة اللي بيقدمها سيرو؟", + "What types of vehicles are available?": "إيه أنواع العربيات المتاحة؟", + "WhatsApp": "واتساب", + "WhatsApp Location Extractor": "مستخرج موقع الواتساب", + "When": "متى", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "لما تكمل 500 رحلة، هتبقى مؤهل للعروض الحصرية للتأمين الصحي.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "لما تكمل 600 رحلة، هتبقى مؤهل لتلقى عروض ص", + "Where are you going?": "إلى أين أنت ذاهب؟", + "Where are you, sir?": "أين أنت، سيدي؟", + "Where to": "إلى أين؟", + "Where you want go": "إلى أين تريد الذهاب؟", + "Which method you will pay": "بأي طريقة ستدفع؟", + "Why Choose Siro?": "لماذا تختار سيرو؟", + "Why do you want to cancel this trip?": "لماذا تريد إلغاء هذه الرحلة؟", + "With Siro, you can get a ride to your destination in minutes.": "مع سيرو، يمكنك الحصول على رحلة إلى وجهتك في دقائق.", + "Withdraw": "سحب", + "Work": "العمل", + "Work & Contact": "العمل والتواصل", + "Work 30 consecutive days": "العمل 30 يوماً متتالياً", + "Work 7 consecutive days": "العمل 7 أيام متتالية", + "Work Days": "أيام العمل", + "Work Saved": "تم حفظ العمل", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 إلى 17:00.\\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 صباحاً إلى 16:00 مساءً.\\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "وقت العمل من 12:00 إلى 19:00.\\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", + "Would the passenger like to settle the remaining fare using their wallet?": "هل يرغب الراكب في تسديد الأجرة المتبقية باستخدام محفظته؟", + "Would you like to proceed with health insurance?": "هل ترغب في المتابعة مع التأمين الصحي؟", + "Write note": "اكتب ملاحظة", + "Write the reason for canceling the trip": "اكتب سبب إلغاء الرحلة", + "Write your comment here": "اكتب تعليقك هنا", + "Write your reason...": "اكتب سببك...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "السنة", + "Year is": "السنة هي", + "Year of Manufacture": "سنة الصنع", + "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, but please note that cancellation fees may apply depending on how far in advance you cancel.": "نعم، يمكنك إلغاء رحلتك، ولكن يرجى ملاحظة أن رسوم الإلغاء قد تنطبق اعتماداً على المدة الزمنية التي تقوم بالإلغاء فيها مسبقاً.", + "You": "أنت", + "You Are Stopped For this Day !": "تم إيقافك لهذا اليوم!", + "You Can Cancel Trip And get Cost of Trip From": "يمكنك إلغاء الرحلة واسترداد تكلفة الرحلة من", + "You Can Cancel the Trip and get Cost From": "يمكنك إلغاء الرحلة واسترداد التكلفة من", + "You Can cancel Ride After Captain did not come in the time": "يمكنك إلغاء الرحلة إذا لم يصل الكابتن في الوقت المحدد", + "You Dont Have Any amount in": "ليس لديك أي مبلغ في", + "You Dont Have Any places yet !": "ليس لديك أي أماكن بعد!", + "You Earn today is": "أرباحك اليوم هي", + "You Have": "لديك", + "You Have Tips": "لديك إكراميات", + "You Have in": "لديك في", + "You Refused 3 Rides this Day that is the reason": "لقد رفضت 3 رحلات اليوم وهذا هو السبب", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "لقد رفضت 3 رحلات اليوم وهذا هو السبب \\nأراك غداً!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "لقد رفضت 3 رحلات اليوم وهذا هو السبب\\nأراك غداً!", + "You Should be select reason.": "يجب عليك اختيار السبب.", + "You Should choose rate figure": "يجب عليك اختيار رقم التقييم", + "You Will Be Notified": "سوف يتم إعلامك", + "You accepted the VIP order.": "لقد قبلت طلب VIP.", + "You are Delete": "تم حذفك", + "You are Stopped": "تم إيقافك", + "You are buying": "أنت تشتري", + "You are far from passenger location": "أنت بعيد عن موقع الراكب", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "أنت في رحلة نشطة. قد يؤدي مغادرة هذه الشاشة إلى إيقاف التتبع. هل أنت متأكد من رغبتك في الخروج؟", + "You are near the destination": "أنت قريب من الوجهة", + "You are not in near to passenger location": "أنت لست قريباً من موقع الراكب", + "You are not near": "أنت لست قريباً من", + "You are not near the passenger location": "أنت لست قريباً من موقع الراكب", + "You can buy Points to let you online": "يمكنك شراء نقاط لتصبح متاحاً", + "You can buy Points to let you online\\nby this list below": "يمكنك شراء نقاط لتصبح متاحاً\\nمن خلال هذه القائمة أدناه", + "You can buy points from your budget": "يمكنك شراء نقاط من ميزانيتك", + "You can call or record audio during this trip.": "يمكنك الاتصال أو تسجيل الصوت أثناء هذه الرحلة.", + "You can call or record audio of this trip": "يمكنك الاتصال أو تسجيل الصوت لهذه الرحلة", + "You can cancel Ride now": "يمكنك إلغاء الرحلة الآن", + "You can cancel trip": "يمكنك إلغاء الرحلة", + "You can change the Country to get all features": "يمكنك تغيير الدولة للحصول على جميع الميزات", + "You can change the destination by long-pressing any point on the map": "يمكنك تغيير الوجهة بالضغط المطول على أي نقطة على الخريطة", + "You can change the language of the app": "يمكنك تغيير لغة التطبيق", + "You can change the vibration feedback for all buttons": "يمكنك تغيير تغذية الاهتزاز لجميع الأزرار", + "You can claim your gift once they complete 2 trips.": "يمكنك استلام هديتك بمجرد إكمالهم رحلتين.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "يمكنك التواصل مع سائقك أو راكبك من خلال ميزة الدردشة داخل التطبيق بمجرد تأكيد الرحلة.", + "You can contact us during working hours from 10:00 - 16:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 10:00 إلى 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 10:00 إلى 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 12:00 إلى 19:00.", + "You can decline a request without any cost": "يمكنك رفض طلب دون أي تكلفة", + "You can now receive orders": "يمكنك الآن تلقي الطلبات", + "You can only use one device at a time. This device will now be set as your active device.": "يمكنك استخدام جهاز واحد فقط في كل مرة. سيتم الآن تعيين هذا الجهاز كجهازك النشط.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "يمكنك الدفع لرحلتك باستخدام النقود أو بطاقة الائتمان/الخصم. يمكنك اختيار طريقة الدفع المفضلة لديك قبل تأكيد رحلتك.", + "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 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", + "You cannot call the passenger due to policy violations": "لا يمكنك الاتصال بالراكب بسبب انتهاكات السياسة", + "You deserve the gift": "أنت تستحق الهدية", + "You do not have enough money in your SAFAR wallet": "ليس لديك ما يكفي من الأموال في محفظة سفر الخاصة بك", + "You dont Add Emergency Phone Yet!": "لم تقم بإضافة رقم طوارئ بعد!", + "You dont have Points": "ليس لديك نقاط", + "You dont have invitation code": "ليس لديك رمز دعوة", + "You dont have money in your Wallet": "ليس لديك أموال في محفظتك", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "ليس لديك أموال في محفظتك أو يجب أن تقوم بتحويل أقل من 5 جنيه مصري للتفعيل", + "You gained": "لقد ربحت", + "You get 100 pts, they get 50 pts": "تحصل على 100 نقطة، وهم يحصلون على 50 نقطة", + "You have": "لديك", + "You have 200": "لديك 200", + "You have 500": "لديك 500", + "You have already received your gift for inviting": "لقد استلمت هديتك بالفعل مقابل الدعوة", + "You have already used this promo code.": "لقد استخدمت هذا الرمز الترويجي بالفعل.", + "You have arrived at your destination": "لقد وصلت إلى وجهتك", + "You have arrived at your destination, @name": "لقد وصلت إلى وجهتك، @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "لقد كنت تقود لمدة 12 ساعة. من أجل سلامتك والامتثال، يرجى أخذ استراحة لمدة 6 ساعات.", + "You have call from driver": "لديك مكالمة من السائق", + "You have chosen not to proceed with health insurance.": "لقد اخترت عدم المتابعة مع التأمين الصحي.", + "You have copied the promo code.": "لقد نسخت الرمز الترويجي.", + "You have earned 20": "لقد ربحت 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "لقد تجاوزت حد الإلغاء المسموح به (3 مرات).\\nلا يمكنك العمل حتى تنتهي فترة العقوبة.", + "You have finished all times": "لقد أنهيت جميع الأوقات", + "You have finished all times ": "لقد أنهيت جميع الأوقات", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "لديك هدية بقيمة 300 جنيه مصري", + "You have gift 300 JOD": "لديك هدية بقيمة 300 دينار أردني", + "You have gift 300 L.E": "لديك هدية بقيمة 300 جنيه مصري", + "You have gift 300 SYP": "لديك هدية بقيمة 300 ليرة سورية", + "You have gift 300 \\\${CurrencyHelper.currency}": "لديك هدية بقيمة 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "لديك هدية بقيمة 30000 جنيه مصري", + "You have gift 30000 JOD": "لديك هدية بقيمة 30000 دينار أردني", + "You have gift 30000 SYP": "لديك هدية بقيمة 30000 ليرة سورية", + "You have got a gift": "لقد حصلت على هدية", + "You have got a gift for invitation": "لقد حصلت على هدية مقابل الدعوة", + "You have in account": "لديك في الحساب", + "You have promo!": "لديك عرض ترويجي!", + "You have received a gift token!": "لقد استلمت رمز هدية!", + "You have successfully charged your account": "لقد قمت بشحن حسابك بنجاح", + "You have successfully opted for health insurance.": "لقد اخترت التأمين الصحي بنجاح.", + "You have transfer to your wallet from": "لقد تم التحويل إلى محفظتك من", + "You have transferred to your wallet from": "لقد تم التحويل إلى محفظتك من", + "You have upload Criminal documents": "لقد قمت برفع مستندات جنائية", + "You haven't moved sufficiently!": "لم تتحرك بشكل كافٍ!", + "You must Verify email !.": "يجب عليك التحقق من البريد الإلكتروني !.", + "You must be charge your Account": "يجب عليك شحن حسابك", + "You must be closer than 100 meters to arrive": "يجب أن تكون أقرب من 100 متر للوصول", + "You must be recharge your Account": "يجب عليك إعادة شحن حسابك", + "You must restart the app to change the language.": "يجب عليك إعادة تشغيل التطبيق لتغيير اللغة.", + "You need to be closer to the pickup location.": "يجب أن تكون أقرب إلى موقع الالتقاط.", + "You need to complete 500 trips": "يجب عليك إكمال 500 رحلة", + "You should complete 500 trips to unlock this feature.": "يجب عليك إكمال 500 رحلة لفتح هذه الميزة.", + "You should complete 600 trips": "يجب عليك إكمال 600 رحلة", + "You should have upload it .": "يجب أن تكون قد قمت برفعه.", + "You should renew Driver license": "يجب تجديد رخصة القيادة", + "You should restart app to change language": "يجب عليك إعادة تشغيل التطبيق لتغيير اللغة", + "You should select one": "يجب عليك اختيار واحد", + "You should select your country": "يجب عليك اختيار دولتك", + "You should use Touch ID or Face ID to confirm payment": "يجب عليك استخدام Touch ID أو Face ID لتأكيد الدفع", + "You trip distance is": "مسافة رحلتك هي", + "You will arrive to your destination after": "سوف تصل إلى وجهتك بعد", + "You will arrive to your destination after timer end.": "سوف تصل إلى وجهتك بعد انتهاء المؤقت.", + "You will be charged for the cost of the driver coming to your location.": "سيتم محاسبتك على تكلفة وصول السائق إلى موقعك.", + "You will be pay the cost to driver or we will get it from you on next trip": "سوف تدفع التكلفة للسائق أو سنخصمها منك في الرحلة القادمة", + "You will be thier in": "سوف تكون هناك خلال", + "You will cancel registration": "سوف تلغي التسجيل", + "You will choose allow all the time to be ready receive orders": "سوف تختار السماح طوال الوقت لتكون جاهزاً لتلقي الطلبات", + "You will choose one of above !": "سوف تختار واحدة من الأعلى!", + "You will get cost of your work for this trip": "سوف تحصل على أجرة عملك لهذه الرحلة", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "سوف تحتاج إلى دفع التكلفة للسائق، أو سيتم خصمها من رحلتك القادمة", + "You will receive a code in SMS message": "سوف تتلقى رمزاً في رسالة SMS", + "You will receive a code in WhatsApp Messenger": "سوف تتلقى رمزاً في رسالة واتساب", + "You will receive code in sms message": "سوف تتلقى رمزاً في رسالة SMS", + "You will recieve code in sms message": "سوف تتلقى رمزاً في رسالة SMS", + "Your Account is Deleted": "تم حذف حسابك", + "Your Activity": "نشاطك", + "Your Application is Under Review": "طلبك قيد المراجعة", + "Your Budget less than needed": "ميزانيتك أقل من المطلوب", + "Your Choice, Our Priority": "اختيارك، أولويتنا", + "Your Driver Referral Code": "رمز إحالة السائق الخاص بك", + "Your Earnings": "أرباحك", + "Your Journey Begins Here": "رحلتك تبدأ من هنا", + "Your Name is Wrong": "اسمك خاطئ", + "Your Passenger Referral Code": "رمز إحالة الراكب الخاص بك", + "Your Question": "سؤالك", + "Your Questions": "أسئلتك", + "Your Referral Code": "رمز الإحالة الخاص بك", + "Your Rewards": "مكافآتك", + "Your Ride Duration is": "مدة رحلتك هي", + "Your Wallet balance is": "رصيد محفظتك هو", + "Your account is temporarily restricted ⛔": "حسابك مقيد مؤقتاً ⛔", + "Your are far from passenger location": "أنت بعيد عن موقع الراكب", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "رصيدك أقل من الحد الأدنى لمبلغ السحب وهو {minAmount} ليرة سورية.", + "Your complaint has been submitted.": "تم تقديم شكواك.", + "Your completed trips will appear here": "ستظهر رحلاتك المكتملة هنا", + "Your data will be erased after 2 weeks": "سيتم مسح بياناتك بعد أسبوعين", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "سيتم مسح بياناتك بعد أسبوعين\\nو لن تتمكن من العودة لاستخدام التطبيق بعد شهر", + "Your device appears to be compromised. The app will now close.": "يبدو أن جهازك مخترق. سيتم الآن إغلاق التطبيق.", + "Your device is good and very suitable": "جهازك جيد ومناسب جداً", + "Your device provides excellent performance": "يقدم جهازك أداءً ممتازاً", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "لقد انتهت صلاحية رخصة قيادتك و/أو ضريبة سيارتك. يرجى تجديدها قبل المتابعة.", + "Your driver’s license has expired.": "لقد انتهت صلاحية رخصة قيادتك.", + "Your driver’s license has expired. Please renew it before proceeding.": "لقد انتهت صلاحية رخصة قيادتك. يرجى تجديدها قبل المتابعة.", + "Your driver’s license has expired. Please renew it.": "لقد انتهت صلاحية رخصة قيادتك. يرجى تجديدها.", + "Your email address": "عنوان بريدك الإلكتروني", + "Your email not updated yet": "بريدك الإلكتروني لم يتم تحديثه بعد", + "Your fee is": "أجرتك هي", + "Your invite code was successfully applied!": "تم تطبيق رمز الدعوة الخاص بك بنجاح!", + "Your journey starts here": "رحلتك تبدأ من هنا", + "Your location is being tracked in the background.": "يتم تتبع موقعك في الخلفية.", + "Your name": "اسمك", + "Your order is being prepared": "طلبك قيد التحضير", + "Your order sent to drivers": "تم إرسال طلبك إلى السائقين", + "Your password": "كلمة المرور الخاصة بك", + "Your past trips will appear here.": "ستظهر رحلاتك السابقة هنا.", + "Your payment is being processed and your wallet will be updated shortly.": "يتم معالجة دفعتك وسيتم تحديث محفظتك قريباً.", + "Your payment was successful.": "تم دفعك بنجاح.", + "Your personal invitation code is:": "رمز الدعوة الشخصي الخاص بك هو:", + "Your rating has been submitted.": "تم إرسال تقييمك.", + "Your total balance:": "رصيدك الإجمالي:", + "Your trip cost is": "تكلفة رحلتك هي", + "Your trip distance is": "مسافة رحلتك هي", + "Your trip is scheduled": "رحلتك مجدولة", + "Your valuable feedback helps us improve our service quality.": "تعليقاتك القيمة تساعدنا في تحسين جودة خدمتنا.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"نقاط", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'رحلة", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'رحلة", + "\\\$error": "صار خطأ", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'تمت إضافته لرصيدك", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"أقل مبلغ للتحويل هو", + "\\\${\"NEXT STEP": "\\\${\"الخطوة الجاية", + "\\\${\"NationalID": "\\\${\"الرقم القومي", + "\\\${\"Passenger cancelled the ride.": "\\\${\"الراكب ألغى الرحلة.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"إجمالي الميزانيات في الشهر\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"إجمالي الرحلات في الشهر\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"رسوم التحويل", + "\\\${\"You must leave at least": "\\\${\"لازم تسيب على الأقل", + "\\\${\"amount": "\\\${\"المبلغ", + "\\\${\"transaction_id": "\\\${\"رقم العملية", + "\\\${'*Siro APP CODE*": "\\\${'*كود تطبيق سيرو*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*كود سائق سيرو*", + "\\\${'Address": "\\\${'العنوان", + "\\\${'Address: ": "\\\${'العنوان: ", + "\\\${'Age": "\\\${'العمر", + "\\\${'An unexpected error occurred:": "\\\${'حصل خطأ غير متوقع:", + "\\\${'Average of Hours of": "\\\${'متوسط ساعات", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'خلي بالك من إنك تلتقط صور واضحة من فضلك\\nمعاك", + "\\\${'Car Expire": "\\\${'انتهاء صلاحية العربية", + "\\\${'Car Kind": "\\\${'نوع العربية", + "\\\${'Car Plate": "\\\${'لوحة العربية", + "\\\${'Chassis": "\\\${'الشاسيه", + "\\\${'Color": "\\\${'اللون", + "\\\${'Date of Birth": "\\\${'تاريخ الميلاد", + "\\\${'Date of Birth: ": "\\\${'تاريخ الميلاد: ", + "\\\${'Displacement": "\\\${'السعة", + "\\\${'Document Number: ": "\\\${'رقم المستند: ", + "\\\${'Drivers License Class": "\\\${'فئة رخصة القيادة", + "\\\${'Drivers License Class: ": "\\\${'فئة رخصة القيادة: ", + "\\\${'Expiry Date": "\\\${'تاريخ الانتهاء", + "\\\${'Expiry Date: ": "\\\${'تاريخ الانتهاء: ", + "\\\${'Failed to save driver data": "\\\${'فشل حفظ بيانات السايق", + "\\\${'Fuel": "\\\${'الوقود", + "\\\${'FullName": "\\\${'الاسم الكامل", + "\\\${'Height: ": "\\\${'الطول: ", + "\\\${'Hi": "\\\${'أهلاً", + "\\\${'How can I register as a driver?": "\\\${'إزاي أسجل نفسي كسايق؟", + "\\\${'Inspection Date": "\\\${'تاريخ الفحص", + "\\\${'InspectionResult": "\\\${'نتيجة الفحص", + "\\\${'IssueDate": "\\\${'تاريخ الإصدار", + "\\\${'License Expiry Date": "\\\${'تاريخ انتهاء الرخصة", + "\\\${'Made :": "\\\${'الصناعة :", + "\\\${'Make": "\\\${'الماركة", + "\\\${'Model": "\\\${'الموديل", + "\\\${'Name": "\\\${'الاسم", + "\\\${'Name :": "\\\${'الاسم :", + "\\\${'Name in arabic": "\\\${'الاسم بالعربي", + "\\\${'National Number": "\\\${'الرقم القومي", + "\\\${'NationalID": "\\\${'الرقم القومي", + "\\\${'Next Level:": "\\\${'المستوى الجاي:", + "\\\${'OrderId": "\\\${'رقم الطلب", + "\\\${'Owner Name": "\\\${'اسم المالك", + "\\\${'Plate Number": "\\\${'رقم اللوحة", + "\\\${'Please enter": "\\\${'من فضلك ادخل", + "\\\${'Please wait": "\\\${'من فضلك انتظر", + "\\\${'Price:": "\\\${'السعر:", + "\\\${'Remaining:": "\\\${'المتبقي:", + "\\\${'Ride": "\\\${'الرحلة", + "\\\${'Tax Expiry Date": "\\\${'تاريخ انتهاء الضريبة", + "\\\${'The price must be over than ": "\\\${'السعر لازم يكون أكتر من ", + "\\\${'The reason is": "\\\${'السبب هو", + "\\\${'Transaction successful": "\\\${'تمت العملية بنجاح", + "\\\${'Update": "\\\${'تحديث", + "\\\${'VIN :": "\\\${'الرقم التعريفي (VIN) :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'أرسلنا كود التحقق لرقم موبايلك:", + "\\\${'When": "\\\${'متى", + "\\\${'Year": "\\\${'السنة", + "\\\${'You can resend in": "\\\${'تقدر تعيد الإرسال خلال", + "\\\${'You gained": "\\\${'كسبت", + "\\\${'You have call from driver": "\\\${'معاك مكالمة من السايق", + "\\\${'You have in account": "\\\${'معاك في الحساب", + "\\\${'before": "\\\${'قبل", + "\\\${'expected": "\\\${'متوقع", + "\\\${'model :": "\\\${'الموديل :", + "\\\${'wallet_credited_message": "\\\${'تمت إضافة المبلغ لمحفظتك", + "\\\${'year :": "\\\${'السنة :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'تاريخ الانتهاء", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'رحلة", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'رحلة", + "\\\${AppInformation.appName} Wallet": "محفظة \\\${AppInformation.appName}", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'نقاط", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'رحلات", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'إنجازات", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'تقييمات", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'نشط", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'إجمالي الدعوات", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'مكافآت", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'أيام", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "حصل خطأ", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "محفظة \\\\\\\${AppInformation.appName}", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nكمان بنعطي أولوية للتكلفة المناسبة، وبنقدّم أسعار تنافسية عشان رحلاتك تكون في متناول إيديك.", + "accepted": "مقبولة", + "accepted your order": "قبل طلبك", + "accepted your order at price": "قبل طلبك بالسعر", + "age": "العمر", + "agreement subtitle": "عنوان الاتفاقية", + "airport": "المطار", + "alert": "تنبيه", + "amount": "المبلغ", + "amount_paid": "المبلغ المدفوع", + "an error occurred": "حدث خطأ", + "and I have a trip on": "ومعايا رحلة على", + "and acknowledge our": "وأوافق على", + "and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية.", + "and acknowledge the": "وأوافق على", + "app_description": "وصف التطبيق", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "وقت الوصول لنقطتك", + "as the driver.": "كسايق.", + "attach audio of complain": "أرفق صوت الشكوى", + "attach correct audio": "أرفق الصوت الصحيح", + "be sure": "خلي بالك", + "before": "قبل", + "below, I confirm that I have read and agree to the": "تحت، أنا أؤكد إني قريت ووافقت على", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "تحت، أنا راجعت ووافقت على شروط الاستخدام وأقرّ بـ", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "تحت، أنا راجعت ووافقت على شروط الاستخدام وأقرّ بإشعار الخصوصية. عمري 18 سنة أو أكتر.", + "birthdate": "تاريخ الميلاد", + "bonus_added": "البونص المضاف", + "by": "بواسطة", + "by this list below": "بالقائمة دي تحت", + "cancel": "إلغاء", + "carType'] ?? 'Fixed Price": "carType'] ?? 'سعر ثابت", + "car_back": "خلفي العربية", + "car_color": "لون العربية", + "car_front": "أمامي العربية", + "car_license_back": "الجانب الخلفي لرخصة العربية", + "car_license_front": "الجانب الأمامي لرخصة العربية", + "car_model": "موديل العربية", + "car_plate": "لوحة العربية", + "change device": "غيّر الجهاز", + "color.beige": "بيج", + "color.black": "أسود", + "color.blue": "أزرق", + "color.bronze": "برونزي", + "color.brown": "بني", + "color.burgundy": "بورجوندي", + "color.champagne": "شمبانيا", + "color.darkGreen": "أخضر غامق", + "color.gold": "ذهبي", + "color.gray": "رمادي", + "color.green": "أخضر", + "color.gunmetal": "معدني رمادي", + "color.maroon": "بني محمر", + "color.navy": "أزرق داكن", + "color.orange": "برتقالي", + "color.purple": "بنفسجي", + "color.red": "أحمر", + "color.silver": "فضي", + "color.white": "أبيض", + "color.yellow": "أصفر", + "committed_to_safety": "ملتزم بالسلامة", + "complete profile subtitle": "عنوان إكمال الملف الشخصي", + "complete registration button": "زر إكمال التسجيل", + "complete, you can claim your gift": "لما تكمل، تقدر تستلم هديتك", + "connection_failed": "فشل الاتصال", + "copied to clipboard": "تم النسخ للحافظة", + "cost is": "التكلفة هي", + "created time": "وقت الإنشاء", + "de": "de", + "default_tone": "النغمة الافتراضية", + "deleted": "تم الحذف", + "detected": "تم الكشف", + "distance is": "المسافة هي", + "driver' ? 'Invite Driver": "driver' ? 'دعوة سايق", + "driver_license": "رخصة القيادة", + "duration is": "المدة هي", + "e.g., 0912345678": "مثال: 0912345678", + "education": "التعليم", + "el": "el", + "email optional label": "تسمية البريد الإلكتروني الاختياري", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'أهلاً", + "end": "نهاية", + "endName'] ?? 'Destination": "endName'] ?? 'الوجهة", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'موقع الوجهة", + "enter otp validation": "أدخل التحقق من OTP", + "error": "خطأ", + "error'] ?? 'Failed to claim reward": "error'] ?? 'فشل في استلام المكافأة", + "error_processing_document": "حصل خطأ في معالجة المستند", + "es": "es", + "expected": "متوقّع", + "expiration_date": "تاريخ الانتهاء", + "fa": "fa", + "face detect": "كشف الوجه", + "failed to send otp": "فشل في إرسال OTP", + "false": "غلط", + "first name label": "تسمية الاسم الأول", + "first name required": "الاسم الأول مطلوب", + "for": "لـ", + "for ": "لـ ", + "for transfer fees": "لرسوم التحويل", + "for your first registration!": "لتسجيلك الأول!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 07:30 لـ 10:30 (الخميس، الجمعة، السبت، الاثنين)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 15:00 (الخميس، الجمعة، السبت، الاثنين)", + "from 23:59 till 05:30": "من 23:59 لـ 05:30", + "from 3 times Take Attention": "من 3 مرات، خلي بالك", + "from 3:00pm to 6:00 pm": "من 3:00 مساءً لـ 6:00 مساءً", + "from 7:00am to 10:00am": "من 7:00 صباحًا لـ 10:00 صباحًا", + "from your favorites": "من مفضلاتك", + "from your list": "من قائمتك", + "fromBudget": "من الميزانية", + "gender": "الجنس", + "get_a_ride": "احصل على رحلة", + "get_to_destination": "الوصول للوجهة", + "go to your passenger location before": "اذهب لموقع راكبك قبل", + "go to your passenger location before\\nPassenger cancel trip": "اذهب لموقع راكبك قبل ما يلغي الراكب الرحلة", + "h": "ساعة", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'فرامل قوية", + "has been added to your budget": "تمت إضافته لميزانيتك", + "has completed": "اكتمل", + "hi": "أهلاً", + "hour": "ساعة", + "hours before trying again.": "ساعات قبل ما تجرب تاني.", + "i agree": "أوافق", + "id': 1, 'name': 'Car": "id': 1, 'name': 'عربيّة", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'بنزين", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'ديزل", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'موتوسيكل", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'كهربائي", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'فان / باص", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'هجين", + "id_back": "خلفي الهوية", + "id_card_back": "الجانب الخلفي لبطاقة الهوية", + "id_card_front": "الجانب الأمامي لبطاقة الهوية", + "id_front": "أمامي الهوية", + "if you dont have account": "إذا ممعكش حساب", + "if you want help you can email us here": "إذا عايز مساعدة، تقدر تراسلنا هنا", + "image verified": "تم التحقق من الصورة", + "in your": "في", + "in your wallet": "في محفظتك", + "incorrect_document_message": "رسالة المستند مش صحيح", + "incorrect_document_title": "عنوان المستند مش صحيح", + "insert amount": "أدخل المبلغ", + "is ON for this month": "مفعلة ده الشهر", + "is calling you": "بيتصل بيك", + "is driving a": "قاعد يسوق", + "is reviewing your order. They may need more information or a higher price.": "بيراجع طلبك. ممكن يحتاجوا معلومات أكتر أو سعر أعلى.", + "it": "it", + "joined": "انضم", + "kilometer": "كيلومتر", + "last name label": "تسمية اسم العائلة", + "last name required": "اسم العائلة مطلوب", + "ll let you know when the review is complete.": "هنخبرك لما تكتمل المراجعة.", + "login or register subtitle": "عنوان تسجيل الدخول أو التسجيل", + "m": "م", + "m at the agreed-upon location": "في الموقع المتفق عليه", + "m inviting you to try Siro.": "بادعوك تجرب سيرو.", + "m waiting for you": "بانتظارك", + "m waiting for you at the specified location.": "بانتظارك في الموقع المحدد.", + "message From Driver": "رسالة من السايق", + "message From passenger": "رسالة من الراكب", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'حصل خطأ غير معروف في السيرفر", + "message'] ?? 'Claim failed": "message'] ?? 'فشل الاستلام", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'فشل إرسال OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'فشل في إنشاء الفاتورة", + "min": "دقيقة", + "minute": "دقيقة", + "minutes before trying again.": "دقايق قبل ما تجرب تاني.", + "model :": "الموديل :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "مواقعي", + "non_id_card_back": "خلفي غير الهوية", + "non_id_card_front": "أمامي غير الهوية", + "not similar": "مش متشابه", + "of": "من", + "on": "على", + "one last step title": "عنوان الخطوة الأخيرة", + "otp sent subtitle": "عنوان إرسال OTP", + "otp sent success": "تم إرسال OTP بنجاح", + "otp verification failed": "فشل التحقق من OTP", + "passenger agreement": "اتفاقية الراكب", + "passenger amount to me": "مبلغ الراكب لي", + "payment_success": "تمت العملية بنجاح", + "pending": "قيد الانتظار", + "phone number label": "تسمية رقم الموبايل", + "phone number of driver": "رقم موبايل السايق", + "phone number required": "رقم الموبايل مطلوب", + "please go to picker location exactly": "من فضلك اذهب لموقع الالتقاط بالظبط", + "please order now": "من فضلك اطلب دلوقتي", + "please wait till driver accept your order": "من فضلك انتظر لحد ما السايق يقبل طلبك", + "points": "نقاط", + "price is": "السعر هو", + "privacy policy": "سياسة الخصوصية", + "rating_count": "عدد التقييمات", + "rating_driver": "تقييم السايق", + "re eligible for a special offer!": "هتبقى مؤهل لعرض خاص!", + "registration failed": "فشل التسجيل", + "registration_date": "تاريخ التسجيل", + "reject your order.": "رفض طلبك.", + "rejected": "مرفوض", + "remaining": "المتبقي", + "reviews": "التقييمات", + "rides": "الرحلات", + "ru": "ru", + "s Degree": "درجة", + "s License": "رخصته", + "s Personal Information": "المعلومات الشخصية", + "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 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. 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!": "حان الوقت للتحقق من تطبيق سيرو!", + "safe_and_comfortable": "آمن ومريح", + "scams operations": "عمليات احتيال", + "scan Car License.": "امسح رخصة العربية.", + "seconds": "ثواني", + "security_warning": "تحذير أمني", + "send otp button": "زر إرسال OTP", + "server error try again": "خطأ في السيرفر، جرب تاني", + "server_error": "خطأ في السيرفر", + "server_error_message": "حصل خطأ في الاتصال بالسيرفر", + "similar": "متشابه", + "start": "ابدأ", + "startName'] ?? 'Unknown Location": "startName'] ?? 'موقع غير معروف", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'موقع الالتقاط", + "string": "نص", + "syriatel": "سيريتل", + "t an Egyptian phone number": "رقم موبايل مصري", + "t be late": "متتأخرش", + "t cancel!": "متلغيش!", + "t continue with us .": "مقدرش تكمل معانا.", + "t continue with us .\\nYou should renew Driver license": "مقدرش تكمل معانا.\\nلازم تجدد رخصة القيادة", + "t find a valid route to this destination. Please try selecting a different point.": "ملاقيش طريق صالح للوجهة دي. من فضلك جرب تختار نقطة تانية.", + "t forget your personal belongings.": "متتنسيش حاجاتك الشخصية.", + "t forget your ride!": "متتنسيش رحلتك!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ملاقيش سايقين لسه. فكّر في زيادة رسوم رحلتك عشان تجعل عرضك أكثر جاذبية للسايقين.", + "t have a code": "ممعكش كود", + "t have a phone number.": "ممعكش رقم موبايل.", + "t have a reason": "ممعكش سبب", + "t have account": "ممعكش حساب", + "t have enough money in your Siro wallet": "ممعكش فلوس كافية في محفظة سيرو بتاعتك", + "t moved sufficiently!": "متحركتش بشكل كافي!", + "t need a ride anymore": "محتاجش رحلة تاني", + "t return to use app after 1 month": "متقدر ترجع تستخدم التطبيق بعد شهر", + "t start trip if not": "متبدأش الرحلة إذا مش", + "t start trip if passenger not in your car": "متبدأش الرحلة إذا الراكب مش في عربيتك", + "terms of use": "شروط الاستخدام", + "the 300 points equal 300 L.E": "الـ 300 نقطة بتساوي 300 جنيه مصري", + "the 300 points equal 300 L.E for you": "الـ 300 نقطة بتساوي 300 جنيه مصري ليك", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "الـ 300 نقطة بتساوي 300 جنيه مصري ليك\\nاذهب واستلم فلوسك", + "the 3000 points equal 3000 L.E": "الـ 3000 نقطة بتساوي 3000 جنيه مصري", + "the 3000 points equal 3000 L.E for you": "الـ 3000 نقطة بتساوي 3000 جنيه مصري ليك", + "the 500 points equal 30 JOD": "الـ 500 نقطة بتساوي 30 دينار أردني", + "the 500 points equal 30 JOD for you": "الـ 500 نقطة بتساوي 30 دينار أردني ليك", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "الـ 500 نقطة بتساوي 30 دينار أردني ليك\\nاذهب واستلم فلوسك", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "ده هو عدد كل رحلاتك في عرض بعد الظهر النهاردة من 3:00 مساءً لـ 6:00 مساءً", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "ده هو عدد كل رحلاتك في عرض بعد الظهر النهاردة من 3:00 مساءً لـ 6:00 مساءً", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "ده هو عدد كل رحلاتك في عرض الصباح النهاردة من 7:00 صباحًا لـ 10:00 صباحًا", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "ده هو عدد كل رحلاتك في عرض الصباح النهاردة من 7:00 صباحًا لـ 10:00 صباحًا", + "this will delete all files from your device": "ده هيمسح كل الملفات من جهازك", + "time Selected": "الوقت المحدد", + "tips": "الإكراميات", + "tips\\nTotal is": "الإكراميات\\nالإجمالي هو", + "title': 'scams operations": "title': 'عمليات احتيال", + "to": "لـ", + "to arrive you.": "يوصل ليك.", + "to receive ride requests even when the app is in the background.": "عشان تستلم طلبات الرحلات حتى لما التطبيق يكون في الخلفية.", + "to ride with": "تركب مع", + "token change": "تغيير الرمز", + "token updated": "تم تحديث الرمز", + "towards": "باتجاه", + "tr": "tr", + "transaction_failed": "فشلت المعاملة", + "transaction_id": "رقم المعاملة", + "transfer Successful": "تم التحويل بنجاح", + "trips": "الرحلات", + "true": "صح", + "type here": "اكتب هنا", + "unknown_document": "مستند غير معروف", + "upgrade price": "رفع السعر", + "uploaded sucssefuly": "تم الرفع بنجاح", + "ve arrived.": "وصلت.", + "ve been trying to reach you but your phone is off.": "كنت بحاول أوصل ليك بس موبايلك مقفول.", + "verify and continue button": "زر التحقق والمتابعة", + "verify your number title": "عنوان التحقق من رقمك", + "vin": "الرقم التعريفي (VIN)", + "wait 1 minute to receive message": "انتظر دقيقة واحدة عشان تستلم الرسالة", + "wallet due to a previous trip.": "محفظة بسبب رحلة سابقة.", + "wallet_credited_message": "تمت الإضافة", + "wallet_updated": "تم تحديث المحفظة", + "welcome to siro": "أهلاً بك في سيرو", + "welcome user": "أهلاً بالمستخدم", + "welcome_message": "رسالة الترحيب", + "welcome_to_siro": "أهلاً بك في سيرو", + "whatsapp', phone1, 'Hello": "واتساب', phone1, 'أهلاً", + "with license plate": "مع لوحة الترخيص", + "with type": "مع النوع", + "witout zero": "بدون صفر", + "write Color for your car": "اكتب لون سيارتك", + "write Expiration Date for your car": "اكتب تاريخ انتهاء صلاحية سيارتك", + "write Make for your car": "اكتب ماركة سيارتك", + "write Model for your car": "اكتب موديل سيارتك", + "write Year for your car": "اكتب سنة صنع سيارتك", + "write comment here": "اكتب تعليقك هنا", + "write vin for your car": "اكتب الرقم التعريفي لسيارتك (VIN)", + "year :": "السنة :", + "you are not moved yet !": "لم تتحرك بعد!", + "you can buy": "يمكنك الشراء", + "you can show video how to setup": "يمكنك عرض فيديو حول كيفية الإعداد", + "you canceled order": "لقد ألغيت الطلب", + "you dont have accepted ride": "ليس لديك رحلة مقبولة", + "you gain": "تكسب", + "you have a negative balance of": "لديك رصيد سلبي بقيمة", + "you have connect to passengers and let them cancel the order": "لقد قمت بالتواصل مع الركاب وسمحت لهم بإلغاء الطلب", + "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 use this device?": "هل ستستخدم هذا الجهاز؟", + "your ride is Accepted": "تم قبول رحلتك", + "your ride is applied": "تم تطبيق رحلتك", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة للوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "يتوفر تحديث جديد", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ليرة سورية", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول إلى 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "تاريخ الانتهاء", + "⚠️ You need to choose an amount!": "⚠️ تحتاج إلى اختيار مبلغ!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'تم الوصول إلى المستوى الأقصى!", + "💰 Pay with Wallet": "💰 ادفع عبر المحفظة", + "💳 Pay with Credit Card": "💳 ادفع ببطاقة ائتمان", }; diff --git a/siro_driver/lib/controller/local/ar_jo.dart b/siro_driver/lib/controller/local/ar_jo.dart index f9118e6..89537be 100644 --- a/siro_driver/lib/controller/local/ar_jo.dart +++ b/siro_driver/lib/controller/local/ar_jo.dart @@ -1,2529 +1,2662 @@ final Map ar_jo = { -" \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", -" and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية الخاصة بنا.", -" is ON for this month": "مُفعَّلة لهذا الشهر", -"\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"نقاط", -"\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'رحلة", -"\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'رحلة", -"\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'تمت إضافته إلى رصيدك", -"\$title \$subtitle": "\$title \$subtitle", -"\${\"amount": "\${\"المبلغ", -"\${\"Minimum transfer amount is": "\${\"الحد الأدنى لمبلغ التحويل هو", -"\${\"NationalID": "\${\"الهوية الوطنية", -"\${\"NEXT STEP": "\${\"الخطوة التالية", -"\${\"Passenger cancelled the ride.": "\${\"ألغى الراكب الرحلة.", -"\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"إجمالي الميزانيات للشهر\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", -"\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"إجمالي الرحلات للشهر\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", -"\${\"transaction_id": "\${\"معرف المعاملة", -"\${\"Transfer Fee": "\${\"رسوم التحويل", -"\${\"You must leave at least": "\${\"يجب أن تترك على الأقل", -"\${'*Siro APP CODE*": "\${'*رمز تطبيق سيرو*", -"\${'*Siro DRIVER CODE*": "\${'*رمز سائق سيرو*", -"\${'Address": "\${'العنوان", -"\${'Address: ": "\${'العنوان: ", -"\${'Age": "\${'العمر", -"\${'An unexpected error occurred:": "\${'حدث خطأ غير متوقع:", -"\${'Average of Hours of": "\${'متوسط ساعات", -"\${'Be sure for take accurate images please\nYou have": "\${'تأكد من التقاط صور واضحة من فضلك\nلديك", -"\${'before": "\${'قبل", -"\${'Car Expire": "\${'انتهاء صلاحية السيارة", -"\${'Car Kind": "\${'نوع السيارة", -"\${'Car Plate": "\${'لوحة السيارة", -"\${'Chassis": "\${'الشاسيه", -"\${'Color": "\${'اللون", -"\${'Date of Birth": "\${'تاريخ الميلاد", -"\${'Date of Birth: ": "\${'تاريخ الميلاد: ", -"\${'Displacement": "\${'السعة", -"\${'Document Number: ": "\${'رقم الوثيقة: ", -"\${'Drivers License Class": "\${'فئة رخصة القيادة", -"\${'Drivers License Class: ": "\${'فئة رخصة القيادة: ", -"\${'expected": "\${'متوقّع", -"\${'Expiry Date": "\${'تاريخ الانتهاء", -"\${'Expiry Date: ": "\${'تاريخ الانتهاء: ", -"\${'Failed to save driver data": "\${'فشل حفظ بيانات السائق", -"\${'Fuel": "\${'الوقود", -"\${'FullName": "\${'الاسم الكامل", -"\${'Height: ": "\${'الطول: ", -"\${'Hi": "\${'مرحباً", -"\${'How can I register as a driver?": "\${'كيف يمكنني التسجيل كسائق؟", -"\${'Inspection Date": "\${'تاريخ الفحص", -"\${'InspectionResult": "\${'نتيجة الفحص", -"\${'IssueDate": "\${'تاريخ الإصدار", -"\${'License Expiry Date": "\${'تاريخ انتهاء الرخصة", -"\${'Made :": "\${'الصانع :", -"\${'Make": "\${'العلامة التجارية", -"\${'Model": "\${'الموديل", -"\${'model :": "\${'الموديل :", -"\${'Name": "\${'الاسم", -"\${'Name :": "\${'الاسم :", -"\${'Name in arabic": "\${'الاسم بالعربية", -"\${'National Number": "\${'الرقم الوطني", -"\${'NationalID": "\${'الهوية الوطنية", -"\${'Next Level:": "\${'المستوى التالي:", -"\${'OrderId": "\${'رقم الطلب", -"\${'Owner Name": "\${'اسم المالك", -"\${'Plate Number": "\${'رقم اللوحة", -"\${'Please enter": "\${'الرجاء إدخال", -"\${'Please wait": "\${'الرجاء الانتظار", -"\${'Price:": "\${'السعر:", -"\${'Remaining:": "\${'المتبقي:", -"\${'Ride": "\${'الرحلة", -"\${'Tax Expiry Date": "\${'تاريخ انتهاء الضريبة", -"\${'The price must be over than ": "\${'يجب أن يكون السعر أكثر من ", -"\${'The reason is": "\${'السبب هو", -"\${'Transaction successful": "\${'تمت المعاملة بنجاح", -"\${'Update": "\${'تحديث", -"\${'VIN :": "\${'الرقم التعريفي للمركبة (VIN) :", -"\${'wallet_credited_message": "\${'تمت إضافة المبلغ إلى محفظتك", -"\${'We have sent a verification code to your mobile number:": "\${'لقد أرسلنا رمز التحقق إلى رقم هاتفك:", -"\${'When": "\${'متى", -"\${'Year": "\${'السنة", -"\${'year :": "\${'السنة :", -"\${'You can resend in": "\${'يمكنك إعادة الإرسال خلال", -"\${'You gained": "\${'لقد ربحت", -"\${'You have call from driver": "\${'لديك مكالمة من السائق", -"\${'You have in account": "\${'لديك في الحساب", -"\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", -"\${'الوقت المتبقي": "\${'الوقت المتبقي", -"\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", -"\${'ُExpire Date": "\${'تاريخ الانتهاء", -"\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'رحلة", -"\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'رحلة", -"\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'دينار أردني", -"\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", -"\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'نقاط", -"\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'رحلات", -"\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", -"\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'إنجازات", -"\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'تقييمات", -"\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'نشط", -"\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'إجمالي الدعوات", -"\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'مكافآت", -"\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'أيام", -"'": "'", -"([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"نص", -"([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"نص", -"([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"نص", -"([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"نص", -"([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'نص", -"([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'نص", -"([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'نص", -")[1]}": ")[1]}", -"*Siro APP CODE*": "*رمز تطبيق سيرو*", -"*Siro DRIVER CODE*": "*رمز سائق سيرو*", -"--": "--", -"-1% commission": "خصم 1% من العمولة", -"-2% commission": "خصم 2% من العمولة", -"-5% commission": "خصم 5% من العمولة", -". I am at least 18 years of age.": ". أنا عمري 18 سنة أو أكثر.", -". I am at least 18 years old.": ". أنا عمري 18 سنة أو أكثر.", -". The app will connect you with a nearby driver.": ". سيقوم التطبيق بتوصيلك بأقرب سائق.", -"0.05 \${'JOD": "0.05 \${'دينار أردني", -"0.47 \${'JOD": "0.47 \${'دينار أردني", -"1 \${'JOD": "1 \${'دينار أردني", -"1 \${'LE": "1 \${'جنيه مصري", -"1', 'Share your code": "1', 'شارك رمزك", -"1. Describe Your Issue": "1. صف مشكلتك", -"1. Select Ride": "1. اختر الرحلة", -"10 and get 4% discount": "10 واحصل على خصم 4%", -"100 and get 11% discount": "100 واحصل على خصم 11%", -"15 \${'LE": "15 \${'جنيه مصري", -"15000 \${'LE": "15000 \${'جنيه مصري", -"1999": "1999", -"2', 'Friend signs up": "2', 'يسجّل صديقك", -"2. Attach Recorded Audio": "2. أرفق التسجيل الصوتي", -"2. Attach Recorded Audio (Optional)": "2. أرفق التسجيل الصوتي (اختياري)", -"2. Describe Your Issue": "2. اكتب وصفاً للمشكلة", -"20 \${'LE": "20 \${'جنيه مصري", -"20 and get 6% discount": "20 واحصل على خصم 6%", -"200 \${'JOD": "200 \${'دينار أردني", -"27\\\\": "27\\\\", -"3 digit": "3 أرقام", -"3', 'Both earn rewards": "3', 'يكسب كل منكما مكافآت", -"3. Attach Recorded Audio (Optional)": "3. أرفق التسجيل الصوتي (اختياري)", -"3. Review Details & Response": "3. راجع التفاصيل والرد", -"300 LE": "300 جنيه مصري", -"3000 LE": "3000 جنيه مصري", -"4', 'Bonus at 10 trips": "4', 'مكافأة عند إكمال 10 رحلات", -"4. Review Details & Response": "4. راجع التفاصيل والرد", -"40 and get 8% discount": "40 واحصل على خصم 8%", -"5 digit": "5 أرقام", -"<< BACK": "<< رجوع", -"\\\$": "\\\$", -"\\\$error": "حدث خطأ", -"\\\$pricePoint": "\\\$pricePoint", -"\\\$title \\\$subtitle": "\\\$title \\\$subtitle", -"\\\${AppInformation.appName} Wallet": "محفظة \\\${AppInformation.appName}", -"\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nكما نعطي أولوية للتكلفة المناسبة، حيث نقدم أسعاراً تنافسية لجعل رحلاتك في متناول الجميع.", -"A connection error occurred": "حدث خطأ في الاتصال", -"A new version of the app is available. Please update to the latest version.": "يتوفر إصدار جديد من التطبيق. يرجى التحديث إلى أحدث إصدار.", -"A promotion record for this driver already exists for today.": "يوجد سجل ترويجي لهذا السائق اليوم بالفعل.", -"A trip with a prior reservation, allowing you to choose the best captains and cars.": "رحلة محجوزة مسبقاً، تتيح لك اختيار أفضل الكباتن والسيارات.", -"About Us": "من نحن", -"Abu Dhabi Commercial Bank – Egypt": "بنك أبوظبي التجاري – مصر", -"Abu Dhabi Islamic Bank – Egypt": "بنك أبوظبي الإسلامي – مصر", -"Accept": "قبول", -"Accept Order": "قبول الطلب", -"Accept Ride": "قبول الرحلة", -"accepted": "مقبولة", -"Accepted Ride": "تم قبول الرحلة", -"Accepted your order": "تم قبول طلبك", -"accepted your order": "تم قبول طلبك", -"accepted your order at price": "تم قبول طلبك بالسعر", -"Account": "الحساب", -"Account Updated": "تم تحديث الحساب", -"Achievements": "الإنجازات", -"Active Duration": "مدة النشاط", -"Active Duration:": "مدة النشاط:", -"Active Ride": "الرحلة النشطة", -"Active ride in progress. Leaving might stop tracking. Exit?": "رحلة نشطة جارية. قد يؤدي الخروج إلى إيقاف التتبع. هل تريد الخروج؟", -"Active Users": "المستخدمون النشطون", -"Activities": "الأنشطة", -"Add a comment (optional)": "أضف تعليقاً (اختياري)", -"Add a Stop": "أضف محطة", -"Add Balance": "إضافة رصيد", -"Add bank Account": "إضافة حساب بنكي", -"Add Card": "إضافة بطاقة", -"Add Credit Card": "إضافة بطاقة ائتمان", -"Add criminal page": "أضف صحيفة الحالة الجنائية", -"Add funds using our secure methods": "أضف أموالاً باستخدام طرقنا الآمنة", -"Add Home": "إضافة المنزل", -"Add Location": "إضافة موقع", -"Add Location 1": "إضافة الموقع 1", -"Add Location 2": "إضافة الموقع 2", -"Add Location 3": "إضافة الموقع 3", -"Add Location 4": "إضافة الموقع 4", -"Add new car": "إضافة سيارة جديدة", -"Add Payment Method": "إضافة طريقة دفع", -"Add Phone": "إضافة هاتف", -"Add Promo": "أضف رمزاً ترويجياً", -"Add Question": "أضف سؤالاً", -"Add SOS Phone": "أضف رقم طوارئ", -"Add Stops": "إضافة محطات", -"Add to Passenger Wallet": "إضافة إلى محفظة الراكب", -"Add wallet phone you use": "أضف رقم محفظتك المستخدم", -"Add Work": "إضافة مكان العمل", -"Address": "العنوان", -"Address:": "العنوان:", -"Admin DashBoard": "لوحة تحكم المسؤول", -"Affordable for Everyone": "مناسب للجميع", -"After this period": "بعد هذه الفترة", -"Afternoon Promo": "عرض ما بعد الظهر", -"Afternoon Promo Rides": "رحلات عرض ما بعد الظهر", -"Age": "العمر", -"age": "العمر", -"Age is": "العمر هو", -"agreement subtitle": "عنوان الاتفاقية", -"Agricultural Bank of Egypt": "البنك الزراعي المصري", -"Ahli United Bank": "بنك الأهلي المتحد", -"AI failed to extract info": "فشل الذكاء الاصطناعي في استخراج المعلومات", -"AI Page": "صفحة الذكاء الاصطناعي", -"Air condition Trip": "رحلة مكيفة", -"airport": "المطار", -"Al Ahli Bank of Kuwait – Egypt": "بنك الأهلي الكويتي – مصر", -"Al Baraka Bank Egypt B.S.C.": "بنك البركة مصر", -"Alert": "تنبيه", -"alert": "تنبيه", -"Alerts": "التنبيهات", -"Alex Bank Egypt": "بنك الإسكندرية مصر", -"Allow Location Access": "السماح بالوصول إلى الموقع", -"Allow overlay permission": "السماح بصلاحية العرض فوق التطبيقات", -"Allowing location access will help us display orders near you. Please enable it now.": "السماح بالوصول إلى الموقع سيساعدنا في عرض الطلبات القريبة منك. يرجى تفعيله الآن.", -"Already have an account? Login": "هل لديك حساب بالفعل؟ سجّل الدخول", -"Amount": "المبلغ", -"amount": "المبلغ", -"Amount to charge:": "المبلغ المراد شحنه:", -"amount_paid": "المبلغ المدفوع", -"An application error occurred during upload.": "حدث خطأ في التطبيق أثناء الرفع.", -"An application error occurred.": "حدث خطأ في التطبيق.", -"An error occurred": "حدث خطأ", -"an error occurred": "حدث خطأ", -"An error occurred during contact sync: \$e": "حدث خطأ أثناء مزامنة جهات الاتصال: \$e", -"An error occurred during contact sync: \\\$e": "حدث خطأ أثناء مزامنة جهات الاتصال: \\\$e", -"An error occurred during the payment process.": "حدث خطأ أثناء عملية الدفع.", -"An error occurred while connecting to the server.": "حدث خطأ أثناء الاتصال بالخادم.", -"An error occurred while loading contacts: \$e": "حدث خطأ أثناء تحميل جهات الاتصال: \$e", -"An error occurred while loading contacts: \\\$e": "حدث خطأ أثناء تحميل جهات الاتصال: \\\$e", -"An error occurred while picking a contact": "حدث خطأ أثناء اختيار جهة اتصال", -"An error occurred while picking contacts:": "حدث خطأ أثناء اختيار جهات الاتصال:", -"An error occurred while saving driver data": "حدث خطأ أثناء حفظ بيانات السائق", -"An OTP has been sent to your number.": "تم إرسال رمز التحقق إلى رقمك.", -"An unexpected error occurred. Please try again.": "حدث خطأ غير متوقع. يرجى المحاولة مرة أخرى.", -"An unexpected error occurred:": "حدث خطأ غير متوقع:", -"An unknown server error occurred": "حدث خطأ غير معروف في الخادم.", -"and acknowledge our": "وأوافق على", -"and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية الخاصة بنا.", -"and acknowledge the": "وأوافق على", -"and I have a trip on": "ولدي رحلة على", -"Any comments about the passenger?": "هل لديك أي تعليقات حول الراكب؟", -"App Dark Mode": "الوضع الداكن للتطبيق", -"App Preferences": "تفضيلات التطبيق", -"App with Passenger": "التطبيق مع الراكب", -"app_description": "وصف التطبيق", -"Applied": "تم التطبيق", -"Apply": "تطبيق", -"Apply Order": "تطبيق الطلب", -"Apply Promo Code": "تطبيق الرمز الترويجي", -"Approaching your area. Should be there in 3 minutes.": "يقترب من منطقتك. سيصل خلال 3 دقائق.", -"Approve Driver Documents": "الموافقة على وثائق السائق", -"ar": "ar", -"ar-gulf": "ar-gulf", -"ar-ma": "ar-ma", -"Arab African International Bank": "البنك العربي الأفريقي الدولي", -"Arab Bank PLC": "البنك العربي", -"Arab Banking Corporation - Egypt S.A.E": "الشركة العربية المصرفية - مصر", -"Arab International Bank": "البنك العربي الدولي", -"Arab Investment Bank": "بنك الاستثمار العربي", -"Are you sure to cancel?": "هل أنت متأكد من الإلغاء؟", -"Are you sure to delete recorded files": "هل أنت متأكد من حذف الملفات المسجلة؟", -"Are you sure to delete this location?": "هل أنت متأكد من حذف هذا الموقع؟", -"Are you sure to delete your account?": "هل أنت متأكد من حذف حسابك؟", -"Are you sure to exit ride ?": "هل أنت متأكد من إنهاء الرحلة؟", -"Are you sure to exit ride?": "هل أنت متأكد من إنهاء الرحلة؟", -"Are You sure to LogOut?": "هل أنت متأكد من تسجيل الخروج؟", -"Are you sure to make this car as default": "هل أنت متأكد من جعل هذه السيارة افتراضية؟", -"Are You sure to ride to": "هل أنت متأكد من الذهاب إلى", -"Are you sure you want to cancel and collect the fee?": "هل أنت متأكد من الإلغاء واستلام الرسوم؟", -"Are you sure you want to cancel this trip?": "هل أنت متأكد من إلغاء هذه الرحلة؟", -"Are you sure you want to logout?": "هل أنت متأكد من تسجيل الخروج؟", -"Are you sure?": "هل أنت متأكد؟", -"Are you sure? This action cannot be undone.": "هل أنت متأكد؟ لا يمكن التراجع عن هذا الإجراء.", -"Are you want to change": "هل تريد تغيير", -"Are you want to go this site": "هل تريد الذهاب إلى هذا الموقع؟", -"Are you want to go to this site": "هل تريد الذهاب إلى هذا الموقع؟", -"Are you want to wait drivers to accept your order": "هل تريد انتظار السائقين لقبول طلبك؟", -"Arrival time": "وقت الوصول", -"arrival time to reach your point": "وقت الوصول لنقطتك", -"as the driver.": "كسائق.", -"Associate Degree": "درجة الزمالة", -"attach audio of complain": "أرفق صوت الشكوى", -"attach correct audio": "أرفق الصوت الصحيح", -"Attach this audio file?": "هل تريد إرفاق ملف الصوت هذا؟", -"Attention": "تنبيه", -"ATTIJARIWAFA BANK Egypt": "بنك التجاري وفا مصر", -"Audio file not attached": "لم يتم إرفاق ملف صوتي", -"Audio uploaded successfully.": "تم رفع الملف الصوتي بنجاح.", -"Authentication failed": "فشل المصادقة", -"Available Balance": "الرصيد المتاح", -"Available for rides": "متاح للرحلات", -"Available Rides": "الرحلات المتاحة", -"Average of Hours of": "متوسط ساعات", -"Awaiting response...": "بانتظار الرد...", -"Awfar Car": "سيارة أوفر", -"Bachelor\\'s Degree": "درجة البكالوريوس", -"Back": "رجوع", -"Back to other sign-in options": "العودة إلى خيارات تسجيل الدخول الأخرى", -"Bahrain": "البحرين", -"Balance": "الرصيد", -"Balance limit exceeded": "تم تجاوز حد الرصيد", -"Balance not enough": "الرصيد غير كافٍ", -"Balance:": "الرصيد:", -"Bank Account": "حساب بنكي", -"Bank account added successfully": "تمت إضافة الحساب البنكي بنجاح", -"Bank Card Payment": "الدفع ببطاقة بنكية", -"Banque Du Caire": "بنك القاهرة", -"Banque Misr": "بنك مصر", -"Basic features": "الميزات الأساسية", -"Be Slowly": "خفّف السرعة", -"be sure": "تأكد", -"Be sure for take accurate images please": "تأكد من التقاط صور واضحة من فضلك", -"Be sure for take accurate images please\nYou have": "تأكد من التقاط صور واضحة من فضلك\nلديك", -"Be sure to use it quickly! This code expires at": "تأكد من استخدامه بسرعة! ينتهي هذا الرمز في", -"Because we are near, you have the flexibility to choose the ride that works best for you.": "لأننا قريبون، لديك المرونة لاختيار الرحلة الأنسب لك.", -"before": "قبل", -"Before we start, please review our terms.": "قبل أن نبدأ، يرجى مراجعة شروطنا.", -"Behavior Page": "صفحة السلوك", -"Behavior Score": "درجة السلوك", -"below, I confirm that I have read and agree to the": "أدناه، أؤكد أنني قرأت ووافقت على", -"below, I have reviewed and agree to the Terms of Use and acknowledge the": "أدناه، لقد راجعت ووافقت على شروط الاستخدام وأقرّ بـ", -"below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "أدناه، لقد راجعت ووافقت على شروط الاستخدام وأقرّ بإشعار الخصوصية. أنا عمري 18 سنة أو أكثر.", -"Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "الخيار الأفضل لسيارة مريحة مع طريق مرن ومحطات توقف. يقدم هذا المطار تأشيرة دخول بهذا السعر.", -"Best choice for cities": "الخيار الأفضل للمدن", -"Best choice for comfort car and flexible route and stops point": "الخيار الأفضل لسيارة مريحة مع طريق مرن ومحطات توقف", -"Best Day": "أفضل يوم", -"Biometric Authentication": "المصادقة البيومترية", -"Birth Date": "تاريخ الميلاد", -"Birth year must be 4 digits": "يجب أن يكون عام الميلاد مكوناً من 4 أرقام", -"birthdate": "تاريخ الميلاد", -"Birthdate Mismatch": "عدم تطابق تاريخ الميلاد", -"Birthdate on ID front and back does not match.": "لا يتطابق تاريخ الميلاد على الوجه الأمامي والخلفي للهوية.", -"Blom Bank": "بنك بلوم", -"Bonus gift": "هدية مكافأة", -"bonus_added": "تمت إضافة المكافأة", -"BookingFee": "رسوم الحجز", -"Bottom Bar Example": "مثال الشريط السفلي", -"But you have a negative salary of": "لكنك لديك راتب سلبي بقيمة", -"by": "بواسطة", -"by this list below": "بهذه القائمة أدناه", -"Calculating...": "قيد الحساب...", -"Call": "اتصل", -"Call Connected": "تم الاتصال", -"Call Driver": "اتصل بالسائق", -"Call End": "انتهت المكالمة", -"Call Ended": "انتهت المكالمة", -"Call Income": "مكالمة واردة", -"Call Income from Driver": "مكالمة واردة من السائق", -"Call Income from Passenger": "مكالمة واردة من الراكب", -"Call Left": "مكالمة فائتة", -"Call Options": "خيارات الاتصال", -"Call Page": "صفحة الاتصال", -"Call Passenger": "اتصل بالراكب", -"Call Support": "اتصل بالدعم", -"Calling": "يتصل بـ", -"Calling non-Syrian numbers is not supported": "غير مدعوم الاتصال بالأرقام غير السورية", -"Camera Access Denied.": "تم رفض الوصول إلى الكاميرا.", -"Camera not initialized yet": "لم يتم تهيئة الكاميرا بعد", -"Camera not initilaized yet": "لم يتم تهيئة الكاميرا بعد", -"Can I cancel my ride?": "هل يمكنني إلغاء رحلتي؟", -"Can we know why you want to cancel Ride ?": "هل يمكننا معرفة سبب رغبتك في إلغاء الرحلة؟", -"Cancel": "إلغاء", -"cancel": "إلغاء", -"Cancel & Collect Fee": "إلغاء واستلام الرسوم", -"Cancel Ride": "إلغاء الرحلة", -"Cancel Search": "إلغاء البحث", -"Cancel Trip": "إلغاء الرحلة", -"Cancel Trip from driver": "إلغاء الرحلة من السائق", -"Cancel Trip?": "إلغاء الرحلة؟", -"Canceled": "ملغاة", -"Canceled Orders": "الطلبات الملغاة", -"Cancelled": "ملغاة", -"Cancelled by Passenger": "تم الإلغاء بواسطة الراكب", -"Cannot apply further discounts.": "لا يمكن تطبيق خصومات إضافية.", -"Captain": "الكابتن", -"Capture an Image of Your car license back": "التقط صورة للوجه الخلفي لرخصة سيارتك", -"Capture an Image of Your car license front": "التقط صورة للوجه الأمامي لرخصة سيارتك", -"Capture an Image of Your car license front ": "التقط صورة للوجه الأمامي لرخصة سيارتك", -"Capture an Image of Your Criminal Record": "التقط صورة لصحيفة الحالة الجنائية الخاصة بك", -"Capture an Image of Your Driver License": "التقط صورة لرخصة قيادتك", -"Capture an Image of Your Driver’s License": "التقط صورة لرخصة قيادتك", -"Capture an Image of Your ID Document Back": "التقط صورة للوجه الخلفي لوثيقتك الشخصية", -"Capture an Image of Your ID Document front": "التقط صورة للوجه الأمامي لوثيقتك الشخصية", -"Car": "السيارة", -"Car Color": "لون السيارة", -"Car Color (Hex)": "لون السيارة (سداسي)", -"Car Color (Name)": "لون السيارة (الاسم)", -"Car Color:": "لون السيارة:", -"Car Details": "تفاصيل السيارة", -"Car Expire": "انتهاء صلاحية السيارة", -"Car Kind": "نوع السيارة", -"Car License Card": "رخصة تسجيل السيارة", -"Car Make (e.g., Toyota)": "ماركة السيارة (مثل تويوتا)", -"Car Make:": "ماركة السيارة:", -"Car Model (e.g., Corolla)": "موديل السيارة (مثل كورولا)", -"Car Model:": "موديل السيارة:", -"Car Plate": "لوحة السيارة", -"Car Plate is": "لوحة السيارة هي", -"Car Plate Number": "رقم لوحة السيارة", -"Car Plate:": "لوحة السيارة:", -"Car Registration (Back)": "تسجيل السيارة (الخلفي)", -"Car Registration (Front)": "تسجيل السيارة (الأمامي)", -"Car Type": "نوع السيارة", -"car_back": "خلفي السيارة", -"car_color": "لون السيارة", -"car_front": "أمامي السيارة", -"car_license_back": "الجانب الخلفي لرخصة السيارة", -"car_license_front": "الجانب الأمامي لرخصة السيارة", -"car_model": "موديل السيارة", -"car_plate": "لوحة السيارة", -"Card Earnings": "أرباح البطاقة", -"Card Number": "رقم البطاقة", -"Card Payment": "الدفع بالبطاقة", -"CardID": "رقم البطاقة", -"carType'] ?? 'Fixed Price": "carType'] ?? 'سعر ثابت", -"Cash": "نقداً", -"Cash Earnings": "الأرباح النقدية", -"Cash Out": "سحب الأموال", -"Central Bank Of Egypt": "البنك المركزي المصري", -"Century Rider": "سائق القرن", -"Challenges": "التحديات", -"Change Country": "تغيير الدولة", -"change device": "تغيير الجهاز", -"Change Home location?": "تغيير موقع المنزل؟", -"Change Ride": "تغيير الرحلة", -"Change Route": "تغيير الطريق", -"Change the app language": "تغيير لغة التطبيق", -"Change Work location?": "تغيير موقع العمل؟", -"Charge your Account": "شحن حسابك", -"Charge your account.": "شحن حسابك.", -"Chassis": "الشاسيه", -"Check back later for new offers!": "تحقق لاحقاً للحصول على عروض جديدة!", -"Checking for updates...": "جارٍ التحقق من وجود تحديثات...", -"Choose a contact option": "اختر خيار جهة اتصال", -"Choose between those Type Cars": "اختر بين أنواع السيارات هذه", -"Choose Claim Method": "اختر طريقة الاستلام", -"Choose from contact": "اختر من جهات الاتصال", -"Choose from Map": "اختر من الخريطة", -"Choose how you want to call the passenger": "اختر كيف تريد الاتصال بالراكب", -"Choose Language": "اختر اللغة", -"Choose the trip option that perfectly suits your needs and preferences.": "اختر خيار الرحلة الذي يناسب احتياجاتك وتفضيلاتك تماماً.", -"Choose who this order is for": "اختر لمن هذا الطلب", -"Choose your ride": "اختر رحلتك", -"Citi Bank N.A. Egypt": "سيتي بنك مصر", -"City": "المدينة", -"Claim": "استلام", -"Claim Reward": "استلام المكافأة", -"Claim your 20 LE gift for inviting": "استلم هديتك البالغة 20 جنيه مصري مقابل الدعوة", -"Claimed": "تم الاستلام", -"Click here point": "انقر هنا", -"Click here to Show it in Map": "انقر هنا لعرضه على الخريطة", -"CliQ": "CliQ", -"CliQ Payment": "دفع عبر CliQ", -"Close": "إغلاق", -"Closest & Cheapest": "الأقرب والأرخص", -"Closest to You": "الأقرب إليك", -"CODE": "الرمز", -"Code": "الرمز", -"Code approved": "تمت الموافقة على الرمز", -"Code copied!": "تم نسخ الرمز!", -"Code not approved": "لم تتم الموافقة على الرمز", -"Collect Cash": "جمع النقود", -"Collect Payment": "جمع الدفع", -"Color": "اللون", -"Color is": "اللون هو", -"color.beige": "بيج", -"color.black": "أسود", -"color.blue": "أزرق", -"color.bronze": "برونزي", -"color.brown": "بني", -"color.burgundy": "بورجوندي", -"color.champagne": "شمبانيا", -"color.darkGreen": "أخضر داكن", -"color.gold": "ذهبي", -"color.gray": "رمادي", -"color.green": "أخضر", -"color.gunmetal": "معدني رمادي", -"color.maroon": "بني محمر", -"color.navy": "أزرق داكن", -"color.orange": "برتقالي", -"color.purple": "بنفسجي", -"color.red": "أحمر", -"color.silver": "فضي", -"color.white": "أبيض", -"color.yellow": "أصفر", -"Comfort": "كومفورت", -"Comfort choice": "خيار مريح", -"Comfort ❄️": "كومفورت ❄️", -"Comfort: For cars newer than 2017 with air conditioning.": "كومفورت: للسيارات الأحدث من 2017 والمزودة بمكيف هواء.", -"Coming Soon": "قريباً", -"Commercial International Bank - Egypt S.A.E": "البنك التجاري الدولي - مصر", -"Commission": "العمولة", -"committed_to_safety": "ملتزم بالسلامة", -"Communication": "التواصل", -"Compatible, you may notice some slowness": "متوافق، قد تلاحظ بعض البطء", -"Compensation Received": "تم استلام التعويض", -"Complaint": "شكوى", -"Complaint cannot be filed for this ride. It may not have been completed or started.": "لا يمكن تقديم شكوى لهذه الرحلة. قد لا تكون قد بدأت أو اكتملت بعد.", -"Complaint data saved successfully": "تم حفظ بيانات الشكوى بنجاح", -"Complete 100 trips": "أكمل 100 رحلة", -"Complete 50 trips": "أكمل 50 رحلة", -"Complete 500 trips": "أكمل 500 رحلة", -"Complete Payment": "إكمال الدفع", -"complete profile subtitle": "عنوان إكمال الملف الشخصي", -"complete registration button": "زر إكمال التسجيل", -"Complete your first trip": "أكمل رحلتك الأولى", -"complete, you can claim your gift": "بمجرد الإكمال، يمكنك استلام هديتك", -"Completed": "مكتملة", -"Confirm": "تأكيد", -"Confirm & Find a Ride": "تأكيد والعثور على رحلة", -"Confirm Attachment": "تأكيد المرفق", -"Confirm Cancellation": "تأكيد الإلغاء", -"Confirm Payment": "تأكيد الدفع", -"Confirm payment with biometrics": "تأكيد الدفع باستخدام القياسات الحيوية", -"Confirm Pick-up Location": "تأكيد موقع الالتقاط", -"Confirm Selection": "تأكيد الاختيار", -"Confirm Trip": "تأكيد الرحلة", -"Confirm your Email": "تأكيد بريدك الإلكتروني", -"Confirmation": "تأكيد", -"Connected": "متصل", -"Connecting...": "جارٍ الاتصال...", -"Connection error": "خطأ في الاتصال", -"connection_failed": "فشل الاتصال", -"Contact Options": "خيارات الاتصال", -"Contact permission is required to pick a contact": "مطلوب إذن جهات الاتصال لاختيار جهة اتصال", -"Contact permission is required to pick contacts": "مطلوب إذن جهات الاتصال لاختيار جهات الاتصال", -"Contact Support": "اتصل بالدعم", -"Contact Support to Recharge": "اتصل بالدعم لإعادة الشحن", -"Contact Us": "اتصل بنا", -"Contact us for any questions on your order.": "اتصل بنا لأي استفسارات حول طلبك.", -"Contacts Loaded": "تم تحميل جهات الاتصال", -"Contacts sync completed successfully!": "اكتملت مزامنة جهات الاتصال بنجاح!", -"Continue": "متابعة", -"Continue Ride": "مواصلة الرحلة", -"Continue straight": "استمر بشكل مستقيم", -"Continue to App": "المتابعة إلى التطبيق", -"copied to clipboard": "تم النسخ إلى الحافظة", -"Copy": "نسخ", -"Copy Code": "نسخ الرمز", -"Copy this Promo to use it in your Ride!": "انسخ هذا العرض الترويجي لاستخدامه في رحلتك!", -"Cost": "التكلفة", -"Cost Duration": "مدة التكلفة", -"cost is": "التكلفة هي", -"Cost Of Trip IS": "تكلفة الرحلة هي", -"Could not load trip details.": "تعذر تحميل تفاصيل الرحلة.", -"Could not start ride. Please check internet.": "تعذر بدء الرحلة. يرجى التحقق من الإنترنت.", -"Counts of budgets on days": "عدد الميزانيات حسب الأيام", -"Counts of Hours on days": "عدد الساعات حسب الأيام", -"Counts of rides on days": "عدد الرحلات حسب الأيام", -"Create Account": "إنشاء حساب", -"Create Account with Email": "إنشاء حساب باستخدام البريد الإلكتروني", -"Create Driver Account": "إنشاء حساب سائق", -"Create new Account": "إنشاء حساب جديد", -"Create Wallet to receive your money": "أنشئ محفظة لاستلام أموالك", -"created time": "وقت الإنشاء", -"Credit": "رصيد", -"Credit Agricole Egypt S.A.E": "كريدي أجريكول مصر", -"Credit card is": "بطاقة الائتمان هي", -"Criminal Document": "الوثيقة الجنائية", -"Criminal Document Required": "الوثيقة الجنائية مطلوبة", -"Criminal Record": "صحيفة الحالة الجنائية", -"Cropper": "أداة الاقتصاص", -"Current Balance": "الرصيد الحالي", -"Current Location": "الموقع الحالي", -"Customer MSISDN doesn’t have customer wallet": "رقم هاتف العميل لا يحتوي على محفظة عميل", -"Customer not found": "لم يتم العثور على العميل", -"Customer phone is not active": "هاتف العميل غير نشط", -"Daily Challenges": "التحديات اليومية", -"Daily Goal": "الهدف اليومي", -"Date": "التاريخ", -"Date and Time Picker": "منتقي التاريخ والوقت", -"Date of Birth": "تاريخ الميلاد", -"Date of Birth is": "تاريخ الميلاد هو", -"Date of Birth:": "تاريخ الميلاد:", -"Day Off": "يوم إجازة", -"Day Streak": "سلسلة الأيام", -"Days": "الأيام", -"de": "de", -"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سيرو،", -"Debit": "خصم", -"Debit Card": "بطاقة خصم", -"Dec 15 - Dec 21, 2024": "15 ديسمبر - 21 ديسمبر 2024", -"Decline": "رفض", -"default_tone": "النغمة الافتراضية", -"Delete": "حذف", -"Delete My Account": "حذف حسابي", -"Delete Permanently": "حذف نهائي", -"Deleted": "تم الحذف", -"deleted": "تم الحذف", -"Delivery": "توصيل", -"Destination": "الوجهة", -"Destination Location": "موقع الوجهة", -"Destination selected": "تم اختيار الوجهة", -"Detect Your Face": "اكتشف وجهك", -"Detect Your Face ": "اكتشف وجهك", -"detected": "تم الكشف", -"Device Change Detected": "تم اكتشاف تغيير الجهاز", -"Device Compatibility": "توافق الجهاز", -"Diamond badge": "شارة الماس", -"Diesel": "ديزل", -"Directions": "الاتجاهات", -"DISCOUNT": "خصم", -"Displacement": "السعة", -"Distance": "المسافة", -"Distance from Passenger to destination is": "المسافة من الراكب إلى الوجهة هي", -"Distance is": "المسافة هي", -"distance is": "المسافة هي", -"Distance of the Ride is": "مسافة الرحلة هي", -"Distance To Passenger is": "المسافة إلى الراكب هي", -"Do you have a disease for a long time?": "هل تعاني من مرض مزمن منذ فترة طويلة؟", -"Do you have an invitation code from another driver?": "هل لديك رمز دعوة من سائق آخر؟", -"Do you want to change Home location": "هل تريد تغيير موقع المنزل؟", -"Do you want to change Work location": "هل تريد تغيير موقع العمل؟", -"Do you want to collect your earnings?": "هل تريد جمع أرباحك؟", -"Do you want to go to this location?": "هل تريد الذهاب إلى هذا الموقع؟", -"Do you want to pay Tips for this Driver": "هل تريد دفع إكرامية لهذا السائق؟", -"Docs": "المستندات", -"Doctoral Degree": "درجة الدكتوراه", -"Document Number:": "رقم الوثيقة:", -"Documents check": "فحص المستندات", -"Don't have an account? Register": "ليس لديك حساب؟ سجّل الآن", -"Done": "تم", -"Don’t forget your personal belongings.": "لا تنسَ ممتلكاتك الشخصية.", -"Download the app now:": "حمّل التطبيق الآن:", -"Download the Siro app now and enjoy your ride!": "حمّل تطبيق سيرو الآن واستمتع برحلتك!", -"Download the Siro Driver app now and earn rewards!": "حمّل تطبيق سائق سيرو الآن واكسب مكافآت!", -"Drawing route on map...": "جارٍ رسم الطريق على الخريطة...", -"Driver": "السائق", -"Driver Accepted Request": "السائق قبل الطلب", -"Driver Accepted the Ride for You": "السائق قبل الرحلة لك", -"Driver Agreement": "اتفاقية السائق", -"Driver already has 2 trips within the specified period.": "السائق لديه بالفعل رحلتان ضمن الفترة المحددة.", -"Driver Applied the Ride for You": "السائق تقدّم للرحلة لك", -"Driver Balance": "رصيد السائق", -"Driver Behavior": "سلوك السائق", -"Driver Cancel Your Trip": "السائق ألغى رحلتك", -"Driver Cancelled Your Trip": "السائق ألغى رحلتك", -"Driver Car Plate": "لوحة سيارة السائق", -"Driver Finish Trip": "السائق أنهى الرحلة", -"Driver Invitations": "دعوات السائقين", -"Driver Is Going To Passenger": "السائق في طريقه إلى الراكب", -"Driver is on the way": "السائق في الطريق", -"Driver is waiting": "السائق ينتظر", -"Driver is waiting at pickup.": "السائق ينتظر في نقطة الالتقاط.", -"Driver joined the channel": "انضم السائق إلى القناة", -"Driver left the channel": "غادر السائق القناة", -"Driver Level": "مستوى السائق", -"Driver License (Back)": "رخصة القيادة (الخلفي)", -"Driver License (Front)": "رخصة القيادة (الأمامي)", -"Driver List": "قائمة السائقين", -"Driver Login": "تسجيل دخول السائق", -"Driver Message": "رسالة السائق", -"Driver Name": "اسم السائق", -"Driver Name:": "اسم السائق:", -"Driver phone": "هاتف السائق", -"Driver Phone:": "هاتف السائق:", -"Driver Portal": "بوابة السائق", -"Driver Referral": "إحالة السائق", -"Driver Registration": "تسجيل السائق", -"Driver Registration & Requirements": "تسجيل السائق والمتطلبات", -"Driver Wallet": "محفظة السائق", -"driver' ? 'Invite Driver": "driver' ? 'دعوة سائق", -"Driver's Personal Information": "المعلومات الشخصية للسائق", -"DRIVER123": "DRIVER123", -"driver_license": "رخصة القيادة", -"Drivers": "السائقون", -"Drivers License Class": "فئة رخصة القيادة", -"Drivers License Class:": "فئة رخصة القيادة:", -"Drivers received orders": "السائقون تلقوا طلبات", -"Driving Behavior": "سلوك القيادة", -"Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "بسبب الإلغاءات المفرطة (3 مرات)، تم تعليق استلام الطلبات لمدة 4 ساعات.", -"Duration": "المدة", -"Duration is": "المدة هي", -"duration is": "المدة هي", -"Duration of the Ride is": "مدة الرحلة هي", -"Duration of Trip is": "مدة الرحلة هي", -"Duration To Passenger is": "المدة حتى وصول الراكب هي", -"E-Cash payment gateway": "بوابة دفع E-Cash", -"E-mail validé.\\\\": "تم التحقق من البريد الإلكتروني.\\\\", -"e.g., 0912345678": "مثال: 0912345678", -"Earnings": "الأرباح", -"Earnings & Distance": "الأرباح والمسافة", -"Earnings Summary": "ملخص الأرباح", -"Edit": "تعديل", -"Edit Profile": "تعديل الملف الشخصي", -"Edit Your data": "تعديل بياناتك", -"Education": "التعليم", -"education": "التعليم", -"EGP": "جنيه مصري", -"Egypt": "مصر", -"Egypt Post": "البريد المصري", -"Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", -"Egypt': return 'EGP": "Egypt': return 'جنيه مصري", -"Egyptian Arab Land Bank": "البنك العقاري المصري العربي", -"Egyptian Gulf Bank": "البنك المصري الخليجي", -"el": "el", -"Electric": "كهربائي", -"Email": "البريد الإلكتروني", -"Email is": "البريد الإلكتروني هو", -"Email must be correct.": "يجب أن يكون البريد الإلكتروني صحيحاً.", -"email optional label": "تسمية البريد الإلكتروني الاختياري", -"Email Us": "راسلنا", -"Email Wrong": "البريد الإلكتروني خاطئ", -"Email you inserted is Wrong.": "البريد الإلكتروني الذي أدخلته خاطئ.", -"email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'مرحباً", -"Emergency Contact": "جهة اتصال طوارئ", -"Emergency Number": "رقم الطوارئ", -"Emirates National Bank of Dubai": "بنك الإمارات الوطني دبي", -"Employment Type": "نوع التوظيف", -"Enable Location": "تفعيل الموقع", -"Enable Location Access": "تفعيل الوصول إلى الموقع", -"Enable Location Permission": "تفعيل إذن الموقع", -"End": "إنهاء", -"end": "نهاية", -"End Ride": "إنهاء الرحلة", -"End Trip": "إنهاء الرحلة", -"end_name'] ?? 'Destination Location": "end_name'] ?? 'موقع الوجهة", -"endName'] ?? 'Destination": "endName'] ?? 'الوجهة", -"Enjoy a safe and comfortable ride.": "استمتع برحلة آمنة ومريحة.", -"Enjoy competitive prices across all trip options, making travel accessible.": "استمتع بأسعار تنافسية عبر جميع خيارات الرحلات، مما يجعل السفر في متناول الجميع.", -"Ensure the passenger is in the car.": "تأكد من أن الراكب داخل السيارة.", -"Enter a valid email": "أدخل بريداً إلكترونياً صالحاً", -"Enter a valid year": "أدخل سنة صالحة", -"Enter Amount Paid": "أدخل المبلغ المدفوع", -"Enter Health Insurance Provider": "أدخل مزوّد التأمين الصحي", -"enter otp validation": "أدخل التحقق من رمز OTP", -"Enter phone": "أدخل الهاتف", -"Enter phone number": "أدخل رقم الهاتف", -"Enter promo code": "أدخل الرمز الترويجي", -"Enter promo code here": "أدخل الرمز الترويجي هنا", -"Enter the 3-digit code": "أدخل الرمز المكوّن من 3 أرقام", -"Enter the promo code and get": "أدخل الرمز الترويجي واحصل على", -"Enter your City": "أدخل مدينتك", -"Enter your code below to apply the discount.": "أدخل رمزك أدناه لتطبيق الخصم.", -"Enter your complaint here": "أدخل شكواك هنا", -"Enter your complaint here...": "أدخل شكواك هنا...", -"Enter your email": "أدخل بريدك الإلكتروني", -"Enter your email address": "أدخل عنوان بريدك الإلكتروني", -"Enter your feedback here": "أدخل ملاحظاتك هنا", -"Enter Your First Name": "أدخل اسمك الأول", -"Enter your first name": "أدخل اسمك الأول", -"Enter your last name": "أدخل اسمك الأخير", -"Enter your Note": "أدخل ملاحظتك", -"Enter your Password": "أدخل كلمة المرور", -"Enter your password": "أدخل كلمة المرور", -"Enter your phone number": "أدخل رقم هاتفك", -"Enter your promo code": "أدخل رمزك الترويجي", -"Enter your Question here": "أدخل سؤالك هنا", -"Enter your wallet number": "أدخل رقم محفظتك", -"Error": "خطأ", -"error": "خطأ", -"Error connecting call": "خطأ في الاتصال بالمكالمة", -"Error processing request": "خطأ في معالجة الطلب", -"Error starting voice call": "خطأ في بدء المكالمة الصوتية", -"Error uploading proof": "خطأ في رفع الإثبات", -"Error', 'An application error occurred.": "خطأ', 'حدث خطأ في التطبيق.", -"error'] ?? 'Failed to claim reward": "error'] ?? 'فشل في استلام المكافأة", -"error_processing_document": "خطأ في معالجة المستند", -"es": "es", -"Evening": "المساء", -"Excellent": "ممتاز", -"Exclusive offers and discounts always with the Sefer app": "عروض وخصومات حصرية دائماً مع تطبيق سفر", -"Exclusive offers and discounts always with the Siro app": "عروض وخصومات حصرية دائماً مع تطبيق سيرو", -"Exit": "خروج", -"Exit Ride?": "هل تريد إنهاء الرحلة؟", -"expected": "متوقّع", -"Expiration Date": "تاريخ الانتهاء", -"expiration_date": "تاريخ الانتهاء", -"Expired Driver’s License": "رخصة قيادة منتهية الصلاحية", -"Expired License": "رخصة منتهية الصلاحية", -"Expired License', 'Your driver’s license has expired.": "رخصة منتهية الصلاحية', 'لقد انتهت صلاحية رخصة قيادتك.", -"Expiry Date": "تاريخ الانتهاء", -"Expiry Date:": "تاريخ الانتهاء:", -"Export Development Bank of Egypt": "بنك التصدير والاستيراد المصري", -"Extra 200 pts when they complete 10 trips": "200 نقطة إضافية عند إكمال 10 رحلات", -"fa": "fa", -"face detect": "كشف الوجه", -"Face Detection Result": "نتيجة كشف الوجه", -"Failed": "فشل", -"Failed to add place. Please try again later.": "فشل في إضافة المكان. يرجى المحاولة مرة أخرى لاحقاً.", -"Failed to cancel ride": "فشل في إلغاء الرحلة", -"Failed to claim reward": "فشل في استلام المكافأة", -"Failed to connect to the server. Please try again.": "فشل في الاتصال بالخادم. يرجى المحاولة مرة أخرى.", -"Failed to fetch rides. Please try again.": "فشل في جلب الرحلات. يرجى المحاولة مرة أخرى.", -"Failed to finish ride. Please check internet.": "فشل في إنهاء الرحلة. يرجى التحقق من الإنترنت.", -"Failed to initiate call session. Please try again.": "فشل في بدء جلسة المكالمة. يرجى المحاولة مرة أخرى.", -"Failed to initiate payment. Please try again.": "فشل في بدء الدفع. يرجى المحاولة مرة أخرى.", -"Failed to load profile data.": "فشل في تحميل بيانات الملف الشخصي.", -"Failed to process route points": "فشل في معالجة نقاط الطريق", -"Failed to save driver data": "فشل في حفظ بيانات السائق", -"Failed to send invite": "فشل في إرسال الدعوة", -"failed to send otp": "فشل في إرسال رمز OTP", -"Failed to upload audio file.": "فشل في رفع ملف الصوت.", -"Faisal Islamic Bank of Egypt": "بنك فيصل الإسلامي المصري", -"false": "خطأ", -"Fastest Complaint Response": "أسرع رد على الشكاوى", -"Favorite Places": "الأماكن المفضلة", -"Fee is": "الرسوم هي", -"Feed Back": "ملاحظات", -"Feedback": "ملاحظات", -"Feedback data saved successfully": "تم حفظ بيانات الملاحظات بنجاح", -"Female": "أنثى", -"Find answers to common questions": "اعثر على إجابات للأسئلة الشائعة", -"Finish & Submit": "إنهاء وإرسال", -"Finish Monitor": "إنهاء المراقبة", -"Finished": "منتهية", -"First Abu Dhabi Bank": "بنك أبوظبي الأول", -"First Name": "الاسم الأول", -"First name": "الاسم الأول", -"first name label": "تسمية الاسم الأول", -"first name required": "الاسم الأول مطلوب", -"First Trip": "أول رحلة", -"Five Star Driver": "سائق خمس نجوم", -"Fixed Price": "سعر ثابت", -"Flag-down fee": "رسوم بداية الرحلة", -"for": "لـ", -"for ": "لـ ", -"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 transfer fees": "لرسوم التحويل", -"for your first registration!": "لتسجيلك الأول!", -"fr": "fr", -"Free Call": "مكالمة مجانية", -"Frequently Asked Questions": "الأسئلة الشائعة", -"Frequently Questions": "أسئلة متكررة", -"Fri": "الجمعة", -"From": "من", -"from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 07:30 إلى 10:30 (الخميس، الجمعة، السبت، الاثنين)", -"from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 إلى 15:00 (الخميس، الجمعة، السبت، الاثنين)", -"from 23:59 till 05:30": "من 23:59 إلى 05:30", -"from 3 times Take Attention": "من 3 مرات، انتبه", -"from 3:00pm to 6:00 pm": "من 3:00 مساءً إلى 6:00 مساءً", -"from 7:00am to 10:00am": "من 7:00 صباحاً إلى 10:00 صباحاً", -"From :": "من :", -"From : Current Location": "من : الموقع الحالي", -"From Budget": "من الميزانية", -"from your favorites": "من مفضلاتك", -"from your list": "من قائمتك", -"From:": "من:", -"fromBudget": "من الميزانية", -"Fuel": "الوقود", -"Fuel Type": "نوع الوقود", -"Full Name": "الاسم الكامل", -"Full Name (Marital)": "الاسم الكامل (الحالة الاجتماعية)", -"FullName": "الاسم الكامل", -"Gender": "الجنس", -"gender": "الجنس", -"General": "عام", -"General Authority For Supply Commodities": "الهيئة العامة للسلع التموينية", -"Get": "احصل على", -"Get a discount on your first Siro ride!": "احصل على خصم على رحلتك الأولى مع سيرو!", -"Get Details of Trip": "احصل على تفاصيل الرحلة", -"Get Direction": "احصل على الاتجاهات", -"Get features for your country": "احصل على الميزات الخاصة ببلدك", -"Get it Now!": "احصل عليه الآن!", -"Get to your destination quickly and easily.": "صل إلى وجهتك بسرعة وسهولة.", -"get_a_ride": "احصل على رحلة", -"get_to_destination": "الوصول إلى الوجهة", -"Getting Started": "البدء", -"Gift Already Claimed": "تم استلام الهدية بالفعل", -"Go": "اذهب", -"Go Now": "اذهب الآن", -"Go Online": "العمل الآن", -"Go To Favorite Places": "اذهب إلى الأماكن المفضلة", -"Go to next step": "اذهب إلى الخطوة التالية", -"Go to next step\nscan Car License.": "اذهب إلى الخطوة التالية\nامسح رخصة السيارة.", -"Go to passenger Location": "اذهب إلى موقع الراكب", -"Go to passenger Location now": "اذهب إلى موقع الراكب الآن", -"Go to passenger:": "اذهب إلى الراكب:", -"Go to this location": "اذهب إلى هذا الموقع", -"Go to this Target": "اذهب إلى هذا الهدف", -"go to your passenger location before": "اذهب إلى موقع راكبك قبل", -"go to your passenger location before\nPassenger cancel trip": "اذهب إلى موقع راكبك قبل أن يلغي الراكب الرحلة", -"Goal Achieved!": "تم تحقيق الهدف!", -"Gold badge": "شارة ذهبية", -"Good": "جيد", -"Google Map App": "تطبيق خرائط جوجل", -"GPS Required Allow !.": "مطلوب السماح بـ GPS !.", -"h": "ساعة", -"H and": "و", -"Hard Brake": "فرملة قوية", -"Hard Brakes": "الفرامل القوية", -"hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'فرامل قوية", -"has been added to your budget": "تمت إضافته إلى ميزانيتك", -"has completed": "اكتمل", -"Have a promo code?": "هل لديك رمز ترويجي؟", -"Head": "الرأس", -"Heading your way now. Please be ready.": "في طريقه إليك الآن. يرجى الاستعداد.", -"Health Insurance": "التأمين الصحي", -"Heatmap": "خريطة الحرارة", -"Height:": "الطول:", -"Hello": "مرحباً", -"Hello this is Captain": "مرحباً، هذا الكابتن", -"Hello this is Driver": "مرحباً، هذا السائق", -"Help & Support": "المساعدة والدعم", -"Help Details": "تفاصيل المساعدة", -"Helping Center": "مركز المساعدة", -"Helping Page": "صفحة المساعدة", -"Here recorded trips audio": "هنا صوت الرحلات المسجلة", -"Hi": "مرحباً", -"hi": "مرحباً", -"Hi ,I Arrive your site": "مرحباً، لقد وصلت إلى موقعك", -"Hi ,I will go now": "مرحباً، سأذهب الآن", -"Hi! This is": "مرحباً! هذا", -"Hi, I will go now": "مرحباً، سأذهب الآن", -"Hi, Where to": "مرحباً، إلى أين؟", -"High priority": "أولوية عالية", -"High School Diploma": "شهادة الثانوية العامة", -"History": "السجل", -"History of Trip": "سجل الرحلات", -"History Page": "صفحة السجل", -"Home": "الرئيسية", -"Home Page": "الصفحة الرئيسية", -"Home Saved": "تم حفظ المنزل", -"hour": "ساعة", -"Hours": "ساعات", -"hours before trying again.": "ساعات قبل المحاولة مرة أخرى.", -"Housing And Development Bank": "بنك الإسكان والتعمير", -"How can I pay for my ride?": "كيف يمكنني الدفع لرحلتي؟", -"How can I register as a driver?": "كيف يمكنني التسجيل كسائق؟", -"How do I communicate with the other party (passenger/driver)?": "كيف يمكنني التواصل مع الطرف الآخر (الراكب/السائق)؟", -"How do I request a ride?": "كيف أطلب رحلة؟", -"How It Works": "كيف يعمل", -"How many hours would you like to wait?": "كم ساعة تريد الانتظار؟", -"How much do you want to earn today?": "كم تريد أن تربح اليوم؟", -"How much longer will you be?": "كم من الوقت ستتأخر؟", -"How much Passenger pay?": "كم يدفع الراكب؟", -"How to use App": "كيفية استخدام التطبيق", -"How to use Siro": "كيفية استخدام سيرو", -"How was the passenger?": "كيف كان الراكب؟", -"How was your trip with": "كيف كانت رحلتك مع", -"How would you like to receive your reward?": "كيف ترغب في استلام مكافأتك؟", -"How would you rate our app?": "كيف تقيم تطبيقنا؟", -"HSBC Bank Egypt S.A.E": "بنك إتش إس بي سي مصر", -"Hybrid": "هجين", -"I added the wrong pick-up/drop-off location": "أضفت موقع الالتقاط/التنزيل الخاطئ", -"I Agree": "أوافق", -"i agree": "أوافق", -"I am currently located at": "أنا موجود حالياً في", -"I am using": "أنا أستخدم", -"I Arrive": "لقد وصلت", -"I arrive you": "لقد وصلت إليك", -"I Arrive your site": "لقد وصلت إلى موقعك", -"I cant register in your app in face detection": "لا يمكنني التسجيل في تطبيقكم عبر كشف الوجه", -"I cant register in your app in face detection ": "لا يمكنني التسجيل في تطبيقكم عبر كشف الوجه", -"I Have Arrived": "لقد وصلت", -"I want to order for myself": "أريد الطلب لنفسي", -"I want to order for someone else": "أريد الطلب لشخص آخر", -"I was just trying the application": "كنت فقط أجرب التطبيق", -"I will go now": "سأذهب الآن", -"I will slow down": "سأبطئ السرعة", -"I've arrived.": "لقد وصلت.", -"ID Documents Back": "وثائق الهوية (الخلفي)", -"ID Documents Front": "وثائق الهوية (الأمامي)", -"ID Mismatch": "عدم تطابق الهوية", -"id': 1, 'name': 'Car": "id': 1, 'name': 'سيارة", -"id': 1, 'name': 'Petrol": "id': 1, 'name': 'بنزين", -"id': 2, 'name': 'Diesel": "id': 2, 'name': 'ديزل", -"id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'دراجة نارية", -"id': 3, 'name': 'Electric": "id': 3, 'name': 'كهربائي", -"id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'فان / باص", -"id': 4, 'name': 'Hybrid": "id': 4, 'name': 'هجين", -"id_back": "خلفي الهوية", -"id_card_back": "الجانب الخلفي لبطاقة الهوية", -"id_card_front": "الجانب الأمامي لبطاقة الهوية", -"id_front": "أمامي الهوية", -"if you dont have account": "إذا لم يكن لديك حساب", -"If you in Car Now. Press Start The Ride": "إذا كنت في السيارة الآن، اضغط على بدء الرحلة", -"If you need any help or have question this is right site to do that and your welcome": "إذا كنت بحاجة لأي مساعدة أو لديك سؤال، فهذا هو المكان المناسب لذلك، وأهلاً بك", -"If you need any help or have questions, this is the right place to do that. You are welcome!": "إذا كنت بحاجة لأي مساعدة أو لديك أسئلة، فهذا هو المكان المناسب لذلك. أهلاً بك!", -"If you need assistance, contact us": "إذا كنت بحاجة للمساعدة، اتصل بنا", -"If you need to reach me, please contact the driver directly at": "إذا كنت بحاجة للتواصل معي، يرجى الاتصال بالسائق مباشرة على", -"If you want add stop click here": "إذا أردت إضافة محطة، انقر هنا", -"if you want help you can email us here": "إذا أردت المساعدة، يمكنك مراسلتنا هنا", -"If you want order to another person": "إذا أردت الطلب لشخص آخر", -"If you want to make Google Map App run directly when you apply order": "إذا أردت تشغيل تطبيق خرائط جوجل مباشرة عند تقديم الطلب", -"If your car license has the new design, upload the front side with two images.": "إذا كانت رخصة سيارتك ذات التصميم الجديد، قم برفع الوجه الأمامي بصورة مزدوجة.", -"Image detecting result is": "نتيجة كشف الصورة هي", -"Image detecting result is ": "نتيجة كشف الصورة هي", -"Image Upload Failed": "فشل رفع الصورة", -"image verified": "تم التحقق من الصورة", -"Improve app performance": "تحسين أداء التطبيق", -"in your": "في", -"in your wallet": "في محفظتك", -"In-App VOIP Calls": "مكالمات VOIP داخل التطبيق", -"Including Tax": "شاملاً الضريبة", -"Incoming Call...": "مكالمة واردة...", -"Incorrect sms code": "رمز SMS غير صحيح", -"incorrect_document_message": "رسالة المستند غير الصحيح", -"incorrect_document_title": "عنوان المستند غير الصحيح", -"Increase Fare": "زيادة الأجرة", -"Increase Fee": "زيادة الرسوم", -"Increase Your Trip Fee (Optional)": "زيادة رسوم رحلتك (اختياري)", -"Increasing the fare might attract more drivers. Would you like to increase the price?": "قد يؤدي زيادة الأجرة إلى جذب المزيد من السائقين. هل ترغب في زيادة السعر؟", -"Industrial Development Bank": "بنك التنمية الصناعية", -"Ineligible for Offer": "غير مؤهل للعرض", -"Info": "معلومات", -"Insert": "إدخال", -"Insert Account Bank": "أدخل الحساب البنكي", -"insert amount": "أدخل المبلغ", -"Insert Card Bank Details to Receive Your Visa Money Weekly": "أدخل تفاصيل بطاقة البنك لاستلام أموال الفيزا أسبوعياً", -"Insert card number": "أدخل رقم البطاقة", -"Insert Emergency Number": "أدخل رقم الطوارئ", -"Insert Emergincy Number": "أدخل رقم الطوارئ", -"Insert mobile wallet number": "أدخل رقم محفظة الجوال", -"Insert Payment Details": "أدخل تفاصيل الدفع", -"Insert SOS Phone": "أدخل رقم طوارئ", -"Insert Wallet phone number": "أدخل رقم هاتف المحفظة", -"Insert your mobile wallet details to receive your money weekly": "أدخل تفاصيل محفظة الجوال الخاصة بك لاستلام أموالك أسبوعياً", -"Insert Your Promo Code": "أدخل رمزك الترويجي", -"Inspection Date": "تاريخ الفحص", -"InspectionResult": "نتيجة الفحص", -"Install our app:": "ثبّت تطبيقنا:", -"Insufficient Balance": "رصيد غير كافٍ", -"Invalid customer MSISDN": "رقم هاتف العميل غير صالح", -"Invalid MPIN": "MPIN غير صالح", -"Invalid OTP": "رمز OTP غير صالح", -"Invitation Used": "تم استخدام الدعوة", -"Invitations Sent": "تم إرسال الدعوات", -"Invite": "دعوة", -"Invite a Driver": "دعوة سائق", -"Invite another driver and both get a gift after he completes 100 trips!": "ادعُ سائقاً آخر واحصلا معاً على هدية بعد إكماله 100 رحلة!", -"Invite code already used": "تم استخدام رمز الدعوة بالفعل", -"Invite Driver": "دعوة سائق", -"Invite Rider": "دعوة راكب", -"Invite sent successfully": "تم إرسال الدعوة بنجاح", -"is calling you": "يتصل بك", -"Is device compatible": "هل الجهاز متوافق", -"is driving a": "يقود", -"is ON for this month": "مُفعَّلة لهذا الشهر", -"is reviewing your order. They may need more information or a higher price.": "يقوم بمراجعة طلبك. قد يحتاجون إلى مزيد من المعلومات أو سعر أعلى.", -"Is the Passenger in your Car ?": "هل الراكب في سيارتك؟", -"Is the Passenger in your Car?": "هل الراكب في سيارتك؟", -"Issue Date": "تاريخ الإصدار", -"IssueDate": "تاريخ الإصدار", -"it": "it", -"JOD": "دينار أردني", -"Join": "انضم", -"Join Siro as a driver using my referral code!": "انضم إلى سيرو كسائق باستخدام رمز الإحالة الخاص بي!", -"joined": "انضم", -"Jordan": "الأردن", -"Just now": "الآن", -"Keep it up!": "أحسنت! استمر هكذا!", -"kilometer": "كيلومتر", -"KM": "كم", -"Kuwait": "الكويت", -"L.E": "جنيه مصري", -"L.S": "ليرة سورية", -"Lady": "سائقة", -"Lady Captain for girls": "كابتن نسائي للبنات", -"Lady Captains Available": "كباتن نسائيون متاحون", -"Lady 👩": "سائقة 👩", -"Lady: For girl drivers.": "نسائي: للسائقات الإناث.", -"Language": "اللغة", -"Language Options": "خيارات اللغة", -"Last 10 Trips": "آخر 10 رحلات", -"Last Name": "اسم العائلة", -"Last name": "اسم العائلة", -"last name label": "تسمية اسم العائلة", -"last name required": "اسم العائلة مطلوب", -"Last updated:": "آخر تحديث:", -"Later": "لاحقاً", -"Latest Recent Trip": "أحدث رحلة", -"LE": "جنيه مصري", -"Leaderboard": "لوحة المتصدرين", -"Learn more about our app and mission": "تعرف على المزيد عن تطبيقنا ورسالتنا", -"Leave": "مغادرة", -"Leave a detailed comment (Optional)": "اترك تعليقاً مفصلاً (اختياري)", -"Let the passenger scan this code to sign up": "دع الراكب يمسح هذا الرمز للتسجيل", -"Lets check Car license": "لنفحص رخصة السيارة", -"Lets check Car license ": "لنفحص رخصة السيارة", -"Lets check License Back Face": "لنفحص الوجه الخلفي للرخصة", -"License Categories": "فئات الرخصة", -"License Expiry Date": "تاريخ انتهاء الرخصة", -"License Type": "نوع الرخصة", -"Link a phone number for transfers": "ربط رقم هاتف للتحويلات", -"ll let you know when the review is complete.": "سنخبرك عندما تكتمل المراجعة.", -"Location Access Required": "الوصول إلى الموقع مطلوب", -"Location Link": "رابط الموقع", -"Location Tracking Active": "تتبع الموقع نشط", -"Log Off": "تسجيل الخروج", -"Log Out Page": "صفحة تسجيل الخروج", -"Login": "تسجيل الدخول", -"Login Captin": "تسجيل دخول الكابتن", -"Login Driver": "تسجيل دخول السائق", -"Login failed": "فشل تسجيل الدخول", -"login or register subtitle": "عنوان تسجيل الدخول أو التسجيل", -"Logout": "تسجيل الخروج", -"Lowest Price Achieved": "تم تحقيق أقل سعر", -"m": "م", -"m at the agreed-upon location": "في الموقع المتفق عليه", -"m inviting you to try Siro.": "أدعوكم لتجربة سيرو.", -"m waiting for you": "أنتظركم", -"m waiting for you at the specified location.": "أنتظركم في الموقع المحدد.", -"Made :": "الصانع :", -"Maintain 5.0 rating": "حافظ على تقييم 5.0", -"Maintenance Center": "مركز الصيانة", -"Maintenance Offer": "عرض الصيانة", -"Make": "العلامة التجارية", -"Make a U-turn": "قم بعمل دوران", -"Make is": "العلامة التجارية هي", -"Make purchases.": "قم بالشراء.", -"Male": "ذكر", -"Map Dark Mode": "الوضع الداكن للخريطة", -"Map Passenger": "خريطة الراكب", -"Marital Status": "الحالة الاجتماعية", -"Mashreq Bank": "بنك المشرق", -"Mashwari": "مشاري", -"Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "مشاري: للرحلات المرنة حيث يختار الركاب السيارة والسائق بترتيب مسبق.", -"Master\\'s Degree": "درجة الماجستير", -"Max Speed": "السرعة القصوى", -"Maximum fare": "الأجرة القصوى", -"Maximum Level Reached!": "تم الوصول إلى المستوى الأقصى!", -"Message": "رسالة", -"message From Driver": "رسالة من السائق", -"message From passenger": "رسالة من الراكب", -"message'] ?? 'An unknown server error occurred": "message'] ?? 'حدث خطأ غير معروف في الخادم", -"message'] ?? 'Claim failed": "message'] ?? 'فشل الاستلام", -"message'] ?? 'Failed to send OTP.": "message'] ?? 'فشل إرسال رمز OTP.", -"message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'فشل في إنشاء الفاتورة", -"Meter Fare": "أجرة العداد", -"Microphone permission is required for voice calls": "مطلوب إذن الميكروفون للمكالمات الصوتية", -"MIDBANK": "ميد بنك", -"min": "دقيقة", -"Minimum fare": "الأجرة الدنيا", -"Minute": "دقيقة", -"minute": "دقيقة", -"Minutes": "دقائق", -"minutes before trying again.": "دقائق قبل المحاولة مرة أخرى.", -"Mishwar Vip": "مشوار VIP", -"Missing Documents": "مستندات مفقودة", -"Mobile Wallets": "محافظ الجوال", -"Model": "الموديل", -"model :": "الموديل :", -"Model is": "الموديل هو", -"moi\\\\": "moi\\\\", -"Mon": "الاثنين", -"Monthly Report": "التقرير الشهري", -"Monthly Streak": "سلسلة شهرية", -"More": "المزيد", -"Morning": "الصباح", -"Morning Promo": "عرض الصباح", -"Morning Promo Rides": "رحلات عرض الصباح", -"Most Secure Methods": "أكثر الطرق أماناً", -"Motorcycle": "دراجة نارية", -"Move the map to adjust the pin": "حرّك الخريطة لضبط الدبوس", -"mtn": "mtn", -"MTN Cash": "MTN Cash", -"Mute": "كتم الصوت", -"My Balance": "رصيدي", -"My Card": "بطاقتي", -"My Cared": "بطاقتي", -"My Cars": "سياراتي", -"My current location is:": "مواقعي الحالي هو:", -"My Location": "مواقعي", -"my location": "مواقعي", -"My location is correct. You can search for me using the navigation app": "مواقعي صحيح. يمكنك البحث عني باستخدام تطبيق الملاحة", -"My Profile": "ملفي الشخصي", -"My Schedule": "جدولي", -"My Wallet": "محفظتي", -"MyLocation": "مواقعي", -"N/A": "غير متوفر", -"Name": "الاسم", -"Name (Arabic)": "الاسم (بالعربية)", -"Name (English)": "الاسم (بالإنجليزية)", -"Name :": "الاسم :", -"Name in arabic": "الاسم بالعربية", -"Name must be at least 2 characters": "يجب أن يكون الاسم مكوناً من حرفين على الأقل", -"Name of the Passenger is": "اسم الراكب هو", -"Nasser Social Bank": "بنك ناصر الاجتماعي", -"National Bank of Egypt": "البنك الأهلي المصري", -"National Bank of Greece": "البنك الوطني اليوناني", -"National Bank of Kuwait – Egypt": "البنك الوطني الكويتي – مصر", -"National ID": "الهوية الوطنية", -"National ID (Back)": "الهوية الوطنية (الخلفي)", -"National ID (Front)": "الهوية الوطنية (الأمامي)", -"National ID must be 11 digits": "يجب أن تكون الهوية الوطنية مكونة من 11 رقماً", -"National ID Number": "رقم الهوية الوطنية", -"National Number": "الرقم الوطني", -"NationalID": "الهوية الوطنية", -"Navigation": "الملاحة", -"Nearest Car": "أقرب سيارة", -"Nearest Car for you about": "أقرب سيارة لك بعد حوالي", -"Nearest Car: ~": "أقرب سيارة: ~", -"Need assistance? Contact us": "هل تحتاج مساعدة؟ اتصل بنا", -"Need help? Contact Us": "هل تحتاج مساعدة؟ اتصل بنا", -"Needs Improvement": "بحاجة إلى تحسين", -"Net Profit": "صافي الربح", -"Network error": "خطأ في الشبكة", -"Next": "التالي", -"NEXT >>": "التالي >>", -"Next as Cash !": "التالي نقداً!", -"Next Level:": "المستوى التالي:", -"NEXT STEP": "الخطوة التالية", -"Night": "الليل", -"No": "لا", -"No ,still Waiting.": "لا، ما زلت أنتظر.", -"No accepted orders? Try raising your trip fee to attract riders.": "لا توجد طلبات مقبولة؟ جرّب رفع رسوم رحلتك لجذب الركاب.", -"No audio files found for this ride.": "لم يتم العثور على ملفات صوتية لهذه الرحلة.", -"No audio files found.": "لم يتم العثور على ملفات صوتية.", -"No audio files recorded.": "لم يتم تسجيل أي ملفات صوتية.", -"No Captain Accepted Your Order": "لم يقبل أي كابتن طلبك", -"No Car in your site. Sorry!": "لا توجد سيارة في موقعك. آسف!", -"No Car or Driver Found in your area.": "لم يتم العثور على سيارة أو سائق في منطقتك.", -"No cars are available at the moment. Please try again later.": "لا توجد سيارات متاحة حالياً. يرجى المحاولة مرة أخرى لاحقاً.", -"No cars nearby": "لا توجد سيارات قريبة", -"No contact selected": "لم يتم اختيار جهة اتصال", -"No contacts found": "لم يتم العثور على جهات اتصال", -"No contacts with phone numbers found": "لم يتم العثور على جهات اتصال بأرقام هواتف", -"No contacts with phone numbers were found on your device.": "لم يتم العثور على جهات اتصال بأرقام هواتف على جهازك.", -"No data yet": "لا توجد بيانات بعد", -"No data yet!": "لا توجد بيانات بعد!", -"No driver accepted my request": "لم يقبل أي سائق طلبي", -"No drivers accepted your request yet": "لم يقبل أي سائق طلبك بعد", -"No drivers available": "لا يوجد سائقون متاحون", -"No drivers available at the moment. Please try again later.": "لا يوجد سائقون متاحون حالياً. يرجى المحاولة مرة أخرى لاحقاً.", -"No face detected": "لم يتم اكتشاف وجه", -"No favorite places yet!": "لا توجد أماكن مفضلة بعد!", -"No I want": "لا، أريد", -"No i want": "لا، أريد", -"No image selected yet": "لم يتم اختيار صورة بعد", -"No internet connection": "لا يوجد اتصال بالإنترنت", -"No invitation found": "لم يتم العثور على دعوة", -"No invitation found yet!": "لم يتم العثور على دعوة بعد!", -"No one accepted? Try increasing the fare.": "لم يقبل أحد؟ جرّب زيادة الأجرة.", -"No orders available": "لا توجد طلبات متاحة", -"No passenger found for the given phone number": "لم يتم العثور على راكب برقم الهاتف المحدد", -"No phone number": "لا يوجد رقم هاتف", -"No Promo for today .": "لا يوجد عروض ترويجية اليوم.", -"No promos available right now.": "لا توجد عروض ترويجية متاحة الآن.", -"No questions asked yet.": "لم يتم طرح أسئلة بعد.", -"No Response yet.": "لا يوجد رد بعد.", -"No ride found yet": "لم يتم العثور على رحلة بعد", -"No ride yet": "لا توجد رحلة بعد", -"No Rides Available": "لا توجد رحلات متاحة", -"No rides available for your vehicle type.": "لا توجد رحلات متاحة لنوع مركبتك.", -"No rides available right now.": "لا توجد رحلات متاحة الآن.", -"No rides found to complain about.": "لم يتم العثور على رحلات للشكوى منها.", -"No Rides Yet": "لا توجد رحلات بعد", -"No route points found": "لم يتم العثور على نقاط طريق", -"No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "لا يوجد شريحة SIM، لا مشكلة! اتصل بسائقك مباشرة من خلال تطبيقنا. نستخدم تقنية متقدمة لضمان خصوصيتك.", -"No statistics yet": "لا توجد إحصائيات بعد", -"No transactions this week": "لا توجد معاملات هذا الأسبوع", -"No transactions yet": "لا توجد معاملات بعد", -"No trip data available": "لا توجد بيانات رحلة متاحة", -"No trip history found": "لم يتم العثور على سجل رحلات", -"No trip yet found": "لم يتم العثور على رحلة بعد", -"No user found for the given phone number": "لم يتم العثور على مستخدم برقم الهاتف المحدد", -"No wallet record found": "لم يتم العثور على سجل محفظة", -"No, I want to cancel this trip": "لا، أريد إلغاء هذه الرحلة", -"No, still Waiting.": "لا، ما زلت أنتظر.", -"No, thanks": "لا، شكراً", -"No,I want": "لا، أريد", -"Non Egypt": "غير مصر", -"non_id_card_back": "خلفي غير الهوية", -"non_id_card_front": "أمامي غير الهوية", -"Not Connected": "غير متصل", -"Not set": "غير محدد", -"not similar": "غير متشابه", -"Not updated": "لم يتم التحديث", -"Notifications": "الإشعارات", -"Now select start pick": "الآن اختر نقطة البداية", -"Occupation": "المهنة", -"of": "من", -"Offline": "غير متصل", -"OK": "موافق", -"Ok": "موافق", -"Ok , See you Tomorrow": "حسناً، أراك غداً", -"Ok I will go now.": "حسناً، سأذهب الآن.", -"Old and affordable, perfect for budget rides.": "قديمة ومناسبة، مثالية للرحلات ذات الميزانية المحدودة.", -"on": "على", -"one last step title": "عنوان الخطوة الأخيرة", -"Online": "متصل", -"Online Duration": "مدة الاتصال", -"Only Syrian phone numbers are allowed": "يُسمح فقط بأرقام الهواتف السورية", -"Open App": "فتح التطبيق", -"Open app and go to passenger": "افتح التطبيق واذهب إلى الراكب", -"Open in Maps": "فتح في الخرائط", -"Open Settings": "فتح الإعدادات", -"Open the app to stay updated and ready for upcoming tasks.": "افتح التطبيق للبقاء محدثاً وجاهزاً للمهام القادمة.", -"Opted out": "تم إلغاء الاشتراك", -"Or": "أو", -"Or pay with Cash instead": "أو ادفع نقداً بدلاً من ذلك", -"Order": "طلب", -"Order Accepted": "تم قبول الطلب", -"Order Accepted by another driver": "تم قبول الطلب من قبل سائق آخر", -"Order Applied": "تم تطبيق الطلب", -"Order Cancelled": "تم إلغاء الطلب", -"Order Cancelled by Passenger": "تم إلغاء الطلب من قبل الراكب", -"Order Details Siro": "تفاصيل طلب سيرو", -"Order for myself": "طلب لنفسي", -"Order for someone else": "طلب لشخص آخر", -"Order History": "سجل الطلبات", -"Order ID": "رقم الطلب", -"Order Request Page": "صفحة طلب الرحلة", -"Order Under Review": "الطلب قيد المراجعة", -"OrderId": "رقم الطلب", -"Orders Page": "صفحة الطلبات", -"OrderVIP": "طلب VIP", -"Origin": "نقطة الانطلاق", -"Original Fare": "الأجرة الأصلية", -"Other": "أخرى", -"OTP is incorrect or expired": "رمز OTP غير صحيح أو منتهي الصلاحية", -"otp sent subtitle": "عنوان إرسال رمز OTP", -"otp sent success": "تم إرسال رمز OTP بنجاح", -"otp verification failed": "فشل التحقق من رمز OTP", -"Our dedicated customer service team ensures swift resolution of any issues.": "يضمن فريق خدمة العملاء المخصص لدينا حل أي مشكلات بسرعة.", -"Overall Behavior Score": "درجة السلوك الإجمالية", -"Overlay": "العرض العلوي", -"Owner Name": "اسم المالك", -"Passenger": "الراكب", -"Passenger & Status": "الراكب والحالة", -"passenger agreement": "اتفاقية الراكب", -"passenger amount to me": "مبلغ الراكب لي", -"Passenger Cancel Trip": "الراكب يلغي الرحلة", -"Passenger cancel trip": "الراكب يلغي الرحلة", -"Passenger cancelled order": "الراكب ألغى الطلب", -"Passenger cancelled the ride.": "الراكب ألغى الرحلة.", -"Passenger come to you": "الراكب قادم إليك", -"Passenger Information": "معلومات الراكب", -"Passenger Invitations": "دعوات الركاب", -"Passenger Name": "اسم الراكب", -"Passenger name :": "اسم الراكب :", -"Passenger Name is": "اسم الراكب هو", -"Passenger name:": "اسم الراكب:", -"Passenger paid amount": "المبلغ الذي دفعه الراكب", -"Passenger Referral": "إحالة الراكب", -"Passengers": "الركاب", -"Password": "كلمة المرور", -"Password must be at least 6 characters": "يجب أن تكون كلمة المرور مكونة من 6 أحرف على الأقل", -"Password must be at least 6 characters.": "يجب أن تكون كلمة المرور مكونة من 6 أحرف على الأقل.", -"Password must br at least 6 character.": "يجب أن تكون كلمة المرور مكونة من 6 أحرف على الأقل.", -"Paste location link here": "الصق رابط الموقع هنا", -"Paste the code here": "الصق الرمز هنا", -"Paste WhatsApp location link": "الصق رابط موقع الواتساب", -"Pay": "ادفع", -"Pay by MTN Wallet": "الدفع عبر محفظة MTN", -"Pay by Sham Cash": "الدفع عبر شام كاش", -"Pay by Syriatel Wallet": "الدفع عبر محفظة سيريتل", -"Pay directly to the captain": "الدفع مباشرة للكابتن", -"Pay from my budget": "الدفع من ميزانيتي", -"Pay remaining to Wallet?": "دفع المتبقي إلى المحفظة؟", -"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 (الاسم المستعار: siroapp)", -"Pay with Credit Card": "الدفع ببطاقة ائتمان", -"Pay with Debit Card": "الدفع ببطاقة خصم", -"Pay with Wallet": "الدفع عبر المحفظة", -"Pay with Your": "الدفع باستخدام", -"Pay with Your PayPal": "الدفع باستخدام باي بال الخاص بك", -"Payment details added successfully": "تمت إضافة تفاصيل الدفع بنجاح", -"Payment Failed": "فشل الدفع", -"Payment History": "سجل الدفع", -"Payment Method": "طريقة الدفع", -"Payment Method:": "طريقة الدفع:", -"Payment Options": "خيارات الدفع", -"Payment Successful": "تم الدفع بنجاح", -"Payment Successful!": "تم الدفع بنجاح!", -"payment_success": "تمت المعاملة بنجاح", -"Payments": "المدفوعات", -"pending": "قيد الانتظار", -"Percent Canceled": "نسبة الإلغاء", -"Percent Completed": "نسبة الإنجاز", -"Percent Rejected": "نسبة الرفض", -"Perfect for adventure seekers who want to experience something new and exciting": "مثالية لمحبي المغامرات الذين يرغبون في تجربة شيء جديد ومثير", -"Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالية للركاب الباحثين عن أحدث موديلات السيارات مع حرية اختيار أي طريق يرغبون به", -"Permission denied": "تم رفض الإذن", -"Personal Information": "المعلومات الشخصية", -"Petrol": "بنزين", -"Phone": "الهاتف", -"Phone Check": "فحص الهاتف", -"Phone Number": "رقم الهاتف", -"Phone Number Check": "فحص رقم الهاتف", -"Phone Number is": "رقم الهاتف هو", -"Phone number is already verified": "رقم الهاتف تم التحقق منه بالفعل", -"Phone Number is not Egypt phone": "رقم الهاتف ليس رقم هاتف مصري", -"Phone Number is not Egypt phone ": "رقم الهاتف ليس رقم هاتف مصري", -"Phone number is verified before": "تم التحقق من رقم الهاتف سابقاً", -"phone number label": "تسمية رقم الهاتف", -"Phone number must be exactly 11 digits long": "يجب أن يكون رقم الهاتف مكوناً من 11 رقماً بالضبط", -"Phone number must be valid.": "يجب أن يكون رقم الهاتف صالحاً.", -"phone number of driver": "رقم هاتف السائق", -"phone number required": "رقم الهاتف مطلوب", -"Phone number seems too short": "يبدو أن رقم الهاتف قصير جداً", -"Phone Number wrong": "رقم الهاتف خاطئ", -"Phone Wallet Saved Successfully": "تم حفظ محفظة الهاتف بنجاح", -"Pick from map": "اختر من الخريطة", -"Pick from map destination": "اختر الوجهة من الخريطة", -"Pick or Tap to confirm": "اختر أو انقر للتأكيد", -"Pick your destination from Map": "اختر وجهتك من الخريطة", -"Pick your ride location on the map - Tap to confirm": "اختر موقع رحلتك على الخريطة - انقر للتأكيد", -"Pickup Location": "موقع الالتقاط", -"Place added successfully! Thanks for your contribution.": "تمت إضافة المكان بنجاح! شكراً لمساهمتك.", -"Plate": "اللوحة", -"Plate Number": "رقم اللوحة", -"Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "يرجى السماح بالوصول إلى الموقع \"طوال الوقت\" لتلقي طلبات الرحلات حتى عندما يكون التطبيق في الخلفية.", -"Please allow location access at all times to receive ride requests and ensure smooth service.": "يرجى السماح بالوصول إلى الموقع طوال الوقت لتلقي طلبات الرحلات وضمان خدمة سلسة.", -"Please check back later for available rides.": "يرجى التحقق لاحقاً للحصول على رحلات متاحة.", -"Please complete more distance before ending.": "يرجى إكمال مسافة أكبر قبل الإنهاء.", -"Please describe your issue before submitting.": "يرجى وصف مشكلتك قبل الإرسال.", -"Please enter": "يرجى إدخال", -"Please enter a correct phone": "يرجى إدخال هاتف صحيح", -"Please enter a description of the issue.": "يرجى إدخال وصف للمشكلة.", -"Please enter a health insurance status.": "يرجى إدخال حالة التأمين الصحي.", -"Please enter a phone number": "يرجى إدخال رقم هاتف", -"Please enter a valid 16-digit card number": "يرجى إدخال رقم بطاقة صالح مكون من 16 رقماً", -"Please enter a valid card 16-digit number.": "يرجى إدخال رقم بطاقة صالح مكون من 16 رقماً.", -"Please enter a valid email": "يرجى إدخال بريد إلكتروني صالح", -"Please enter a valid email.": "يرجى إدخال بريد إلكتروني صالح.", -"Please enter a valid insurance provider": "يرجى إدخال مزوّد تأمين صالح", -"Please enter a valid phone number.": "يرجى إدخال رقم هاتف صالح.", -"Please enter a valid promo code": "يرجى إدخال رمز ترويجي صالح", -"Please enter phone number": "يرجى إدخال رقم الهاتف", -"Please enter the cardholder name": "يرجى إدخال اسم حامل البطاقة", -"Please enter the complete 6-digit code.": "يرجى إدخال الرمز الكامل المكون من 6 أرقام.", -"Please enter the CVV code": "يرجى إدخال رمز CVV", -"Please enter the emergency number.": "يرجى إدخال رقم الطوارئ.", -"Please enter the expiry date": "يرجى إدخال تاريخ الانتهاء", -"Please enter the number without the leading 0": "يرجى إدخال الرقم بدون الصفر الأولي", -"Please enter your City.": "يرجى إدخال مدينتك.", -"Please enter your complaint.": "يرجى إدخال شكواك.", -"Please enter Your Email.": "يرجى إدخال بريدك الإلكتروني.", -"Please enter your Email.": "يرجى إدخال بريدك الإلكتروني.", -"Please enter your feedback.": "يرجى إدخال ملاحظاتك.", -"Please enter your first name.": "يرجى إدخال اسمك الأول.", -"Please enter your last name.": "يرجى إدخال اسمك الأخير.", -"Please enter Your Password.": "يرجى إدخال كلمة المرور.", -"Please enter your Password.": "يرجى إدخال كلمة المرور.", -"Please enter your phone number": "يرجى إدخال رقم هاتفك", -"Please enter your phone number.": "يرجى إدخال رقم هاتفك.", -"Please enter your question": "يرجى إدخال سؤالك", -"Please enter your Question.": "يرجى إدخال سؤالك.", -"Please go closer to the passenger location (less than 150m)": "يرجى الاقتراب أكثر من موقع الراكب (أقل من 150 متراً)", -"Please go to Car Driver": "يرجى الذهاب إلى سائق السيارة", -"Please go to Car now": "يرجى الذهاب إلى السيارة الآن", -"please go to picker location exactly": "يرجى الذهاب إلى موقع الالتقاط بالضبط", -"Please go to the pickup location exactly": "يرجى الذهاب إلى موقع الالتقاط بالضبط", -"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 order now": "يرجى الطلب الآن", -"Please paste the transfer message": "يرجى لصق رسالة التحويل", -"Please provide details about any long-term diseases.": "يرجى تقديم تفاصيل عن أي أمراض طويلة الأمد.", -"Please put your licence in these border": "يرجى وضع رخصتك داخل هذا الإطار", -"Please select a contact": "يرجى اختيار جهة اتصال", -"Please select a date": "يرجى اختيار تاريخ", -"Please select a rating before submitting.": "يرجى اختيار تقييم قبل الإرسال.", -"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": "يرجى تحويل المبلغ إلى الاسم المستعار: siroapp", -"Please try again in a few moments": "يرجى المحاولة مرة أخرى بعد لحظات", -"Please Try anther time": "يرجى المحاولة مرة أخرى", -"Please upload a clear photo of your face to be identified by passengers.": "يرجى رفع صورة واضحة لوجهك ليتمكن الركاب من التعرف عليك.", -"Please upload all 4 required documents.": "يرجى رفع جميع المستندات المطلوبة الأربعة.", -"Please upload this license.": "يرجى رفع هذه الرخصة.", -"Please verify your identity": "يرجى التحقق من هويتك", -"Please wait": "يرجى الانتظار", -"Please wait for all documents to finish uploading before registering.": "يرجى الانتظار حتى يتم رفع جميع المستندات قبل التسجيل.", -"Please wait for the passenger to enter the car before starting the trip.": "يرجى الانتظار حتى يدخل الراكب السيارة قبل بدء الرحلة.", -"Please Wait If passenger want To Cancel!": "يرجى الانتظار إذا أراد الراكب الإلغاء!", -"please wait till driver accept your order": "يرجى الانتظار حتى يقبل السائق طلبك", -"Please wait while we prepare your trip.": "يرجى الانتظار بينما نحضر رحلتك.", -"Point": "نقطة", -"Points": "نقاط", -"points": "نقاط", -"Policy restriction on calls": "قيود السياسة على المكالمات", -"Potential security risks detected. The application may not function correctly.": "تم اكتشاف مخاطر أمنية محتملة. قد لا يعمل التطبيق بشكل صحيح.", -"Potential security risks detected. The application may not function correctly.": "تم اكتشاف مخاطر أمنية محتملة. قد لا يعمل التطبيق بشكل صحيح.", -"Potential security risks detected. The application will close in @seconds seconds.": "تم اكتشاف مخاطر أمنية محتملة. سيتم إغلاق التطبيق خلال @seconds ثانية.", -"Pre-booking": "الحجز المسبق", -"Press here": "اضغط هنا", -"Press to hear": "اضغط للاستماع", -"Price": "السعر", -"Price is": "السعر هو", -"price is": "السعر هو", -"Price of trip": "سعر الرحلة", -"Price:": "السعر:", -"Priority medium": "أولوية متوسطة", -"Priority support": "دعم ذو أولوية", -"Privacy Notice": "إشعار الخصوصية", -"Privacy Policy": "سياسة الخصوصية", -"privacy policy": "سياسة الخصوصية", -"Profile": "الملف الشخصي", -"Profile Photo Required": "صورة الملف الشخصي مطلوبة", -"Profile Picture": "صورة الملف الشخصي", -"Progress:": "التقدم:", -"Promo": "عرض ترويجي", -"Promo Already Used": "تم استخدام العرض الترويجي بالفعل", -"Promo Code": "الرمز الترويجي", -"Promo Code Accepted": "تم قبول الرمز الترويجي", -"Promo code copied to clipboard!": "تم نسخ الرمز الترويجي إلى الحافظة!", -"Promo Copied!": "تم نسخ العرض!", -"Promo End !": "انتهى العرض!", -"Promo Ended": "انتهى العرض", -"Promos": "العروض", -"Promos For Today": "العروض ليوم اليوم", -"Promos For today": "العروض ليوم اليوم", -"Promotions": "العروض الترويجية", -"PTS": "نقاط", -"Pyament Cancelled .": "تم إلغاء الدفع.", -"Qatar": "قطر", -"Qatar National Bank Alahli": "البنك الأهلي القطري", -"Question": "سؤال", -"Quick Actions": "إجراءات سريعة", -"Quick Invite": "دعوة سريعة", -"Quick Invite Link:": "رابط الدعوة السريعة:", -"Quick Messages": "رسائل سريعة", -"Quiet & Eco-Friendly": "هادئ وصديق للبيئة", -"Raih Gai: For same-day return trips longer than 50km.": "رايح جاي: للرحلات ذهاباً وإياباً في نفس اليوم وأطول من 50 كم.", -"Rate": "تقييم", -"Rate Captain": "قيّم الكابتن", -"Rate Driver": "قيّم السائق", -"Rate Our App": "قيّم تطبيقنا", -"Rate Passenger": "قيّم الراكب", -"Rating": "التقييم", -"Rating is": "التقييم هو", -"Rating submitted successfully": "تم إرسال التقييم بنجاح", -"rating_count": "عدد التقييمات", -"rating_driver": "تقييم السائق", -"Rayeh Gai": "رايح جاي", -"Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة رحلات ذهاباً وإياباً للسفر المريح بين المدن، سهلة وموثوقة.", -"re eligible for a special offer!": "ستصبح مؤهلاً لعرض خاص!", -"Reason": "السبب", -"Recent Places": "الأماكن الأخيرة", -"Recent Transactions": "المعاملات الأخيرة", -"Recharge Balance": "شحن الرصيد", -"Recharge Balance Packages": "باقات شحن الرصيد", -"Recharge my Account": "شحن حسابي", -"Record": "تسجيل", -"Record saved": "تم حفظ التسجيل", -"Recorded Trips (Voice & AI Analysis)": "الرحلات المسجلة (الصوت وتحليل الذكاء الاصطناعي)", -"Recorded Trips for Safety": "الرحلات المسجلة لأغراض السلامة", -"Refer 5 drivers": "أحيل 5 سائقين", -"Referral Center": "مركز الإحالات", -"Referrals": "الإحالات", -"Refresh": "تحديث", -"Refresh Market": "تحديث السوق", -"Refresh Status": "تحديث الحالة", -"Refuse Order": "رفض الطلب", -"Refused": "مرفوض", -"Register": "تسجيل", -"Register as Driver": "التسجيل كسائق", -"Register Captin": "تسجيل الكابتن", -"Register Driver": "تسجيل السائق", -"Registration": "التسجيل", -"Registration completed successfully!": "تم التسجيل بنجاح!", -"registration failed": "فشل التسجيل", -"Registration failed. Please try again.": "فشل التسجيل. يرجى المحاولة مرة أخرى.", -"registration_date": "تاريخ التسجيل", -"Reject": "رفض", -"reject your order.": "رفض طلبك.", -"rejected": "مرفوض", -"Rejected Orders": "الطلبات المرفوضة", -"Rejected Orders Count": "عدد الطلبات المرفوضة", -"Religion": "الدين", -"Remainder": "المتبقي", -"remaining": "المتبقي", -"Remaining time": "الوقت المتبقي", -"Remaining:": "المتبقي:", -"Report": "تقرير", -"Required field": "حقل مطلوب", -"Resend Code": "إعادة إرسال الرمز", -"Resend code": "إعادة إرسال الرمز", -"reviews": "التقييمات", -"Reward Claimed": "تم استلام المكافأة", -"Reward claimed successfully!": "تم استلام المكافأة بنجاح!", -"Reward Status": "حالة المكافأة", -"Ride": "الرحلة", -"Ride History": "سجل الرحلات", -"Ride info": "معلومات الرحلة", -"Ride information not found. Please refresh the page.": "لم يتم العثور على معلومات الرحلة. يرجى تحديث الصفحة.", -"Ride Management": "إدارة الرحلات", -"Ride Status": "حالة الرحلة", -"Ride Summaries": "ملخصات الرحلات", -"Ride Summary": "ملخص الرحلة", -"Ride Today :": "الرحلات اليوم :", -"Ride Wallet": "محفظة الرحلة", -"Rides": "الرحلات", -"rides": "الرحلات", -"Road Legend": "أسطورة الطريق", -"Road Warrior": "محارب الطريق", -"Rouats of Trip": "محطات الرحلة", -"Route Not Found": "لم يتم العثور على الطريق", -"Routs of Trip": "محطات الرحلة", -"ru": "ru", -"Run Google Maps directly": "تشغيل خرائط جوجل مباشرة", -"s Degree": "درجة", -"s heavy traffic here. Can you suggest an alternate pickup point?": "هناك ازدحام مروري شديد هنا. هل يمكنك اقتراح نقطة التقاء بديلة؟", -"s License": "رخصته", -"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. Please verify and provide the correct documents.": "رخصته. يرجى التحقق وتقديم المستندات الصحيحة.", -"s Personal Information": "المعلومات الشخصية", -"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 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 Terms & Review Privacy Notice": "شروطه ومراجعة إشعار الخصوصية", -"s time to check the Siro app!": "حان الوقت للتحقق من تطبيق سيرو!", -"S.P": "ليرة سورية", -"SAFAR Wallet": "محفظة سفر", -"safe_and_comfortable": "آمن ومريح", -"Safety & Security": "السلامة والأمان", -"Safety First 🛑": "السلامة أولاً 🛑", -"Same device detected": "تم اكتشاف نفس الجهاز", -"Sat": "السبت", -"Saudi Arabia": "السعودية", -"Save": "حفظ", -"Save & Call": "حفظ والاتصال", -"Save Credit Card": "حفظ بطاقة الائتمان", -"Saved Sucssefully": "تم الحفظ بنجاح", -"scams operations": "عمليات احتيال", -"scan Car License.": "امسح رخصة السيارة.", -"Scan Driver License": "امسح رخصة القيادة", -"Scan Id": "امسح الهوية", -"Scan ID Api": "امسح الهوية API", -"Scan ID MklGoogle": "امسح الهوية MklGoogle", -"Scan ID Tesseract": "امسح الهوية Tesseract", -"Scheduled Time:": "الوقت المجدول:", -"Scooter": "سكوتر", -"Score": "الدرجة", -"Search country": "ابحث عن الدولة", -"Search for a starting point": "ابحث عن نقطة البداية", -"Search for waypoint": "ابحث عن نقطة الطريق", -"Search for your destination": "ابحث عن وجهتك", -"Search for your Start point": "ابحث عن نقطة بدايتك", -"Search name or number...": "ابحث باسم أو رقم...", -"Searching for the nearest captain...": "جارٍ البحث عن أقرب كابتن...", -"seconds": "ثوانٍ", -"Security Warning": "تحذير أمني", -"security_warning": "تحذير أمني", -"See you on the road!": "أراك على الطريق!", -"See you Tomorrow!": "أراك غداً!", -"Select a Bank": "اختر بنكاً", -"Select a Contact": "اختر جهة اتصال", -"Select a File": "اختر ملفاً", -"Select a file": "اختر ملفاً", -"Select a quick message": "اختر رسالة سريعة", -"Select Country": "اختر الدولة", -"Select Date": "اختر التاريخ", -"Select date and time of trip": "اختر تاريخ ووقت الرحلة", -"Select how you want to charge your account": "اختر كيف تريد شحن حسابك", -"Select Name of Your Bank": "اختر اسم بنكك", -"Select one message": "اختر رسالة واحدة", -"Select Order Type": "اختر نوع الطلب", -"Select Payment Amount": "اختر مبلغ الدفع", -"Select Payment Method": "اختر طريقة الدفع", -"Select recorded trip": "اختر الرحلة المسجلة", -"Select This Ride": "اختر هذه الرحلة", -"Select Time": "اختر الوقت", -"Select Waiting Hours": "اختر ساعات الانتظار", -"Select Your Country": "اختر دولتك", -"Select your destination": "اختر وجهتك", -"Select your preferred language for the app interface.": "اختر لغتك المفضلة لواجهة التطبيق.", -"Selected Date": "التاريخ المحدد", -"Selected Date and Time": "التاريخ والوقت المحددان", -"Selected driver": "السائق المحدد", -"Selected file:": "الملف المحدد:", -"Selected Location": "الموقع المحدد", -"Selected Time": "الوقت المحدد", -"Send a custom message": "إرسال رسالة مخصصة", -"Send Email": "إرسال بريد إلكتروني", -"Send Invite": "إرسال دعوة", -"Send Message": "إرسال رسالة", -"send otp button": "زر إرسال رمز OTP", -"Send Siro app to him": "أرسل تطبيق سيرو له", -"Send to Driver Again": "إرسال إلى السائق مرة أخرى", -"Send Verfication Code": "إرسال رمز التحقق", -"Send Verification Code": "إرسال رمز التحقق", -"Send WhatsApp Message": "إرسال رسالة واتساب", -"Send your referral code to friends": "أرسل رمز الإحالة الخاص بك للأصدقاء", -"Server error": "خطأ في الخادم", -"server error try again": "خطأ في الخادم، حاول مرة أخرى", -"Server error. Please try again.": "خطأ في الخادم. يرجى المحاولة مرة أخرى.", -"server_error": "خطأ في الخادم", -"server_error_message": "حدث خطأ في الاتصال بالخادم", -"Session expired. Please log in again.": "انتهت الجلسة. يرجى تسجيل الدخول مرة أخرى.", -"Set Daily Goal": "تحديد الهدف اليومي", -"Set Goal": "تحديد الهدف", -"Set Location on Map": "تعيين الموقع على الخريطة", -"Set Phone Number": "تعيين رقم الهاتف", -"Set pickup location": "تعيين موقع الالتقاط", -"Set Wallet Phone Number": "تعيين رقم هاتف المحفظة", -"Setting": "إعداد", -"Settings": "الإعدادات", -"Sex is": "الجنس هو", -"Sham Cash": "شام كاش", -"ShamCash Account": "حساب شام كاش", -"Share": "مشاركة", -"Share App": "مشاركة التطبيق", -"Share Code": "مشاركة الرمز", -"Share the app with another new driver": "شارك التطبيق مع سائق جديد آخر", -"Share the app with another new passenger": "شارك التطبيق مع راكب جديد آخر", -"Share this code to earn rewards": "شارك هذا الرمز لكسب المكافآت", -"Share this code with other drivers. Both of you will receive rewards!": "شارك هذا الرمز مع سائقين آخرين. ستحصلون جميعاً على مكافآت!", -"Share this code with passengers and earn rewards when they use it!": "شارك هذا الرمز مع الركاب واكسب مكافآت عندما يستخدمونه!", -"Share this code with your friends and earn rewards when they use it!": "شارك هذا الرمز مع أصدقائك واكسب مكافآت عندما يستخدمونه!", -"Share Trip Details": "مشاركة تفاصيل الرحلة", -"Share via": "مشاركة عبر", -"Share with friends and earn rewards": "شارك مع الأصدقاء واكسب مكافآت", -"Share your experience to help us improve...": "شارك تجربتك لمساعدتنا في التحسين...", -"Show behavior page": "عرض صفحة السلوك", -"Show health insurance providers near me": "عرض مزوّدي التأمين الصحي القريبين مني", -"Show Invitations": "عرض الدعوات", -"Show latest promo": "عرض آخر عرض ترويجي", -"Show maintenance center near my location": "عرض مركز الصيانة القريب من موقعي", -"Show my Cars": "عرض سياراتي", -"Show My Trip Count": "عرض عدد رحلاتي", -"Show Promos": "عرض العروض", -"Show Promos to Charge": "عرض العروض للشحن", -"Showing": "عرض", -"Sign In by Apple": "تسجيل الدخول عبر آبل", -"Sign In by Google": "تسجيل الدخول عبر جوجل", -"Sign in for a seamless experience": "سجّل الدخول لتجربة سلسة", -"Sign in to start your journey": "سجّل الدخول لبدء رحلتك", -"Sign in with a provider for easy access": "سجّل الدخول باستخدام مزوّد للوصول السهل", -"Sign in with Apple": "تسجيل الدخول عبر آبل", -"Sign In with Google": "تسجيل الدخول عبر جوجل", -"Sign in with Google for easier email and name entry": "سجّل الدخول عبر جوجل لإدخال البريد الإلكتروني والاسم بسهولة", -"Sign Out": "تسجيل الخروج", -"Silver badge": "شارة فضية", -"similar": "متشابه", -"Siro": "سيرو", -"Siro Balance": "رصيد سيرو", -"Siro Driver": "سائق سيرو", -"Siro DRIVER CODE": "رمز سائق سيرو", -"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 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 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 LLC": "شركة سيرو ذ.م.م", -"Siro LLC\n\${'Syria": "شركة سيرو ذ.م.م\n\${'سوريا", -"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 Order": "طلب سيرو", -"Siro Over": "انتهى سيرو", -"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 Reminder": "تذكير سيرو", -"Siro Wallet": "محفظة سيرو", -"Siro Wallet Features:": "ميزات محفظة سيرو:", -"Siro's Response": "رد سيرو", -"Siro123": "سيرو123", -"Siro: For fixed salary and endpoints.": "سيرو: للراتب الثابت ونقاط النهاية.", -"Slide to End Trip": "مرر لإنهاء الرحلة", -"So go and gain your money": "اذهب واستلم أموالك", -"Social Butterfly": "الفراشة الاجتماعية", -"Societe Arabe Internationale De Banque": "الشركة العربية الدولية للبنوك", -"Something went wrong. Please try again.": "حدث خطأ ما. يرجى المحاولة مرة أخرى.", -"Sorry": "آسف", -"Sorry, the order was taken by another driver.": "آسف، تم أخذ الطلب من قبل سائق آخر.", -"SOS": "الطوارئ", -"SOS Phone": "هاتف الطوارئ", -"Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان فسيحة مثالية للعائلات والمجموعات. سفر مريح وآمن وفعال من حيث التكلفة معاً.", -"Speaker": "مكبّر الصوت", -"Special Order": "طلب خاص", -"Speed": "السرعة", -"Speed Order": "طلب سريع", -"Speed 🔻": "السرعة 🔻", -"Standard Call": "مكالمة قياسية", -"Standard support": "دعم قياسي", -"Start": "ابدأ", -"start": "ابدأ", -"Start Navigation?": "بدء الملاحة؟", -"Start Record": "بدء التسجيل", -"Start Ride": "بدء الرحلة", -"Start sharing your code!": "ابدأ بمشاركة رمزك!", -"Start the Ride": "ابدأ الرحلة", -"Start Trip": "ابدأ الرحلة", -"Start Trip?": "ابدأ الرحلة؟", -"start_name'] ?? 'Pickup Location": "start_name'] ?? 'موقع الالتقاط", -"Starting contacts sync in background...": "جارٍ بدء مزامنة جهات الاتصال في الخلفية...", -"startName'] ?? 'Unknown Location": "startName'] ?? 'موقع غير معروف", -"Statistic": "إحصائية", -"Statistics": "الإحصائيات", -"Status": "الحالة", -"Status is": "الحالة هي", -"Stay": "ابقَ", -"Step-by-step instructions on how to request a ride through the Siro app.": "تعليمات خطوة بخطوة حول كيفية طلب رحلة من خلال تطبيق سيرو.", -"Stop": "توقف", -"Store your money with us and receive it in your bank as a monthly salary.": "احفظ أموالك معنا واحصل عليها في بنكك كراتب شهري.", -"string": "نص", -"Submission Failed": "فشل الإرسال", -"SUBMIT": "إرسال", -"Submit": "إرسال", -"Submit ": "إرسال", -"Submit a Complaint": "تقديم شكوى", -"Submit Complaint": "إرسال شكوى", -"Submit Question": "إرسال سؤال", -"Submit Rating": "إرسال التقييم", -"Submit rating": "إرسال التقييم", -"Submit Your Complaint": "إرسال شكواك", -"Submit Your Question": "إرسال سؤالك", -"Success": "نجاح", -"Suez Canal Bank": "بنك قناة السويس", -"Summary of your daily activity": "ملخص نشاطك اليومي", -"Sun": "الأحد", -"Support": "الدعم", -"Support Reply": "رد الدعم", -"Swipe to End Trip": "مرر لإنهاء الرحلة", -"Switch between light and dark map styles": "التبديل بين أنماط الخريطة الفاتحة والداكنة", -"Switch between light and dark themes": "التبديل بين السمات الفاتحة والداكنة", -"Switch Rider": "تبديل الراكب", -"SYP": "ليرة سورية", -"Syria": "سوريا", -"Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", -"Syria': return 'SYP": "Syria': return 'ليرة سورية", -"syriatel": "سيريتل", -"Syriatel Cash": "سيريتل كاش", -"t an Egyptian phone number": "رقم هاتف مصري", -"t be late": "لا تتأخر", -"t cancel!": "لا تلغي!", -"t continue with us .": "لا يمكنك الاستمرار معنا.", -"t continue with us .\nYou should renew Driver license": "لا يمكنك الاستمرار معنا.\nيجب تجديد رخصة القيادة", -"t find a valid route to this destination. Please try selecting a different point.": "لم يتم العثور على طريق صالح لهذه الوجهة. يرجى محاولة اختيار نقطة مختلفة.", -"t forget your personal belongings.": "لا تنسَ ممتلكاتك الشخصية.", -"t forget your ride!": "لا تنسَ رحلتك!", -"t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "لم يتم العثور على سائقين بعد. فكّر في زيادة رسوم رحلتك لجعل عرضك أكثر جاذبية للسائقين.", -"t have a code": "ليس لديك رمز", -"t have a phone number.": "ليس لديك رقم هاتف.", -"t have a reason": "ليس لديك سبب", -"t have account": "ليس لديك حساب", -"t have enough money in your Siro wallet": "ليس لديك ما يكفي من الأموال في محفظة سيرو الخاصة بك", -"t moved sufficiently!": "لم تتحرك بشكل كافٍ!", -"t need a ride anymore": "لا تحتاج إلى رحلة بعد الآن", -"t return to use app after 1 month": "لن تتمكن من العودة لاستخدام التطبيق بعد شهر", -"t start trip if not": "لا تبدأ الرحلة إذا لم", -"t start trip if passenger not in your car": "لا تبدأ الرحلة إذا لم يكن الراكب في سيارتك", -"Take Image": "التقط صورة", -"Take Photo Now": "التقط صورة الآن", -"Take Picture Of Driver License Card": "التقط صورة لرخصة قيادة السائق", -"Take Picture Of ID Card": "التقط صورة لبطاقة الهوية", -"Tap on the promo code to copy it!": "انقر على الرمز الترويجي لنسخه!", -"Tap to upload": "انقر للرفع", -"Target": "الهدف", -"Tariff": "التعريفة", -"Tariffs": "التعريفات", -"Tax Expiry Date": "تاريخ انتهاء الضريبة", -"Terms of Use": "شروط الاستخدام", -"terms of use": "شروط الاستخدام", -"Terms of Use & Privacy Notice": "شروط الاستخدام وإشعار الخصوصية", -"Thank You!": "شكراً لك!", -"Thanks": "شكراً", -"the 300 points equal 300 L.E": "الـ 300 نقطة تساوي 300 جنيه مصري", -"the 300 points equal 300 L.E for you": "الـ 300 نقطة تساوي 300 جنيه مصري لك", -"The 300 points equal 300 L.E for you\nSo go and gain your money": "الـ 300 نقطة تساوي 300 جنيه مصري لك\nاذهب واستلم أموالك", -"the 300 points equal 300 L.E for you\nSo go and gain your money": "الـ 300 نقطة تساوي 300 جنيه مصري لك\nاذهب واستلم أموالك", -"the 3000 points equal 3000 L.E": "الـ 3000 نقطة تساوي 3000 جنيه مصري", -"the 3000 points equal 3000 L.E for you": "الـ 3000 نقطة تساوي 3000 جنيه مصري لك", -"The 30000 points equal 30000 S.P for you\nSo go and gain your money": "الـ 30000 نقطة تساوي 30000 ليرة سورية لك\nاذهب واستلم أموالك", -"the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 دينار أردني", -"the 500 points equal 30 JOD for you": "الـ 500 نقطة تساوي 30 دينار أردني لك", -"the 500 points equal 30 JOD for you\nSo go and gain your money": "الـ 500 نقطة تساوي 30 دينار أردني لك\nاذهب واستلم أموالك", -"The Amount is less than": "المبلغ أقل من", -"The app may not work optimally": "قد لا يعمل التطبيق بشكل مثالي", -"The audio file is not uploaded yet.\nDo you want to submit without it?": "لم يتم رفع ملف الصوت بعد.\nهل تريد الإرسال بدونه؟", -"The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", -"The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "لا يوفر السياق أي تفاصيل عن الشكوى، لذلك لا يمكنني تقديم حل لهذه المشكلة. يرجى تقديم المعلومات اللازمة، وسأكون سعيداً بمساعدتك.", -"The distance less than 500 meter.": "المسافة أقل من 500 متر.", -"The driver accept your order for": "السائق قبل طلبك مقابل", -"The driver accepted your order for": "السائق قبل طلبك مقابل", -"The driver accepted your trip": "السائق قبل رحلتك", -"The driver canceled your ride.": "السائق ألغى رحلتك.", -"The driver is approaching.": "السائق يقترب.", -"The driver on your way": "السائق في طريقه إليك", -"The driver waiting you in picked location .": "السائق ينتظر في موقع الالتقاط.", -"The driver waitting you in picked location .": "السائق ينتظر في موقع الالتقاط.", -"The Driver Will be in your location soon .": "سيكون السائق في موقعك قريباً.", -"The drivers are reviewing your request": "السائقون يقومون بمراجعة طلبك", -"The email or phone number is already registered.": "البريد الإلكتروني أو رقم الهاتف مسجل بالفعل.", -"The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "لا يتطابق الاسم الكامل في صحيفة الحالة الجنائية الخاصة بك مع الاسم الموجود في رخصة قيادتك. يرجى التحقق وتقديم المستندات الصحيحة.", -"The invitation was sent successfully": "تم إرسال الدعوة بنجاح", -"The map will show an approximate view.": "ستعرض الخريطة عرضاً تقريبياً.", -"The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "لا يتطابق الرقم الوطني في رخصة قيادتك مع الرقم الموجود في وثيقة هويتك. يرجى التحقق وتقديم المستندات الصحيحة.", -"The order Accepted by another Driver": "تم قبول الطلب من قبل سائق آخر", -"The order has been accepted by another driver.": "تم قبول الطلب من قبل سائق آخر.", -"The payment was approved.": "تمت الموافقة على الدفع.", -"The payment was not approved. Please try again.": "لم تتم الموافقة على الدفع. يرجى المحاولة مرة أخرى.", -"The period of this code is 24 hours": "مدة صلاحية هذا الرمز هي 24 ساعة", -"The price may increase if the route changes.": "قد يزيد السعر إذا تغير الطريق.", -"The price must be over than": "يجب أن يكون السعر أكثر من", -"The promotion period has ended.": "انتهت فترة العرض الترويجي.", -"The reason is": "السبب هو", -"The selected contact does not have a phone number": "جهة الاتصال المحددة لا تحتوي على رقم هاتف", -"The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "لقد بدأت الرحلة! لا تتردد في الاتصال بأرقام الطوارئ، أو مشاركة رحلتك، أو تفعيل تسجيل الصوت للرحلة", -"The United Bank": "البنك المتحد", -"There is no data yet.": "لا توجد بيانات بعد.", -"There is no help Question here": "لا يوجد سؤال مساعدة هنا", -"There is no notification yet": "لا يوجد إشعار بعد", -"There no Driver Aplly your order sorry for that": "لا يوجد سائق تقدّم لطلبك، آسف لذلك", -"They register using your code": "يسجلون باستخدام رمزك", -"This amount for all trip I get from Passengers": "هذا المبلغ لجميع الرحلات التي حصلت عليها من الركاب", -"This amount for all trip I get from Passengers and Collected For me in": "هذا المبلغ لجميع الرحلات التي حصلت عليها من الركاب وتم جمعه لي في", -"This driver is not registered": "هذا السائق غير مسجل", -"This for new registration": "هذا للتسجيل الجديد", -"This is a scheduled notification.": "هذا إشعار مجدول.", -"this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "هذا هو عدد جميع رحلاتك في عرض ما بعد الظهر اليوم من 3:00 مساءً إلى 6:00 مساءً", -"this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "هذا هو عدد جميع رحلاتك في عرض ما بعد الظهر اليوم من 3:00 مساءً إلى 6:00 مساءً", -"this is count of your all trips in the morning promo today from 7:00am to 10:00am": "هذا هو عدد جميع رحلاتك في عرض الصباح اليوم من 7:00 صباحاً إلى 10:00 صباحاً", -"this is count of your all trips in the morning promo today from 7:00am-10:00am": "هذا هو عدد جميع رحلاتك في عرض الصباح اليوم من 7:00 صباحاً إلى 10:00 صباحاً", -"This is for delivery or a motorcycle.": "هذا للتوصيل أو دراجة نارية.", -"This is for scooter or a motorcycle.": "هذا للسكوتر أو دراجة نارية.", -"This is the total number of rejected orders per day after accepting the orders": "هذا هو العدد الإجمالي للطلبات المرفوضة يومياً بعد قبول الطلبات", -"This page is only available for Android devices": "هذه الصفحة متاحة فقط لأجهزة أندرويد", -"This phone number has already been invited.": "تم دعوة هذا الرقم بالفعل.", -"This price is": "هذا السعر هو", -"This price is fixed even if the route changes for the driver.": "هذا السعر ثابت حتى لو تغير الطريق بالنسبة للسائق.", -"This price may be changed": "قد يتغير هذا السعر", -"This ride is already applied by another driver.": "تم التقدم لهذه الرحلة بالفعل من قبل سائق آخر.", -"This ride is already taken by another driver.": "تم أخذ هذه الرحلة بالفعل من قبل سائق آخر.", -"This ride type allows changes, but the price may increase": "يسمح هذا النوع من الرحلات بالتغييرات، ولكن قد يزيد السعر", -"This ride type does not allow changes to the destination or additional stops": "لا يسمح هذا النوع من الرحلات بتغيير الوجهة أو إضافة محطات إضافية", -"This ride was just accepted by another driver.": "تم قبول هذه الرحلة للتو من قبل سائق آخر.", -"This service will be available soon.": "سيكون هذا الخدمة متاحاً قريباً.", -"This Trip Cancelled": "تم إلغاء هذه الرحلة", -"This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "تذهب هذه الرحلة مباشرة من نقطة البداية إلى وجهتك بسعر ثابت. يجب على السائق اتباع الطريق المخطط", -"This trip is for women only": "هذه الرحلة للنساء فقط", -"This Trip Was Cancelled": "تم إلغاء هذه الرحلة", -"this will delete all files from your device": "سيؤدي هذا إلى حذف جميع الملفات من جهازك", -"This will delete all recorded files from your device.": "سيؤدي هذا إلى حذف جميع الملفات المسجلة من جهازك.", -"Thu": "الخميس", -"Time": "الوقت", -"Time Finish is": "وقت الانتهاء هو", -"time Selected": "الوقت المحدد", -"Time to arrive": "وقت الوصول", -"Time to Passenger": "الوقت حتى وصول الراكب", -"Time to Passenger is": "الوقت حتى وصول الراكب هو", -"Times of Trip": "أوقات الرحلة", -"TimeStart is": "وقت البدء هو", -"Tip is": "الإكرامية هي", -"tips": "الإكراميات", -"tips\nTotal is": "الإكراميات\nالمجموع هو", -"title': 'scams operations": "title': 'عمليات احتيال", -"to": "إلى", -"To :": "إلى :", -"to arrive you.": "للوصول إليك.", -"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 change Language the App": "لتغيير لغة التطبيق", -"To change some Settings": "لتغيير بعض الإعدادات", -"To display orders instantly, please grant permission to draw over other apps.": "لعرض الطلبات فوراً، يرجى منح الإذن بالعرض فوق التطبيقات الأخرى.", -"To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "لضمان أفضل تجربة، نقترح تعديل الإعدادات لتناسب جهازك. هل ترغب في المتابعة؟", -"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 Home": "إلى المنزل", -"to receive ride requests even when the app is in the background.": "لتلقي طلبات الرحلات حتى عندما يكون التطبيق في الخلفية.", -"To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": "للتسجيل كسائق أو التعرف على المتطلبات، يرجى زيارة موقعنا أو الاتصال بدعم سيرو مباشرة.", -"to ride with": "للركوب مع", -"To use Wallet charge it": "لاستخدام المحفظة، قم بشحنها", -"To Work": "إلى العمل", -"Today": "اليوم", -"Today Overview": "نظرة عامة على اليوم", -"token change": "تغيير الرمز", -"token updated": "تم تحديث الرمز", -"Top up Balance": "شحن الرصيد", -"Top up Balance to continue": "شحن الرصيد للمتابعة", -"Top up Wallet": "شحن المحفظة", -"Top up Wallet to continue": "شحن المحفظة للمتابعة", -"Total Amount:": "المبلغ الإجمالي:", -"Total Budget from trips by": "إجمالي الميزانية من الرحلات بواسطة", -"Total Budget from trips by\nCredit card is": "إجمالي الميزانية من الرحلات بواسطة\nبطاقة الائتمان هي", -"Total Budget from trips is": "إجمالي الميزانية من الرحلات هو", -"Total Budget is": "إجمالي الميزانية هو", -"Total budgets on month": "إجمالي الميزانيات للشهر", -"Total Connection": "إجمالي الاتصال", -"Total Connection Duration:": "إجمالي مدة الاتصال:", -"Total Cost": "التكلفة الإجمالية", -"Total Cost is": "التكلفة الإجمالية هي", -"Total Duration:": "إجمالي المدة:", -"Total Earnings": "إجمالي الأرباح", -"Total For You is": "إجمالي المبلغ لك هو", -"Total From Passenger is": "إجمالي المبلغ من الراكب هو", -"Total Hours on month": "إجمالي الساعات للشهر", -"Total Invites": "إجمالي الدعوات", -"Total is": "الإجمالي هو", -"Total Net": "صافي الإجمالي", -"Total Orders": "إجمالي الطلبات", -"Total Points": "إجمالي النقاط", -"Total Points is": "إجمالي النقاط هو", -"Total points is": "إجمالي النقاط هو", -"Total Price": "السعر الإجمالي", -"Total price from": "السعر الإجمالي من", -"Total Rides": "إجمالي الرحلات", -"Total rides on month": "إجمالي الرحلات للشهر", -"Total Trips": "إجمالي الرحلات", -"Total wallet is": "إجمالي المحفظة هو", -"Total Weekly Earnings": "إجمالي الأرباح الأسبوعية", -"Total weekly is": "إجمالي الأسبوعي هو", -"towards": "باتجاه", -"tr": "tr", -"Transaction failed": "فشلت المعاملة", -"Transaction failed, please try again.": "فشلت المعاملة، يرجى المحاولة مرة أخرى.", -"Transaction successful": "تمت المعاملة بنجاح", -"transaction_failed": "فشلت المعاملة", -"transaction_id": "معرف المعاملة", -"Transactions this week": "المعاملات هذا الأسبوع", -"Transfer": "تحويل", -"Transfer budget": "تحويل الميزانية", -"Transfer money multiple times.": "تحويل الأموال عدة مرات.", -"transfer Successful": "تم التحويل بنجاح", -"Transfer to anyone.": "التحويل لأي شخص.", -"Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "سافر في سيارة كهربائية حديثة وهادئة. خيار فاخر وصديق للبيئة لرحلة سلسة.", -"Traveled": "تم السفر", -"Trip": "الرحلة", -"Trip Cancelled": "تم إلغاء الرحلة", -"Trip Cancelled from driver. We are looking for a new driver. Please wait.": "تم إلغاء الرحلة من السائق. نحن نبحث عن سائق جديد. يرجى الانتظار.", -"Trip Cancelled. The cost of the trip will be added to your wallet.": "تم إلغاء الرحلة. سيتم إضافة تكلفة الرحلة إلى محفظتك.", -"Trip Cancelled. The cost of the trip will be deducted from your wallet.": "تم إلغاء الرحلة. سيتم خصم تكلفة الرحلة من محفظتك.", -"Trip Completed": "تمت الرحلة", -"Trip Detail": "تفاصيل الرحلة", -"Trip Details": "تفاصيل الرحلة", -"Trip Finished": "انتهت الرحلة", -"Trip finished": "انتهت الرحلة", -"Trip has Steps": "الرحلة تحتوي على محطات", -"Trip ID": "معرف الرحلة", -"Trip Info": "معلومات الرحلة", -"Trip is Begin": "بدأت الرحلة", -"Trip Monitor": "مراقب الرحلة", -"Trip Monitoring": "مراقبة الرحلة", -"Trip Started": "بدأت الرحلة", -"Trip Status:": "حالة الرحلة:", -"Trip Summary with": "ملخص الرحلة مع", -"Trip taken": "تم أخذ الرحلة", -"Trip Timeline": "الجدول الزمني للرحلة", -"Trip updated successfully": "تم تحديث الرحلة بنجاح", -"Trips": "الرحلات", -"trips": "الرحلات", -"Trips recorded": "الرحلات المسجلة", -"Trips: \$trips / \$target": "الرحلات: \$trips / \$target", -"true": "صحيح", -"Tue": "الثلاثاء", -"Turkey": "تركيا", -"Turn left": "انعطف يساراً", -"Turn right": "انعطف يميناً", -"Turn sharp left": "انعطف يساراً حاداً", -"Turn sharp right": "انعطف يميناً حاداً", -"Turn slight left": "انعطف يساراً خفيفاً", -"Turn slight right": "انعطف يميناً خفيفاً", -"Type a message...": "اكتب رسالة...", -"Type Any thing": "اكتب أي شيء", -"type here": "اكتب هنا", -"Type here Place": "اكتب هنا المكان", -"Type something": "اكتب شيئاً", -"Type something...": "اكتب شيئاً...", -"Type your Email": "اكتب بريدك الإلكتروني", -"Type your message": "اكتب رسالتك", -"Type your message...": "اكتب رسالتك...", -"Types of Trips in Siro:": "أنواع الرحلات في سيرو:", -"Uncompromising Security": "أمان لا هوادة فيه", -"Unknown": "غير معروف", -"Unknown Driver": "سائق غير معروف", -"Unknown Location": "موقع غير معروف", -"unknown_document": "مستند غير معروف", -"Update": "تحديث", -"Update Available": "يتوفر تحديث", -"Update Education": "تحديث التعليم", -"Update Gender": "تحديث الجنس", -"Updated": "تم التحديث", -"Updated successfully": "تم التحديث بنجاح", -"upgrade price": "رفع السعر", -"Upload Documents": "رفع المستندات", -"Upload or AI failed": "فشل الرفع أو الذكاء الاصطناعي", -"Uploaded": "تم الرفع", -"uploaded sucssefuly": "تم الرفع بنجاح", -"USA": "الولايات المتحدة الأمريكية", -"Use code:": "استخدم الرمز:", -"Use my invitation code to get a special gift on your first ride!": "استخدم رمز الدعوة الخاص بي للحصول على هدية خاصة في رحلتك الأولى!", -"Use my referral code:": "استخدم رمز الإحالة الخاص بي:", -"Use this code in registration": "استخدم هذا الرمز في التسجيل", -"Use Touch ID or Face ID to confirm payment": "استخدم Touch ID أو Face ID لتأكيد الدفع", -"User does not exist.": "المستخدم غير موجود.", -"User does not have a wallet #1652": "المستخدم لا يملك محفظة #1652", -"User not found": "لم يتم العثور على المستخدم", -"User not logged in": "المستخدم غير مسجل الدخول", -"User with this phone number or email already exists.": "المستخدم بهذا رقم الهاتف أو البريد الإلكتروني موجود بالفعل.", -"Uses cellular network": "يستخدم شبكة الجوال", -"Valid Until:": "صالح حتى:", -"Value": "القيمة", -"Van": "فان", -"Van / Bus": "فان / باص", -"Van for familly": "فان للعائلة", -"Variety of Trip Choices": "تنوع خيارات الرحلات", -"ve arrived.": "لقد وصلت.", -"ve been trying to reach you but your phone is off.": "كنت أحاول الوصول إليك ولكن هاتفك مغلق.", -"Vehicle": "المركبة", -"Vehicle Category": "فئة المركبة", -"Vehicle Details": "تفاصيل المركبة", -"Vehicle Details Back": "تفاصيل المركبة (الخلفي)", -"Vehicle Details Front": "تفاصيل المركبة (الأمامي)", -"Vehicle Information": "معلومات المركبة", -"Vehicle Options": "خيارات المركبة", -"Verification Code": "رمز التحقق", -"Verify": "التحقق", -"verify and continue button": "زر التحقق والمتابعة", -"Verify Email": "التحقق من البريد الإلكتروني", -"Verify Email For Driver": "التحقق من البريد الإلكتروني للسائق", -"Verify OTP": "التحقق من رمز OTP", -"verify your number title": "عنوان التحقق من رقمك", -"Vibration": "الاهتزاز", -"Vibration feedback for all buttons": "تغذية اهتزازية لجميع الأزرار", -"Vibration feedback for buttons": "تغذية اهتزازية للأزرار", -"Videos Tutorials": "فيديوهات تعليمية", -"View All": "عرض الكل", -"View your past transactions": "عرض معاملاتك السابقة", -"VIN": "الرقم التعريفي للمركبة (VIN)", -"vin": "الرقم التعريفي للمركبة (VIN)", -"VIN :": "الرقم التعريفي للمركبة (VIN) :", -"VIN is": "الرقم التعريفي للمركبة (VIN) هو", -"VIP first": "أولوية VIP", -"VIP Order": "طلب VIP", -"VIP Order Accepted": "تم قبول طلب VIP", -"VIP Orders": "طلبات VIP", -"Visa": "فيزا", -"Visit our website or contact Siro support for information on driver registration and requirements.": "قم بزيارة موقعنا أو اتصل بدعم سيرو للحصول على معلومات حول تسجيل السائق والمتطلبات.", -"Visit Website/Contact Support": "زيارة الموقع/الاتصال بالدعم", -"Voice call over internet": "مكالمة صوتية عبر الإنترنت", -"Voice Calling": "المكالمات الصوتية", -"wait 1 minute to receive message": "انتظر دقيقة واحدة لاستلام الرسالة", -"Wait for timer": "انتظر المؤقت", -"Waiting": "بانتظار", -"Waiting for Captin ...": "بانتظار الكابتن...", -"Waiting for Driver ...": "بانتظار السائق...", -"Waiting for trips": "بانتظار الرحلات", -"Waiting for your location": "بانتظار موقعك", -"Waiting Time": "وقت الانتظار", -"Waiting VIP": "بانتظار VIP", -"Wallet": "المحفظة", -"Wallet Add": "إضافة إلى المحفظة", -"Wallet Added": "تمت الإضافة إلى المحفظة", -"Wallet Added\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة إلى المحفظة \${(remainingFee).toStringAsFixed(0)}", -"Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة إلى المحفظة \\\${(remainingFee).toStringAsFixed(0)}", -"wallet due to a previous trip.": "محفظة بسبب رحلة سابقة.", -"Wallet is blocked": "المحفظة مقفلة", -"Wallet Payment": "الدفع عبر المحفظة", -"Wallet Phone Number": "رقم هاتف المحفظة", -"Wallet Type": "نوع المحفظة", -"Wallet!": "المحفظة!", -"wallet_credited_message": "تمت إضافة", -"wallet_updated": "تم تحديث المحفظة", -"Warning": "تحذير", -"Warning: Siroing detected!": "تحذير: تم اكتشاف مخالفات!", -"Warning: Speeding detected!": "تحذير: تم اكتشاف تجاوز السرعة!", -"We are looking for a captain but the price may increase to let a captain accept": "نحن نبحث عن كابتن ولكن قد يزيد السعر ليقبل كابتن", -"We are process picture please wait": "نحن نعالج الصورة، يرجى الانتظار", -"We are process picture please wait ": "نحن نعالج الصورة، يرجى الانتظار", -"We are search for nearst driver": "نحن نبحث عن أقرب سائق", -"We are searching for the nearest driver": "نحن نبحث عن أقرب سائق لك", -"We are searching for the nearest driver to you": "نحن نبحث عن أقرب سائق لك", -"We Are Sorry That we dont have cars in your Location!": "نأسف لأننا لا نملك سيارات في موقعك!", -"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 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:": "لقد أرسلنا رمز التحقق إلى رقم هاتفك:", -"We need access to your location to match you with nearby passengers and ensure accurate navigation.": "نحتاج إلى الوصول إلى موقعك لمطابقتك مع ركاب قريبين وضمان ملاحة دقيقة.", -"We need access to your location to match you with nearby passengers and provide accurate navigation.": "نحتاج إلى الوصول إلى موقعك لمطابقتك مع ركاب قريبين وتوفير ملاحة دقيقة.", -"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 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 أرقام إلى بريدك الإلكتروني المقدم", -"We use location to get accurate and nearest passengers for you": "نستخدم الموقع للحصول على ركاب دقيقين وقريبين لك", -"We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "نستخدم موقعك الدقيق للعثور على أقرب سائق متاح وتوفير معلومات دقيقة للاستلام والتنزيل. يمكنك إدارة هذا في الإعدادات.", -"We will look for a new driver.\nPlease wait.": "سنبحث عن سائق جديد.\nيرجى الانتظار.", -"We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "سنرسل لك إشعاراً فور الموافقة على حسابك. يمكنك إغلاق هذه الصفحة بأمان، وسنخبرك عندما تكتمل المراجعة.", -"Wed": "الأربعاء", -"Weekly Budget": "الميزانية الأسبوعية", -"Weekly Challenges": "التحديات الأسبوعية", -"Weekly Earnings": "الأرباح الأسبوعية", -"Weekly Plan": "الخطة الأسبوعية", -"Weekly Streak": "سلسلة أسبوعية", -"Weekly Summary": "الملخص الأسبوعي", -"Welcome": "مرحباً", -"Welcome Back!": "مرحباً بعودتك!", -"Welcome Offer!": "عرض ترحيبي!", -"welcome to siro": "مرحباً بك في سيرو", -"Welcome to Siro!": "مرحباً بك في سيرو!", -"welcome user": "مرحباً بالمستخدم", -"welcome_message": "رسالة الترحيب", -"welcome_to_siro": "مرحباً بك في سيرو", -"What are the order details we provide to you?": "ما هي تفاصيل الطلب التي نقدمها لك؟", -"What are the requirements to become a driver?": "ما هي المتطلبات لل becoming سائق؟", -"What is the feature of our wallet?": "ما هي ميزة محفظتنا؟", -"What is Types of Trips in Siro?": "ما هي أنواع الرحلات في سيرو؟", -"What safety measures does Siro offer?": "ما هي إجراءات السلامة التي يقدمها سيرو؟", -"What types of vehicles are available?": "ما هي أنواع المركبات المتاحة؟", -"WhatsApp": "واتساب", -"WhatsApp Location Extractor": "مستخرج موقع الواتساب", -"whatsapp', phone1, 'Hello": "واتساب', phone1, 'مرحباً", -"When": "متى", -"When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "عند إكمالك 500 رحلة، ستكون مؤهلاً للعروض الحصرية للتأمين الصحي.", -"When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "عند إكمالك 600 رحلة، ستكون مؤهلاً لتلقي عروض صيانة سيارتك.", -"Where are you going?": "إلى أين أنت ذاهب؟", -"Where are you, sir?": "أين أنت، سيدي؟", -"Where to": "إلى أين؟", -"Where you want go": "إلى أين تريد الذهاب؟", -"Which method you will pay": "بأي طريقة ستدفع؟", -"Why Choose Siro?": "لماذا تختار سيرو؟", -"Why do you want to cancel this trip?": "لماذا تريد إلغاء هذه الرحلة؟", -"with license plate": "مع لوحة الترخيص", -"With Siro, you can get a ride to your destination in minutes.": "مع سيرو، يمكنك الحصول على رحلة إلى وجهتك في دقائق.", -"with type": "مع النوع", -"Withdraw": "سحب", -"witout zero": "بدون صفر", -"Work": "العمل", -"Work & Contact": "العمل والتواصل", -"Work 30 consecutive days": "العمل 30 يوماً متتالياً", -"Work 7 consecutive days": "العمل 7 أيام متتالية", -"Work Days": "أيام العمل", -"Work Saved": "تم حفظ العمل", -"Work time is from 10:00 - 17:00.\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 إلى 17:00.\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", -"Work time is from 10:00 AM to 16:00 PM.\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 صباحاً إلى 16:00 مساءً.\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", -"Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "وقت العمل من 12:00 إلى 19:00.\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", -"Would the passenger like to settle the remaining fare using their wallet?": "هل يرغب الراكب في تسديد الأجرة المتبقية باستخدام محفظته؟", -"Would you like to proceed with health insurance?": "هل ترغب في المتابعة مع التأمين الصحي؟", -"write Color for your car": "اكتب لون سيارتك", -"write comment here": "اكتب تعليقك هنا", -"write Expiration Date for your car": "اكتب تاريخ انتهاء صلاحية سيارتك", -"write Make for your car": "اكتب ماركة سيارتك", -"write Model for your car": "اكتب موديل سيارتك", -"Write note": "اكتب ملاحظة", -"Write the reason for canceling the trip": "اكتب سبب إلغاء الرحلة", -"write vin for your car": "اكتب الرقم التعريفي لسيارتك (VIN)", -"write Year for your car": "اكتب سنة صنع سيارتك", -"Write your comment here": "اكتب تعليقك هنا", -"Write your reason...": "اكتب سببك...", -"Year": "السنة", -"year :": "السنة :", -"Year is": "السنة هي", -"Year of Manufacture": "سنة الصنع", -"Yes": "نعم", -"Yes, optimize": "نعم، قم بالتحسين", -"Yes, Pay": "نعم، ادفع", -"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, but please note that cancellation fees may apply depending on how far in advance you cancel.": "نعم، يمكنك إلغاء رحلتك، ولكن يرجى ملاحظة أن رسوم الإلغاء قد تنطبق اعتماداً على المدة الزمنية التي تقوم بالإلغاء فيها مسبقاً.", -"You": "أنت", -"You accepted the VIP order.": "لقد قبلت طلب VIP.", -"You are buying": "أنت تشتري", -"You are Delete": "تم حذفك", -"You are far from passenger location": "أنت بعيد عن موقع الراكب", -"You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "أنت في رحلة نشطة. قد يؤدي مغادرة هذه الشاشة إلى إيقاف التتبع. هل أنت متأكد من رغبتك في الخروج؟", -"You are near the destination": "أنت قريب من الوجهة", -"You are not in near to passenger location": "أنت لست قريباً من موقع الراكب", -"you are not moved yet !": "لم تتحرك بعد!", -"You are not near": "أنت لست قريباً من", -"You are not near the passenger location": "أنت لست قريباً من موقع الراكب", -"You are Stopped": "تم إيقافك", -"You Are Stopped For this Day !": "تم إيقافك لهذا اليوم!", -"you can buy": "يمكنك الشراء", -"You can buy points from your budget": "يمكنك شراء نقاط من ميزانيتك", -"You can buy Points to let you online": "يمكنك شراء نقاط لتصبح متاحاً", -"You can buy Points to let you online\nby this list below": "يمكنك شراء نقاط لتصبح متاحاً\nمن خلال هذه القائمة أدناه", -"You can call or record audio during this trip.": "يمكنك الاتصال أو تسجيل الصوت أثناء هذه الرحلة.", -"You can call or record audio of this trip": "يمكنك الاتصال أو تسجيل الصوت لهذه الرحلة", -"You Can cancel Ride After Captain did not come in the time": "يمكنك إلغاء الرحلة إذا لم يصل الكابتن في الوقت المحدد", -"You can cancel Ride now": "يمكنك إلغاء الرحلة الآن", -"You Can Cancel the Trip and get Cost From": "يمكنك إلغاء الرحلة واسترداد التكلفة من", -"You can cancel trip": "يمكنك إلغاء الرحلة", -"You Can Cancel Trip And get Cost of Trip From": "يمكنك إلغاء الرحلة واسترداد تكلفة الرحلة من", -"You can change the Country to get all features": "يمكنك تغيير الدولة للحصول على جميع الميزات", -"You can change the destination by long-pressing any point on the map": "يمكنك تغيير الوجهة بالضغط المطول على أي نقطة على الخريطة", -"You can change the language of the app": "يمكنك تغيير لغة التطبيق", -"You can change the vibration feedback for all buttons": "يمكنك تغيير تغذية الاهتزاز لجميع الأزرار", -"You can claim your gift once they complete 2 trips.": "يمكنك استلام هديتك بمجرد إكمالهم رحلتين.", -"You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "يمكنك التواصل مع سائقك أو راكبك من خلال ميزة الدردشة داخل التطبيق بمجرد تأكيد الرحلة.", -"You can contact us during working hours from 10:00 - 16:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 10:00 إلى 16:00.", -"You can contact us during working hours from 10:00 - 17:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 10:00 إلى 17:00.", -"You can contact us during working hours from 12:00 - 19:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 12:00 إلى 19:00.", -"You can decline a request without any cost": "يمكنك رفض طلب دون أي تكلفة", -"You can now receive orders": "يمكنك الآن تلقي الطلبات", -"You can only use one device at a time. This device will now be set as your active device.": "يمكنك استخدام جهاز واحد فقط في كل مرة. سيتم الآن تعيين هذا الجهاز كجهازك النشط.", -"You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "يمكنك الدفع لرحلتك باستخدام النقود أو بطاقة الائتمان/الخصم. يمكنك اختيار طريقة الدفع المفضلة لديك قبل تأكيد رحلتك.", -"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 show video how to setup": "يمكنك عرض فيديو حول كيفية الإعداد", -"You can upgrade price to may driver accept your order": "يمكنك رفع السعر ليقبل السائق طلبك", -"You can\\'t continue with us .\nYou should renew Driver license": "لا يمكنك الاستمرار معنا.\nيجب تجديد رخصة القيادة", -"you canceled order": "لقد ألغيت الطلب", -"You canceled VIP trip": "لقد ألغيت رحلة VIP", -"You cannot call the passenger due to policy violations": "لا يمكنك الاتصال بالراكب بسبب انتهاكات السياسة", -"You deserve the gift": "أنت تستحق الهدية", -"You do not have enough money in your SAFAR wallet": "ليس لديك ما يكفي من الأموال في محفظة سفر الخاصة بك", -"You dont Add Emergency Phone Yet!": "لم تقم بإضافة رقم طوارئ بعد!", -"you dont have accepted ride": "ليس لديك رحلة مقبولة", -"You Dont Have Any amount in": "ليس لديك أي مبلغ في", -"You Dont Have Any places yet !": "ليس لديك أي أماكن بعد!", -"You dont have invitation code": "ليس لديك رمز دعوة", -"You dont have money in your Wallet": "ليس لديك أموال في محفظتك", -"You dont have money in your Wallet or you should less transfer 5 LE to activate": "ليس لديك أموال في محفظتك أو يجب أن تقوم بتحويل أقل من 5 جنيه مصري للتفعيل", -"You dont have Points": "ليس لديك نقاط", -"You Earn today is": "أرباحك اليوم هي", -"you gain": "تكسب", -"You gained": "لقد ربحت", -"You get 100 pts, they get 50 pts": "تحصل على 100 نقطة، وهم يحصلون على 50 نقطة", -"You Have": "لديك", -"You have": "لديك", -"You have 200": "لديك 200", -"You have 500": "لديك 500", -"you have a negative balance of": "لديك رصيد سلبي بقيمة", -"You have already received your gift for inviting": "لقد استلمت هديتك بالفعل مقابل الدعوة", -"You have already used this promo code.": "لقد استخدمت هذا الرمز الترويجي بالفعل.", -"You have arrived at your destination": "لقد وصلت إلى وجهتك", -"You have arrived at your destination, @name": "لقد وصلت إلى وجهتك، @name", -"You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "لقد كنت تقود لمدة 12 ساعة. من أجل سلامتك والامتثال، يرجى أخذ استراحة لمدة 6 ساعات.", -"You have call from driver": "لديك مكالمة من السائق", -"You have chosen not to proceed with health insurance.": "لقد اخترت عدم المتابعة مع التأمين الصحي.", -"you have connect to passengers and let them cancel the order": "لقد قمت بالتواصل مع الركاب وسمحت لهم بإلغاء الطلب", -"You have copied the promo code.": "لقد نسخت الرمز الترويجي.", -"You have earned 20": "لقد ربحت 20", -"You have exceeded the allowed cancellation limit (3 times).\nYou cannot work until the penalty expires.": "لقد تجاوزت حد الإلغاء المسموح به (3 مرات).\nلا يمكنك العمل حتى تنتهي فترة العقوبة.", -"You have finished all times": "لقد أنهيت جميع الأوقات", -"You have finished all times ": "لقد أنهيت جميع الأوقات", -"You have gift 300 \${CurrencyHelper.currency}": "لديك هدية بقيمة 300 \${CurrencyHelper.currency}", -"You have gift 300 EGP": "لديك هدية بقيمة 300 جنيه مصري", -"You have gift 300 JOD": "لديك هدية بقيمة 300 دينار أردني", -"You have gift 300 L.E": "لديك هدية بقيمة 300 جنيه مصري", -"You have gift 300 SYP": "لديك هدية بقيمة 300 ليرة سورية", -"You have gift 30000 EGP": "لديك هدية بقيمة 30000 جنيه مصري", -"You have gift 30000 JOD": "لديك هدية بقيمة 30000 دينار أردني", -"You have gift 30000 SYP": "لديك هدية بقيمة 30000 ليرة سورية", -"You have got a gift": "لقد حصلت على هدية", -"You have got a gift for invitation": "لقد حصلت على هدية مقابل الدعوة", -"You Have in": "لديك في", -"You have in account": "لديك في الحساب", -"You have promo!": "لديك عرض ترويجي!", -"You have received a gift token!": "لقد استلمت رمز هدية!", -"You have successfully charged your account": "لقد قمت بشحن حسابك بنجاح", -"You have successfully opted for health insurance.": "لقد اخترت التأمين الصحي بنجاح.", -"You Have Tips": "لديك إكراميات", -"You have transfer to your wallet from": "لقد تم التحويل إلى محفظتك من", -"You have transferred to your wallet from": "لقد تم التحويل إلى محفظتك من", -"You have upload Criminal documents": "لقد قمت برفع مستندات جنائية", -"You haven't moved sufficiently!": "لم تتحرك بشكل كافٍ!", -"You must be charge your Account": "يجب عليك شحن حسابك", -"You must be closer than 100 meters to arrive": "يجب أن تكون أقرب من 100 متر للوصول", -"You must be recharge your Account": "يجب عليك إعادة شحن حسابك", -"you must insert token code": "يجب عليك إدخال رمز الرمز", -"you must insert token code ": "يجب عليك إدخال رمز الرمز", -"You must restart the app to change the language.": "يجب عليك إعادة تشغيل التطبيق لتغيير اللغة.", -"You must Verify email !.": "يجب عليك التحقق من البريد الإلكتروني !.", -"You need to be closer to the pickup location.": "يجب أن تكون أقرب إلى موقع الالتقاط.", -"You need to complete 500 trips": "يجب عليك إكمال 500 رحلة", -"You Refused 3 Rides this Day that is the reason": "لقد رفضت 3 رحلات اليوم وهذا هو السبب", -"You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "لقد رفضت 3 رحلات اليوم وهذا هو السبب \nأراك غداً!", -"You Refused 3 Rides this Day that is the reason\nSee you Tomorrow!": "لقد رفضت 3 رحلات اليوم وهذا هو السبب\nأراك غداً!", -"You Should be select reason.": "يجب عليك اختيار السبب.", -"You Should choose rate figure": "يجب عليك اختيار رقم التقييم", -"You should complete 500 trips to unlock this feature.": "يجب عليك إكمال 500 رحلة لفتح هذه الميزة.", -"You should complete 600 trips": "يجب عليك إكمال 600 رحلة", -"You should have upload it .": "يجب أن تكون قد قمت برفعه.", -"You should renew Driver license": "يجب تجديد رخصة القيادة", -"You should restart app to change language": "يجب عليك إعادة تشغيل التطبيق لتغيير اللغة", -"You should select one": "يجب عليك اختيار واحد", -"You should select your country": "يجب عليك اختيار دولتك", -"You should use Touch ID or Face ID to confirm payment": "يجب عليك استخدام Touch ID أو Face ID لتأكيد الدفع", -"You trip distance is": "مسافة رحلتك هي", -"You will arrive to your destination after": "سوف تصل إلى وجهتك بعد", -"You will arrive to your destination after timer end.": "سوف تصل إلى وجهتك بعد انتهاء المؤقت.", -"You will be charged for the cost of the driver coming to your location.": "سيتم محاسبتك على تكلفة وصول السائق إلى موقعك.", -"You Will Be Notified": "سوف يتم إعلامك", -"You will be pay the cost to driver or we will get it from you on next trip": "سوف تدفع التكلفة للسائق أو سنخصمها منك في الرحلة القادمة", -"You will be thier in": "سوف تكون هناك خلال", -"You will cancel registration": "سوف تلغي التسجيل", -"You will choose allow all the time to be ready receive orders": "سوف تختار السماح طوال الوقت لتكون جاهزاً لتلقي الطلبات", -"You will choose one of above !": "سوف تختار واحدة من الأعلى!", -"You will get cost of your work for this trip": "سوف تحصل على أجرة عملك لهذه الرحلة", -"You will need to pay the cost to the driver, or it will be deducted from your next trip": "سوف تحتاج إلى دفع التكلفة للسائق، أو سيتم خصمها من رحلتك القادمة", -"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 receive a code in SMS message": "سوف تتلقى رمزاً في رسالة SMS", -"You will receive a code in WhatsApp Messenger": "سوف تتلقى رمزاً في رسالة واتساب", -"You will receive code in sms message": "سوف تتلقى رمزاً في رسالة SMS", -"You will recieve code in sms message": "سوف تتلقى رمزاً في رسالة SMS", -"you will use this device?": "هل ستستخدم هذا الجهاز؟", -"Your Account is Deleted": "تم حذف حسابك", -"Your account is temporarily restricted ⛔": "حسابك مقيد مؤقتاً ⛔", -"Your Activity": "نشاطك", -"Your Application is Under Review": "طلبك قيد المراجعة", -"Your are far from passenger location": "أنت بعيد عن موقع الراكب", -"Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "رصيدك أقل من الحد الأدنى لمبلغ السحب وهو {minAmount} ليرة سورية.", -"Your Budget less than needed": "ميزانيتك أقل من المطلوب", -"Your Choice, Our Priority": "اختيارك، أولويتنا", -"Your complaint has been submitted.": "تم تقديم شكواك.", -"Your completed trips will appear here": "ستظهر رحلاتك المكتملة هنا", -"Your data will be erased after 2 weeks": "سيتم مسح بياناتك بعد أسبوعين", -"Your data will be erased after 2 weeks\nAnd you will can\\'t return to use app after 1 month": "سيتم مسح بياناتك بعد أسبوعين\nو لن تتمكن من العودة لاستخدام التطبيق بعد شهر", -"Your device appears to be compromised. The app will now close.": "يبدو أن جهازك مخترق. سيتم الآن إغلاق التطبيق.", -"Your device is good and very suitable": "جهازك جيد ومناسب جداً", -"Your device provides excellent performance": "يقدم جهازك أداءً ممتازاً", -"Your Driver Referral Code": "رمز إحالة السائق الخاص بك", -"Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "لقد انتهت صلاحية رخصة قيادتك و/أو ضريبة سيارتك. يرجى تجديدها قبل المتابعة.", -"Your driver’s license has expired.": "لقد انتهت صلاحية رخصة قيادتك.", -"Your driver’s license has expired. Please renew it before proceeding.": "لقد انتهت صلاحية رخصة قيادتك. يرجى تجديدها قبل المتابعة.", -"Your driver’s license has expired. Please renew it.": "لقد انتهت صلاحية رخصة قيادتك. يرجى تجديدها.", -"Your Earnings": "أرباحك", -"Your email address": "عنوان بريدك الإلكتروني", -"Your email not updated yet": "بريدك الإلكتروني لم يتم تحديثه بعد", -"Your fee is": "أجرتك هي", -"Your invite code was successfully applied!": "تم تطبيق رمز الدعوة الخاص بك بنجاح!", -"Your Journey Begins Here": "رحلتك تبدأ من هنا", -"Your journey starts here": "رحلتك تبدأ من هنا", -"Your location is being tracked in the background.": "يتم تتبع موقعك في الخلفية.", -"Your name": "اسمك", -"Your Name is Wrong": "اسمك خاطئ", -"Your order is being prepared": "طلبك قيد التحضير", -"Your order sent to drivers": "تم إرسال طلبك إلى السائقين", -"Your Passenger Referral Code": "رمز إحالة الراكب الخاص بك", -"Your password": "كلمة المرور الخاصة بك", -"Your past trips will appear here.": "ستظهر رحلاتك السابقة هنا.", -"Your payment is being processed and your wallet will be updated shortly.": "يتم معالجة دفعتك وسيتم تحديث محفظتك قريباً.", -"Your payment was successful.": "تم دفعك بنجاح.", -"Your personal invitation code is:": "رمز الدعوة الشخصي الخاص بك هو:", -"Your Question": "سؤالك", -"Your Questions": "أسئلتك", -"Your rating has been submitted.": "تم إرسال تقييمك.", -"Your Referral Code": "رمز الإحالة الخاص بك", -"Your Rewards": "مكافآتك", -"Your Ride Duration is": "مدة رحلتك هي", -"your ride is Accepted": "تم قبول رحلتك", -"your ride is applied": "تم تطبيق رحلتك", -"Your total balance:": "رصيدك الإجمالي:", -"Your trip cost is": "تكلفة رحلتك هي", -"Your trip distance is": "مسافة رحلتك هي", -"Your trip is scheduled": "رحلتك مجدولة", -"Your valuable feedback helps us improve our service quality.": "تعليقاتك القيمة تساعدنا في تحسين جودة خدمتنا.", -"Your Wallet balance is": "رصيد محفظتك هو", -"YYYY-MM-DD": "YYYY-MM-DD", -"zh": "zh", -"أدخل رقم محفظتك": "أدخل رقم محفظتك", -"أوافق": "أوافق", -"إلغاء": "إلغاء", -"إلى": "إلى", -"اضغط للاستماع": "اضغط للاستماع", -"الاسم الكامل": "الاسم الكامل", -"التالي": "التالي", -"التقط صورة الوجه الخلفي للرخصة": "التقط صورة للوجه الخلفي للرخصة", -"التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", -"التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", -"التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", -"التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", -"التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", -"التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", -"الرصيد الحالي": "الرصيد الحالي", -"الرصيد المتاح": "الرصيد المتاح", -"الرقم القومي": "الرقم القومي", -"السعر": "السعر", -"المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", -"المسافة": "المسافة", -"الوقت المتبقي": "الوقت المتبقي", -"بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", -"بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", -"تأكيد": "تأكيد", -"تحديث الآن": "تحديث الآن", -"تحديث جديد متوفر": "يتوفر تحديث جديد", -"تم إلغاء الرحلة": "تم إلغاء الرحلة", -"تنبيه": "تنبيه", -"ثانية": "ثانية", -"رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", -"رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", -"رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", -"رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", -"رصيدك الإجمالي:": "رصيدك الإجمالي:", -"رفض": "رفض", -"سحب الرصيد": "سحب الرصيد", -"سنة الميلاد": "سنة الميلاد", -"سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", -"شاهد فيديو الشرح": "شاهد فيديو الشرح", -"صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", -"طريقة الدفع:": "طريقة الدفع:", -"طلب جديد": "طلب جديد", -"عدم محكومية": "عدم محكومية", -"قبول": "قبول", -"ل.س": "ليرة سورية", -"لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول إلى 3 سيعرضك للإيقاف المؤقت.", -"للوصول": "للوصول", -"مثال: 0912345678": "مثال: 0912345678", -"مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", -"مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", -"ملخص الأرباح": "ملخص الأرباح", -"من": "من", -"موافق": "موافق", -"نتيجة الفحص": "نتيجة الفحص", -"هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", -"يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", -"ُExpire Date": "تاريخ الانتهاء", -"⚠️ You need to choose an amount!": "⚠️ تحتاج إلى اختيار مبلغ!", -"🏆 \${'Maximum Level Reached!": "🏆 \${'تم الوصول إلى المستوى الأقصى!", -"💰 Pay with Wallet": "💰 ادفع عبر المحفظة", -"💳 Pay with Credit Card": "💳 ادفع ببطاقة ائتمان", -}; \ No newline at end of file + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية الخاصة بنا.", + " is ON for this month": "مُفعَّلة لهذا الشهر", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"نص", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"نص", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"نص", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"نص", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'نص", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'نص", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'نص", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*رمز تطبيق سيرو*", + "*Siro DRIVER CODE*": "*رمز سائق سيرو*", + "--": "--", + "-1% commission": "خصم 1% من العمولة", + "-2% commission": "خصم 2% من العمولة", + "-5% commission": "خصم 5% من العمولة", + ". I am at least 18 years of age.": ". أنا عمري 18 سنة أو أكثر.", + ". I am at least 18 years old.": ". أنا عمري 18 سنة أو أكثر.", + ". The app will connect you with a nearby driver.": ". سيقوم التطبيق بتوصيلك بأقرب سائق.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'دينار أردني", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'دينار أردني", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'دينار أردني", + "1 \\\${'LE": "1 \\\${'جنيه مصري", + "1', 'Share your code": "1', 'شارك رمزك", + "1. Describe Your Issue": "1. صف مشكلتك", + "1. Select Ride": "1. اختر الرحلة", + "10 and get 4% discount": "10 واحصل على خصم 4%", + "100 and get 11% discount": "100 واحصل على خصم 11%", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'جنيه مصري", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'جنيه مصري", + "1999": "1999", + "2', 'Friend signs up": "2', 'يسجّل صديقك", + "2. Attach Recorded Audio": "2. أرفق التسجيل الصوتي", + "2. Attach Recorded Audio (Optional)": "2. أرفق التسجيل الصوتي (اختياري)", + "2. Describe Your Issue": "2. اكتب وصفاً للمشكلة", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'جنيه مصري", + "20 and get 6% discount": "20 واحصل على خصم 6%", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'دينار أردني", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 أرقام", + "3', 'Both earn rewards": "3', 'يكسب كل منكما مكافآت", + "3. Attach Recorded Audio (Optional)": "3. أرفق التسجيل الصوتي (اختياري)", + "3. Review Details & Response": "3. راجع التفاصيل والرد", + "300 LE": "300 جنيه مصري", + "3000 LE": "3000 جنيه مصري", + "4', 'Bonus at 10 trips": "4', 'مكافأة عند إكمال 10 رحلات", + "4. Review Details & Response": "4. راجع التفاصيل والرد", + "40 and get 8% discount": "40 واحصل على خصم 8%", + "5 digit": "5 أرقام", + "<< BACK": "<< رجوع", + "A connection error occurred": "حدث خطأ في الاتصال", + "A new version of the app is available. Please update to the latest version.": "يتوفر إصدار جديد من التطبيق. يرجى التحديث إلى أحدث إصدار.", + "A promotion record for this driver already exists for today.": "يوجد سجل ترويجي لهذا السائق اليوم بالفعل.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "رحلة محجوزة مسبقاً، تتيح لك اختيار أفضل الكباتن والسيارات.", + "AI Page": "صفحة الذكاء الاصطناعي", + "AI failed to extract info": "فشل الذكاء الاصطناعي في استخراج المعلومات", + "ATTIJARIWAFA BANK Egypt": "بنك التجاري وفا مصر", + "About Us": "من نحن", + "Abu Dhabi Commercial Bank – Egypt": "بنك أبوظبي التجاري – مصر", + "Abu Dhabi Islamic Bank – Egypt": "بنك أبوظبي الإسلامي – مصر", + "Accept": "قبول", + "Accept Order": "قبول الطلب", + "Accept Ride": "قبول الرحلة", + "Accepted Ride": "تم قبول الرحلة", + "Accepted your order": "تم قبول طلبك", + "Account": "الحساب", + "Account Updated": "تم تحديث الحساب", + "Achievements": "الإنجازات", + "Active Duration": "مدة النشاط", + "Active Duration:": "مدة النشاط:", + "Active Ride": "الرحلة النشطة", + "Active Users": "المستخدمون النشطون", + "Active ride in progress. Leaving might stop tracking. Exit?": "رحلة نشطة جارية. قد يؤدي الخروج إلى إيقاف التتبع. هل تريد الخروج؟", + "Activities": "الأنشطة", + "Add Balance": "إضافة رصيد", + "Add Card": "إضافة بطاقة", + "Add Credit Card": "إضافة بطاقة ائتمان", + "Add Home": "إضافة المنزل", + "Add Location": "إضافة موقع", + "Add Location 1": "إضافة الموقع 1", + "Add Location 2": "إضافة الموقع 2", + "Add Location 3": "إضافة الموقع 3", + "Add Location 4": "إضافة الموقع 4", + "Add Payment Method": "إضافة طريقة دفع", + "Add Phone": "إضافة هاتف", + "Add Promo": "أضف رمزاً ترويجياً", + "Add Question": "أضف سؤالاً", + "Add SOS Phone": "أضف رقم طوارئ", + "Add Stops": "إضافة محطات", + "Add Work": "إضافة مكان العمل", + "Add a Stop": "أضف محطة", + "Add a comment (optional)": "أضف تعليقاً (اختياري)", + "Add bank Account": "إضافة حساب بنكي", + "Add criminal page": "أضف صحيفة الحالة الجنائية", + "Add funds using our secure methods": "أضف أموالاً باستخدام طرقنا الآمنة", + "Add new car": "إضافة سيارة جديدة", + "Add to Passenger Wallet": "إضافة إلى محفظة الراكب", + "Add wallet phone you use": "أضف رقم محفظتك المستخدم", + "Address": "العنوان", + "Address:": "العنوان:", + "Admin DashBoard": "لوحة تحكم المسؤول", + "Affordable for Everyone": "مناسب للجميع", + "After this period": "بعد هذه الفترة", + "Afternoon Promo": "عرض ما بعد الظهر", + "Afternoon Promo Rides": "رحلات عرض ما بعد الظهر", + "Age": "العمر", + "Age is": "العمر هو", + "Agricultural Bank of Egypt": "البنك الزراعي المصري", + "Ahli United Bank": "بنك الأهلي المتحد", + "Air condition Trip": "رحلة مكيفة", + "Al Ahli Bank of Kuwait – Egypt": "بنك الأهلي الكويتي – مصر", + "Al Baraka Bank Egypt B.S.C.": "بنك البركة مصر", + "Alert": "تنبيه", + "Alerts": "التنبيهات", + "Alex Bank Egypt": "بنك الإسكندرية مصر", + "Allow Location Access": "السماح بالوصول إلى الموقع", + "Allow overlay permission": "السماح بصلاحية العرض فوق التطبيقات", + "Allowing location access will help us display orders near you. Please enable it now.": "السماح بالوصول إلى الموقع سيساعدنا في عرض الطلبات القريبة منك. يرجى تفعيله الآن.", + "Already have an account? Login": "هل لديك حساب بالفعل؟ سجّل الدخول", + "Amount": "المبلغ", + "Amount to charge:": "المبلغ المراد شحنه:", + "An OTP has been sent to your number.": "تم إرسال رمز التحقق إلى رقمك.", + "An application error occurred during upload.": "حدث خطأ في التطبيق أثناء الرفع.", + "An application error occurred.": "حدث خطأ في التطبيق.", + "An error occurred": "حدث خطأ", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "حدث خطأ أثناء مزامنة جهات الاتصال: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "حدث خطأ أثناء مزامنة جهات الاتصال: \\\\\\\$e", + "An error occurred during the payment process.": "حدث خطأ أثناء عملية الدفع.", + "An error occurred while connecting to the server.": "حدث خطأ أثناء الاتصال بالخادم.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "حدث خطأ أثناء تحميل جهات الاتصال: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "حدث خطأ أثناء تحميل جهات الاتصال: \\\\\\\$e", + "An error occurred while picking a contact": "حدث خطأ أثناء اختيار جهة اتصال", + "An error occurred while picking contacts:": "حدث خطأ أثناء اختيار جهات الاتصال:", + "An error occurred while saving driver data": "حدث خطأ أثناء حفظ بيانات السائق", + "An unexpected error occurred. Please try again.": "حدث خطأ غير متوقع. يرجى المحاولة مرة أخرى.", + "An unexpected error occurred:": "حدث خطأ غير متوقع:", + "An unknown server error occurred": "حدث خطأ غير معروف في الخادم.", + "And acknowledge our": "وأوافق على", + "Any comments about the passenger?": "هل لديك أي تعليقات حول الراكب؟", + "App Dark Mode": "الوضع الداكن للتطبيق", + "App Preferences": "تفضيلات التطبيق", + "App with Passenger": "التطبيق مع الراكب", + "Applied": "تم التطبيق", + "Apply": "تطبيق", + "Apply Order": "تطبيق الطلب", + "Apply Promo Code": "تطبيق الرمز الترويجي", + "Approaching your area. Should be there in 3 minutes.": "يقترب من منطقتك. سيصل خلال 3 دقائق.", + "Approve Driver Documents": "الموافقة على وثائق السائق", + "Arab African International Bank": "البنك العربي الأفريقي الدولي", + "Arab Bank PLC": "البنك العربي", + "Arab Banking Corporation - Egypt S.A.E": "الشركة العربية المصرفية - مصر", + "Arab International Bank": "البنك العربي الدولي", + "Arab Investment Bank": "بنك الاستثمار العربي", + "Are You sure to LogOut?": "هل أنت متأكد من تسجيل الخروج؟", + "Are You sure to ride to": "هل أنت متأكد من الذهاب إلى", + "Are you Sure to LogOut?": "متأكد إنك بدك تطلع من الحساب؟", + "Are you sure to cancel?": "هل أنت متأكد من الإلغاء؟", + "Are you sure to delete recorded files": "هل أنت متأكد من حذف الملفات المسجلة؟", + "Are you sure to delete this location?": "هل أنت متأكد من حذف هذا الموقع؟", + "Are you sure to delete your account?": "هل أنت متأكد من حذف حسابك؟", + "Are you sure to exit ride ?": "هل أنت متأكد من إنهاء الرحلة؟", + "Are you sure to exit ride?": "هل أنت متأكد من إنهاء الرحلة؟", + "Are you sure to make this car as default": "هل أنت متأكد من جعل هذه السيارة افتراضية؟", + "Are you sure you want to cancel and collect the fee?": "هل أنت متأكد من الإلغاء واستلام الرسوم؟", + "Are you sure you want to cancel this trip?": "هل أنت متأكد من إلغاء هذه الرحلة؟", + "Are you sure you want to logout?": "هل أنت متأكد من تسجيل الخروج؟", + "Are you sure?": "هل أنت متأكد؟", + "Are you sure? This action cannot be undone.": "هل أنت متأكد؟ لا يمكن التراجع عن هذا الإجراء.", + "Are you want to change": "هل تريد تغيير", + "Are you want to go this site": "هل تريد الذهاب إلى هذا الموقع؟", + "Are you want to go to this site": "هل تريد الذهاب إلى هذا الموقع؟", + "Are you want to wait drivers to accept your order": "هل تريد انتظار السائقين لقبول طلبك؟", + "Arrival time": "وقت الوصول", + "Associate Degree": "درجة الزمالة", + "Attach this audio file?": "هل تريد إرفاق ملف الصوت هذا؟", + "Attention": "تنبيه", + "Audio file not attached": "لم يتم إرفاق ملف صوتي", + "Audio uploaded successfully.": "تم رفع الملف الصوتي بنجاح.", + "Authentication failed": "فشل المصادقة", + "Available Balance": "الرصيد المتاح", + "Available Rides": "الرحلات المتاحة", + "Available for rides": "متاح للرحلات", + "Average of Hours of": "متوسط ساعات", + "Awaiting response...": "بانتظار الرد...", + "Awfar Car": "سيارة أوفر", + "Bachelor\\'s Degree": "درجة البكالوريوس", + "Back": "رجوع", + "Back to other sign-in options": "العودة إلى خيارات تسجيل الدخول الأخرى", + "Bahrain": "البحرين", + "Balance": "الرصيد", + "Balance limit exceeded": "تم تجاوز حد الرصيد", + "Balance not enough": "الرصيد غير كافٍ", + "Balance:": "الرصيد:", + "Bank Account": "حساب بنكي", + "Bank Card Payment": "الدفع ببطاقة بنكية", + "Bank account added successfully": "تمت إضافة الحساب البنكي بنجاح", + "Banque Du Caire": "بنك القاهرة", + "Banque Misr": "بنك مصر", + "Basic features": "الميزات الأساسية", + "Be Slowly": "خفّف السرعة", + "Be sure for take accurate images please": "تأكد من التقاط صور واضحة من فضلك", + "Be sure for take accurate images please\\nYou have": "تأكد من التقاط صور واضحة من فضلك\\nلديك", + "Be sure to use it quickly! This code expires at": "تأكد من استخدامه بسرعة! ينتهي هذا الرمز في", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "لأننا قريبون، لديك المرونة لاختيار الرحلة الأنسب لك.", + "Before we start, please review our terms.": "قبل أن نبدأ، يرجى مراجعة شروطنا.", + "Behavior Page": "صفحة السلوك", + "Behavior Score": "درجة السلوك", + "Best Day": "أفضل يوم", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "الخيار الأفضل لسيارة مريحة مع طريق مرن ومحطات توقف. يقدم هذا المطار تأشيرة دخول بهذا السعر.", + "Best choice for cities": "الخيار الأفضل للمدن", + "Best choice for comfort car and flexible route and stops point": "الخيار الأفضل لسيارة مريحة مع طريق مرن ومحطات توقف", + "Biometric Authentication": "المصادقة البيومترية", + "Birth Date": "تاريخ الميلاد", + "Birth year must be 4 digits": "يجب أن يكون عام الميلاد مكوناً من 4 أرقام", + "Birthdate Mismatch": "عدم تطابق تاريخ الميلاد", + "Birthdate on ID front and back does not match.": "لا يتطابق تاريخ الميلاد على الوجه الأمامي والخلفي للهوية.", + "Blom Bank": "بنك بلوم", + "Bonus gift": "هدية مكافأة", + "BookingFee": "رسوم الحجز", + "Bottom Bar Example": "مثال الشريط السفلي", + "But you have a negative salary of": "لكنك لديك راتب سلبي بقيمة", + "CODE": "الرمز", + "Calculating...": "قيد الحساب...", + "Call": "اتصل", + "Call Connected": "تم الاتصال", + "Call Driver": "اتصل بالسائق", + "Call End": "انتهت المكالمة", + "Call Ended": "انتهت المكالمة", + "Call Income": "مكالمة واردة", + "Call Income from Driver": "مكالمة واردة من السائق", + "Call Income from Passenger": "مكالمة واردة من الراكب", + "Call Left": "مكالمة فائتة", + "Call Options": "خيارات الاتصال", + "Call Page": "صفحة الاتصال", + "Call Passenger": "اتصل بالراكب", + "Call Support": "اتصل بالدعم", + "Calling": "يتصل بـ", + "Calling non-Syrian numbers is not supported": "غير مدعوم الاتصال بالأرقام غير السورية", + "Camera Access Denied.": "تم رفض الوصول إلى الكاميرا.", + "Camera not initialized yet": "لم يتم تهيئة الكاميرا بعد", + "Camera not initilaized yet": "لم يتم تهيئة الكاميرا بعد", + "Can I cancel my ride?": "هل يمكنني إلغاء رحلتي؟", + "Can we know why you want to cancel Ride ?": "هل يمكننا معرفة سبب رغبتك في إلغاء الرحلة؟", + "Cancel": "إلغاء", + "Cancel & Collect Fee": "إلغاء واستلام الرسوم", + "Cancel Ride": "إلغاء الرحلة", + "Cancel Search": "إلغاء البحث", + "Cancel Trip": "إلغاء الرحلة", + "Cancel Trip from driver": "إلغاء الرحلة من السائق", + "Cancel Trip?": "إلغاء الرحلة؟", + "Canceled": "ملغاة", + "Canceled Orders": "الطلبات الملغاة", + "Cancelled": "ملغاة", + "Cancelled by Passenger": "تم الإلغاء بواسطة الراكب", + "Cannot apply further discounts.": "لا يمكن تطبيق خصومات إضافية.", + "Captain": "الكابتن", + "Capture an Image of Your Criminal Record": "التقط صورة لصحيفة الحالة الجنائية الخاصة بك", + "Capture an Image of Your Driver License": "التقط صورة لرخصة قيادتك", + "Capture an Image of Your Driver’s License": "التقط صورة لرخصة قيادتك", + "Capture an Image of Your ID Document Back": "التقط صورة للوجه الخلفي لوثيقتك الشخصية", + "Capture an Image of Your ID Document front": "التقط صورة للوجه الأمامي لوثيقتك الشخصية", + "Capture an Image of Your car license back": "التقط صورة للوجه الخلفي لرخصة سيارتك", + "Capture an Image of Your car license front": "التقط صورة للوجه الأمامي لرخصة سيارتك", + "Capture an Image of Your car license front ": "التقط صورة للوجه الأمامي لرخصة سيارتك", + "Car": "السيارة", + "Car Color": "لون السيارة", + "Car Color (Hex)": "لون السيارة (سداسي)", + "Car Color (Name)": "لون السيارة (الاسم)", + "Car Color:": "لون السيارة:", + "Car Details": "تفاصيل السيارة", + "Car Expire": "انتهاء صلاحية السيارة", + "Car Kind": "نوع السيارة", + "Car License Card": "رخصة تسجيل السيارة", + "Car Make (e.g., Toyota)": "ماركة السيارة (مثل تويوتا)", + "Car Make:": "ماركة السيارة:", + "Car Model (e.g., Corolla)": "موديل السيارة (مثل كورولا)", + "Car Model:": "موديل السيارة:", + "Car Plate": "لوحة السيارة", + "Car Plate Number": "رقم لوحة السيارة", + "Car Plate is": "لوحة السيارة هي", + "Car Plate:": "لوحة السيارة:", + "Car Registration (Back)": "تسجيل السيارة (الخلفي)", + "Car Registration (Front)": "تسجيل السيارة (الأمامي)", + "Car Type": "نوع السيارة", + "Card Earnings": "أرباح البطاقة", + "Card Number": "رقم البطاقة", + "Card Payment": "الدفع بالبطاقة", + "CardID": "رقم البطاقة", + "Cash": "نقداً", + "Cash Earnings": "الأرباح النقدية", + "Cash Out": "سحب الأموال", + "Central Bank Of Egypt": "البنك المركزي المصري", + "Century Rider": "سائق القرن", + "Challenges": "التحديات", + "Change Country": "تغيير الدولة", + "Change Home location?": "تغيير موقع المنزل؟", + "Change Ride": "تغيير الرحلة", + "Change Route": "تغيير الطريق", + "Change Work location?": "تغيير موقع العمل؟", + "Change the app language": "تغيير لغة التطبيق", + "Charge your Account": "شحن حسابك", + "Charge your account.": "شحن حسابك.", + "Chassis": "الشاسيه", + "Check back later for new offers!": "تحقق لاحقاً للحصول على عروض جديدة!", + "Checking for updates...": "جارٍ التحقق من وجود تحديثات...", + "Choose Claim Method": "اختر طريقة الاستلام", + "Choose Language": "اختر اللغة", + "Choose a contact option": "اختر خيار جهة اتصال", + "Choose between those Type Cars": "اختر بين أنواع السيارات هذه", + "Choose from Map": "اختر من الخريطة", + "Choose from contact": "اختر من جهات الاتصال", + "Choose how you want to call the passenger": "اختر كيف تريد الاتصال بالراكب", + "Choose the trip option that perfectly suits your needs and preferences.": "اختر خيار الرحلة الذي يناسب احتياجاتك وتفضيلاتك تماماً.", + "Choose who this order is for": "اختر لمن هذا الطلب", + "Choose your ride": "اختر رحلتك", + "Citi Bank N.A. Egypt": "سيتي بنك مصر", + "City": "المدينة", + "Claim": "استلام", + "Claim Reward": "استلام المكافأة", + "Claim your 20 LE gift for inviting": "استلم هديتك البالغة 20 جنيه مصري مقابل الدعوة", + "Claimed": "تم الاستلام", + "CliQ": "CliQ", + "CliQ Payment": "دفع عبر CliQ", + "Click here point": "انقر هنا", + "Click here to Show it in Map": "انقر هنا لعرضه على الخريطة", + "Close": "إغلاق", + "Closest & Cheapest": "الأقرب والأرخص", + "Closest to You": "الأقرب إليك", + "Code": "الرمز", + "Code approved": "تمت الموافقة على الرمز", + "Code copied!": "تم نسخ الرمز!", + "Code not approved": "لم تتم الموافقة على الرمز", + "Collect Cash": "جمع النقود", + "Collect Payment": "جمع الدفع", + "Color": "اللون", + "Color is": "اللون هو", + "Comfort": "كومفورت", + "Comfort choice": "خيار مريح", + "Comfort ❄️": "كومفورت ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "كومفورت: للسيارات الأحدث من 2017 والمزودة بمكيف هواء.", + "Coming Soon": "قريباً", + "Commercial International Bank - Egypt S.A.E": "البنك التجاري الدولي - مصر", + "Commission": "العمولة", + "Communication": "التواصل", + "Compatible, you may notice some slowness": "متوافق، قد تلاحظ بعض البطء", + "Compensation Received": "تم استلام التعويض", + "Complaint": "شكوى", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "لا يمكن تقديم شكوى لهذه الرحلة. قد لا تكون قد بدأت أو اكتملت بعد.", + "Complaint data saved successfully": "تم حفظ بيانات الشكوى بنجاح", + "Complete 100 trips": "أكمل 100 رحلة", + "Complete 50 trips": "أكمل 50 رحلة", + "Complete 500 trips": "أكمل 500 رحلة", + "Complete Payment": "إكمال الدفع", + "Complete your first trip": "أكمل رحلتك الأولى", + "Completed": "مكتملة", + "Confirm": "تأكيد", + "Confirm & Find a Ride": "تأكيد والعثور على رحلة", + "Confirm Attachment": "تأكيد المرفق", + "Confirm Cancellation": "تأكيد الإلغاء", + "Confirm Payment": "تأكيد الدفع", + "Confirm Pick-up Location": "تأكيد موقع الالتقاط", + "Confirm Selection": "تأكيد الاختيار", + "Confirm Trip": "تأكيد الرحلة", + "Confirm payment with biometrics": "تأكيد الدفع باستخدام القياسات الحيوية", + "Confirm your Email": "تأكيد بريدك الإلكتروني", + "Confirmation": "تأكيد", + "Connected": "متصل", + "Connecting...": "جارٍ الاتصال...", + "Connection error": "خطأ في الاتصال", + "Contact Options": "خيارات الاتصال", + "Contact Support": "اتصل بالدعم", + "Contact Support to Recharge": "اتصل بالدعم لإعادة الشحن", + "Contact Us": "اتصل بنا", + "Contact permission is required to pick a contact": "مطلوب إذن جهات الاتصال لاختيار جهة اتصال", + "Contact permission is required to pick contacts": "مطلوب إذن جهات الاتصال لاختيار جهات الاتصال", + "Contact us for any questions on your order.": "اتصل بنا لأي استفسارات حول طلبك.", + "Contacts Loaded": "تم تحميل جهات الاتصال", + "Contacts sync completed successfully!": "اكتملت مزامنة جهات الاتصال بنجاح!", + "Continue": "متابعة", + "Continue Ride": "مواصلة الرحلة", + "Continue straight": "استمر بشكل مستقيم", + "Continue to App": "المتابعة إلى التطبيق", + "Copy": "نسخ", + "Copy Code": "نسخ الرمز", + "Copy this Promo to use it in your Ride!": "انسخ هذا العرض الترويجي لاستخدامه في رحلتك!", + "Cost": "التكلفة", + "Cost Duration": "مدة التكلفة", + "Cost Of Trip IS": "تكلفة الرحلة هي", + "Could not load trip details.": "تعذر تحميل تفاصيل الرحلة.", + "Could not start ride. Please check internet.": "تعذر بدء الرحلة. يرجى التحقق من الإنترنت.", + "Counts of Hours on days": "عدد الساعات حسب الأيام", + "Counts of budgets on days": "عدد الميزانيات حسب الأيام", + "Counts of rides on days": "عدد الرحلات حسب الأيام", + "Create Account": "إنشاء حساب", + "Create Account with Email": "إنشاء حساب باستخدام البريد الإلكتروني", + "Create Driver Account": "إنشاء حساب سائق", + "Create Wallet to receive your money": "أنشئ محفظة لاستلام أموالك", + "Create new Account": "إنشاء حساب جديد", + "Credit": "رصيد", + "Credit Agricole Egypt S.A.E": "كريدي أجريكول مصر", + "Credit card is": "بطاقة الائتمان هي", + "Criminal Document": "الوثيقة الجنائية", + "Criminal Document Required": "الوثيقة الجنائية مطلوبة", + "Criminal Record": "صحيفة الحالة الجنائية", + "Cropper": "أداة الاقتصاص", + "Current Balance": "الرصيد الحالي", + "Current Location": "الموقع الحالي", + "Customer MSISDN doesn’t have customer wallet": "رقم هاتف العميل لا يحتوي على محفظة عميل", + "Customer not found": "لم يتم العثور على العميل", + "Customer phone is not active": "هاتف العميل غير نشط", + "DISCOUNT": "خصم", + "DRIVER123": "DRIVER123", + "Daily Challenges": "التحديات اليومية", + "Daily Goal": "الهدف اليومي", + "Date": "التاريخ", + "Date and Time Picker": "منتقي التاريخ والوقت", + "Date of Birth": "تاريخ الميلاد", + "Date of Birth is": "تاريخ الميلاد هو", + "Date of Birth:": "تاريخ الميلاد:", + "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سيرو،", + "Debit": "خصم", + "Debit Card": "بطاقة خصم", + "Dec 15 - Dec 21, 2024": "15 ديسمبر - 21 ديسمبر 2024", + "Decline": "رفض", + "Delete": "حذف", + "Delete My Account": "حذف حسابي", + "Delete Permanently": "حذف نهائي", + "Deleted": "تم الحذف", + "Delivery": "توصيل", + "Destination": "الوجهة", + "Destination Location": "موقع الوجهة", + "Destination selected": "تم اختيار الوجهة", + "Detect Your Face": "اكتشف وجهك", + "Detect Your Face ": "اكتشف وجهك", + "Device Change Detected": "تم اكتشاف تغيير الجهاز", + "Device Compatibility": "توافق الجهاز", + "Diamond badge": "شارة الماس", + "Diesel": "ديزل", + "Directions": "الاتجاهات", + "Displacement": "السعة", + "Distance": "المسافة", + "Distance To Passenger is": "المسافة إلى الراكب هي", + "Distance from Passenger to destination is": "المسافة من الراكب إلى الوجهة هي", + "Distance is": "المسافة هي", + "Distance of the Ride is": "مسافة الرحلة هي", + "Do you have a disease for a long time?": "هل تعاني من مرض مزمن منذ فترة طويلة؟", + "Do you have an invitation code from another driver?": "هل لديك رمز دعوة من سائق آخر؟", + "Do you want to change Home location": "هل تريد تغيير موقع المنزل؟", + "Do you want to change Work location": "هل تريد تغيير موقع العمل؟", + "Do you want to collect your earnings?": "هل تريد جمع أرباحك؟", + "Do you want to go to this location?": "هل تريد الذهاب إلى هذا الموقع؟", + "Do you want to pay Tips for this Driver": "هل تريد دفع إكرامية لهذا السائق؟", + "Docs": "المستندات", + "Doctoral Degree": "درجة الدكتوراه", + "Document Number:": "رقم الوثيقة:", + "Documents check": "فحص المستندات", + "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 app now:": "حمّل التطبيق الآن:", + "Drawing route on map...": "جارٍ رسم الطريق على الخريطة...", + "Driver": "السائق", + "Driver Accepted Request": "السائق قبل الطلب", + "Driver Accepted the Ride for You": "السائق قبل الرحلة لك", + "Driver Agreement": "اتفاقية السائق", + "Driver Applied the Ride for You": "السائق تقدّم للرحلة لك", + "Driver Balance": "رصيد السائق", + "Driver Behavior": "سلوك السائق", + "Driver Cancel Your Trip": "السائق ألغى رحلتك", + "Driver Cancelled Your Trip": "السائق ألغى رحلتك", + "Driver Car Plate": "لوحة سيارة السائق", + "Driver Finish Trip": "السائق أنهى الرحلة", + "Driver Invitations": "دعوات السائقين", + "Driver Is Going To Passenger": "السائق في طريقه إلى الراكب", + "Driver Level": "مستوى السائق", + "Driver License (Back)": "رخصة القيادة (الخلفي)", + "Driver License (Front)": "رخصة القيادة (الأمامي)", + "Driver List": "قائمة السائقين", + "Driver Login": "تسجيل دخول السائق", + "Driver Message": "رسالة السائق", + "Driver Name": "اسم السائق", + "Driver Name:": "اسم السائق:", + "Driver Phone:": "هاتف السائق:", + "Driver Portal": "بوابة السائق", + "Driver Referral": "إحالة السائق", + "Driver Registration": "تسجيل السائق", + "Driver Registration & Requirements": "تسجيل السائق والمتطلبات", + "Driver Wallet": "محفظة السائق", + "Driver already has 2 trips within the specified period.": "السائق لديه بالفعل رحلتان ضمن الفترة المحددة.", + "Driver is on the way": "السائق في الطريق", + "Driver is waiting": "السائق ينتظر", + "Driver is waiting at pickup.": "السائق ينتظر في نقطة الالتقاط.", + "Driver joined the channel": "انضم السائق إلى القناة", + "Driver left the channel": "غادر السائق القناة", + "Driver phone": "هاتف السائق", + "Driver's Personal Information": "المعلومات الشخصية للسائق", + "Drivers": "السائقون", + "Drivers License Class": "فئة رخصة القيادة", + "Drivers License Class:": "فئة رخصة القيادة:", + "Drivers received orders": "السائقون تلقوا طلبات", + "Driving Behavior": "سلوك القيادة", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "بسبب الإلغاءات المفرطة (3 مرات)، تم تعليق استلام الطلبات لمدة 4 ساعات.", + "Duration": "المدة", + "Duration To Passenger is": "المدة حتى وصول الراكب هي", + "Duration is": "المدة هي", + "Duration of Trip is": "مدة الرحلة هي", + "Duration of the Ride is": "مدة الرحلة هي", + "E-Cash payment gateway": "بوابة دفع E-Cash", + "E-mail validé.\\\\": "تم التحقق من البريد الإلكتروني.\\\\", + "E-mail validé.\\\\\\\\": "تم التحقق من البريد الإلكتروني.\\\\\\\\", + "EGP": "جنيه مصري", + "Earnings": "الأرباح", + "Earnings & Distance": "الأرباح والمسافة", + "Earnings Summary": "ملخص الأرباح", + "Edit": "تعديل", + "Edit Profile": "تعديل الملف الشخصي", + "Edit Your data": "تعديل بياناتك", + "Education": "التعليم", + "Egypt": "مصر", + "Egypt Post": "البريد المصري", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'جنيه مصري", + "Egyptian Arab Land Bank": "البنك العقاري المصري العربي", + "Egyptian Gulf Bank": "البنك المصري الخليجي", + "Electric": "كهربائي", + "Email": "البريد الإلكتروني", + "Email Us": "راسلنا", + "Email Wrong": "البريد الإلكتروني خاطئ", + "Email is": "البريد الإلكتروني هو", + "Email must be correct.": "يجب أن يكون البريد الإلكتروني صحيحاً.", + "Email you inserted is Wrong.": "البريد الإلكتروني الذي أدخلته خاطئ.", + "Emergency Contact": "جهة اتصال طوارئ", + "Emergency Number": "رقم الطوارئ", + "Emirates National Bank of Dubai": "بنك الإمارات الوطني دبي", + "Employment Type": "نوع التوظيف", + "Enable Location": "تفعيل الموقع", + "Enable Location Access": "تفعيل الوصول إلى الموقع", + "Enable Location Permission": "تفعيل إذن الموقع", + "End": "إنهاء", + "End Ride": "إنهاء الرحلة", + "End Trip": "إنهاء الرحلة", + "Enjoy a safe and comfortable ride.": "استمتع برحلة آمنة ومريحة.", + "Enjoy competitive prices across all trip options, making travel accessible.": "استمتع بأسعار تنافسية عبر جميع خيارات الرحلات، مما يجعل السفر في متناول الجميع.", + "Ensure the passenger is in the car.": "تأكد من أن الراكب داخل السيارة.", + "Enter Amount Paid": "أدخل المبلغ المدفوع", + "Enter Health Insurance Provider": "أدخل مزوّد التأمين الصحي", + "Enter Your First Name": "أدخل اسمك الأول", + "Enter a valid email": "أدخل بريداً إلكترونياً صالحاً", + "Enter a valid year": "أدخل سنة صالحة", + "Enter phone": "أدخل الهاتف", + "Enter phone number": "أدخل رقم الهاتف", + "Enter promo code": "أدخل الرمز الترويجي", + "Enter promo code here": "أدخل الرمز الترويجي هنا", + "Enter the 3-digit code": "أدخل الرمز المكوّن من 3 أرقام", + "Enter the promo code and get": "أدخل الرمز الترويجي واحصل على", + "Enter your City": "أدخل مدينتك", + "Enter your Note": "أدخل ملاحظتك", + "Enter your Password": "أدخل كلمة المرور", + "Enter your Question here": "أدخل سؤالك هنا", + "Enter your code below to apply the discount.": "أدخل رمزك أدناه لتطبيق الخصم.", + "Enter your complaint here": "أدخل شكواك هنا", + "Enter your complaint here...": "أدخل شكواك هنا...", + "Enter your email": "أدخل بريدك الإلكتروني", + "Enter your email address": "أدخل عنوان بريدك الإلكتروني", + "Enter your feedback here": "أدخل ملاحظاتك هنا", + "Enter your first name": "أدخل اسمك الأول", + "Enter your last name": "أدخل اسمك الأخير", + "Enter your password": "أدخل كلمة المرور", + "Enter your phone number": "أدخل رقم هاتفك", + "Enter your promo code": "أدخل رمزك الترويجي", + "Enter your wallet number": "أدخل رقم محفظتك", + "Error": "خطأ", + "Error connecting call": "خطأ في الاتصال بالمكالمة", + "Error processing request": "خطأ في معالجة الطلب", + "Error starting voice call": "خطأ في بدء المكالمة الصوتية", + "Error uploading proof": "خطأ في رفع الإثبات", + "Error', 'An application error occurred.": "خطأ', 'حدث خطأ في التطبيق.", + "Evening": "المساء", + "Excellent": "ممتاز", + "Exclusive offers and discounts always with the Sefer app": "عروض وخصومات حصرية دائماً مع تطبيق سفر", + "Exclusive offers and discounts always with the Siro app": "عروض وخصومات حصرية دائماً مع تطبيق سيرو", + "Exit": "خروج", + "Exit Ride?": "هل تريد إنهاء الرحلة؟", + "Expiration Date": "تاريخ الانتهاء", + "Expired Driver’s License": "رخصة قيادة منتهية الصلاحية", + "Expired License": "رخصة منتهية الصلاحية", + "Expired License', 'Your driver’s license has expired.": "رخصة منتهية الصلاحية', 'لقد انتهت صلاحية رخصة قيادتك.", + "Expiry Date": "تاريخ الانتهاء", + "Expiry Date:": "تاريخ الانتهاء:", + "Export Development Bank of Egypt": "بنك التصدير والاستيراد المصري", + "Extra 200 pts when they complete 10 trips": "200 نقطة إضافية عند إكمال 10 رحلات", + "Face Detection Result": "نتيجة كشف الوجه", + "Failed": "فشل", + "Failed to add place. Please try again later.": "فشل في إضافة المكان. يرجى المحاولة مرة أخرى لاحقاً.", + "Failed to cancel ride": "فشل في إلغاء الرحلة", + "Failed to claim reward": "فشل في استلام المكافأة", + "Failed to connect to the server. Please try again.": "فشل في الاتصال بالخادم. يرجى المحاولة مرة أخرى.", + "Failed to fetch rides. Please try again.": "فشل في جلب الرحلات. يرجى المحاولة مرة أخرى.", + "Failed to finish ride. Please check internet.": "فشل في إنهاء الرحلة. يرجى التحقق من الإنترنت.", + "Failed to initiate call session. Please try again.": "فشل في بدء جلسة المكالمة. يرجى المحاولة مرة أخرى.", + "Failed to initiate payment. Please try again.": "فشل في بدء الدفع. يرجى المحاولة مرة أخرى.", + "Failed to load profile data.": "فشل في تحميل بيانات الملف الشخصي.", + "Failed to process route points": "فشل في معالجة نقاط الطريق", + "Failed to save driver data": "فشل في حفظ بيانات السائق", + "Failed to send invite": "فشل في إرسال الدعوة", + "Failed to upload audio file.": "فشل في رفع ملف الصوت.", + "Faisal Islamic Bank of Egypt": "بنك فيصل الإسلامي المصري", + "Fastest Complaint Response": "أسرع رد على الشكاوى", + "Favorite Places": "الأماكن المفضلة", + "Fee is": "الرسوم هي", + "Feed Back": "ملاحظات", + "Feedback": "ملاحظات", + "Feedback data saved successfully": "تم حفظ بيانات الملاحظات بنجاح", + "Female": "أنثى", + "Find answers to common questions": "اعثر على إجابات للأسئلة الشائعة", + "Finish & Submit": "إنهاء وإرسال", + "Finish Monitor": "إنهاء المراقبة", + "Finished": "منتهية", + "First Abu Dhabi Bank": "بنك أبوظبي الأول", + "First Name": "الاسم الأول", + "First Trip": "أول رحلة", + "First name": "الاسم الأول", + "Five Star Driver": "سائق خمس نجوم", + "Fixed Price": "سعر ثابت", + "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": "لرحلات سيرو والسكوتر، يتم حساب السعر ديناميكياً. لرحلات كومفورت، يعتمد السعر على الوقت والمسافة", + "Free Call": "مكالمة مجانية", + "Frequently Asked Questions": "الأسئلة الشائعة", + "Frequently Questions": "أسئلة متكررة", + "Fri": "الجمعة", + "From": "من", + "From :": "من :", + "From : Current Location": "من : الموقع الحالي", + "From Budget": "من الميزانية", + "From:": "من:", + "Fuel": "الوقود", + "Fuel Type": "نوع الوقود", + "Full Name": "الاسم الكامل", + "Full Name (Marital)": "الاسم الكامل (الحالة الاجتماعية)", + "FullName": "الاسم الكامل", + "GPS Required Allow !.": "مطلوب السماح بـ GPS !.", + "Gender": "الجنس", + "General": "عام", + "General Authority For Supply Commodities": "الهيئة العامة للسلع التموينية", + "Get": "احصل على", + "Get Details of Trip": "احصل على تفاصيل الرحلة", + "Get Direction": "احصل على الاتجاهات", + "Get a discount on your first Siro ride!": "احصل على خصم على رحلتك الأولى مع سيرو!", + "Get features for your country": "احصل على الميزات الخاصة ببلدك", + "Get it Now!": "احصل عليه الآن!", + "Get to your destination quickly and easily.": "صل إلى وجهتك بسرعة وسهولة.", + "Getting Started": "البدء", + "Gift Already Claimed": "تم استلام الهدية بالفعل", + "Go": "اذهب", + "Go Now": "اذهب الآن", + "Go Online": "العمل الآن", + "Go To Favorite Places": "اذهب إلى الأماكن المفضلة", + "Go to next step": "اذهب إلى الخطوة التالية", + "Go to next step\\nscan Car License.": "اذهب إلى الخطوة التالية\\nامسح رخصة السيارة.", + "Go to passenger Location": "اذهب إلى موقع الراكب", + "Go to passenger Location now": "اذهب إلى موقع الراكب الآن", + "Go to passenger:": "اذهب إلى الراكب:", + "Go to this Target": "اذهب إلى هذا الهدف", + "Go to this location": "اذهب إلى هذا الموقع", + "Goal Achieved!": "تم تحقيق الهدف!", + "Gold badge": "شارة ذهبية", + "Good": "جيد", + "Google Map App": "تطبيق خرائط جوجل", + "H and": "و", + "HSBC Bank Egypt S.A.E": "بنك إتش إس بي سي مصر", + "Hard Brake": "فرملة قوية", + "Hard Brakes": "الفرامل القوية", + "Have a promo code?": "هل لديك رمز ترويجي؟", + "Head": "الرأس", + "Heading your way now. Please be ready.": "في طريقه إليك الآن. يرجى الاستعداد.", + "Health Insurance": "التأمين الصحي", + "Heatmap": "خريطة الحرارة", + "Height:": "الطول:", + "Hello": "مرحباً", + "Hello this is Captain": "مرحباً، هذا الكابتن", + "Hello this is Driver": "مرحباً، هذا السائق", + "Help & Support": "المساعدة والدعم", + "Help Details": "تفاصيل المساعدة", + "Helping Center": "مركز المساعدة", + "Helping Page": "صفحة المساعدة", + "Here recorded trips audio": "هنا صوت الرحلات المسجلة", + "Hi": "مرحباً", + "Hi ,I Arrive your site": "مرحباً، لقد وصلت إلى موقعك", + "Hi ,I will go now": "مرحباً، سأذهب الآن", + "Hi! This is": "مرحباً! هذا", + "Hi, I will go now": "مرحباً، سأذهب الآن", + "Hi, Where to": "مرحباً، إلى أين؟", + "High School Diploma": "شهادة الثانوية العامة", + "High priority": "أولوية عالية", + "History": "السجل", + "History Page": "صفحة السجل", + "History of Trip": "سجل الرحلات", + "Home": "الرئيسية", + "Home Page": "الصفحة الرئيسية", + "Home Saved": "تم حفظ المنزل", + "Hours": "ساعات", + "Housing And Development Bank": "بنك الإسكان والتعمير", + "How It Works": "كيف يعمل", + "How can I pay for my ride?": "كيف يمكنني الدفع لرحلتي؟", + "How can I register as a driver?": "كيف يمكنني التسجيل كسائق؟", + "How do I communicate with the other party (passenger/driver)?": "كيف يمكنني التواصل مع الطرف الآخر (الراكب/السائق)؟", + "How do I request a ride?": "كيف أطلب رحلة؟", + "How many hours would you like to wait?": "كم ساعة تريد الانتظار؟", + "How much Passenger pay?": "كم يدفع الراكب؟", + "How much do you want to earn today?": "كم تريد أن تربح اليوم؟", + "How much longer will you be?": "كم من الوقت ستتأخر؟", + "How to use App": "كيفية استخدام التطبيق", + "How to use Siro": "كيفية استخدام سيرو", + "How was the passenger?": "كيف كان الراكب؟", + "How was your trip with": "كيف كانت رحلتك مع", + "How would you like to receive your reward?": "كيف ترغب في استلام مكافأتك؟", + "How would you rate our app?": "كيف تقيم تطبيقنا؟", + "Hybrid": "هجين", + "I Agree": "أوافق", + "I Arrive": "لقد وصلت", + "I Arrive your site": "لقد وصلت إلى موقعك", + "I Have Arrived": "لقد وصلت", + "I added the wrong pick-up/drop-off location": "أضفت موقع الالتقاط/التنزيل الخاطئ", + "I am currently located at": "أنا موجود حالياً في", + "I am using": "أنا أستخدم", + "I arrive you": "لقد وصلت إليك", + "I cant register in your app in face detection": "لا يمكنني التسجيل في تطبيقكم عبر كشف الوجه", + "I cant register in your app in face detection ": "لا يمكنني التسجيل في تطبيقكم عبر كشف الوجه", + "I want to order for myself": "أريد الطلب لنفسي", + "I want to order for someone else": "أريد الطلب لشخص آخر", + "I was just trying the application": "كنت فقط أجرب التطبيق", + "I will go now": "سأذهب الآن", + "I will slow down": "سأبطئ السرعة", + "I've arrived.": "لقد وصلت.", + "ID Documents Back": "وثائق الهوية (الخلفي)", + "ID Documents Front": "وثائق الهوية (الأمامي)", + "ID Mismatch": "عدم تطابق الهوية", + "If you in Car Now. Press Start The Ride": "إذا كنت في السيارة الآن، اضغط على بدء الرحلة", + "If you need any help or have question this is right site to do that and your welcome": "إذا كنت بحاجة لأي مساعدة أو لديك سؤال، فهذا هو المكان المناسب لذلك، وأهلاً بك", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "إذا كنت بحاجة لأي مساعدة أو لديك أسئلة، فهذا هو المكان المناسب لذلك. أهلاً بك!", + "If you need assistance, contact us": "إذا كنت بحاجة للمساعدة، اتصل بنا", + "If you need to reach me, please contact the driver directly at": "إذا كنت بحاجة للتواصل معي، يرجى الاتصال بالسائق مباشرة على", + "If you want add stop click here": "إذا أردت إضافة محطة، انقر هنا", + "If you want order to another person": "إذا أردت الطلب لشخص آخر", + "If you want to make Google Map App run directly when you apply order": "إذا أردت تشغيل تطبيق خرائط جوجل مباشرة عند تقديم الطلب", + "If your car license has the new design, upload the front side with two images.": "إذا كانت رخصة سيارتك ذات التصميم الجديد، قم برفع الوجه الأمامي بصورة مزدوجة.", + "Image Upload Failed": "فشل رفع الصورة", + "Image detecting result is": "نتيجة كشف الصورة هي", + "Image detecting result is ": "نتيجة كشف الصورة هي", + "Improve app performance": "تحسين أداء التطبيق", + "In-App VOIP Calls": "مكالمات VOIP داخل التطبيق", + "Including Tax": "شاملاً الضريبة", + "Incoming Call...": "مكالمة واردة...", + "Incorrect sms code": "رمز SMS غير صحيح", + "Increase Fare": "زيادة الأجرة", + "Increase Fee": "زيادة الرسوم", + "Increase Your Trip Fee (Optional)": "زيادة رسوم رحلتك (اختياري)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "قد يؤدي زيادة الأجرة إلى جذب المزيد من السائقين. هل ترغب في زيادة السعر؟", + "Industrial Development Bank": "بنك التنمية الصناعية", + "Ineligible for Offer": "غير مؤهل للعرض", + "Info": "معلومات", + "Insert": "إدخال", + "Insert Account Bank": "أدخل الحساب البنكي", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "أدخل تفاصيل بطاقة البنك لاستلام أموال الفيزا أسبوعياً", + "Insert Emergency Number": "أدخل رقم الطوارئ", + "Insert Emergincy Number": "أدخل رقم الطوارئ", + "Insert Payment Details": "أدخل تفاصيل الدفع", + "Insert SOS Phone": "أدخل رقم طوارئ", + "Insert Wallet phone number": "أدخل رقم هاتف المحفظة", + "Insert Your Promo Code": "أدخل رمزك الترويجي", + "Insert card number": "أدخل رقم البطاقة", + "Insert mobile wallet number": "أدخل رقم محفظة الجوال", + "Insert your mobile wallet details to receive your money weekly": "أدخل تفاصيل محفظة الجوال الخاصة بك لاستلام أموالك أسبوعياً", + "Inspection Date": "تاريخ الفحص", + "InspectionResult": "نتيجة الفحص", + "Install our app:": "ثبّت تطبيقنا:", + "Insufficient Balance": "رصيد غير كافٍ", + "Invalid MPIN": "MPIN غير صالح", + "Invalid OTP": "رمز OTP غير صالح", + "Invalid customer MSISDN": "رقم هاتف العميل غير صالح", + "Invitation Used": "تم استخدام الدعوة", + "Invitations Sent": "تم إرسال الدعوات", + "Invite": "دعوة", + "Invite Driver": "دعوة سائق", + "Invite Rider": "دعوة راكب", + "Invite a Driver": "دعوة سائق", + "Invite another driver and both get a gift after he completes 100 trips!": "ادعُ سائقاً آخر واحصلا معاً على هدية بعد إكماله 100 رحلة!", + "Invite code already used": "تم استخدام رمز الدعوة بالفعل", + "Invite sent successfully": "تم إرسال الدعوة بنجاح", + "Is device compatible": "هل الجهاز متوافق", + "Is the Passenger in your Car ?": "هل الراكب في سيارتك؟", + "Is the Passenger in your Car?": "هل الراكب في سيارتك؟", + "Issue Date": "تاريخ الإصدار", + "IssueDate": "تاريخ الإصدار", + "JOD": "دينار أردني", + "Join": "انضم", + "Join Siro as a driver using my referral code!": "انضم إلى سيرو كسائق باستخدام رمز الإحالة الخاص بي!", + "Jordan": "الأردن", + "Just now": "الآن", + "KM": "كم", + "Keep it up!": "أحسنت! استمر هكذا!", + "Kuwait": "الكويت", + "L.E": "جنيه مصري", + "L.S": "ليرة سورية", + "LE": "جنيه مصري", + "Lady": "سائقة", + "Lady Captain for girls": "كابتن نسائي للبنات", + "Lady Captains Available": "كباتن نسائيون متاحون", + "Lady 👩": "سائقة 👩", + "Lady: For girl drivers.": "نسائي: للسائقات الإناث.", + "Language": "اللغة", + "Language Options": "خيارات اللغة", + "Last 10 Trips": "آخر 10 رحلات", + "Last Name": "اسم العائلة", + "Last name": "اسم العائلة", + "Last updated:": "آخر تحديث:", + "Later": "لاحقاً", + "Latest Recent Trip": "أحدث رحلة", + "Leaderboard": "لوحة المتصدرين", + "Learn more about our app and mission": "تعرف على المزيد عن تطبيقنا ورسالتنا", + "Leave": "مغادرة", + "Leave a detailed comment (Optional)": "اترك تعليقاً مفصلاً (اختياري)", + "Let the passenger scan this code to sign up": "دع الراكب يمسح هذا الرمز للتسجيل", + "Lets check Car license": "لنفحص رخصة السيارة", + "Lets check Car license ": "لنفحص رخصة السيارة", + "Lets check License Back Face": "لنفحص الوجه الخلفي للرخصة", + "License Categories": "فئات الرخصة", + "License Expiry Date": "تاريخ انتهاء الرخصة", + "License Type": "نوع الرخصة", + "Link a phone number for transfers": "ربط رقم هاتف للتحويلات", + "Location Access Required": "الوصول إلى الموقع مطلوب", + "Location Link": "رابط الموقع", + "Location Tracking Active": "تتبع الموقع نشط", + "Log Off": "تسجيل الخروج", + "Log Out Page": "صفحة تسجيل الخروج", + "Login": "تسجيل الدخول", + "Login Captin": "تسجيل دخول الكابتن", + "Login Driver": "تسجيل دخول السائق", + "Login failed": "فشل تسجيل الدخول", + "Logout": "تسجيل الخروج", + "Lowest Price Achieved": "تم تحقيق أقل سعر", + "MIDBANK": "ميد بنك", + "MTN Cash": "MTN Cash", + "Made :": "الصانع :", + "Maintain 5.0 rating": "حافظ على تقييم 5.0", + "Maintenance Center": "مركز الصيانة", + "Maintenance Offer": "عرض الصيانة", + "Make": "العلامة التجارية", + "Make a U-turn": "قم بعمل دوران", + "Make is": "العلامة التجارية هي", + "Make purchases.": "قم بالشراء.", + "Male": "ذكر", + "Map Dark Mode": "الوضع الداكن للخريطة", + "Map Passenger": "خريطة الراكب", + "Marital Status": "الحالة الاجتماعية", + "Mashreq Bank": "بنك المشرق", + "Mashwari": "مشاري", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "مشاري: للرحلات المرنة حيث يختار الركاب السيارة والسائق بترتيب مسبق.", + "Master\\'s Degree": "درجة الماجستير", + "Max Speed": "السرعة القصوى", + "Maximum Level Reached!": "تم الوصول إلى المستوى الأقصى!", + "Maximum fare": "الأجرة القصوى", + "Message": "رسالة", + "Meter Fare": "أجرة العداد", + "Microphone permission is required for voice calls": "مطلوب إذن الميكروفون للمكالمات الصوتية", + "Minimum fare": "الأجرة الدنيا", + "Minute": "دقيقة", + "Minutes": "دقائق", + "Mishwar Vip": "مشوار VIP", + "Missing Documents": "مستندات مفقودة", + "Mobile Wallets": "محافظ الجوال", + "Model": "الموديل", + "Model is": "الموديل هو", + "Mon": "الاثنين", + "Monthly Report": "التقرير الشهري", + "Monthly Streak": "سلسلة شهرية", + "More": "المزيد", + "Morning": "الصباح", + "Morning Promo": "عرض الصباح", + "Morning Promo Rides": "رحلات عرض الصباح", + "Most Secure Methods": "أكثر الطرق أماناً", + "Motorcycle": "دراجة نارية", + "Move the map to adjust the pin": "حرّك الخريطة لضبط الدبوس", + "Mute": "كتم الصوت", + "My Balance": "رصيدي", + "My Card": "بطاقتي", + "My Cared": "بطاقتي", + "My Cars": "سياراتي", + "My Location": "مواقعي", + "My Profile": "ملفي الشخصي", + "My Schedule": "جدولي", + "My Wallet": "محفظتي", + "My current location is:": "مواقعي الحالي هو:", + "My location is correct. You can search for me using the navigation app": "مواقعي صحيح. يمكنك البحث عني باستخدام تطبيق الملاحة", + "MyLocation": "مواقعي", + "N/A": "غير متوفر", + "NEXT >>": "التالي >>", + "NEXT STEP": "الخطوة التالية", + "Name": "الاسم", + "Name (Arabic)": "الاسم (بالعربية)", + "Name (English)": "الاسم (بالإنجليزية)", + "Name :": "الاسم :", + "Name in arabic": "الاسم بالعربية", + "Name must be at least 2 characters": "يجب أن يكون الاسم مكوناً من حرفين على الأقل", + "Name of the Passenger is": "اسم الراكب هو", + "Nasser Social Bank": "بنك ناصر الاجتماعي", + "National Bank of Egypt": "البنك الأهلي المصري", + "National Bank of Greece": "البنك الوطني اليوناني", + "National Bank of Kuwait – Egypt": "البنك الوطني الكويتي – مصر", + "National ID": "الهوية الوطنية", + "National ID (Back)": "الهوية الوطنية (الخلفي)", + "National ID (Front)": "الهوية الوطنية (الأمامي)", + "National ID Number": "رقم الهوية الوطنية", + "National ID must be 11 digits": "يجب أن تكون الهوية الوطنية مكونة من 11 رقماً", + "National Number": "الرقم الوطني", + "NationalID": "الهوية الوطنية", + "Navigation": "الملاحة", + "Nearest Car": "أقرب سيارة", + "Nearest Car for you about": "أقرب سيارة لك بعد حوالي", + "Nearest Car: ~": "أقرب سيارة: ~", + "Need assistance? Contact us": "هل تحتاج مساعدة؟ اتصل بنا", + "Need help? Contact Us": "هل تحتاج مساعدة؟ اتصل بنا", + "Needs Improvement": "بحاجة إلى تحسين", + "Net Profit": "صافي الربح", + "Network error": "خطأ في الشبكة", + "Next": "التالي", + "Next Level:": "المستوى التالي:", + "Next as Cash !": "التالي نقداً!", + "Night": "الليل", + "No": "لا", + "No ,still Waiting.": "لا، ما زلت أنتظر.", + "No Captain Accepted Your Order": "لم يقبل أي كابتن طلبك", + "No Car in your site. Sorry!": "لا توجد سيارة في موقعك. آسف!", + "No Car or Driver Found in your area.": "لم يتم العثور على سيارة أو سائق في منطقتك.", + "No I want": "لا، أريد", + "No Promo for today .": "لا يوجد عروض ترويجية اليوم.", + "No Response yet.": "لا يوجد رد بعد.", + "No Rides Available": "لا توجد رحلات متاحة", + "No Rides Yet": "لا توجد رحلات بعد", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "لا يوجد شريحة SIM، لا مشكلة! اتصل بسائقك مباشرة من خلال تطبيقنا. نستخدم تقنية متقدمة لضمان خصوصيتك.", + "No accepted orders? Try raising your trip fee to attract riders.": "لا توجد طلبات مقبولة؟ جرّب رفع رسوم رحلتك لجذب الركاب.", + "No audio files found for this ride.": "لم يتم العثور على ملفات صوتية لهذه الرحلة.", + "No audio files found.": "لم يتم العثور على ملفات صوتية.", + "No audio files recorded.": "لم يتم تسجيل أي ملفات صوتية.", + "No cars are available at the moment. Please try again later.": "لا توجد سيارات متاحة حالياً. يرجى المحاولة مرة أخرى لاحقاً.", + "No cars nearby": "لا توجد سيارات قريبة", + "No contact selected": "لم يتم اختيار جهة اتصال", + "No contacts found": "لم يتم العثور على جهات اتصال", + "No contacts with phone numbers found": "لم يتم العثور على جهات اتصال بأرقام هواتف", + "No contacts with phone numbers were found on your device.": "لم يتم العثور على جهات اتصال بأرقام هواتف على جهازك.", + "No data yet": "لا توجد بيانات بعد", + "No data yet!": "لا توجد بيانات بعد!", + "No driver accepted my request": "لم يقبل أي سائق طلبي", + "No drivers accepted your request yet": "لم يقبل أي سائق طلبك بعد", + "No drivers available": "لا يوجد سائقون متاحون", + "No drivers available at the moment. Please try again later.": "لا يوجد سائقون متاحون حالياً. يرجى المحاولة مرة أخرى لاحقاً.", + "No face detected": "لم يتم اكتشاف وجه", + "No favorite places yet!": "لا توجد أماكن مفضلة بعد!", + "No i want": "لا، أريد", + "No image selected yet": "لم يتم اختيار صورة بعد", + "No internet connection": "لا يوجد اتصال بالإنترنت", + "No invitation found": "لم يتم العثور على دعوة", + "No invitation found yet!": "لم يتم العثور على دعوة بعد!", + "No one accepted? Try increasing the fare.": "لم يقبل أحد؟ جرّب زيادة الأجرة.", + "No orders available": "لا توجد طلبات متاحة", + "No passenger found for the given phone number": "لم يتم العثور على راكب برقم الهاتف المحدد", + "No phone number": "لا يوجد رقم هاتف", + "No promos available right now.": "لا توجد عروض ترويجية متاحة الآن.", + "No questions asked yet.": "لم يتم طرح أسئلة بعد.", + "No ride found yet": "لم يتم العثور على رحلة بعد", + "No ride yet": "لا توجد رحلة بعد", + "No rides available for your vehicle type.": "لا توجد رحلات متاحة لنوع مركبتك.", + "No rides available right now.": "لا توجد رحلات متاحة الآن.", + "No rides found to complain about.": "لم يتم العثور على رحلات للشكوى منها.", + "No route points found": "لم يتم العثور على نقاط طريق", + "No statistics yet": "لا توجد إحصائيات بعد", + "No transactions this week": "لا توجد معاملات هذا الأسبوع", + "No transactions yet": "لا توجد معاملات بعد", + "No trip data available": "لا توجد بيانات رحلة متاحة", + "No trip history found": "لم يتم العثور على سجل رحلات", + "No trip yet found": "لم يتم العثور على رحلة بعد", + "No user found for the given phone number": "لم يتم العثور على مستخدم برقم الهاتف المحدد", + "No wallet record found": "لم يتم العثور على سجل محفظة", + "No, I want to cancel this trip": "لا، أريد إلغاء هذه الرحلة", + "No, still Waiting.": "لا، ما زلت أنتظر.", + "No, thanks": "لا، شكراً", + "No,I want": "لا، أريد", + "Non Egypt": "غير مصر", + "Not Connected": "غير متصل", + "Not set": "غير محدد", + "Not updated": "لم يتم التحديث", + "Notifications": "الإشعارات", + "Now select start pick": "الآن اختر نقطة البداية", + "OK": "موافق", + "OTP is incorrect or expired": "رمز OTP غير صحيح أو منتهي الصلاحية", + "Occupation": "المهنة", + "Offline": "غير متصل", + "Ok": "موافق", + "Ok , See you Tomorrow": "حسناً، أراك غداً", + "Ok I will go now.": "حسناً، سأذهب الآن.", + "Old and affordable, perfect for budget rides.": "قديمة ومناسبة، مثالية للرحلات ذات الميزانية المحدودة.", + "Online": "متصل", + "Online Duration": "مدة الاتصال", + "Only Syrian phone numbers are allowed": "يُسمح فقط بأرقام الهواتف السورية", + "Open App": "فتح التطبيق", + "Open Settings": "فتح الإعدادات", + "Open app and go to passenger": "افتح التطبيق واذهب إلى الراكب", + "Open in Maps": "فتح في الخرائط", + "Open the app to stay updated and ready for upcoming tasks.": "افتح التطبيق للبقاء محدثاً وجاهزاً للمهام القادمة.", + "Opted out": "تم إلغاء الاشتراك", + "Or": "أو", + "Or pay with Cash instead": "أو ادفع نقداً بدلاً من ذلك", + "Order": "طلب", + "Order Accepted": "تم قبول الطلب", + "Order Accepted by another driver": "تم قبول الطلب من قبل سائق آخر", + "Order Applied": "تم تطبيق الطلب", + "Order Cancelled": "تم إلغاء الطلب", + "Order Cancelled by Passenger": "تم إلغاء الطلب من قبل الراكب", + "Order Details Siro": "تفاصيل طلب سيرو", + "Order History": "سجل الطلبات", + "Order ID": "رقم الطلب", + "Order Request Page": "صفحة طلب الرحلة", + "Order Under Review": "الطلب قيد المراجعة", + "Order for myself": "طلب لنفسي", + "Order for someone else": "طلب لشخص آخر", + "OrderId": "رقم الطلب", + "OrderVIP": "طلب VIP", + "Orders Page": "صفحة الطلبات", + "Origin": "نقطة الانطلاق", + "Original Fare": "الأجرة الأصلية", + "Other": "أخرى", + "Our dedicated customer service team ensures swift resolution of any issues.": "يضمن فريق خدمة العملاء المخصص لدينا حل أي مشكلات بسرعة.", + "Overall Behavior Score": "درجة السلوك الإجمالية", + "Overlay": "العرض العلوي", + "Owner Name": "اسم المالك", + "PTS": "نقاط", + "Passenger": "الراكب", + "Passenger & Status": "الراكب والحالة", + "Passenger Cancel Trip": "الراكب يلغي الرحلة", + "Passenger Information": "معلومات الراكب", + "Passenger Invitations": "دعوات الركاب", + "Passenger Name": "اسم الراكب", + "Passenger Name is": "اسم الراكب هو", + "Passenger Referral": "إحالة الراكب", + "Passenger cancel trip": "الراكب يلغي الرحلة", + "Passenger cancelled order": "الراكب ألغى الطلب", + "Passenger cancelled the ride.": "الراكب ألغى الرحلة.", + "Passenger come to you": "الراكب قادم إليك", + "Passenger name :": "اسم الراكب :", + "Passenger name:": "اسم الراكب:", + "Passenger paid amount": "المبلغ الذي دفعه الراكب", + "Passengers": "الركاب", + "Password": "كلمة المرور", + "Password must be at least 6 characters": "يجب أن تكون كلمة المرور مكونة من 6 أحرف على الأقل", + "Password must be at least 6 characters.": "يجب أن تكون كلمة المرور مكونة من 6 أحرف على الأقل.", + "Password must br at least 6 character.": "يجب أن تكون كلمة المرور مكونة من 6 أحرف على الأقل.", + "Paste WhatsApp location link": "الصق رابط موقع الواتساب", + "Paste location link here": "الصق رابط الموقع هنا", + "Paste the code here": "الصق الرمز هنا", + "Pay": "ادفع", + "Pay by MTN Wallet": "الدفع عبر محفظة MTN", + "Pay by Sham Cash": "الدفع عبر شام كاش", + "Pay by Syriatel Wallet": "الدفع عبر محفظة سيريتل", + "Pay directly to the captain": "الدفع مباشرة للكابتن", + "Pay from my budget": "الدفع من ميزانيتي", + "Pay remaining to Wallet?": "دفع المتبقي إلى المحفظة؟", + "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 (الاسم المستعار: siroapp)", + "Pay with Credit Card": "الدفع ببطاقة ائتمان", + "Pay with Debit Card": "الدفع ببطاقة خصم", + "Pay with Wallet": "الدفع عبر المحفظة", + "Pay with Your": "الدفع باستخدام", + "Pay with Your PayPal": "الدفع باستخدام باي بال الخاص بك", + "Payment Failed": "فشل الدفع", + "Payment History": "سجل الدفع", + "Payment Method": "طريقة الدفع", + "Payment Method:": "طريقة الدفع:", + "Payment Options": "خيارات الدفع", + "Payment Successful": "تم الدفع بنجاح", + "Payment Successful!": "تم الدفع بنجاح!", + "Payment details added successfully": "تمت إضافة تفاصيل الدفع بنجاح", + "Payments": "المدفوعات", + "Percent Canceled": "نسبة الإلغاء", + "Percent Completed": "نسبة الإنجاز", + "Percent Rejected": "نسبة الرفض", + "Perfect for adventure seekers who want to experience something new and exciting": "مثالية لمحبي المغامرات الذين يرغبون في تجربة شيء جديد ومثير", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالية للركاب الباحثين عن أحدث موديلات السيارات مع حرية اختيار أي طريق يرغبون به", + "Permission denied": "تم رفض الإذن", + "Personal Information": "المعلومات الشخصية", + "Petrol": "بنزين", + "Phone": "الهاتف", + "Phone Check": "فحص الهاتف", + "Phone Number": "رقم الهاتف", + "Phone Number Check": "فحص رقم الهاتف", + "Phone Number is": "رقم الهاتف هو", + "Phone Number is not Egypt phone": "رقم الهاتف ليس رقم هاتف مصري", + "Phone Number is not Egypt phone ": "رقم الهاتف ليس رقم هاتف مصري", + "Phone Number wrong": "رقم الهاتف خاطئ", + "Phone Wallet Saved Successfully": "تم حفظ محفظة الهاتف بنجاح", + "Phone number is already verified": "رقم الهاتف تم التحقق منه بالفعل", + "Phone number is verified before": "تم التحقق من رقم الهاتف سابقاً", + "Phone number must be exactly 11 digits long": "يجب أن يكون رقم الهاتف مكوناً من 11 رقماً بالضبط", + "Phone number must be valid.": "يجب أن يكون رقم الهاتف صالحاً.", + "Phone number seems too short": "يبدو أن رقم الهاتف قصير جداً", + "Pick from map": "اختر من الخريطة", + "Pick from map destination": "اختر الوجهة من الخريطة", + "Pick or Tap to confirm": "اختر أو انقر للتأكيد", + "Pick your destination from Map": "اختر وجهتك من الخريطة", + "Pick your ride location on the map - Tap to confirm": "اختر موقع رحلتك على الخريطة - انقر للتأكيد", + "Pickup Location": "موقع الالتقاط", + "Place added successfully! Thanks for your contribution.": "تمت إضافة المكان بنجاح! شكراً لمساهمتك.", + "Plate": "اللوحة", + "Plate Number": "رقم اللوحة", + "Please Try anther time": "يرجى المحاولة مرة أخرى", + "Please Wait If passenger want To Cancel!": "يرجى الانتظار إذا أراد الراكب الإلغاء!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "يرجى السماح بالوصول إلى الموقع \"طوال الوقت\" لتلقي طلبات الرحلات حتى عندما يكون التطبيق في الخلفية.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "يرجى السماح بالوصول إلى الموقع طوال الوقت لتلقي طلبات الرحلات وضمان خدمة سلسة.", + "Please check back later for available rides.": "يرجى التحقق لاحقاً للحصول على رحلات متاحة.", + "Please complete more distance before ending.": "يرجى إكمال مسافة أكبر قبل الإنهاء.", + "Please describe your issue before submitting.": "يرجى وصف مشكلتك قبل الإرسال.", + "Please enter": "يرجى إدخال", + "Please enter Your Email.": "يرجى إدخال بريدك الإلكتروني.", + "Please enter Your Password.": "يرجى إدخال كلمة المرور.", + "Please enter a correct phone": "يرجى إدخال هاتف صحيح", + "Please enter a description of the issue.": "يرجى إدخال وصف للمشكلة.", + "Please enter a health insurance status.": "يرجى إدخال حالة التأمين الصحي.", + "Please enter a phone number": "يرجى إدخال رقم هاتف", + "Please enter a valid 16-digit card number": "يرجى إدخال رقم بطاقة صالح مكون من 16 رقماً", + "Please enter a valid card 16-digit number.": "يرجى إدخال رقم بطاقة صالح مكون من 16 رقماً.", + "Please enter a valid email": "يرجى إدخال بريد إلكتروني صالح", + "Please enter a valid email.": "يرجى إدخال بريد إلكتروني صالح.", + "Please enter a valid insurance provider": "يرجى إدخال مزوّد تأمين صالح", + "Please enter a valid phone number.": "يرجى إدخال رقم هاتف صالح.", + "Please enter a valid promo code": "يرجى إدخال رمز ترويجي صالح", + "Please enter phone number": "يرجى إدخال رقم الهاتف", + "Please enter the CVV code": "يرجى إدخال رمز CVV", + "Please enter the cardholder name": "يرجى إدخال اسم حامل البطاقة", + "Please enter the complete 6-digit code.": "يرجى إدخال الرمز الكامل المكون من 6 أرقام.", + "Please enter the emergency number.": "يرجى إدخال رقم الطوارئ.", + "Please enter the expiry date": "يرجى إدخال تاريخ الانتهاء", + "Please enter the number without the leading 0": "يرجى إدخال الرقم بدون الصفر الأولي", + "Please enter your City.": "يرجى إدخال مدينتك.", + "Please enter your Email.": "يرجى إدخال بريدك الإلكتروني.", + "Please enter your Password.": "يرجى إدخال كلمة المرور.", + "Please enter your Question.": "يرجى إدخال سؤالك.", + "Please enter your complaint.": "يرجى إدخال شكواك.", + "Please enter your feedback.": "يرجى إدخال ملاحظاتك.", + "Please enter your first name.": "يرجى إدخال اسمك الأول.", + "Please enter your last name.": "يرجى إدخال اسمك الأخير.", + "Please enter your phone number": "يرجى إدخال رقم هاتفك", + "Please enter your phone number.": "يرجى إدخال رقم هاتفك.", + "Please enter your question": "يرجى إدخال سؤالك", + "Please go closer to the passenger location (less than 150m)": "يرجى الاقتراب أكثر من موقع الراكب (أقل من 150 متراً)", + "Please go to Car Driver": "يرجى الذهاب إلى سائق السيارة", + "Please go to Car now": "يرجى الذهاب إلى السيارة الآن", + "Please go to the pickup location exactly": "يرجى الذهاب إلى موقع الالتقاط بالضبط", + "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 paste the transfer message": "يرجى لصق رسالة التحويل", + "Please provide details about any long-term diseases.": "يرجى تقديم تفاصيل عن أي أمراض طويلة الأمد.", + "Please put your licence in these border": "يرجى وضع رخصتك داخل هذا الإطار", + "Please select a contact": "يرجى اختيار جهة اتصال", + "Please select a date": "يرجى اختيار تاريخ", + "Please select a rating before submitting.": "يرجى اختيار تقييم قبل الإرسال.", + "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": "يرجى تحويل المبلغ إلى الاسم المستعار: siroapp", + "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.": "يرجى رفع جميع المستندات المطلوبة الأربعة.", + "Please upload this license.": "يرجى رفع هذه الرخصة.", + "Please verify your identity": "يرجى التحقق من هويتك", + "Please wait": "يرجى الانتظار", + "Please wait for all documents to finish uploading before registering.": "يرجى الانتظار حتى يتم رفع جميع المستندات قبل التسجيل.", + "Please wait for the passenger to enter the car before starting the trip.": "يرجى الانتظار حتى يدخل الراكب السيارة قبل بدء الرحلة.", + "Please wait while we prepare your trip.": "يرجى الانتظار بينما نحضر رحلتك.", + "Point": "نقطة", + "Points": "نقاط", + "Policy restriction on calls": "قيود السياسة على المكالمات", + "Potential security risks detected. The application may not function correctly.": "تم اكتشاف مخاطر أمنية محتملة. قد لا يعمل التطبيق بشكل صحيح.", + "Potential security risks detected. The application may not function correctly.": "تم اكتشاف مخاطر أمنية محتملة. قد لا يعمل التطبيق بشكل صحيح.", + "Potential security risks detected. The application will close in @seconds seconds.": "تم اكتشاف مخاطر أمنية محتملة. سيتم إغلاق التطبيق خلال @seconds ثانية.", + "Pre-booking": "الحجز المسبق", + "Press here": "اضغط هنا", + "Press to hear": "اضغط للاستماع", + "Price": "السعر", + "Price is": "السعر هو", + "Price of trip": "سعر الرحلة", + "Price:": "السعر:", + "Priority medium": "أولوية متوسطة", + "Priority support": "دعم ذو أولوية", + "Privacy Notice": "إشعار الخصوصية", + "Privacy Policy": "سياسة الخصوصية", + "Profile": "الملف الشخصي", + "Profile Photo Required": "صورة الملف الشخصي مطلوبة", + "Profile Picture": "صورة الملف الشخصي", + "Progress:": "التقدم:", + "Promo": "عرض ترويجي", + "Promo Already Used": "تم استخدام العرض الترويجي بالفعل", + "Promo Code": "الرمز الترويجي", + "Promo Code Accepted": "تم قبول الرمز الترويجي", + "Promo Copied!": "تم نسخ العرض!", + "Promo End !": "انتهى العرض!", + "Promo Ended": "انتهى العرض", + "Promo code copied to clipboard!": "تم نسخ الرمز الترويجي إلى الحافظة!", + "Promos": "العروض", + "Promos For Today": "العروض ليوم اليوم", + "Promos For today": "العروض ليوم اليوم", + "Promotions": "العروض الترويجية", + "Pyament Cancelled .": "تم إلغاء الدفع.", + "Qatar": "قطر", + "Qatar National Bank Alahli": "البنك الأهلي القطري", + "Question": "سؤال", + "Quick Actions": "إجراءات سريعة", + "Quick Invite": "دعوة سريعة", + "Quick Invite Link:": "رابط الدعوة السريعة:", + "Quick Messages": "رسائل سريعة", + "Quiet & Eco-Friendly": "هادئ وصديق للبيئة", + "Raih Gai: For same-day return trips longer than 50km.": "رايح جاي: للرحلات ذهاباً وإياباً في نفس اليوم وأطول من 50 كم.", + "Rate": "تقييم", + "Rate Captain": "قيّم الكابتن", + "Rate Driver": "قيّم السائق", + "Rate Our App": "قيّم تطبيقنا", + "Rate Passenger": "قيّم الراكب", + "Rating": "التقييم", + "Rating is": "التقييم هو", + "Rating submitted successfully": "تم إرسال التقييم بنجاح", + "Rayeh Gai": "رايح جاي", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة رحلات ذهاباً وإياباً للسفر المريح بين المدن، سهلة وموثوقة.", + "Reason": "السبب", + "Recent Places": "الأماكن الأخيرة", + "Recent Transactions": "المعاملات الأخيرة", + "Recharge Balance": "شحن الرصيد", + "Recharge Balance Packages": "باقات شحن الرصيد", + "Recharge my Account": "شحن حسابي", + "Record": "تسجيل", + "Record saved": "تم حفظ التسجيل", + "Recorded Trips (Voice & AI Analysis)": "الرحلات المسجلة (الصوت وتحليل الذكاء الاصطناعي)", + "Recorded Trips for Safety": "الرحلات المسجلة لأغراض السلامة", + "Refer 5 drivers": "أحيل 5 سائقين", + "Referral Center": "مركز الإحالات", + "Referrals": "الإحالات", + "Refresh": "تحديث", + "Refresh Market": "تحديث السوق", + "Refresh Status": "تحديث الحالة", + "Refuse Order": "رفض الطلب", + "Refused": "مرفوض", + "Register": "تسجيل", + "Register Captin": "تسجيل الكابتن", + "Register Driver": "تسجيل السائق", + "Register as Driver": "التسجيل كسائق", + "Registration": "التسجيل", + "Registration completed successfully!": "تم التسجيل بنجاح!", + "Registration failed. Please try again.": "فشل التسجيل. يرجى المحاولة مرة أخرى.", + "Reject": "رفض", + "Rejected Orders": "الطلبات المرفوضة", + "Rejected Orders Count": "عدد الطلبات المرفوضة", + "Religion": "الدين", + "Remainder": "المتبقي", + "Remaining time": "الوقت المتبقي", + "Remaining:": "المتبقي:", + "Report": "تقرير", + "Required field": "حقل مطلوب", + "Resend Code": "إعادة إرسال الرمز", + "Resend code": "إعادة إرسال الرمز", + "Reward Claimed": "تم استلام المكافأة", + "Reward Status": "حالة المكافأة", + "Reward claimed successfully!": "تم استلام المكافأة بنجاح!", + "Ride": "الرحلة", + "Ride History": "سجل الرحلات", + "Ride Management": "إدارة الرحلات", + "Ride Status": "حالة الرحلة", + "Ride Summaries": "ملخصات الرحلات", + "Ride Summary": "ملخص الرحلة", + "Ride Today :": "الرحلات اليوم :", + "Ride Wallet": "محفظة الرحلة", + "Ride info": "معلومات الرحلة", + "Ride information not found. Please refresh the page.": "لم يتم العثور على معلومات الرحلة. يرجى تحديث الصفحة.", + "Rides": "الرحلات", + "Road Legend": "أسطورة الطريق", + "Road Warrior": "محارب الطريق", + "Rouats of Trip": "محطات الرحلة", + "Route Not Found": "لم يتم العثور على الطريق", + "Routs of Trip": "محطات الرحلة", + "Run Google Maps directly": "تشغيل خرائط جوجل مباشرة", + "S.P": "ليرة سورية", + "SAFAR Wallet": "محفظة سفر", + "SOS": "الطوارئ", + "SOS Phone": "هاتف الطوارئ", + "SUBMIT": "إرسال", + "SYP": "ليرة سورية", + "Safety & Security": "السلامة والأمان", + "Safety First 🛑": "السلامة أولاً 🛑", + "Same device detected": "تم اكتشاف نفس الجهاز", + "Sat": "السبت", + "Saudi Arabia": "السعودية", + "Save": "حفظ", + "Save & Call": "حفظ والاتصال", + "Save Credit Card": "حفظ بطاقة الائتمان", + "Saved Sucssefully": "تم الحفظ بنجاح", + "Scan Driver License": "امسح رخصة القيادة", + "Scan ID Api": "امسح الهوية API", + "Scan ID MklGoogle": "امسح الهوية MklGoogle", + "Scan ID Tesseract": "امسح الهوية Tesseract", + "Scan Id": "امسح الهوية", + "Scheduled Time:": "الوقت المجدول:", + "Scooter": "سكوتر", + "Score": "الدرجة", + "Search country": "ابحث عن الدولة", + "Search for a starting point": "ابحث عن نقطة البداية", + "Search for waypoint": "ابحث عن نقطة الطريق", + "Search for your Start point": "ابحث عن نقطة بدايتك", + "Search for your destination": "ابحث عن وجهتك", + "Search name or number...": "ابحث باسم أو رقم...", + "Searching for the nearest captain...": "جارٍ البحث عن أقرب كابتن...", + "Security Warning": "تحذير أمني", + "See you Tomorrow!": "أراك غداً!", + "See you on the road!": "أراك على الطريق!", + "Select Country": "اختر الدولة", + "Select Date": "اختر التاريخ", + "Select Name of Your Bank": "اختر اسم بنكك", + "Select Order Type": "اختر نوع الطلب", + "Select Payment Amount": "اختر مبلغ الدفع", + "Select Payment Method": "اختر طريقة الدفع", + "Select This Ride": "اختر هذه الرحلة", + "Select Time": "اختر الوقت", + "Select Waiting Hours": "اختر ساعات الانتظار", + "Select Your Country": "اختر دولتك", + "Select a Bank": "اختر بنكاً", + "Select a Contact": "اختر جهة اتصال", + "Select a File": "اختر ملفاً", + "Select a file": "اختر ملفاً", + "Select a quick message": "اختر رسالة سريعة", + "Select date and time of trip": "اختر تاريخ ووقت الرحلة", + "Select how you want to charge your account": "اختر كيف تريد شحن حسابك", + "Select one message": "اختر رسالة واحدة", + "Select recorded trip": "اختر الرحلة المسجلة", + "Select your destination": "اختر وجهتك", + "Select your preferred language for the app interface.": "اختر لغتك المفضلة لواجهة التطبيق.", + "Selected Date": "التاريخ المحدد", + "Selected Date and Time": "التاريخ والوقت المحددان", + "Selected Location": "الموقع المحدد", + "Selected Time": "الوقت المحدد", + "Selected driver": "السائق المحدد", + "Selected file:": "الملف المحدد:", + "Send Email": "إرسال بريد إلكتروني", + "Send Invite": "إرسال دعوة", + "Send Message": "إرسال رسالة", + "Send Siro app to him": "أرسل تطبيق سيرو له", + "Send Verfication Code": "إرسال رمز التحقق", + "Send Verification Code": "إرسال رمز التحقق", + "Send WhatsApp Message": "إرسال رسالة واتساب", + "Send a custom message": "إرسال رسالة مخصصة", + "Send to Driver Again": "إرسال إلى السائق مرة أخرى", + "Send your referral code to friends": "أرسل رمز الإحالة الخاص بك للأصدقاء", + "Server error": "خطأ في الخادم", + "Server error. Please try again.": "خطأ في الخادم. يرجى المحاولة مرة أخرى.", + "Session expired. Please log in again.": "انتهت الجلسة. يرجى تسجيل الدخول مرة أخرى.", + "Set Daily Goal": "تحديد الهدف اليومي", + "Set Goal": "تحديد الهدف", + "Set Location on Map": "تعيين الموقع على الخريطة", + "Set Phone Number": "تعيين رقم الهاتف", + "Set Wallet Phone Number": "تعيين رقم هاتف المحفظة", + "Set pickup location": "تعيين موقع الالتقاط", + "Setting": "إعداد", + "Settings": "الإعدادات", + "Sex is": "الجنس هو", + "Sham Cash": "شام كاش", + "ShamCash Account": "حساب شام كاش", + "Share": "مشاركة", + "Share App": "مشاركة التطبيق", + "Share Code": "مشاركة الرمز", + "Share Trip Details": "مشاركة تفاصيل الرحلة", + "Share the app with another new driver": "شارك التطبيق مع سائق جديد آخر", + "Share the app with another new passenger": "شارك التطبيق مع راكب جديد آخر", + "Share this code to earn rewards": "شارك هذا الرمز لكسب المكافآت", + "Share this code with other drivers. Both of you will receive rewards!": "شارك هذا الرمز مع سائقين آخرين. ستحصلون جميعاً على مكافآت!", + "Share this code with passengers and earn rewards when they use it!": "شارك هذا الرمز مع الركاب واكسب مكافآت عندما يستخدمونه!", + "Share this code with your friends and earn rewards when they use it!": "شارك هذا الرمز مع أصدقائك واكسب مكافآت عندما يستخدمونه!", + "Share via": "مشاركة عبر", + "Share with friends and earn rewards": "شارك مع الأصدقاء واكسب مكافآت", + "Share your experience to help us improve...": "شارك تجربتك لمساعدتنا في التحسين...", + "Show Invitations": "عرض الدعوات", + "Show My Trip Count": "عرض عدد رحلاتي", + "Show Promos": "عرض العروض", + "Show Promos to Charge": "عرض العروض للشحن", + "Show behavior page": "عرض صفحة السلوك", + "Show health insurance providers near me": "عرض مزوّدي التأمين الصحي القريبين مني", + "Show latest promo": "عرض آخر عرض ترويجي", + "Show maintenance center near my location": "عرض مركز الصيانة القريب من موقعي", + "Show my Cars": "عرض سياراتي", + "Showing": "عرض", + "Sign In by Apple": "تسجيل الدخول عبر آبل", + "Sign In by Google": "تسجيل الدخول عبر جوجل", + "Sign In with Google": "تسجيل الدخول عبر جوجل", + "Sign Out": "تسجيل الخروج", + "Sign in for a seamless experience": "سجّل الدخول لتجربة سلسة", + "Sign in to start your journey": "سجّل الدخول لبدء رحلتك", + "Sign in with Apple": "تسجيل الدخول عبر آبل", + "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": "Siro 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.": "سيرو: للراتب الثابت ونقاط النهاية.", + "Slide to End Trip": "مرر لإنهاء الرحلة", + "So go and gain your money": "اذهب واستلم أموالك", + "Social Butterfly": "الفراشة الاجتماعية", + "Societe Arabe Internationale De Banque": "الشركة العربية الدولية للبنوك", + "Something went wrong. Please try again.": "حدث خطأ ما. يرجى المحاولة مرة أخرى.", + "Sorry": "آسف", + "Sorry, the order was taken by another driver.": "آسف، تم أخذ الطلب من قبل سائق آخر.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان فسيحة مثالية للعائلات والمجموعات. سفر مريح وآمن وفعال من حيث التكلفة معاً.", + "Speaker": "مكبّر الصوت", + "Special Order": "طلب خاص", + "Speed": "السرعة", + "Speed Order": "طلب سريع", + "Speed 🔻": "السرعة 🔻", + "Standard Call": "مكالمة قياسية", + "Standard support": "دعم قياسي", + "Start": "ابدأ", + "Start Navigation?": "بدء الملاحة؟", + "Start Record": "بدء التسجيل", + "Start Ride": "بدء الرحلة", + "Start Trip": "ابدأ الرحلة", + "Start Trip?": "ابدأ الرحلة؟", + "Start sharing your code!": "ابدأ بمشاركة رمزك!", + "Start the Ride": "ابدأ الرحلة", + "Starting contacts sync in background...": "جارٍ بدء مزامنة جهات الاتصال في الخلفية...", + "Statistic": "إحصائية", + "Statistics": "الإحصائيات", + "Status": "الحالة", + "Status is": "الحالة هي", + "Stay": "ابقَ", + "Step-by-step instructions on how to request a ride through the Siro app.": "تعليمات خطوة بخطوة حول كيفية طلب رحلة من خلال تطبيق سيرو.", + "Stop": "توقف", + "Store your money with us and receive it in your bank as a monthly salary.": "احفظ أموالك معنا واحصل عليها في بنكك كراتب شهري.", + "Submission Failed": "فشل الإرسال", + "Submit": "إرسال", + "Submit ": "إرسال", + "Submit Complaint": "إرسال شكوى", + "Submit Question": "إرسال سؤال", + "Submit Rating": "إرسال التقييم", + "Submit Your Complaint": "إرسال شكواك", + "Submit Your Question": "إرسال سؤالك", + "Submit a Complaint": "تقديم شكوى", + "Submit rating": "إرسال التقييم", + "Success": "نجاح", + "Suez Canal Bank": "بنك قناة السويس", + "Summary of your daily activity": "ملخص نشاطك اليومي", + "Sun": "الأحد", + "Support": "الدعم", + "Support Reply": "رد الدعم", + "Swipe to End Trip": "مرر لإنهاء الرحلة", + "Switch Rider": "تبديل الراكب", + "Switch between light and dark map styles": "التبديل بين أنماط الخريطة الفاتحة والداكنة", + "Switch between light and dark themes": "التبديل بين السمات الفاتحة والداكنة", + "Syria": "سوريا", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'ليرة سورية", + "Syriatel Cash": "سيريتل كاش", + "Take Image": "التقط صورة", + "Take Photo Now": "التقط صورة الآن", + "Take Picture Of Driver License Card": "التقط صورة لرخصة قيادة السائق", + "Take Picture Of ID Card": "التقط صورة لبطاقة الهوية", + "Tap on the promo code to copy it!": "انقر على الرمز الترويجي لنسخه!", + "Tap to upload": "انقر للرفع", + "Target": "الهدف", + "Tariff": "التعريفة", + "Tariffs": "التعريفات", + "Tax Expiry Date": "تاريخ انتهاء الضريبة", + "Terms of Use": "شروط الاستخدام", + "Terms of Use & Privacy Notice": "شروط الاستخدام وإشعار الخصوصية", + "Thank You!": "شكراً لك!", + "Thanks": "شكراً", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "الـ 300 نقطة تساوي 300 جنيه مصري لك\\nاذهب واستلم أموالك", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "الـ 30000 نقطة تساوي 30000 ليرة سورية لك\\nاذهب واستلم أموالك", + "The Amount is less than": "المبلغ أقل من", + "The Driver Will be in your location soon .": "سيكون السائق في موقعك قريباً.", + "The United Bank": "البنك المتحد", + "The app may not work optimally": "قد لا يعمل التطبيق بشكل مثالي", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "لم يتم رفع ملف الصوت بعد.\\nهل تريد الإرسال بدونه؟", + "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "لا يوفر السياق أي تفاصيل عن الشكوى، لذلك لا يمكنني تقديم حل لهذه المشكلة. يرجى تقديم المعلومات اللازمة، وسأكون سعيداً بمساعدتك.", + "The distance less than 500 meter.": "المسافة أقل من 500 متر.", + "The driver accept your order for": "السائق قبل طلبك مقابل", + "The driver accepted your order for": "السائق قبل طلبك مقابل", + "The driver accepted your trip": "السائق قبل رحلتك", + "The driver canceled your ride.": "السائق ألغى رحلتك.", + "The driver is approaching.": "السائق يقترب.", + "The driver on your way": "السائق في طريقه إليك", + "The driver waiting you in picked location .": "السائق ينتظر في موقع الالتقاط.", + "The driver waitting you in picked location .": "السائق ينتظر في موقع الالتقاط.", + "The drivers are reviewing your request": "السائقون يقومون بمراجعة طلبك", + "The email or phone number is already registered.": "البريد الإلكتروني أو رقم الهاتف مسجل بالفعل.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "لا يتطابق الاسم الكامل في صحيفة الحالة الجنائية الخاصة بك مع الاسم الموجود في رخصة قيادتك. يرجى التحقق وتقديم المستندات الصحيحة.", + "The invitation was sent successfully": "تم إرسال الدعوة بنجاح", + "The map will show an approximate view.": "ستعرض الخريطة عرضاً تقريبياً.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "لا يتطابق الرقم الوطني في رخصة قيادتك مع الرقم الموجود في وثيقة هويتك. يرجى التحقق وتقديم المستندات الصحيحة.", + "The order Accepted by another Driver": "تم قبول الطلب من قبل سائق آخر", + "The order has been accepted by another driver.": "تم قبول الطلب من قبل سائق آخر.", + "The payment was approved.": "تمت الموافقة على الدفع.", + "The payment was not approved. Please try again.": "لم تتم الموافقة على الدفع. يرجى المحاولة مرة أخرى.", + "The period of this code is 24 hours": "مدة صلاحية هذا الرمز هي 24 ساعة", + "The price may increase if the route changes.": "قد يزيد السعر إذا تغير الطريق.", + "The price must be over than": "يجب أن يكون السعر أكثر من", + "The promotion period has ended.": "انتهت فترة العرض الترويجي.", + "The reason is": "السبب هو", + "The selected contact does not have a phone number": "جهة الاتصال المحددة لا تحتوي على رقم هاتف", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "لقد بدأت الرحلة! لا تتردد في الاتصال بأرقام الطوارئ، أو مشاركة رحلتك، أو تفعيل تسجيل الصوت للرحلة", + "There is no data yet.": "لا توجد بيانات بعد.", + "There is no help Question here": "لا يوجد سؤال مساعدة هنا", + "There is no notification yet": "لا يوجد إشعار بعد", + "There no Driver Aplly your order sorry for that": "لا يوجد سائق تقدّم لطلبك، آسف لذلك", + "They register using your code": "يسجلون باستخدام رمزك", + "This Trip Cancelled": "تم إلغاء هذه الرحلة", + "This Trip Was Cancelled": "تم إلغاء هذه الرحلة", + "This amount for all trip I get from Passengers": "هذا المبلغ لجميع الرحلات التي حصلت عليها من الركاب", + "This amount for all trip I get from Passengers and Collected For me in": "هذا المبلغ لجميع الرحلات التي حصلت عليها من الركاب وتم جمعه لي في", + "This driver is not registered": "هذا السائق غير مسجل", + "This for new registration": "هذا للتسجيل الجديد", + "This is a scheduled notification.": "هذا إشعار مجدول.", + "This is for delivery or a motorcycle.": "هذا للتوصيل أو دراجة نارية.", + "This is for scooter or a motorcycle.": "هذا للسكوتر أو دراجة نارية.", + "This is the total number of rejected orders per day after accepting the orders": "هذا هو العدد الإجمالي للطلبات المرفوضة يومياً بعد قبول الطلبات", + "This page is only available for Android devices": "هذه الصفحة متاحة فقط لأجهزة أندرويد", + "This phone number has already been invited.": "تم دعوة هذا الرقم بالفعل.", + "This price is": "هذا السعر هو", + "This price is fixed even if the route changes for the driver.": "هذا السعر ثابت حتى لو تغير الطريق بالنسبة للسائق.", + "This price may be changed": "قد يتغير هذا السعر", + "This ride is already applied by another driver.": "تم التقدم لهذه الرحلة بالفعل من قبل سائق آخر.", + "This ride is already taken by another driver.": "تم أخذ هذه الرحلة بالفعل من قبل سائق آخر.", + "This ride type allows changes, but the price may increase": "يسمح هذا النوع من الرحلات بالتغييرات، ولكن قد يزيد السعر", + "This ride type does not allow changes to the destination or additional stops": "لا يسمح هذا النوع من الرحلات بتغيير الوجهة أو إضافة محطات إضافية", + "This ride was just accepted by another driver.": "تم قبول هذه الرحلة للتو من قبل سائق آخر.", + "This service will be available soon.": "سيكون هذا الخدمة متاحاً قريباً.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "تذهب هذه الرحلة مباشرة من نقطة البداية إلى وجهتك بسعر ثابت. يجب على السائق اتباع الطريق المخطط", + "This trip is for women only": "هذه الرحلة للنساء فقط", + "This will delete all recorded files from your device.": "سيؤدي هذا إلى حذف جميع الملفات المسجلة من جهازك.", + "Thu": "الخميس", + "Time": "الوقت", + "Time Finish is": "وقت الانتهاء هو", + "Time to Passenger": "الوقت حتى وصول الراكب", + "Time to Passenger is": "الوقت حتى وصول الراكب هو", + "Time to arrive": "وقت الوصول", + "TimeStart is": "وقت البدء هو", + "Times of Trip": "أوقات الرحلة", + "Tip is": "الإكرامية هي", + "To :": "إلى :", + "To Home": "إلى المنزل", + "To Work": "إلى العمل", + "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 change Language the App": "لتغيير لغة التطبيق", + "To change some Settings": "لتغيير بعض الإعدادات", + "To display orders instantly, please grant permission to draw over other apps.": "لعرض الطلبات فوراً، يرجى منح الإذن بالعرض فوق التطبيقات الأخرى.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "لضمان أفضل تجربة، نقترح تعديل الإعدادات لتناسب جهازك. هل ترغب في المتابعة؟", + "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 use Wallet charge it": "لاستخدام المحفظة، قم بشحنها", + "Today": "اليوم", + "Today Overview": "نظرة عامة على اليوم", + "Top up Balance": "شحن الرصيد", + "Top up Balance to continue": "شحن الرصيد للمتابعة", + "Top up Wallet": "شحن المحفظة", + "Top up Wallet to continue": "شحن المحفظة للمتابعة", + "Total Amount:": "المبلغ الإجمالي:", + "Total Budget from trips by": "إجمالي الميزانية من الرحلات بواسطة", + "Total Budget from trips by\\nCredit card is": "إجمالي الميزانية من الرحلات بواسطة\\nبطاقة الائتمان هي", + "Total Budget from trips is": "إجمالي الميزانية من الرحلات هو", + "Total Budget is": "إجمالي الميزانية هو", + "Total Connection": "إجمالي الاتصال", + "Total Connection Duration:": "إجمالي مدة الاتصال:", + "Total Cost": "التكلفة الإجمالية", + "Total Cost is": "التكلفة الإجمالية هي", + "Total Duration:": "إجمالي المدة:", + "Total Earnings": "إجمالي الأرباح", + "Total For You is": "إجمالي المبلغ لك هو", + "Total From Passenger is": "إجمالي المبلغ من الراكب هو", + "Total Hours on month": "إجمالي الساعات للشهر", + "Total Invites": "إجمالي الدعوات", + "Total Net": "صافي الإجمالي", + "Total Orders": "إجمالي الطلبات", + "Total Points": "إجمالي النقاط", + "Total Points is": "إجمالي النقاط هو", + "Total Price": "السعر الإجمالي", + "Total Rides": "إجمالي الرحلات", + "Total Trips": "إجمالي الرحلات", + "Total Weekly Earnings": "إجمالي الأرباح الأسبوعية", + "Total budgets on month": "إجمالي الميزانيات للشهر", + "Total is": "الإجمالي هو", + "Total points is": "إجمالي النقاط هو", + "Total price from": "السعر الإجمالي من", + "Total rides on month": "إجمالي الرحلات للشهر", + "Total wallet is": "إجمالي المحفظة هو", + "Total weekly is": "إجمالي الأسبوعي هو", + "Transaction failed": "فشلت المعاملة", + "Transaction failed, please try again.": "فشلت المعاملة، يرجى المحاولة مرة أخرى.", + "Transaction successful": "تمت المعاملة بنجاح", + "Transactions this week": "المعاملات هذا الأسبوع", + "Transfer": "تحويل", + "Transfer budget": "تحويل الميزانية", + "Transfer money multiple times.": "تحويل الأموال عدة مرات.", + "Transfer to anyone.": "التحويل لأي شخص.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "سافر في سيارة كهربائية حديثة وهادئة. خيار فاخر وصديق للبيئة لرحلة سلسة.", + "Traveled": "تم السفر", + "Trip": "الرحلة", + "Trip Cancelled": "تم إلغاء الرحلة", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "تم إلغاء الرحلة من السائق. نحن نبحث عن سائق جديد. يرجى الانتظار.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "تم إلغاء الرحلة. سيتم إضافة تكلفة الرحلة إلى محفظتك.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "تم إلغاء الرحلة. سيتم خصم تكلفة الرحلة من محفظتك.", + "Trip Completed": "تمت الرحلة", + "Trip Detail": "تفاصيل الرحلة", + "Trip Details": "تفاصيل الرحلة", + "Trip Finished": "انتهت الرحلة", + "Trip ID": "معرف الرحلة", + "Trip Info": "معلومات الرحلة", + "Trip Monitor": "مراقب الرحلة", + "Trip Monitoring": "مراقبة الرحلة", + "Trip Started": "بدأت الرحلة", + "Trip Status:": "حالة الرحلة:", + "Trip Summary with": "ملخص الرحلة مع", + "Trip Timeline": "الجدول الزمني للرحلة", + "Trip finished": "انتهت الرحلة", + "Trip has Steps": "الرحلة تحتوي على محطات", + "Trip is Begin": "بدأت الرحلة", + "Trip taken": "تم أخذ الرحلة", + "Trip updated successfully": "تم تحديث الرحلة بنجاح", + "Trips": "الرحلات", + "Trips recorded": "الرحلات المسجلة", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "الرحلات: \\\$trips / \\\$target", + "Tue": "الثلاثاء", + "Turkey": "تركيا", + "Turn left": "انعطف يساراً", + "Turn right": "انعطف يميناً", + "Turn sharp left": "انعطف يساراً حاداً", + "Turn sharp right": "انعطف يميناً حاداً", + "Turn slight left": "انعطف يساراً خفيفاً", + "Turn slight right": "انعطف يميناً خفيفاً", + "Type Any thing": "اكتب أي شيء", + "Type a message...": "اكتب رسالة...", + "Type here Place": "اكتب هنا المكان", + "Type something": "اكتب شيئاً", + "Type something...": "اكتب شيئاً...", + "Type your Email": "اكتب بريدك الإلكتروني", + "Type your message": "اكتب رسالتك", + "Type your message...": "اكتب رسالتك...", + "Types of Trips in Siro:": "أنواع الرحلات في سيرو:", + "USA": "الولايات المتحدة الأمريكية", + "Uncompromising Security": "أمان لا هوادة فيه", + "Unknown": "غير معروف", + "Unknown Driver": "سائق غير معروف", + "Unknown Location": "موقع غير معروف", + "Update": "تحديث", + "Update Available": "يتوفر تحديث", + "Update Education": "تحديث التعليم", + "Update Gender": "تحديث الجنس", + "Updated": "تم التحديث", + "Updated successfully": "تم التحديث بنجاح", + "Upload Documents": "رفع المستندات", + "Upload or AI failed": "فشل الرفع أو الذكاء الاصطناعي", + "Uploaded": "تم الرفع", + "Use Touch ID or Face ID to confirm payment": "استخدم Touch ID أو Face ID لتأكيد الدفع", + "Use code:": "استخدم الرمز:", + "Use my invitation code to get a special gift on your first ride!": "استخدم رمز الدعوة الخاص بي للحصول على هدية خاصة في رحلتك الأولى!", + "Use my referral code:": "استخدم رمز الإحالة الخاص بي:", + "Use this code in registration": "استخدم هذا الرمز في التسجيل", + "User does not exist.": "المستخدم غير موجود.", + "User does not have a wallet #1652": "المستخدم لا يملك محفظة #1652", + "User not found": "لم يتم العثور على المستخدم", + "User not logged in": "المستخدم غير مسجل الدخول", + "User with this phone number or email already exists.": "المستخدم بهذا رقم الهاتف أو البريد الإلكتروني موجود بالفعل.", + "Uses cellular network": "يستخدم شبكة الجوال", + "VIN": "الرقم التعريفي للمركبة (VIN)", + "VIN :": "الرقم التعريفي للمركبة (VIN) :", + "VIN is": "الرقم التعريفي للمركبة (VIN) هو", + "VIP Order": "طلب VIP", + "VIP Order Accepted": "تم قبول طلب VIP", + "VIP Orders": "طلبات VIP", + "VIP first": "أولوية VIP", + "Valid Until:": "صالح حتى:", + "Value": "القيمة", + "Van": "فان", + "Van / Bus": "فان / باص", + "Van for familly": "فان للعائلة", + "Variety of Trip Choices": "تنوع خيارات الرحلات", + "Vehicle": "المركبة", + "Vehicle Category": "فئة المركبة", + "Vehicle Details": "تفاصيل المركبة", + "Vehicle Details Back": "تفاصيل المركبة (الخلفي)", + "Vehicle Details Front": "تفاصيل المركبة (الأمامي)", + "Vehicle Information": "معلومات المركبة", + "Vehicle Options": "خيارات المركبة", + "Verification Code": "رمز التحقق", + "Verify": "التحقق", + "Verify Email": "التحقق من البريد الإلكتروني", + "Verify Email For Driver": "التحقق من البريد الإلكتروني للسائق", + "Verify OTP": "التحقق من رمز OTP", + "Vibration": "الاهتزاز", + "Vibration feedback for all buttons": "تغذية اهتزازية لجميع الأزرار", + "Vibration feedback for buttons": "تغذية اهتزازية للأزرار", + "Videos Tutorials": "فيديوهات تعليمية", + "View All": "عرض الكل", + "View your past transactions": "عرض معاملاتك السابقة", + "Visa": "فيزا", + "Visit Website/Contact Support": "زيارة الموقع/الاتصال بالدعم", + "Visit our website or contact Siro support for information on driver registration and requirements.": "قم بزيارة موقعنا أو اتصل بدعم سيرو للحصول على معلومات حول تسجيل السائق والمتطلبات.", + "Voice Calling": "المكالمات الصوتية", + "Voice call over internet": "مكالمة صوتية عبر الإنترنت", + "Wait for timer": "انتظر المؤقت", + "Waiting": "بانتظار", + "Waiting Time": "وقت الانتظار", + "Waiting VIP": "بانتظار VIP", + "Waiting for Captin ...": "بانتظار الكابتن...", + "Waiting for Driver ...": "بانتظار السائق...", + "Waiting for trips": "بانتظار الرحلات", + "Waiting for your location": "بانتظار موقعك", + "Wallet": "المحفظة", + "Wallet Add": "إضافة إلى المحفظة", + "Wallet Added": "تمت الإضافة إلى المحفظة", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة إلى المحفظة \\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة إلى المحفظة \\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "الدفع عبر المحفظة", + "Wallet Phone Number": "رقم هاتف المحفظة", + "Wallet Type": "نوع المحفظة", + "Wallet is blocked": "المحفظة مقفلة", + "Wallet!": "المحفظة!", + "Warning": "تحذير", + "Warning: Siroing 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 process picture please wait": "نحن نعالج الصورة، يرجى الانتظار", + "We are process picture please wait ": "نحن نعالج الصورة، يرجى الانتظار", + "We are search for nearst driver": "نحن نبحث عن أقرب سائق", + "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 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:": "لقد أرسلنا رمز التحقق إلى رقم هاتفك:", + "We need access to your location to match you with nearby passengers and ensure accurate navigation.": "نحتاج إلى الوصول إلى موقعك لمطابقتك مع ركاب قريبين وضمان ملاحة دقيقة.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "نحتاج إلى الوصول إلى موقعك لمطابقتك مع ركاب قريبين وتوفير ملاحة دقيقة.", + "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 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 أرقام إلى بريدك الإلكتروني المقدم", + "We use location to get accurate and nearest passengers for you": "نستخدم الموقع للحصول على ركاب دقيقين وقريبين لك", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "نستخدم موقعك الدقيق للعثور على أقرب سائق متاح وتوفير معلومات دقيقة للاستلام والتنزيل. يمكنك إدارة هذا في الإعدادات.", + "We will look for a new driver.\\nPlease wait.": "سنبحث عن سائق جديد.\\nيرجى الانتظار.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "سنرسل لك إشعاراً فور الموافقة على حسابك. يمكنك إغلاق هذه الصفحة بأمان، وسنخبرك عندما تكتمل المراجعة.", + "Wed": "الأربعاء", + "Weekly Budget": "الميزانية الأسبوعية", + "Weekly Challenges": "التحديات الأسبوعية", + "Weekly Earnings": "الأرباح الأسبوعية", + "Weekly Plan": "الخطة الأسبوعية", + "Weekly Streak": "سلسلة أسبوعية", + "Weekly Summary": "الملخص الأسبوعي", + "Welcome": "مرحباً", + "Welcome Back!": "مرحباً بعودتك!", + "Welcome Offer!": "عرض ترحيبي!", + "Welcome to Siro!": "مرحباً بك في سيرو!", + "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 the feature of our wallet?": "ما هي ميزة محفظتنا؟", + "What safety measures does Siro offer?": "ما هي إجراءات السلامة التي يقدمها سيرو؟", + "What types of vehicles are available?": "ما هي أنواع المركبات المتاحة؟", + "WhatsApp": "واتساب", + "WhatsApp Location Extractor": "مستخرج موقع الواتساب", + "When": "متى", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "عند إكمالك 500 رحلة، ستكون مؤهلاً للعروض الحصرية للتأمين الصحي.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "عند إكمالك 600 رحلة، ستكون مؤهلاً لتلقي عروض صيانة سيارتك.", + "Where are you going?": "إلى أين أنت ذاهب؟", + "Where are you, sir?": "أين أنت، سيدي؟", + "Where to": "إلى أين؟", + "Where you want go": "إلى أين تريد الذهاب؟", + "Which method you will pay": "بأي طريقة ستدفع؟", + "Why Choose Siro?": "لماذا تختار سيرو؟", + "Why do you want to cancel this trip?": "لماذا تريد إلغاء هذه الرحلة؟", + "With Siro, you can get a ride to your destination in minutes.": "مع سيرو، يمكنك الحصول على رحلة إلى وجهتك في دقائق.", + "Withdraw": "سحب", + "Work": "العمل", + "Work & Contact": "العمل والتواصل", + "Work 30 consecutive days": "العمل 30 يوماً متتالياً", + "Work 7 consecutive days": "العمل 7 أيام متتالية", + "Work Days": "أيام العمل", + "Work Saved": "تم حفظ العمل", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 إلى 17:00.\\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 صباحاً إلى 16:00 مساءً.\\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "وقت العمل من 12:00 إلى 19:00.\\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", + "Would the passenger like to settle the remaining fare using their wallet?": "هل يرغب الراكب في تسديد الأجرة المتبقية باستخدام محفظته؟", + "Would you like to proceed with health insurance?": "هل ترغب في المتابعة مع التأمين الصحي؟", + "Write note": "اكتب ملاحظة", + "Write the reason for canceling the trip": "اكتب سبب إلغاء الرحلة", + "Write your comment here": "اكتب تعليقك هنا", + "Write your reason...": "اكتب سببك...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "السنة", + "Year is": "السنة هي", + "Year of Manufacture": "سنة الصنع", + "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, but please note that cancellation fees may apply depending on how far in advance you cancel.": "نعم، يمكنك إلغاء رحلتك، ولكن يرجى ملاحظة أن رسوم الإلغاء قد تنطبق اعتماداً على المدة الزمنية التي تقوم بالإلغاء فيها مسبقاً.", + "You": "أنت", + "You Are Stopped For this Day !": "تم إيقافك لهذا اليوم!", + "You Can Cancel Trip And get Cost of Trip From": "يمكنك إلغاء الرحلة واسترداد تكلفة الرحلة من", + "You Can Cancel the Trip and get Cost From": "يمكنك إلغاء الرحلة واسترداد التكلفة من", + "You Can cancel Ride After Captain did not come in the time": "يمكنك إلغاء الرحلة إذا لم يصل الكابتن في الوقت المحدد", + "You Dont Have Any amount in": "ليس لديك أي مبلغ في", + "You Dont Have Any places yet !": "ليس لديك أي أماكن بعد!", + "You Earn today is": "أرباحك اليوم هي", + "You Have": "لديك", + "You Have Tips": "لديك إكراميات", + "You Have in": "لديك في", + "You Refused 3 Rides this Day that is the reason": "لقد رفضت 3 رحلات اليوم وهذا هو السبب", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "لقد رفضت 3 رحلات اليوم وهذا هو السبب \\nأراك غداً!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "لقد رفضت 3 رحلات اليوم وهذا هو السبب\\nأراك غداً!", + "You Should be select reason.": "يجب عليك اختيار السبب.", + "You Should choose rate figure": "يجب عليك اختيار رقم التقييم", + "You Will Be Notified": "سوف يتم إعلامك", + "You accepted the VIP order.": "لقد قبلت طلب VIP.", + "You are Delete": "تم حذفك", + "You are Stopped": "تم إيقافك", + "You are buying": "أنت تشتري", + "You are far from passenger location": "أنت بعيد عن موقع الراكب", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "أنت في رحلة نشطة. قد يؤدي مغادرة هذه الشاشة إلى إيقاف التتبع. هل أنت متأكد من رغبتك في الخروج؟", + "You are near the destination": "أنت قريب من الوجهة", + "You are not in near to passenger location": "أنت لست قريباً من موقع الراكب", + "You are not near": "أنت لست قريباً من", + "You are not near the passenger location": "أنت لست قريباً من موقع الراكب", + "You can buy Points to let you online": "يمكنك شراء نقاط لتصبح متاحاً", + "You can buy Points to let you online\\nby this list below": "يمكنك شراء نقاط لتصبح متاحاً\\nمن خلال هذه القائمة أدناه", + "You can buy points from your budget": "يمكنك شراء نقاط من ميزانيتك", + "You can call or record audio during this trip.": "يمكنك الاتصال أو تسجيل الصوت أثناء هذه الرحلة.", + "You can call or record audio of this trip": "يمكنك الاتصال أو تسجيل الصوت لهذه الرحلة", + "You can cancel Ride now": "يمكنك إلغاء الرحلة الآن", + "You can cancel trip": "يمكنك إلغاء الرحلة", + "You can change the Country to get all features": "يمكنك تغيير الدولة للحصول على جميع الميزات", + "You can change the destination by long-pressing any point on the map": "يمكنك تغيير الوجهة بالضغط المطول على أي نقطة على الخريطة", + "You can change the language of the app": "يمكنك تغيير لغة التطبيق", + "You can change the vibration feedback for all buttons": "يمكنك تغيير تغذية الاهتزاز لجميع الأزرار", + "You can claim your gift once they complete 2 trips.": "يمكنك استلام هديتك بمجرد إكمالهم رحلتين.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "يمكنك التواصل مع سائقك أو راكبك من خلال ميزة الدردشة داخل التطبيق بمجرد تأكيد الرحلة.", + "You can contact us during working hours from 10:00 - 16:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 10:00 إلى 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 10:00 إلى 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 12:00 إلى 19:00.", + "You can decline a request without any cost": "يمكنك رفض طلب دون أي تكلفة", + "You can now receive orders": "يمكنك الآن تلقي الطلبات", + "You can only use one device at a time. This device will now be set as your active device.": "يمكنك استخدام جهاز واحد فقط في كل مرة. سيتم الآن تعيين هذا الجهاز كجهازك النشط.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "يمكنك الدفع لرحلتك باستخدام النقود أو بطاقة الائتمان/الخصم. يمكنك اختيار طريقة الدفع المفضلة لديك قبل تأكيد رحلتك.", + "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 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", + "You cannot call the passenger due to policy violations": "لا يمكنك الاتصال بالراكب بسبب انتهاكات السياسة", + "You deserve the gift": "أنت تستحق الهدية", + "You do not have enough money in your SAFAR wallet": "ليس لديك ما يكفي من الأموال في محفظة سفر الخاصة بك", + "You dont Add Emergency Phone Yet!": "لم تقم بإضافة رقم طوارئ بعد!", + "You dont have Points": "ليس لديك نقاط", + "You dont have invitation code": "ليس لديك رمز دعوة", + "You dont have money in your Wallet": "ليس لديك أموال في محفظتك", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "ليس لديك أموال في محفظتك أو يجب أن تقوم بتحويل أقل من 5 جنيه مصري للتفعيل", + "You gained": "لقد ربحت", + "You get 100 pts, they get 50 pts": "تحصل على 100 نقطة، وهم يحصلون على 50 نقطة", + "You have": "لديك", + "You have 200": "لديك 200", + "You have 500": "لديك 500", + "You have already received your gift for inviting": "لقد استلمت هديتك بالفعل مقابل الدعوة", + "You have already used this promo code.": "لقد استخدمت هذا الرمز الترويجي بالفعل.", + "You have arrived at your destination": "لقد وصلت إلى وجهتك", + "You have arrived at your destination, @name": "لقد وصلت إلى وجهتك، @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "لقد كنت تقود لمدة 12 ساعة. من أجل سلامتك والامتثال، يرجى أخذ استراحة لمدة 6 ساعات.", + "You have call from driver": "لديك مكالمة من السائق", + "You have chosen not to proceed with health insurance.": "لقد اخترت عدم المتابعة مع التأمين الصحي.", + "You have copied the promo code.": "لقد نسخت الرمز الترويجي.", + "You have earned 20": "لقد ربحت 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "لقد تجاوزت حد الإلغاء المسموح به (3 مرات).\\nلا يمكنك العمل حتى تنتهي فترة العقوبة.", + "You have finished all times": "لقد أنهيت جميع الأوقات", + "You have finished all times ": "لقد أنهيت جميع الأوقات", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "لديك هدية بقيمة 300 جنيه مصري", + "You have gift 300 JOD": "لديك هدية بقيمة 300 دينار أردني", + "You have gift 300 L.E": "لديك هدية بقيمة 300 جنيه مصري", + "You have gift 300 SYP": "لديك هدية بقيمة 300 ليرة سورية", + "You have gift 300 \\\${CurrencyHelper.currency}": "لديك هدية بقيمة 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "لديك هدية بقيمة 30000 جنيه مصري", + "You have gift 30000 JOD": "لديك هدية بقيمة 30000 دينار أردني", + "You have gift 30000 SYP": "لديك هدية بقيمة 30000 ليرة سورية", + "You have got a gift": "لقد حصلت على هدية", + "You have got a gift for invitation": "لقد حصلت على هدية مقابل الدعوة", + "You have in account": "لديك في الحساب", + "You have promo!": "لديك عرض ترويجي!", + "You have received a gift token!": "لقد استلمت رمز هدية!", + "You have successfully charged your account": "لقد قمت بشحن حسابك بنجاح", + "You have successfully opted for health insurance.": "لقد اخترت التأمين الصحي بنجاح.", + "You have transfer to your wallet from": "لقد تم التحويل إلى محفظتك من", + "You have transferred to your wallet from": "لقد تم التحويل إلى محفظتك من", + "You have upload Criminal documents": "لقد قمت برفع مستندات جنائية", + "You haven't moved sufficiently!": "لم تتحرك بشكل كافٍ!", + "You must Verify email !.": "يجب عليك التحقق من البريد الإلكتروني !.", + "You must be charge your Account": "يجب عليك شحن حسابك", + "You must be closer than 100 meters to arrive": "يجب أن تكون أقرب من 100 متر للوصول", + "You must be recharge your Account": "يجب عليك إعادة شحن حسابك", + "You must restart the app to change the language.": "يجب عليك إعادة تشغيل التطبيق لتغيير اللغة.", + "You need to be closer to the pickup location.": "يجب أن تكون أقرب إلى موقع الالتقاط.", + "You need to complete 500 trips": "يجب عليك إكمال 500 رحلة", + "You should complete 500 trips to unlock this feature.": "يجب عليك إكمال 500 رحلة لفتح هذه الميزة.", + "You should complete 600 trips": "يجب عليك إكمال 600 رحلة", + "You should have upload it .": "يجب أن تكون قد قمت برفعه.", + "You should renew Driver license": "يجب تجديد رخصة القيادة", + "You should restart app to change language": "يجب عليك إعادة تشغيل التطبيق لتغيير اللغة", + "You should select one": "يجب عليك اختيار واحد", + "You should select your country": "يجب عليك اختيار دولتك", + "You should use Touch ID or Face ID to confirm payment": "يجب عليك استخدام Touch ID أو Face ID لتأكيد الدفع", + "You trip distance is": "مسافة رحلتك هي", + "You will arrive to your destination after": "سوف تصل إلى وجهتك بعد", + "You will arrive to your destination after timer end.": "سوف تصل إلى وجهتك بعد انتهاء المؤقت.", + "You will be charged for the cost of the driver coming to your location.": "سيتم محاسبتك على تكلفة وصول السائق إلى موقعك.", + "You will be pay the cost to driver or we will get it from you on next trip": "سوف تدفع التكلفة للسائق أو سنخصمها منك في الرحلة القادمة", + "You will be thier in": "سوف تكون هناك خلال", + "You will cancel registration": "سوف تلغي التسجيل", + "You will choose allow all the time to be ready receive orders": "سوف تختار السماح طوال الوقت لتكون جاهزاً لتلقي الطلبات", + "You will choose one of above !": "سوف تختار واحدة من الأعلى!", + "You will get cost of your work for this trip": "سوف تحصل على أجرة عملك لهذه الرحلة", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "سوف تحتاج إلى دفع التكلفة للسائق، أو سيتم خصمها من رحلتك القادمة", + "You will receive a code in SMS message": "سوف تتلقى رمزاً في رسالة SMS", + "You will receive a code in WhatsApp Messenger": "سوف تتلقى رمزاً في رسالة واتساب", + "You will receive code in sms message": "سوف تتلقى رمزاً في رسالة SMS", + "You will recieve code in sms message": "سوف تتلقى رمزاً في رسالة SMS", + "Your Account is Deleted": "تم حذف حسابك", + "Your Activity": "نشاطك", + "Your Application is Under Review": "طلبك قيد المراجعة", + "Your Budget less than needed": "ميزانيتك أقل من المطلوب", + "Your Choice, Our Priority": "اختيارك، أولويتنا", + "Your Driver Referral Code": "رمز إحالة السائق الخاص بك", + "Your Earnings": "أرباحك", + "Your Journey Begins Here": "رحلتك تبدأ من هنا", + "Your Name is Wrong": "اسمك خاطئ", + "Your Passenger Referral Code": "رمز إحالة الراكب الخاص بك", + "Your Question": "سؤالك", + "Your Questions": "أسئلتك", + "Your Referral Code": "رمز الإحالة الخاص بك", + "Your Rewards": "مكافآتك", + "Your Ride Duration is": "مدة رحلتك هي", + "Your Wallet balance is": "رصيد محفظتك هو", + "Your account is temporarily restricted ⛔": "حسابك مقيد مؤقتاً ⛔", + "Your are far from passenger location": "أنت بعيد عن موقع الراكب", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "رصيدك أقل من الحد الأدنى لمبلغ السحب وهو {minAmount} ليرة سورية.", + "Your complaint has been submitted.": "تم تقديم شكواك.", + "Your completed trips will appear here": "ستظهر رحلاتك المكتملة هنا", + "Your data will be erased after 2 weeks": "سيتم مسح بياناتك بعد أسبوعين", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "سيتم مسح بياناتك بعد أسبوعين\\nو لن تتمكن من العودة لاستخدام التطبيق بعد شهر", + "Your device appears to be compromised. The app will now close.": "يبدو أن جهازك مخترق. سيتم الآن إغلاق التطبيق.", + "Your device is good and very suitable": "جهازك جيد ومناسب جداً", + "Your device provides excellent performance": "يقدم جهازك أداءً ممتازاً", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "لقد انتهت صلاحية رخصة قيادتك و/أو ضريبة سيارتك. يرجى تجديدها قبل المتابعة.", + "Your driver’s license has expired.": "لقد انتهت صلاحية رخصة قيادتك.", + "Your driver’s license has expired. Please renew it before proceeding.": "لقد انتهت صلاحية رخصة قيادتك. يرجى تجديدها قبل المتابعة.", + "Your driver’s license has expired. Please renew it.": "لقد انتهت صلاحية رخصة قيادتك. يرجى تجديدها.", + "Your email address": "عنوان بريدك الإلكتروني", + "Your email not updated yet": "بريدك الإلكتروني لم يتم تحديثه بعد", + "Your fee is": "أجرتك هي", + "Your invite code was successfully applied!": "تم تطبيق رمز الدعوة الخاص بك بنجاح!", + "Your journey starts here": "رحلتك تبدأ من هنا", + "Your location is being tracked in the background.": "يتم تتبع موقعك في الخلفية.", + "Your name": "اسمك", + "Your order is being prepared": "طلبك قيد التحضير", + "Your order sent to drivers": "تم إرسال طلبك إلى السائقين", + "Your password": "كلمة المرور الخاصة بك", + "Your past trips will appear here.": "ستظهر رحلاتك السابقة هنا.", + "Your payment is being processed and your wallet will be updated shortly.": "يتم معالجة دفعتك وسيتم تحديث محفظتك قريباً.", + "Your payment was successful.": "تم دفعك بنجاح.", + "Your personal invitation code is:": "رمز الدعوة الشخصي الخاص بك هو:", + "Your rating has been submitted.": "تم إرسال تقييمك.", + "Your total balance:": "رصيدك الإجمالي:", + "Your trip cost is": "تكلفة رحلتك هي", + "Your trip distance is": "مسافة رحلتك هي", + "Your trip is scheduled": "رحلتك مجدولة", + "Your valuable feedback helps us improve our service quality.": "تعليقاتك القيمة تساعدنا في تحسين جودة خدمتنا.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"نقاط", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'رحلة", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'رحلة", + "\\\$error": "صار خطأ", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'تمت إضافته إلى رصيدك", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"الحد الأدنى لمبلغ التحويل هو", + "\\\${\"NEXT STEP": "\\\${\"الخطوة التالية", + "\\\${\"NationalID": "\\\${\"الهوية الوطنية", + "\\\${\"Passenger cancelled the ride.": "\\\${\"ألغى الراكب الرحلة.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"إجمالي الميزانيات للشهر\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"إجمالي الرحلات للشهر\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"رسوم التحويل", + "\\\${\"You must leave at least": "\\\${\"يجب أن تترك على الأقل", + "\\\${\"amount": "\\\${\"المبلغ", + "\\\${\"transaction_id": "\\\${\"معرف المعاملة", + "\\\${'*Siro APP CODE*": "\\\${'*رمز تطبيق سيرو*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*رمز سائق سيرو*", + "\\\${'Address": "\\\${'العنوان", + "\\\${'Address: ": "\\\${'العنوان: ", + "\\\${'Age": "\\\${'العمر", + "\\\${'An unexpected error occurred:": "\\\${'حدث خطأ غير متوقع:", + "\\\${'Average of Hours of": "\\\${'متوسط ساعات", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'تأكد من التقاط صور واضحة من فضلك\\nلديك", + "\\\${'Car Expire": "\\\${'انتهاء صلاحية السيارة", + "\\\${'Car Kind": "\\\${'نوع السيارة", + "\\\${'Car Plate": "\\\${'لوحة السيارة", + "\\\${'Chassis": "\\\${'الشاسيه", + "\\\${'Color": "\\\${'اللون", + "\\\${'Date of Birth": "\\\${'تاريخ الميلاد", + "\\\${'Date of Birth: ": "\\\${'تاريخ الميلاد: ", + "\\\${'Displacement": "\\\${'السعة", + "\\\${'Document Number: ": "\\\${'رقم الوثيقة: ", + "\\\${'Drivers License Class": "\\\${'فئة رخصة القيادة", + "\\\${'Drivers License Class: ": "\\\${'فئة رخصة القيادة: ", + "\\\${'Expiry Date": "\\\${'تاريخ الانتهاء", + "\\\${'Expiry Date: ": "\\\${'تاريخ الانتهاء: ", + "\\\${'Failed to save driver data": "\\\${'فشل حفظ بيانات السائق", + "\\\${'Fuel": "\\\${'الوقود", + "\\\${'FullName": "\\\${'الاسم الكامل", + "\\\${'Height: ": "\\\${'الطول: ", + "\\\${'Hi": "\\\${'مرحباً", + "\\\${'How can I register as a driver?": "\\\${'كيف يمكنني التسجيل كسائق؟", + "\\\${'Inspection Date": "\\\${'تاريخ الفحص", + "\\\${'InspectionResult": "\\\${'نتيجة الفحص", + "\\\${'IssueDate": "\\\${'تاريخ الإصدار", + "\\\${'License Expiry Date": "\\\${'تاريخ انتهاء الرخصة", + "\\\${'Made :": "\\\${'الصانع :", + "\\\${'Make": "\\\${'العلامة التجارية", + "\\\${'Model": "\\\${'الموديل", + "\\\${'Name": "\\\${'الاسم", + "\\\${'Name :": "\\\${'الاسم :", + "\\\${'Name in arabic": "\\\${'الاسم بالعربية", + "\\\${'National Number": "\\\${'الرقم الوطني", + "\\\${'NationalID": "\\\${'الهوية الوطنية", + "\\\${'Next Level:": "\\\${'المستوى التالي:", + "\\\${'OrderId": "\\\${'رقم الطلب", + "\\\${'Owner Name": "\\\${'اسم المالك", + "\\\${'Plate Number": "\\\${'رقم اللوحة", + "\\\${'Please enter": "\\\${'الرجاء إدخال", + "\\\${'Please wait": "\\\${'الرجاء الانتظار", + "\\\${'Price:": "\\\${'السعر:", + "\\\${'Remaining:": "\\\${'المتبقي:", + "\\\${'Ride": "\\\${'الرحلة", + "\\\${'Tax Expiry Date": "\\\${'تاريخ انتهاء الضريبة", + "\\\${'The price must be over than ": "\\\${'يجب أن يكون السعر أكثر من ", + "\\\${'The reason is": "\\\${'السبب هو", + "\\\${'Transaction successful": "\\\${'تمت المعاملة بنجاح", + "\\\${'Update": "\\\${'تحديث", + "\\\${'VIN :": "\\\${'الرقم التعريفي للمركبة (VIN) :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'لقد أرسلنا رمز التحقق إلى رقم هاتفك:", + "\\\${'When": "\\\${'متى", + "\\\${'Year": "\\\${'السنة", + "\\\${'You can resend in": "\\\${'يمكنك إعادة الإرسال خلال", + "\\\${'You gained": "\\\${'لقد ربحت", + "\\\${'You have call from driver": "\\\${'لديك مكالمة من السائق", + "\\\${'You have in account": "\\\${'لديك في الحساب", + "\\\${'before": "\\\${'قبل", + "\\\${'expected": "\\\${'متوقّع", + "\\\${'model :": "\\\${'الموديل :", + "\\\${'wallet_credited_message": "\\\${'تمت إضافة المبلغ إلى محفظتك", + "\\\${'year :": "\\\${'السنة :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'تاريخ الانتهاء", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'رحلة", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'رحلة", + "\\\${AppInformation.appName} Wallet": "محفظة \\\${AppInformation.appName}", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'دينار أردني", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'نقاط", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'رحلات", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'إنجازات", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'تقييمات", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'نشط", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'إجمالي الدعوات", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'مكافآت", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'أيام", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "حدث خطأ", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "محفظة \\\\\\\${AppInformation.appName}", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nكما نعطي أولوية للتكلفة المناسبة، حيث نقدم أسعاراً تنافسية لجعل رحلاتك في متناول الجميع.", + "accepted": "مقبولة", + "accepted your order": "تم قبول طلبك", + "accepted your order at price": "تم قبول طلبك بالسعر", + "age": "العمر", + "agreement subtitle": "عنوان الاتفاقية", + "airport": "المطار", + "alert": "تنبيه", + "amount": "المبلغ", + "amount_paid": "المبلغ المدفوع", + "an error occurred": "حدث خطأ", + "and I have a trip on": "ولدي رحلة على", + "and acknowledge our": "وأوافق على", + "and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية الخاصة بنا.", + "and acknowledge the": "وأوافق على", + "app_description": "وصف التطبيق", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "وقت الوصول لنقطتك", + "as the driver.": "كسائق.", + "attach audio of complain": "أرفق صوت الشكوى", + "attach correct audio": "أرفق الصوت الصحيح", + "be sure": "تأكد", + "before": "قبل", + "below, I confirm that I have read and agree to the": "أدناه، أؤكد أنني قرأت ووافقت على", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "أدناه، لقد راجعت ووافقت على شروط الاستخدام وأقرّ بـ", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "أدناه، لقد راجعت ووافقت على شروط الاستخدام وأقرّ بإشعار الخصوصية. أنا عمري 18 سنة أو أكثر.", + "birthdate": "تاريخ الميلاد", + "bonus_added": "تمت إضافة المكافأة", + "by": "بواسطة", + "by this list below": "بهذه القائمة أدناه", + "cancel": "إلغاء", + "carType'] ?? 'Fixed Price": "carType'] ?? 'سعر ثابت", + "car_back": "خلفي السيارة", + "car_color": "لون السيارة", + "car_front": "أمامي السيارة", + "car_license_back": "الجانب الخلفي لرخصة السيارة", + "car_license_front": "الجانب الأمامي لرخصة السيارة", + "car_model": "موديل السيارة", + "car_plate": "لوحة السيارة", + "change device": "تغيير الجهاز", + "color.beige": "بيج", + "color.black": "أسود", + "color.blue": "أزرق", + "color.bronze": "برونزي", + "color.brown": "بني", + "color.burgundy": "بورجوندي", + "color.champagne": "شمبانيا", + "color.darkGreen": "أخضر داكن", + "color.gold": "ذهبي", + "color.gray": "رمادي", + "color.green": "أخضر", + "color.gunmetal": "معدني رمادي", + "color.maroon": "بني محمر", + "color.navy": "أزرق داكن", + "color.orange": "برتقالي", + "color.purple": "بنفسجي", + "color.red": "أحمر", + "color.silver": "فضي", + "color.white": "أبيض", + "color.yellow": "أصفر", + "committed_to_safety": "ملتزم بالسلامة", + "complete profile subtitle": "عنوان إكمال الملف الشخصي", + "complete registration button": "زر إكمال التسجيل", + "complete, you can claim your gift": "بمجرد الإكمال، يمكنك استلام هديتك", + "connection_failed": "فشل الاتصال", + "copied to clipboard": "تم النسخ إلى الحافظة", + "cost is": "التكلفة هي", + "created time": "وقت الإنشاء", + "de": "de", + "default_tone": "النغمة الافتراضية", + "deleted": "تم الحذف", + "detected": "تم الكشف", + "distance is": "المسافة هي", + "driver' ? 'Invite Driver": "driver' ? 'دعوة سائق", + "driver_license": "رخصة القيادة", + "duration is": "المدة هي", + "e.g., 0912345678": "مثال: 0912345678", + "education": "التعليم", + "el": "el", + "email optional label": "تسمية البريد الإلكتروني الاختياري", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'مرحباً", + "end": "نهاية", + "endName'] ?? 'Destination": "endName'] ?? 'الوجهة", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'موقع الوجهة", + "enter otp validation": "أدخل التحقق من رمز OTP", + "error": "خطأ", + "error'] ?? 'Failed to claim reward": "error'] ?? 'فشل في استلام المكافأة", + "error_processing_document": "خطأ في معالجة المستند", + "es": "es", + "expected": "متوقّع", + "expiration_date": "تاريخ الانتهاء", + "fa": "fa", + "face detect": "كشف الوجه", + "failed to send otp": "فشل في إرسال رمز OTP", + "false": "خطأ", + "first name label": "تسمية الاسم الأول", + "first name required": "الاسم الأول مطلوب", + "for": "لـ", + "for ": "لـ ", + "for transfer fees": "لرسوم التحويل", + "for your first registration!": "لتسجيلك الأول!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 07:30 إلى 10:30 (الخميس، الجمعة، السبت، الاثنين)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 إلى 15:00 (الخميس، الجمعة، السبت، الاثنين)", + "from 23:59 till 05:30": "من 23:59 إلى 05:30", + "from 3 times Take Attention": "من 3 مرات، انتبه", + "from 3:00pm to 6:00 pm": "من 3:00 مساءً إلى 6:00 مساءً", + "from 7:00am to 10:00am": "من 7:00 صباحاً إلى 10:00 صباحاً", + "from your favorites": "من مفضلاتك", + "from your list": "من قائمتك", + "fromBudget": "من الميزانية", + "gender": "الجنس", + "get_a_ride": "احصل على رحلة", + "get_to_destination": "الوصول إلى الوجهة", + "go to your passenger location before": "اذهب إلى موقع راكبك قبل", + "go to your passenger location before\\nPassenger cancel trip": "اذهب إلى موقع راكبك قبل أن يلغي الراكب الرحلة", + "h": "ساعة", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'فرامل قوية", + "has been added to your budget": "تمت إضافته إلى ميزانيتك", + "has completed": "اكتمل", + "hi": "مرحباً", + "hour": "ساعة", + "hours before trying again.": "ساعات قبل المحاولة مرة أخرى.", + "i agree": "أوافق", + "id': 1, 'name': 'Car": "id': 1, 'name': 'سيارة", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'بنزين", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'ديزل", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'دراجة نارية", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'كهربائي", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'فان / باص", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'هجين", + "id_back": "خلفي الهوية", + "id_card_back": "الجانب الخلفي لبطاقة الهوية", + "id_card_front": "الجانب الأمامي لبطاقة الهوية", + "id_front": "أمامي الهوية", + "if you dont have account": "إذا لم يكن لديك حساب", + "if you want help you can email us here": "إذا أردت المساعدة، يمكنك مراسلتنا هنا", + "image verified": "تم التحقق من الصورة", + "in your": "في", + "in your wallet": "في محفظتك", + "incorrect_document_message": "رسالة المستند غير الصحيح", + "incorrect_document_title": "عنوان المستند غير الصحيح", + "insert amount": "أدخل المبلغ", + "is ON for this month": "مُفعَّلة لهذا الشهر", + "is calling you": "يتصل بك", + "is driving a": "يقود", + "is reviewing your order. They may need more information or a higher price.": "يقوم بمراجعة طلبك. قد يحتاجون إلى مزيد من المعلومات أو سعر أعلى.", + "it": "it", + "joined": "انضم", + "kilometer": "كيلومتر", + "last name label": "تسمية اسم العائلة", + "last name required": "اسم العائلة مطلوب", + "ll let you know when the review is complete.": "سنخبرك عندما تكتمل المراجعة.", + "login or register subtitle": "عنوان تسجيل الدخول أو التسجيل", + "m": "م", + "m at the agreed-upon location": "في الموقع المتفق عليه", + "m inviting you to try Siro.": "أدعوكم لتجربة سيرو.", + "m waiting for you": "أنتظركم", + "m waiting for you at the specified location.": "أنتظركم في الموقع المحدد.", + "message From Driver": "رسالة من السائق", + "message From passenger": "رسالة من الراكب", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'حدث خطأ غير معروف في الخادم", + "message'] ?? 'Claim failed": "message'] ?? 'فشل الاستلام", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'فشل إرسال رمز OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'فشل في إنشاء الفاتورة", + "min": "دقيقة", + "minute": "دقيقة", + "minutes before trying again.": "دقائق قبل المحاولة مرة أخرى.", + "model :": "الموديل :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "مواقعي", + "non_id_card_back": "خلفي غير الهوية", + "non_id_card_front": "أمامي غير الهوية", + "not similar": "غير متشابه", + "of": "من", + "on": "على", + "one last step title": "عنوان الخطوة الأخيرة", + "otp sent subtitle": "عنوان إرسال رمز OTP", + "otp sent success": "تم إرسال رمز OTP بنجاح", + "otp verification failed": "فشل التحقق من رمز OTP", + "passenger agreement": "اتفاقية الراكب", + "passenger amount to me": "مبلغ الراكب لي", + "payment_success": "تمت المعاملة بنجاح", + "pending": "قيد الانتظار", + "phone number label": "تسمية رقم الهاتف", + "phone number of driver": "رقم هاتف السائق", + "phone number required": "رقم الهاتف مطلوب", + "please go to picker location exactly": "يرجى الذهاب إلى موقع الالتقاط بالضبط", + "please order now": "يرجى الطلب الآن", + "please wait till driver accept your order": "يرجى الانتظار حتى يقبل السائق طلبك", + "points": "نقاط", + "price is": "السعر هو", + "privacy policy": "سياسة الخصوصية", + "rating_count": "عدد التقييمات", + "rating_driver": "تقييم السائق", + "re eligible for a special offer!": "ستصبح مؤهلاً لعرض خاص!", + "registration failed": "فشل التسجيل", + "registration_date": "تاريخ التسجيل", + "reject your order.": "رفض طلبك.", + "rejected": "مرفوض", + "remaining": "المتبقي", + "reviews": "التقييمات", + "rides": "الرحلات", + "ru": "ru", + "s Degree": "درجة", + "s License": "رخصته", + "s Personal Information": "المعلومات الشخصية", + "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 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. 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!": "حان الوقت للتحقق من تطبيق سيرو!", + "safe_and_comfortable": "آمن ومريح", + "scams operations": "عمليات احتيال", + "scan Car License.": "امسح رخصة السيارة.", + "seconds": "ثوانٍ", + "security_warning": "تحذير أمني", + "send otp button": "زر إرسال رمز OTP", + "server error try again": "خطأ في الخادم، حاول مرة أخرى", + "server_error": "خطأ في الخادم", + "server_error_message": "حدث خطأ في الاتصال بالخادم", + "similar": "متشابه", + "start": "ابدأ", + "startName'] ?? 'Unknown Location": "startName'] ?? 'موقع غير معروف", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'موقع الالتقاط", + "string": "نص", + "syriatel": "سيريتل", + "t an Egyptian phone number": "رقم هاتف مصري", + "t be late": "لا تتأخر", + "t cancel!": "لا تلغي!", + "t continue with us .": "لا يمكنك الاستمرار معنا.", + "t continue with us .\\nYou should renew Driver license": "لا يمكنك الاستمرار معنا.\\nيجب تجديد رخصة القيادة", + "t find a valid route to this destination. Please try selecting a different point.": "لم يتم العثور على طريق صالح لهذه الوجهة. يرجى محاولة اختيار نقطة مختلفة.", + "t forget your personal belongings.": "لا تنسَ ممتلكاتك الشخصية.", + "t forget your ride!": "لا تنسَ رحلتك!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "لم يتم العثور على سائقين بعد. فكّر في زيادة رسوم رحلتك لجعل عرضك أكثر جاذبية للسائقين.", + "t have a code": "ليس لديك رمز", + "t have a phone number.": "ليس لديك رقم هاتف.", + "t have a reason": "ليس لديك سبب", + "t have account": "ليس لديك حساب", + "t have enough money in your Siro wallet": "ليس لديك ما يكفي من الأموال في محفظة سيرو الخاصة بك", + "t moved sufficiently!": "لم تتحرك بشكل كافٍ!", + "t need a ride anymore": "لا تحتاج إلى رحلة بعد الآن", + "t return to use app after 1 month": "لن تتمكن من العودة لاستخدام التطبيق بعد شهر", + "t start trip if not": "لا تبدأ الرحلة إذا لم", + "t start trip if passenger not in your car": "لا تبدأ الرحلة إذا لم يكن الراكب في سيارتك", + "terms of use": "شروط الاستخدام", + "the 300 points equal 300 L.E": "الـ 300 نقطة تساوي 300 جنيه مصري", + "the 300 points equal 300 L.E for you": "الـ 300 نقطة تساوي 300 جنيه مصري لك", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "الـ 300 نقطة تساوي 300 جنيه مصري لك\\nاذهب واستلم أموالك", + "the 3000 points equal 3000 L.E": "الـ 3000 نقطة تساوي 3000 جنيه مصري", + "the 3000 points equal 3000 L.E for you": "الـ 3000 نقطة تساوي 3000 جنيه مصري لك", + "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 دينار أردني", + "the 500 points equal 30 JOD for you": "الـ 500 نقطة تساوي 30 دينار أردني لك", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "الـ 500 نقطة تساوي 30 دينار أردني لك\\nاذهب واستلم أموالك", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "هذا هو عدد جميع رحلاتك في عرض ما بعد الظهر اليوم من 3:00 مساءً إلى 6:00 مساءً", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "هذا هو عدد جميع رحلاتك في عرض ما بعد الظهر اليوم من 3:00 مساءً إلى 6:00 مساءً", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "هذا هو عدد جميع رحلاتك في عرض الصباح اليوم من 7:00 صباحاً إلى 10:00 صباحاً", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "هذا هو عدد جميع رحلاتك في عرض الصباح اليوم من 7:00 صباحاً إلى 10:00 صباحاً", + "this will delete all files from your device": "سيؤدي هذا إلى حذف جميع الملفات من جهازك", + "time Selected": "الوقت المحدد", + "tips": "الإكراميات", + "tips\\nTotal is": "الإكراميات\\nالمجموع هو", + "title': 'scams operations": "title': 'عمليات احتيال", + "to": "إلى", + "to arrive you.": "للوصول إليك.", + "to receive ride requests even when the app is in the background.": "لتلقي طلبات الرحلات حتى عندما يكون التطبيق في الخلفية.", + "to ride with": "للركوب مع", + "token change": "تغيير الرمز", + "token updated": "تم تحديث الرمز", + "towards": "باتجاه", + "tr": "tr", + "transaction_failed": "فشلت المعاملة", + "transaction_id": "معرف المعاملة", + "transfer Successful": "تم التحويل بنجاح", + "trips": "الرحلات", + "true": "صحيح", + "type here": "اكتب هنا", + "unknown_document": "مستند غير معروف", + "upgrade price": "رفع السعر", + "uploaded sucssefuly": "تم الرفع بنجاح", + "ve arrived.": "لقد وصلت.", + "ve been trying to reach you but your phone is off.": "كنت أحاول الوصول إليك ولكن هاتفك مغلق.", + "verify and continue button": "زر التحقق والمتابعة", + "verify your number title": "عنوان التحقق من رقمك", + "vin": "الرقم التعريفي للمركبة (VIN)", + "wait 1 minute to receive message": "انتظر دقيقة واحدة لاستلام الرسالة", + "wallet due to a previous trip.": "محفظة بسبب رحلة سابقة.", + "wallet_credited_message": "تمت إضافة", + "wallet_updated": "تم تحديث المحفظة", + "welcome to siro": "مرحباً بك في سيرو", + "welcome user": "مرحباً بالمستخدم", + "welcome_message": "رسالة الترحيب", + "welcome_to_siro": "مرحباً بك في سيرو", + "whatsapp', phone1, 'Hello": "واتساب', phone1, 'مرحباً", + "with license plate": "مع لوحة الترخيص", + "with type": "مع النوع", + "witout zero": "بدون صفر", + "write Color for your car": "اكتب لون سيارتك", + "write Expiration Date for your car": "اكتب تاريخ انتهاء صلاحية سيارتك", + "write Make for your car": "اكتب ماركة سيارتك", + "write Model for your car": "اكتب موديل سيارتك", + "write Year for your car": "اكتب سنة صنع سيارتك", + "write comment here": "اكتب تعليقك هنا", + "write vin for your car": "اكتب الرقم التعريفي لسيارتك (VIN)", + "year :": "السنة :", + "you are not moved yet !": "لم تتحرك بعد!", + "you can buy": "يمكنك الشراء", + "you can show video how to setup": "يمكنك عرض فيديو حول كيفية الإعداد", + "you canceled order": "لقد ألغيت الطلب", + "you dont have accepted ride": "ليس لديك رحلة مقبولة", + "you gain": "تكسب", + "you have a negative balance of": "لديك رصيد سلبي بقيمة", + "you have connect to passengers and let them cancel the order": "لقد قمت بالتواصل مع الركاب وسمحت لهم بإلغاء الطلب", + "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 use this device?": "هل ستستخدم هذا الجهاز؟", + "your ride is Accepted": "تم قبول رحلتك", + "your ride is applied": "تم تطبيق رحلتك", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة للوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "يتوفر تحديث جديد", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ليرة سورية", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول إلى 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "تاريخ الانتهاء", + "⚠️ You need to choose an amount!": "⚠️ تحتاج إلى اختيار مبلغ!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'تم الوصول إلى المستوى الأقصى!", + "💰 Pay with Wallet": "💰 ادفع عبر المحفظة", + "💳 Pay with Credit Card": "💳 ادفع ببطاقة ائتمان", +}; diff --git a/siro_driver/lib/controller/local/ar_sy.dart b/siro_driver/lib/controller/local/ar_sy.dart index cd9e13c..f3dd469 100644 --- a/siro_driver/lib/controller/local/ar_sy.dart +++ b/siro_driver/lib/controller/local/ar_sy.dart @@ -1,133 +1,121 @@ final Map ar_sy = { - " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": - " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", " and acknowledge our Privacy Policy.": "وبوافق على سياسة الخصوصية.", " is ON for this month": "مفعّلة هذا الشهر", - "\$achievedScore/\$maxScore \${\"points": - "\$achievedScore/\$maxScore \${\"نقطة", - "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'رحلة", - "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'رحلة", - "\$pointFromBudget \${'has been added to your budget": - "\$pointFromBudget \${'تمت إضافته لميزانيتك", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", "\$title \$subtitle": "\$title \$subtitle", - "\${\"amount": "\${\"المبلغ", - "\${\"Minimum transfer amount is": "\${\"أدنى مبلغ للتحويل هو", - "\${\"NationalID": "\${\"الهوية الشخصية", - "\${\"NEXT STEP": "\${\"الخطوة التالية", - "\${\"Passenger cancelled the ride.": "\${\"ألغى الراكب الرحلة.", - "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": - "\${\"إجمالي الميزانيات بالشهر\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", - "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": - "\${\"إجمالي الرحلات بالشهر\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", - "\${\"transaction_id": "\${\"رقم_العملية", - "\${\"Transfer Fee": "\${\"رسوم التحويل", - "\${\"You must leave at least": "\${\"يجب أن تترك على الأقل", - "\${'*Siro APP CODE*": "\${'*كود تطبيق سيرو*", - "\${'*Siro DRIVER CODE*": "\${'*كود سائق سيرو*", - "\${'Address": "\${'العنوان", - "\${'Address: ": "\${'العنوان: ", - "\${'Age": "\${'العمر", - "\${'An unexpected error occurred:": "\${'حدث خطأ غير متوقع:", - "\${'Average of Hours of": "\${'متوسط ساعات", - "\${'Be sure for take accurate images please\nYou have": - "\${'تأكد من التقاط صور واضحة من فضلك\nلديك", - "\${'before": "\${'قبل", - "\${'Car Expire": "\${'انتهاء صلاحية السيارة", - "\${'Car Kind": "\${'نوع السيارة", - "\${'Car Plate": "\${'لوحة السيارة", - "\${'Chassis": "\${'الشاسيه", - "\${'Color": "\${'اللون", - "\${'Date of Birth": "\${'تاريخ الميلاد", - "\${'Date of Birth: ": "\${'تاريخ الميلاد: ", - "\${'Displacement": "\${'الإزاحة", - "\${'Document Number: ": "\${'رقم الوثيقة: ", - "\${'Drivers License Class": "\${'فئة رخصة السائق", - "\${'Drivers License Class: ": "\${'فئة رخصة السائق: ", - "\${'expected": "\${'متوقع", - "\${'Expiry Date": "\${'تاريخ الانتهاء", - "\${'Expiry Date: ": "\${'تاريخ الانتهاء: ", - "\${'Failed to save driver data": "\${'فشل حفظ بيانات السائق", - "\${'Fuel": "\${'الوقود", - "\${'FullName": "\${'الاسم الكامل", - "\${'Height: ": "\${'الطول: ", - "\${'Hi": "\${'أهلاً", - "\${'How can I register as a driver?": "\${'كيف يمكنني التسجيل كسائق؟", - "\${'Inspection Date": "\${'تاريخ الفحص", - "\${'InspectionResult": "\${'نتيجة الفحص", - "\${'IssueDate": "\${'تاريخ الإصدار", - "\${'License Expiry Date": "\${'تاريخ انتهاء الرخصة", - "\${'Made :": "\${'صنع :", - "\${'Make": "\${'الماركة", - "\${'Model": "\${'الموديل", - "\${'model :": "\${'موديل :", - "\${'Name": "\${'الاسم", - "\${'Name :": "\${'الاسم :", - "\${'Name in arabic": "\${'الاسم بالعربي", - "\${'National Number": "\${'الرقم القومي", - "\${'NationalID": "\${'الهوية الشخصية", - "\${'Next Level:": "\${'المستوى التالي:", - "\${'OrderId": "\${'رقم_الطلب", - "\${'Owner Name": "\${'اسم المالك", - "\${'Plate Number": "\${'رقم اللوحة", - "\${'Please enter": "\${'الرجاء إدخال", - "\${'Please wait": "\${'يرجى الانتظار", - "\${'Price:": "\${'السعر:", - "\${'Remaining:": "\${'المتبقي:", - "\${'Ride": "\${'رحلة", - "\${'Tax Expiry Date": "\${'تاريخ انتهاء الضريبة", - "\${'The price must be over than ": "\${'يجب أن يكون السعر أعلى من ", - "\${'The reason is": "\${'السبب هو", - "\${'Transaction successful": "\${'تمت العملية بنجاح", - "\${'Update": "\${'تحديث", - "\${'VIN :": "\${'رقم الهيكل :", - "\${'wallet_credited_message": "\${'تم إضافة الرصيد للمحفظة", - "\${'We have sent a verification code to your mobile number:": - "\${'لقد أرسلنا رمز تحقق إلى رقم هاتفك:", - "\${'When": "\${'متى", - "\${'Year": "\${'السنة", - "\${'year :": "\${'سنة :", - "\${'You can resend in": "\${'يمكنك إعادة الإرسال خلال", - "\${'You gained": "\${'لقد ربحت", - "\${'You have call from driver": "\${'لديك مكالمة من السائق", - "\${'You have in account": "\${'لديك في الحساب", - "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": - "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", "\${'الوقت المتبقي": "\${'الوقت المتبقي", "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", - "\${'ُExpire Date": "\${'تاريخ الانتهاء", - "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": - "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'رحلة", - "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": - "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'رحلة", - "\${captainWalletController.totalAmountVisa} \${'ل.س": - "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", - "\${controller.totalPoints} / \${next.minPoints} \${'Points": - "\${controller.totalPoints} / \${next.minPoints} \${'نقطة", - "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'رحلة", - "\${firstNameController.text} \${lastNameController.text}": - "\${firstNameController.text} \${lastNameController.text}", - "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": - "\${gc.unlockedCount}/\${gc.totalAchievements} \${'إنجاز", - "\${rating.toStringAsFixed(1)} (\${'reviews": - "\${rating.toStringAsFixed(1)} (\${'مراجعة", - "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'نشط", - "\${rc.totalReferrals}', 'Total Invites": - "\${rc.totalReferrals}', 'إجمالي الدعوات", - "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": - "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'مكافآت", - "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'يوم", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", "'": "'", - "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"نص", - "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"نص", - "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": - "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"نص", - "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": - "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"نص", - "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'نص", - "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'نص", - "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": - "([^']+)'\\.tr\\(\\w+\\)\"), // 'نص", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"نص", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"نص", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"نص", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"نص", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'نص", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'نص", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'نص", ")[1]}": ")[1]}", "*Siro APP CODE*": "*كود تطبيق سيرو*", "*Siro DRIVER CODE*": "*كود سائق سيرو*", @@ -137,28 +125,36 @@ final Map ar_sy = { "-5% commission": "خصم 5% من العمولة", ". I am at least 18 years of age.": ". عمري 18 سنة أو أكثر.", ". I am at least 18 years old.": ". عمري 18 سنة أو أكثر.", - ". The app will connect you with a nearby driver.": - ". التطبيق رح يربطك بسائق قريب منك.", - "0.05 \${'JOD": "0.05 \${'د.أ", - "0.47 \${'JOD": "0.47 \${'د.أ", - "1 \${'JOD": "1 \${'د.أ", - "1 \${'LE": "1 \${'ل.م", + ". The app will connect you with a nearby driver.": ". التطبيق رح يربطك بسائق قريب منك.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'د.أ", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'د.أ", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'د.أ", + "1 \\\${'LE": "1 \\\${'ل.م", "1', 'Share your code": "1', 'شارك كودك", "1. Describe Your Issue": "1. صف مشكلتك", "1. Select Ride": "1. اختر الرحلة", "10 and get 4% discount": "10 واحصل على خصم 4%", "100 and get 11% discount": "100 واحصل على خصم 11%", - "15 \${'LE": "15 \${'ل.م", - "15000 \${'LE": "15000 \${'ل.م", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'ل.م", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'ل.م", "1999": "1999", "2', 'Friend signs up": "2', 'صديقك يسجّل", "2. Attach Recorded Audio": "2. أرفق التسجيل الصوتي", "2. Attach Recorded Audio (Optional)": "2. أرفق التسجيل الصوتي (اختياري)", "2. Describe Your Issue": "2. اكتب وصفاً للمشكلة", - "20 \${'LE": "20 \${'ل.م", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'ل.م", "20 and get 6% discount": "20 واحصل على خصم 6%", - "200 \${'JOD": "200 \${'د.أ", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'د.أ", "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", "3 digit": "3 أرقام", "3', 'Both earn rewards": "3', 'كلاكما يكسب مكافآت'", "3. Attach Recorded Audio (Optional)": "3. أرفق التسجيل الصوتي (اختياري)", @@ -170,65 +166,54 @@ final Map ar_sy = { "40 and get 8% discount": "40 واحصل على خصم 8%", "5 digit": "5 أرقام", "<< BACK": "<< رجوع", - "\\\$": "\\\$", - "\\\$error": "حدث خطأ", - "\\\$pricePoint": "\\\$pricePoint", - "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", - "\\\${AppInformation.appName} Wallet": "محفظة \\\${AppInformation.appName}", - "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": - "\nكمان بنعطي أولوية للتوفير، بنقدّم أسعار منافسة عشان الرحلات تكون بمتناول إيدك.", "A connection error occurred": "حدث خطأ في الاتصال", - "A new version of the app is available. Please update to the latest version.": - "يتوفر إصدار جديد من التطبيق. يرجى التحديث إلى أحدث إصدار.", - "A promotion record for this driver already exists for today.": - "يوجد سجل ترويجي لهذا السائق مسجّل اليوم.", - "A trip with a prior reservation, allowing you to choose the best captains and cars.": - "رحلة محجوزة مسبقاً، بتقدر تختار فيها أحسن السواقين والسيارات.", + "A new version of the app is available. Please update to the latest version.": "يتوفر إصدار جديد من التطبيق. يرجى التحديث إلى أحدث إصدار.", + "A promotion record for this driver already exists for today.": "يوجد سجل ترويجي لهذا السائق مسجّل اليوم.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "رحلة محجوزة مسبقاً، بتقدر تختار فيها أحسن السواقين والسيارات.", + "AI Page": "صفحة الذكاء الاصطناعي", + "AI failed to extract info": "فشل الذكاء الاصطناعي في استخراج المعلومات", + "ATTIJARIWAFA BANK Egypt": "بنك التجاري الوفاء مصر", "About Us": "من نحن", "Abu Dhabi Commercial Bank – Egypt": "بنك أبوظبي التجاري – مصر", "Abu Dhabi Islamic Bank – Egypt": "بنك أبوظبي الإسلامي – مصر", "Accept": "قبول", "Accept Order": "اقبل الطلب", "Accept Ride": "اقبل الرحلة", - "accepted": "مقبول", "Accepted Ride": "تم قبول الرحلة", "Accepted your order": "قبل طلبك", - "accepted your order": "قبل طلبك", - "accepted your order at price": "قبل طلبك بسعر", "Account": "الحساب", "Account Updated": "تم تحديث الحساب", "Achievements": "الإنجازات", "Active Duration": "مدة النشاط", "Active Duration:": "مدة النشاط:", "Active Ride": "الرحلة النشطة", - "Active ride in progress. Leaving might stop tracking. Exit?": - "في مشوار شغال هلق. الخروج ممكن يوقف التتبع. بدك تطلع؟", "Active Users": "المستخدمين النشطين", + "Active ride in progress. Leaving might stop tracking. Exit?": "في مشوار شغال هلق. الخروج ممكن يوقف التتبع. بدك تطلع؟", "Activities": "النشاطات", - "Add a comment (optional)": "إضافة تعليق (اختياري)", - "Add a Stop": "أضف محطة", "Add Balance": "إضافة رصيد", - "Add bank Account": "إضافة حساب بنكي", "Add Card": "إضافة بطاقة", "Add Credit Card": "إضافة بطاقة ائتمان", - "Add criminal page": "إضافة صحيفة الحالة الجنائية", - "Add funds using our secure methods": "أضف رصيد بطرقنا الآمنة", "Add Home": "أضف المنزل", "Add Location": "أضف موقعاً", "Add Location 1": "أضف موقعاً 1", "Add Location 2": "أضف موقعاً 2", "Add Location 3": "أضف موقعاً 3", "Add Location 4": "أضف موقعاً 4", - "Add new car": "إضافة سيارة جديدة", "Add Payment Method": "إضافة طريقة دفع", "Add Phone": "إضافة هاتف", "Add Promo": "أضف كوداً ترويجياً", "Add Question": "إضافة سؤال", "Add SOS Phone": "أضف رقم طوارئ", "Add Stops": "إضافة محطات", + "Add Work": "أضف العمل", + "Add a Stop": "أضف محطة", + "Add a comment (optional)": "إضافة تعليق (اختياري)", + "Add bank Account": "إضافة حساب بنكي", + "Add criminal page": "إضافة صحيفة الحالة الجنائية", + "Add funds using our secure methods": "أضف رصيد بطرقنا الآمنة", + "Add new car": "إضافة سيارة جديدة", "Add to Passenger Wallet": "إضافة لمحفظة الراكب", "Add wallet phone you use": "أضف رقم المحفظة اللي عم تستخدمه", - "Add Work": "أضف العمل", "Address": "العنوان", "Address:": "العنوان:", "Admin DashBoard": "لوحة تحكم المسؤول", @@ -237,117 +222,84 @@ final Map ar_sy = { "Afternoon Promo": "عرض الظهيرة", "Afternoon Promo Rides": "رحلات عرض الظهيرة", "Age": "العمر", - "age": "العمر", "Age is": "العمر هو", - "agreement subtitle": "عنوان الاتفاقية", "Agricultural Bank of Egypt": "البنك الزراعي المصري", "Ahli United Bank": "Ahli United Bank", - "AI failed to extract info": "فشل الذكاء الاصطناعي في استخراج المعلومات", - "AI Page": "صفحة الذكاء الاصطناعي", "Air condition Trip": "رحلة مكيفة", - "airport": "المطار", "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", "Alert": "تنبيه", - "alert": "تنبيه", "Alerts": "التنبيهات", "Alex Bank Egypt": "بنك الإسكندرية مصر", "Allow Location Access": "اسمح بالوصول للموقع", "Allow overlay permission": "اسمح بصلاحية العرض فوق التطبيقات", - "Allowing location access will help us display orders near you. Please enable it now.": - "السماح بالوصول للموقع رح يساعدنا نعرض الطلبات القريبة منك. تفضّل فعّله هلق.", + "Allowing location access will help us display orders near you. Please enable it now.": "السماح بالوصول للموقع رح يساعدنا نعرض الطلبات القريبة منك. تفضّل فعّله هلق.", "Already have an account? Login": "هل لديك حساب بالفعل؟ تسجيل الدخول", "Amount": "المبلغ", - "amount": "المبلغ", "Amount to charge:": "المبلغ المطلوب شحنه:", - "amount_paid": "المبلغ المدفوع", - "An application error occurred during upload.": - "حدث خطأ في التطبيق أثناء الرفع.", + "An OTP has been sent to your number.": "تم إرسال رمز التحقق لرقمك.", + "An application error occurred during upload.": "حدث خطأ في التطبيق أثناء الرفع.", "An application error occurred.": "حدث خطأ في التطبيق.", "An error occurred": "حدث خطأ", - "an error occurred": "حدث خطأ", - "An error occurred during contact sync: \$e": - "حدث خطأ أثناء مزامنة جهات الاتصال: \$e", - "An error occurred during contact sync: \\\$e": - "حدث خطأ بمزامنة جهات الاتصال: \\\$e", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "حدث خطأ أثناء مزامنة جهات الاتصال: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "حدث خطأ بمزامنة جهات الاتصال: \\\\\\\$e", "An error occurred during the payment process.": "حدث خطأ في عملية الدفع.", - "An error occurred while connecting to the server.": - "حدث خطأ أثناء الاتصال بالخادم.", - "An error occurred while loading contacts: \$e": - "حدث خطأ أثناء تحميل جهات الاتصال: \$e", - "An error occurred while loading contacts: \\\$e": - "حدث خطأ وقت تحميل جهات الاتصال: \\\$e", + "An error occurred while connecting to the server.": "حدث خطأ أثناء الاتصال بالخادم.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "حدث خطأ أثناء تحميل جهات الاتصال: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "حدث خطأ وقت تحميل جهات الاتصال: \\\\\\\$e", "An error occurred while picking a contact": "حدث خطأ وقت اختيار جهة اتصال", - "An error occurred while picking contacts:": - "حدث خطأ وقت اختيار جهات الاتصال:", + "An error occurred while picking contacts:": "حدث خطأ وقت اختيار جهات الاتصال:", "An error occurred while saving driver data": "حدث خطأ وقت حفظ بيانات السائق", - "An OTP has been sent to your number.": "تم إرسال رمز التحقق لرقمك.", - "An unexpected error occurred. Please try again.": - "حدث خطأ غير متوقع. يرجى المحاولة مرة أخرى.", + "An unexpected error occurred. Please try again.": "حدث خطأ غير متوقع. يرجى المحاولة مرة أخرى.", "An unexpected error occurred:": "حدث خطأ غير متوقع:", "An unknown server error occurred": "حدث خطأ غير معروف في الخادم.", - "and acknowledge our": "ونوافق على", - "and acknowledge our Privacy Policy.": "ونوافق على سياسة الخصوصية.", - "and acknowledge the": "ونوافق على", - "and I have a trip on": "وعندي رحلة بـ", + "And acknowledge our": "وأوافق على", "Any comments about the passenger?": "في أي تعليق على الراكب؟", "App Dark Mode": "الوضع الليلي للتطبيق", "App Preferences": "تفضيلات التطبيق", "App with Passenger": "التطبيق مع الراكب", - "app_description": "وصف التطبيق", "Applied": "تم التطبيق", "Apply": "تطبيق", "Apply Order": "تطبيق الطلب", "Apply Promo Code": "طبّق كود الخصم", - "Approaching your area. Should be there in 3 minutes.": - "عم يقرب من منطقتك. رح يوصل خلال 3 دقايق.", + "Approaching your area. Should be there in 3 minutes.": "عم يقرب من منطقتك. رح يوصل خلال 3 دقايق.", "Approve Driver Documents": "الموافقة على وثائق السائق", - "ar": "ar", - "ar-gulf": "ar-gulf", - "ar-ma": "ar-ma", "Arab African International Bank": "العربي الأفريقي الدولي", "Arab Bank PLC": "البنك العربي", "Arab Banking Corporation - Egypt S.A.E": "الشركة العربية المصرفية - مصر", "Arab International Bank": "البنك العربي الدولي", "Arab Investment Bank": "بنك الاستثمار العربي", + "Are You sure to LogOut?": "هل أنت متأكد من تسجيل الخروج؟", + "Are You sure to ride to": "متأكد إنك بدك تروح لـ", + "Are you Sure to LogOut?": "متأكد إنك بدك تطلع من الحساب؟", "Are you sure to cancel?": "متأكد إنك بدك تلغي؟", - "Are you sure to delete recorded files": - "متأكد إنك بدك تحذف الملفات المسجلة؟", + "Are you sure to delete recorded files": "متأكد إنك بدك تحذف الملفات المسجلة؟", "Are you sure to delete this location?": "متأكد إنك بدك تحذف هذا الموقع؟", "Are you sure to delete your account?": "متأكد إنك بدك تحذف حسابك؟", "Are you sure to exit ride ?": "متأكد إنك بدك تخرج من الرحلة؟", "Are you sure to exit ride?": "متأكد إنك بدك تخرج من الرحلة؟", - "Are you Sure to LogOut?": "متأكد إنك بدك تطلع من الحساب؟", - "Are you sure to make this car as default": - "متأكد إنك بدك تخلي هالسيارة الافتراضية؟", - "Are You sure to ride to": "متأكد إنك بدك تروح لـ", - "Are you sure you want to cancel and collect the fee?": - "متأكد إنك بدك تلغي وتستلم الرسوم؟", + "Are you sure to make this car as default": "متأكد إنك بدك تخلي هالسيارة الافتراضية؟", + "Are you sure you want to cancel and collect the fee?": "متأكد إنك بدك تلغي وتستلم الرسوم؟", "Are you sure you want to cancel this trip?": "متأكد إنك بدك تلغي هالرحلة؟", "Are you sure you want to logout?": "متأكد إنك بدك تطلع من الحساب؟", "Are you sure?": "متأكد؟", - "Are you sure? This action cannot be undone.": - "متأكد؟ هالعملية ما فيها رجعة.", + "Are you sure? This action cannot be undone.": "متأكد؟ هالعملية ما فيها رجعة.", "Are you want to change": "بدك تغير", "Are you want to go this site": "بدك تروح لهالموقع؟", "Are you want to go to this site": "بدك تروح لهالموقع؟", - "Are you want to wait drivers to accept your order": - "بدك تستنى السواقين يقبلوا طلبك؟", + "Are you want to wait drivers to accept your order": "بدك تستنى السواقين يقبلوا طلبك؟", "Arrival time": "وقت الوصول", - "arrival time to reach your point": "وقت الوصول لنقطتك", - "as the driver.": "كسائق.", "Associate Degree": "شهادة الدبلوم المشارك", - "attach audio of complain": "أرفق صوت الشكوى", - "attach correct audio": "أرفق الصوت الصحيح", "Attach this audio file?": "ترفق هذا الملف الصوتي؟", "Attention": "انتباه", - "ATTIJARIWAFA BANK Egypt": "بنك التجاري الوفاء مصر", "Audio file not attached": "لا يوجد ملف صوتي مرفق", "Audio uploaded successfully.": "تم رفع الملف الصوتي بنجاح.", "Authentication failed": "فشل المصادقة", "Available Balance": "الرصيد المتاح", - "Available for rides": "متاح للرحلات", "Available Rides": "الرحلات المتاحة", + "Available for rides": "متاح للرحلات", "Average of Hours of": "متوسط ساعات", "Awaiting response...": "عم نستنى الرد...", "Awfar Car": "سيارة أوفر", @@ -360,52 +312,34 @@ final Map ar_sy = { "Balance not enough": "الرصيد غير كافٍ", "Balance:": "الرصيد:", "Bank Account": "حساب بنكي", - "Bank account added successfully": "تمت إضافة الحساب البنكي بنجاح", "Bank Card Payment": "الدفع ببطاقة بنكية", + "Bank account added successfully": "تمت إضافة الحساب البنكي بنجاح", "Banque Du Caire": "بنك القاهرة", "Banque Misr": "بنك مصر", "Basic features": "ميزات أساسية", "Be Slowly": "خفّف السرعة", - "be sure": "تأكد", "Be sure for take accurate images please": "تأكد إنك تلتقط صور واضحة من فضلك", - "Be sure for take accurate images please\nYou have": - "تأكد إنك تلتقط صور واضحة من فضلك\nلديك", - "Be sure to use it quickly! This code expires at": - "تأكد تستخدمه بسرعة! هالكود بينتهي بـ", - "Because we are near, you have the flexibility to choose the ride that works best for you.": - "لأننا قريبين، عندك حرية تختار الرحلة اللي أنسب لك.", - "before": "قبل", - "Before we start, please review our terms.": - "قبل ما نبدأ، تفضّل راجع شروطنا.", + "Be sure for take accurate images please\\nYou have": "تأكد إنك تلتقط صور واضحة من فضلك\\nلديك", + "Be sure to use it quickly! This code expires at": "تأكد تستخدمه بسرعة! هالكود بينتهي بـ", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "لأننا قريبين، عندك حرية تختار الرحلة اللي أنسب لك.", + "Before we start, please review our terms.": "قبل ما نبدأ، تفضّل راجع شروطنا.", "Behavior Page": "صفحة السلوك", "Behavior Score": "درجة السلوك", - "below, I confirm that I have read and agree to the": - "أدناه، أؤكد أنني قرأت ووافقت على", - "below, I have reviewed and agree to the Terms of Use and acknowledge the": - "أدناه، راجعت ووافقت على شروط الاستخدام وأوافق على", - "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": - "أدناه، راجعت ووافقت على شروط الاستخدام وأوافق على سياسة الخصوصية. عمري 18 سنة أو أكثر.", - "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": - "أحسن خيار لسيارة مريحة بطريق مرن ومحطات توقف. هذا المطار بيوفر تأشيرة دخول بهالسعر.", - "Best choice for cities": "أحسن خيار للمدن", - "Best choice for comfort car and flexible route and stops point": - "أحسن خيار لسيارة مريحة وطريق مرن ومحطات توقف", "Best Day": "أفضل يوم", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "أحسن خيار لسيارة مريحة بطريق مرن ومحطات توقف. هذا المطار بيوفر تأشيرة دخول بهالسعر.", + "Best choice for cities": "أحسن خيار للمدن", + "Best choice for comfort car and flexible route and stops point": "أحسن خيار لسيارة مريحة وطريق مرن ومحطات توقف", "Biometric Authentication": "المصادقة البيومترية", "Birth Date": "تاريخ الميلاد", "Birth year must be 4 digits": "سنة الميلاد لازم تكون 4 أرقام", - "birthdate": "تاريخ الميلاد", "Birthdate Mismatch": "عدم تطابق تاريخ الميلاد", - "Birthdate on ID front and back does not match.": - "تاريخ الميلاد بالهوية من الأمام والخلف ما بيتطابق.", + "Birthdate on ID front and back does not match.": "تاريخ الميلاد بالهوية من الأمام والخلف ما بيتطابق.", "Blom Bank": "بنك بلوم", "Bonus gift": "هدية بونص", - "bonus_added": "البونص المضاف", "BookingFee": "رسوم الحجز", "Bottom Bar Example": "مثال الشريط السفلي", "But you have a negative salary of": "بس عندك رصيد سلبي بقيمة", - "by": "بواسطة", - "by this list below": "بهالقائمة تحت", + "CODE": "الكود", "Calculating...": "عم نحسب...", "Call": "اتصل", "Call Connected": "تم فتح الاتصال", @@ -421,15 +355,13 @@ final Map ar_sy = { "Call Passenger": "اتصل بالراكب", "Call Support": "اتصل بالدعم", "Calling": "عم نتصل بـ", - "Calling non-Syrian numbers is not supported": - "الاتصال بالأرقام غير السورية غير مدعوم", + "Calling non-Syrian numbers is not supported": "الاتصال بالأرقام غير السورية غير مدعوم", "Camera Access Denied.": "تم رفض الوصول للكاميرا.", "Camera not initialized yet": "الكاميرا ما تجهزت بعد", "Camera not initilaized yet": "الكاميرا ما تجهزت بعد", "Can I cancel my ride?": "مقدر ألغي رحلتي؟", "Can we know why you want to cancel Ride ?": "ممكن نعرف ليش بدك تلغي الرحلة؟", "Cancel": "إلغاء", - "cancel": "إلغاء", "Cancel & Collect Fee": "إلغاء واستلام الرسوم", "Cancel Ride": "إلغاء الرحلة", "Cancel Search": "إلغاء البحث", @@ -442,19 +374,14 @@ final Map ar_sy = { "Cancelled by Passenger": "تم الإلغاء بواسطة الراكب", "Cannot apply further discounts.": "لا يمكن تطبيق خصومات إضافية.", "Captain": "الكابتن", - "Capture an Image of Your car license back": - "التقط صورة للوجه الخلفي لرخصة السيارة", - "Capture an Image of Your car license front": - "التقط صورة للوجه الأمامي لرخصة السيارة", - "Capture an Image of Your car license front ": - "التقط صورة للوجه الأمامي لرخصة السيارة", - "Capture an Image of Your Criminal Record": - "التقط صورة لصحيفة الحالة الجنائية", + "Capture an Image of Your Criminal Record": "التقط صورة لصحيفة الحالة الجنائية", "Capture an Image of Your Driver License": "التقط صورة لرخصة السائق", "Capture an Image of Your Driver’s License": "التقط صورة لرخصة السائق", "Capture an Image of Your ID Document Back": "التقط صورة للوجه الخلفي للهوية", - "Capture an Image of Your ID Document front": - "التقط صورة للوجه الأمامي للهوية", + "Capture an Image of Your ID Document front": "التقط صورة للوجه الأمامي للهوية", + "Capture an Image of Your car license back": "التقط صورة للوجه الخلفي لرخصة السيارة", + "Capture an Image of Your car license front": "التقط صورة للوجه الأمامي لرخصة السيارة", + "Capture an Image of Your car license front ": "التقط صورة للوجه الأمامي لرخصة السيارة", "Car": "سيارة", "Car Color": "لون السيارة", "Car Color (Hex)": "لون السيارة (كود)", @@ -469,24 +396,16 @@ final Map ar_sy = { "Car Model (e.g., Corolla)": "موديل السيارة (مثال: كورولا)", "Car Model:": "موديل السيارة:", "Car Plate": "لوحة السيارة", - "Car Plate is": "لوحة السيارة هي", "Car Plate Number": "رقم لوحة السيارة", + "Car Plate is": "لوحة السيارة هي", "Car Plate:": "لوحة السيارة:", "Car Registration (Back)": "رخصة السيارة (خلفي)", "Car Registration (Front)": "رخصة السيارة (أمامي)", "Car Type": "نوع السيارة", - "car_back": "خلفي السيارة", - "car_color": "لون السيارة", - "car_front": "أمامي السيارة", - "car_license_back": "الجانب الخلفي لرخصة السيارة", - "car_license_front": "الجانب الأمامي لرخصة السيارة", - "car_model": "موديل السيارة", - "car_plate": "لوحة السيارة", "Card Earnings": "أرباح البطاقة", "Card Number": "رقم البطاقة", "Card Payment": "الدفع بالبطاقة", "CardID": "رقم البطاقة", - "carType'] ?? 'Fixed Price": "carType'] ?? 'سعر ثابت", "Cash": "نقداً", "Cash Earnings": "أرباح نقدية", "Cash Out": "سحب الرصيد", @@ -494,26 +413,24 @@ final Map ar_sy = { "Century Rider": "سائق المئة", "Challenges": "التحديات", "Change Country": "تغيير البلد", - "change device": "تغيير الجهاز", "Change Home location?": "تغيير موقع المنزل؟", "Change Ride": "تغيير الرحلة", "Change Route": "تغيير الطريق", - "Change the app language": "تغيير لغة التطبيق", "Change Work location?": "تغيير موقع العمل؟", + "Change the app language": "تغيير لغة التطبيق", "Charge your Account": "اشحن حسابك", "Charge your account.": "اشحن حسابك.", "Chassis": "الشاسيه", "Check back later for new offers!": "ارجع لاحقاً لعروض جديدة!", "Checking for updates...": "عم نتحقق من التحديثات...", + "Choose Claim Method": "اختر طريقة الاستلام", + "Choose Language": "اختر اللغة", "Choose a contact option": "اختر خيار جهة اتصال", "Choose between those Type Cars": "اختر بين هالأنواع من السيارات", - "Choose Claim Method": "اختر طريقة الاستلام", - "Choose from contact": "اختر من جهات الاتصال", "Choose from Map": "اختر من الخريطة", + "Choose from contact": "اختر من جهات الاتصال", "Choose how you want to call the passenger": "اختر كيف بدك تتصل بالراكب", - "Choose Language": "اختر اللغة", - "Choose the trip option that perfectly suits your needs and preferences.": - "اختر خيار الرحلة اللي بيناسب احتياجاتك وتفضيلاتك تماماً.", + "Choose the trip option that perfectly suits your needs and preferences.": "اختر خيار الرحلة اللي بيناسب احتياجاتك وتفضيلاتك تماماً.", "Choose who this order is for": "اختر هذا الطلب لمين", "Choose your ride": "اختر رحلتك", "Citi Bank N.A. Egypt": "سيتي بنك مصر", @@ -522,14 +439,13 @@ final Map ar_sy = { "Claim Reward": "استلام المكافأة", "Claim your 20 LE gift for inviting": "استلم هديتك 20 ل.م عشان الدعوة", "Claimed": "تم الاستلام", - "Click here point": "اضغط هون", - "Click here to Show it in Map": "اضغط هون لعرضها بالخريطة", "CliQ": "CliQ", "CliQ Payment": "دفع عبر CliQ", + "Click here point": "اضغط هون", + "Click here to Show it in Map": "اضغط هون لعرضها بالخريطة", "Close": "إغلاق", "Closest & Cheapest": "الأقرب والأرخص", "Closest to You": "الأقرب إليك", - "CODE": "الكود", "Code": "الكود", "Code approved": "تمت الموافقة على الكود", "Code copied!": "تم نسخ الكود!", @@ -538,6 +454,1854 @@ final Map ar_sy = { "Collect Payment": "استلم الدفع", "Color": "اللون", "Color is": "اللون هو", + "Comfort": "كومفورت", + "Comfort choice": "خيار مريح", + "Comfort ❄️": "كومفورت ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "كومفورت: للسيارات موديل 2017 وما فوق مع تكييف.", + "Coming Soon": "قريباً", + "Commercial International Bank - Egypt S.A.E": "البنك التجاري الدولي - مصر", + "Commission": "العمولة", + "Communication": "التواصل", + "Compatible, you may notice some slowness": "متوافق، بس ممكن تلاحظ شوية بطء", + "Compensation Received": "تم استلام التعويض", + "Complaint": "شكوى", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "لا يمكن تقديم شكوى لهذه الرحلة. قد لا تكون مكتملة أو لم تبدأ بعد.", + "Complaint data saved successfully": "تم حفظ بيانات الشكوى بنجاح", + "Complete 100 trips": "أكمل 100 رحلة", + "Complete 50 trips": "أكمل 50 رحلة", + "Complete 500 trips": "أكمل 500 رحلة", + "Complete Payment": "إتمام الدفع", + "Complete your first trip": "أكمل أول رحلة لك", + "Completed": "مكتملة", + "Confirm": "تأكيد", + "Confirm & Find a Ride": "تأكيد والبحث عن رحلة", + "Confirm Attachment": "تأكيد المرفق", + "Confirm Cancellation": "تأكيد الإلغاء", + "Confirm Payment": "تأكيد الدفع", + "Confirm Pick-up Location": "تأكيد موقع الالتقاط", + "Confirm Selection": "تأكيد الاختيار", + "Confirm Trip": "تأكيد الرحلة", + "Confirm payment with biometrics": "تأكيد الدفع بالبصمة", + "Confirm your Email": "تأكيد بريدك الإلكتروني", + "Confirmation": "تأكيد", + "Connected": "متصل", + "Connecting...": "عم يتم الاتصال...", + "Connection error": "خطأ في الاتصال", + "Contact Options": "خيارات التواصل", + "Contact Support": "تواصل مع الدعم", + "Contact Support to Recharge": "تواصل مع الدعم للشحن", + "Contact Us": "تواصل معنا", + "Contact permission is required to pick a contact": "مطلوب صلاحية جهات الاتصال عشان تختار جهة اتصال", + "Contact permission is required to pick contacts": "مطلوب صلاحية جهات الاتصال عشان تختار جهات اتصال", + "Contact us for any questions on your order.": "تواصل معنا لأي سؤال عن طلبك.", + "Contacts Loaded": "تم تحميل جهات الاتصال", + "Contacts sync completed successfully!": "تمت مزامنة جهات الاتصال بنجاح!", + "Continue": "متابعة", + "Continue Ride": "متابعة الرحلة", + "Continue straight": "كمل على خط مستقيم", + "Continue to App": "أكمل للتطبيق", + "Copy": "نسخ", + "Copy Code": "نسخ الكود", + "Copy this Promo to use it in your Ride!": "انسخ هذا العرض عشان تستخدمه برحلتك!", + "Cost": "التكلفة", + "Cost Duration": "مدة التكلفة", + "Cost Of Trip IS": "تكلفة الرحلة هي", + "Could not load trip details.": "تعذر تحميل تفاصيل الرحلة.", + "Could not start ride. Please check internet.": "تعذر بدء الرحلة. يرجى التحقق من الإنترنت.", + "Counts of Hours on days": "عدد الساعات بالأيام", + "Counts of budgets on days": "عدد الميزانيات بالأيام", + "Counts of rides on days": "عدد الرحلات بالأيام", + "Create Account": "إنشاء حساب", + "Create Account with Email": "إنشاء حساب بالبريد الإلكتروني", + "Create Driver Account": "إنشاء حساب سائق", + "Create Wallet to receive your money": "أنشئ محفظة عشان تستلم فلوسك", + "Create new Account": "إنشاء حساب جديد", + "Credit": "رصيد", + "Credit Agricole Egypt S.A.E": "كريدي أجريكول مصر", + "Credit card is": "بطاقة الائتمان هي", + "Criminal Document": "الوثيقة الجنائية", + "Criminal Document Required": "مطلوب وثيقة جنائية", + "Criminal Record": "صحيفة الحالة الجنائية", + "Cropper": "أداة القص", + "Current Balance": "الرصيد الحالي", + "Current Location": "الموقع الحالي", + "Customer MSISDN doesn’t have customer wallet": "رقم هاتف العميل لا يحتوي على محفظة عميل", + "Customer not found": "لم يتم العثور على العميل", + "Customer phone is not active": "هاتف العميل غير نشط", + "DISCOUNT": "خصم", + "DRIVER123": "DRIVER123", + "Daily Challenges": "التحديات اليومية", + "Daily Goal": "الهدف اليومي", + "Date": "التاريخ", + "Date and Time Picker": "اختيار التاريخ والوقت", + "Date of Birth": "تاريخ الميلاد", + "Date of Birth is": "تاريخ الميلاد هو", + "Date of Birth:": "تاريخ الميلاد:", + "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سيرو ،", + "Debit": "خصم", + "Debit Card": "بطاقة خصم", + "Dec 15 - Dec 21, 2024": "15 كانون الأول - 21 كانون الأول 2024", + "Decline": "رفض", + "Delete": "حذف", + "Delete My Account": "احذف حسابي", + "Delete Permanently": "حذف نهائي", + "Deleted": "محذوف", + "Delivery": "توصيل", + "Destination": "الوجهة", + "Destination Location": "موقع الوجهة", + "Destination selected": "تم اختيار الوجهة", + "Detect Your Face": "اكتشاف وجهك", + "Detect Your Face ": "اكتشاف وجهك", + "Device Change Detected": "تم اكتشاف تغيير الجهاز", + "Device Compatibility": "توافق الجهاز", + "Diamond badge": "وسام ألماسي", + "Diesel": "ديزل", + "Directions": "الاتجاهات", + "Displacement": "الإزاحة", + "Distance": "المسافة", + "Distance To Passenger is": "المسافة للراكب هي", + "Distance from Passenger to destination is": "المسافة من الراكب للوجهة هي", + "Distance is": "المسافة هي", + "Distance of the Ride is": "مسافة الرحلة هي", + "Do you have a disease for a long time?": "عندك مرض مزمن من زمان؟", + "Do you have an invitation code from another driver?": "عندك كود دعوة من سائق تاني؟", + "Do you want to change Home location": "بدك تغير موقع المنزل؟", + "Do you want to change Work location": "بدك تغير موقع العمل؟", + "Do you want to collect your earnings?": "بدك تجمع أرباحك؟", + "Do you want to go to this location?": "بدك تروح لهالموقع؟", + "Do you want to pay Tips for this Driver": "بدك تدفع إكرامية لهالسائق؟", + "Docs": "المستندات", + "Doctoral Degree": "دكتوراه", + "Document Number:": "رقم الوثيقة:", + "Documents check": "فحص المستندات", + "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 app now:": "حمّل التطبيق هلق:", + "Drawing route on map...": "عم نرسم الطريق على الخريطة...", + "Driver": "السائق", + "Driver Accepted Request": "السائق قبل الطلب", + "Driver Accepted the Ride for You": "السائق قبل الرحلة لك", + "Driver Agreement": "اتفاقية السائق", + "Driver Applied the Ride for You": "السائق قدم على الرحلة لك", + "Driver Balance": "رصيد السائق", + "Driver Behavior": "سلوك السائق", + "Driver Cancel Your Trip": "السائق ألغى رحلتك", + "Driver Cancelled Your Trip": "السائق ألغى رحلتك", + "Driver Car Plate": "لوحة سيارة السائق", + "Driver Finish Trip": "السائق أنهى الرحلة", + "Driver Invitations": "دعوات السائقين", + "Driver Is Going To Passenger": "السائق بيوصل للراكب", + "Driver Level": "مستوى السائق", + "Driver License (Back)": "رخصة السائق (خلفي)", + "Driver License (Front)": "رخصة السائق (أمامي)", + "Driver List": "قائمة السائقين", + "Driver Login": "تسجيل دخول السائق", + "Driver Message": "رسالة السائق", + "Driver Name": "اسم السائق", + "Driver Name:": "اسم السائق:", + "Driver Phone:": "رقم السائق:", + "Driver Portal": "بوابة السائق", + "Driver Referral": "إحالة السائق", + "Driver Registration": "تسجيل السائق", + "Driver Registration & Requirements": "تسجيل السائق والمتطلبات", + "Driver Wallet": "محفظة السائق", + "Driver already has 2 trips within the specified period.": "عند السائق رحلتين بهالفترة المحددة من قبل.", + "Driver is on the way": "السائق عم ييجي", + "Driver is waiting": "السائق عم يستنى", + "Driver is waiting at pickup.": "السائق عم يستنى بمكان الالتقاط.", + "Driver joined the channel": "السائق دخل القناة", + "Driver left the channel": "السائق خرج من القناة", + "Driver phone": "رقم السائق", + "Driver's Personal Information": "المعلومات الشخصية للسائق", + "Drivers": "السواقين", + "Drivers License Class": "فئة رخصة السائق", + "Drivers License Class:": "فئة رخصة السائق:", + "Drivers received orders": "السواقين استلموا طلبات", + "Driving Behavior": "سلوك القيادة", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "بسبب كثرة الإلغاءات (3 مرات)، تم إيقاف استقبال الطلبات لمدة 4 ساعات.", + "Duration": "المدة", + "Duration To Passenger is": "الوقت للراكب هو", + "Duration is": "المدة هي", + "Duration of Trip is": "مدة الرحلة هي", + "Duration of the Ride is": "مدة الرحلة هي", + "E-Cash payment gateway": "بوابة دفع E-Cash", + "E-mail validé.\\\\": "تم التحقق من البريد الإلكتروني.\\\\", + "E-mail validé.\\\\\\\\": "تم التحقق من البريد الإلكتروني.\\\\\\\\", + "EGP": "ج.م", + "Earnings": "الأرباح", + "Earnings & Distance": "الأرباح والمسافة", + "Earnings Summary": "ملخص الأرباح", + "Edit": "تعديل", + "Edit Profile": "تعديل الملف الشخصي", + "Edit Your data": "عدّل بياناتك", + "Education": "التعليم", + "Egypt": "مصر", + "Egypt Post": "البريد المصري", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'ج.م", + "Egyptian Arab Land Bank": "البنك العقاري المصري العربي", + "Egyptian Gulf Bank": "البنك المصري الخليجي", + "Electric": "كهربائي", + "Email": "البريد الإلكتروني", + "Email Us": "راسلنا", + "Email Wrong": "البريد خاطئ", + "Email is": "البريد هو", + "Email must be correct.": "البريد لازم يكون صحيح.", + "Email you inserted is Wrong.": "البريد اللي أدخلته غلط.", + "Emergency Contact": "جهة اتصال طوارئ", + "Emergency Number": "رقم الطوارئ", + "Emirates National Bank of Dubai": "بنك الإمارات الوطني دبي", + "Employment Type": "نوع التوظيف", + "Enable Location": "تفعيل الموقع", + "Enable Location Access": "تفعيل الوصول للموقع", + "Enable Location Permission": "تفعيل صلاحية الموقع", + "End": "إنهاء", + "End Ride": "أنهِ الرحلة", + "End Trip": "أنهِ الرحلة", + "Enjoy a safe and comfortable ride.": "استمتع برحلة آمنة ومريحة.", + "Enjoy competitive prices across all trip options, making travel accessible.": "استمتع بأسعار منافسة بكل خيارات الرحلات، عشان السفر يكون بمتناول إيدك.", + "Ensure the passenger is in the car.": "تأكد إن الراكب دخل السيارة.", + "Enter Amount Paid": "أدخل المبلغ المدفوع", + "Enter Health Insurance Provider": "أدخل مزود التأمين الصحي", + "Enter Your First Name": "أدخل اسمك الأول", + "Enter a valid email": "أدخل بريد إلكتروني صحيح", + "Enter a valid year": "أدخل سنة صحيحة", + "Enter phone": "أدخل الهاتف", + "Enter phone number": "أدخل رقم الهاتف", + "Enter promo code": "أدخل كود الخصم", + "Enter promo code here": "أدخل كود الخصم هون", + "Enter the 3-digit code": "أدخل الكود المكون من ٣ أرقام", + "Enter the promo code and get": "أدخل كود الخصم واحصل على", + "Enter your City": "أدخل مدينتك", + "Enter your Note": "أدخل ملاحظتك", + "Enter your Password": "أدخل كلمة المرور", + "Enter your Question here": "أدخل سؤالك هون", + "Enter your code below to apply the discount.": "أدخل كودك تحت عشان تطبق الخصم.", + "Enter your complaint here": "أدخل شكواك هون", + "Enter your complaint here...": "أدخل شكواك هون...", + "Enter your email": "أدخل بريدك الإلكتروني", + "Enter your email address": "أدخل عنوان بريدك الإلكتروني", + "Enter your feedback here": "أدخل تعليقك هون", + "Enter your first name": "أدخل اسمك الأول", + "Enter your last name": "أدخل اسم عائلتك", + "Enter your password": "أدخل كلمة المرور", + "Enter your phone number": "أدخل رقم هاتفك", + "Enter your promo code": "أدخل كود الخصم بتاعك", + "Enter your wallet number": "أدخل رقم محفظتك", + "Error": "خطأ", + "Error connecting call": "خطأ في الاتصال", + "Error processing request": "خطأ في معالجة الطلب", + "Error starting voice call": "خطأ في بدء المكالمة الصوتية", + "Error uploading proof": "خطأ في رفع الإثبات", + "Error', 'An application error occurred.": "خطأ', 'حدث خطأ في التطبيق.", + "Evening": "المساء", + "Excellent": "ممتاز", + "Exclusive offers and discounts always with the Sefer app": "عروض وخصومات حصرية دايماً مع تطبيق سفر", + "Exclusive offers and discounts always with the Siro app": "عروض وخصومات حصرية دايماً مع تطبيق سيرو", + "Exit": "خروج", + "Exit Ride?": "تخرج من الرحلة؟", + "Expiration Date": "تاريخ الانتهاء", + "Expired Driver’s License": "رخصة السائق منتهية", + "Expired License": "رخصة منتهية", + "Expired License', 'Your driver’s license has expired.": "رخصة منتهية', 'رخصة قيادتك منتهية.", + "Expiry Date": "تاريخ الانتهاء", + "Expiry Date:": "تاريخ الانتهاء:", + "Export Development Bank of Egypt": "بنك التصدير والاستيراد المصري", + "Extra 200 pts when they complete 10 trips": "200 نقطة إضافية عند إكمال 10 رحلات", + "Face Detection Result": "نتيجة كشف الوجه", + "Failed": "فشل", + "Failed to add place. Please try again later.": "تعذر إضافة المكان. يرجى المحاولة لاحقاً.", + "Failed to cancel ride": "فشل إلغاء الرحلة", + "Failed to claim reward": "فشل استلام المكافأة", + "Failed to connect to the server. Please try again.": "تعذر الاتصال بالخادم. يرجى المحاولة مرة أخرى.", + "Failed to fetch rides. Please try again.": "تعذر جلب الرحلات. يرجى المحاولة مرة أخرى.", + "Failed to finish ride. Please check internet.": "فشل إنهاء الرحلة. تفضّل تحقق من الإنترنت.", + "Failed to initiate call session. Please try again.": "فشل بدء جلسة الاتصال. يرجى المحاولة مرة أخرى.", + "Failed to initiate payment. Please try again.": "فشل بدء الدفع. يرجى المحاولة مرة أخرى.", + "Failed to load profile data.": "فشل تحميل بيانات الملف الشخصي.", + "Failed to process route points": "فشل معالجة نقاط المسار", + "Failed to save driver data": "فشل حفظ بيانات السائق", + "Failed to send invite": "فشل إرسال الدعوة", + "Failed to upload audio file.": "فشل رفع الملف الصوتي.", + "Faisal Islamic Bank of Egypt": "بنك فيصل الإسلامي المصري", + "Fastest Complaint Response": "أسرع رد على الشكاوى", + "Favorite Places": "الأماكن المفضلة", + "Fee is": "الرسوم هي", + "Feed Back": "التعليق", + "Feedback": "التعليق", + "Feedback data saved successfully": "تم حفظ بيانات التعليق بنجاح", + "Female": "أنثى", + "Find answers to common questions": "لاقي أجوبة للأسئلة الشائعة", + "Finish & Submit": "إنهاء وإرسال", + "Finish Monitor": "إنهاء المراقبة", + "Finished": "انتهت", + "First Abu Dhabi Bank": "بنك أبوظبي الأول", + "First Name": "الاسم الأول", + "First Trip": "أول رحلة", + "First name": "الاسم الأول", + "Five Star Driver": "سائق 5 نجوم", + "Fixed Price": "سعر ثابت", + "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": "لرحلات سيرو والسكوتر، السعر بيحسب ديناميكياً. لرحلات الكومفورت، السعر بيعتمد على الوقت والمسافة.", + "Free Call": "مكالمة مجانية", + "Frequently Asked Questions": "الأسئلة الشائعة", + "Frequently Questions": "أسئلة متكررة", + "Fri": "الجمعة", + "From": "من", + "From :": "من :", + "From : Current Location": "من : الموقع الحالي", + "From Budget": "من الميزانية", + "From:": "من:", + "Fuel": "الوقود", + "Fuel Type": "نوع الوقود", + "Full Name": "الاسم الكامل", + "Full Name (Marital)": "الاسم الكامل (الزواج)", + "FullName": "الاسم الكامل", + "GPS Required Allow !.": "مطلوب تفعيل GPS !.", + "Gender": "الجنس", + "General": "عام", + "General Authority For Supply Commodities": "الهيئة العامة للسلع التموينية", + "Get": "احصل على", + "Get Details of Trip": "احصل على تفاصيل الرحلة", + "Get Direction": "احصل على الاتجاهات", + "Get a discount on your first Siro ride!": "احصل على خصم بأول رحلة سيرو!", + "Get features for your country": "احصل على الميزات لبلدك", + "Get it Now!": "احصل عليها هلق!", + "Get to your destination quickly and easily.": "توصل لوجهتك بسرعة وسهولة.", + "Getting Started": "البدء", + "Gift Already Claimed": "تم استلام الهدية من قبل", + "Go": "سيرو", + "Go Now": "اذهب الآن", + "Go Online": "ابدأ العمل", + "Go To Favorite Places": "روح للأماكن المفضلة", + "Go to next step": "روح للخطوة الجاية", + "Go to next step\\nscan Car License.": "روح للخطوة الجاية\\nامسح رخصة السيارة.", + "Go to passenger Location": "روح لموقع الراكب", + "Go to passenger Location now": "روح لموقع الراكب هلق", + "Go to passenger:": "روح للراكب:", + "Go to this Target": "روح لهالهدف", + "Go to this location": "روح لهالموقع", + "Goal Achieved!": "تم تحقيق الهدف!", + "Gold badge": "وسام ذهبي", + "Good": "جيد", + "Google Map App": "تطبيق خرائط جوجل", + "H and": "و", + "HSBC Bank Egypt S.A.E": "بنك إتش إس بي سي مصر", + "Hard Brake": "فرملة قوية", + "Hard Brakes": "الفرامل المفاجئة", + "Have a promo code?": "عندك كود ترويجي؟", + "Head": "الرأس", + "Heading your way now. Please be ready.": "عم ييجي لعندك هلق. تفضّل جهّز حالك.", + "Health Insurance": "التأمين الصحي", + "Heatmap": "خريطة حرارية", + "Height:": "الطول:", + "Hello": "أهلاً", + "Hello this is Captain": "أهلاً، أنا الكابتن", + "Hello this is Driver": "أهلاً، أنا السائق", + "Help & Support": "المساعدة والدعم", + "Help Details": "تفاصيل المساعدة", + "Helping Center": "مركز المساعدة", + "Helping Page": "صفحة المساعدة", + "Here recorded trips audio": "هون في صوت الرحلات المسجلة", + "Hi": "هلا", + "Hi ,I Arrive your site": "هلا، وصلت لموقعك", + "Hi ,I will go now": "هلا، رح روح هلق", + "Hi! This is": "هلا! أنا", + "Hi, I will go now": "هلا، رح روح هلق", + "Hi, Where to": "أهلاً، وين بدك تروح؟", + "High School Diploma": "شهادة ثانوية عامة", + "High priority": "أولوية عالية", + "History": "السجل", + "History Page": "صفحة السجل", + "History of Trip": "سجل الرحلات", + "Home": "الرئيسية", + "Home Page": "الصفحة الرئيسية", + "Home Saved": "تم حفظ المنزل", + "Hours": "ساعات", + "Housing And Development Bank": "بنك الإسكان والتعمير", + "How It Works": "كيف يعمل", + "How can I pay for my ride?": "كيف بقدر أدفع لرحلتي؟", + "How can I register as a driver?": "كيف بقدر أسجل كسائق؟", + "How do I communicate with the other party (passenger/driver)?": "كيف بقدر أتواصل مع الطرف التاني (راكب/سائق)؟", + "How do I request a ride?": "كيف بطلب رحلة؟", + "How many hours would you like to wait?": "كام ساعة بدك تستنى؟", + "How much Passenger pay?": "قديش بدفع الراكب؟", + "How much do you want to earn today?": "كم تريد أن تربح اليوم؟", + "How much longer will you be?": "قديش بعدك بتأخر؟", + "How to use App": "كيف تستخدم التطبيق", + "How to use Siro": "كيف تستخدم سيرو", + "How was the passenger?": "كيف كان الراكب؟", + "How was your trip with": "كيف كانت رحلتك مع", + "How would you like to receive your reward?": "كيف بدك تستلم مكافأتك؟", + "How would you rate our app?": "كيف بتقيّم تطبيقنا؟", + "Hybrid": "هايبرد", + "I Agree": "أوافق", + "I Arrive": "وصلت", + "I Arrive your site": "وصلت لموقعك", + "I Have Arrived": "أنا وصلت", + "I added the wrong pick-up/drop-off location": "حطيت مكان الالتقاط/التنزيل غلط", + "I am currently located at": "أنا موجود حالياً بـ", + "I am using": "أنا عم بستخدم", + "I arrive you": "وصلت لعندك", + "I cant register in your app in face detection": "ما بقدر أسجل بتطبيقك بكشف الوجه", + "I cant register in your app in face detection ": "ما بقدر أسجل بتطبيقك بكشف الوجه", + "I want to order for myself": "حابب أطلب لحالي", + "I want to order for someone else": "حابب أطلب لغيري", + "I was just trying the application": "كنت عم جرّب التطبيق بس", + "I will go now": "رحروح هلق", + "I will slow down": "رحخفف السرعة", + "I've arrived.": "لقد وصلت.", + "ID Documents Back": "وثائق الهوية (خلفي)", + "ID Documents Front": "وثائق الهوية (أمامي)", + "ID Mismatch": "عدم تطابق الهوية", + "If you in Car Now. Press Start The Ride": "إذا أنت بالسيارة هلق. اضغط ابدأ الرحلة", + "If you need any help or have question this is right site to do that and your welcome": "إذا بدك مساعدة أو عندك سؤال، هون المكان المناسب. أهلاً وسهلاً!", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "إذا كنت بحاجة لأي مساعدة أو عندك أسئلة، هون المكان المناسب. أهلاً وسهلاً!", + "If you need assistance, contact us": "إذا بدك مساعدة، تواصل معنا", + "If you need to reach me, please contact the driver directly at": "إذا بدك تتواصل معي، اتصل بالسائق مباشرة على", + "If you want add stop click here": "إذا بدك تضيف محطة اضغط هون", + "If you want order to another person": "إذا بدك تطلب لشخص تاني", + "If you want to make Google Map App run directly when you apply order": "إذا بدك تطبيق خرائط جوجل يشتغل مباشرة وقت تقدم الطلب", + "If your car license has the new design, upload the front side with two images.": "إذا رخصة سيارتك عليها التصميم الجديد، ارفع الوجه الأمامي بصورتين.", + "Image Upload Failed": "فشل رفع الصورة", + "Image detecting result is": "نتيجة كشف الصورة هي", + "Image detecting result is ": "نتيجة كشف الصورة هي", + "Improve app performance": "تحسين أداء التطبيق", + "In-App VOIP Calls": "مكالمات صوتية جوا التطبيق", + "Including Tax": "شامل الضريبة", + "Incoming Call...": "مكالمة واردة...", + "Incorrect sms code": "كود SMS غلط", + "Increase Fare": "زيادة الأجرة", + "Increase Fee": "زيادة الرسوم", + "Increase Your Trip Fee (Optional)": "زيد رسوم رحلتك (اختياري)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "زيادة الأجرة ممكن تجذب سواقين أكثر. بدك ترفع السعر؟", + "Industrial Development Bank": "بنك التنمية الصناعية", + "Ineligible for Offer": "غير مؤهل للعرض", + "Info": "معلومات", + "Insert": "إدخال", + "Insert Account Bank": "أدخل الحساب البنكي", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "أدخل تفاصيل البطاقة البنكية عشان تستلم فلوسك أسبوعياً", + "Insert Emergency Number": "أدخل رقم الطوارئ", + "Insert Emergincy Number": "أدخل رقم الطوارئ", + "Insert Payment Details": "أدخل تفاصيل الدفع", + "Insert SOS Phone": "أدخل رقم طوارئ", + "Insert Wallet phone number": "أدخل رقم هاتف المحفظة", + "Insert Your Promo Code": "أدخل كود الخصم بتاعك", + "Insert card number": "أدخل رقم البطاقة", + "Insert mobile wallet number": "أدخل رقم محفظة الجوال", + "Insert your mobile wallet details to receive your money weekly": "أدخل تفاصيل محفظة الجوال عشان تستلم فلوسك أسبوعياً", + "Inspection Date": "تاريخ الفحص", + "InspectionResult": "نتيجة الفحص", + "Install our app:": "ثبّت تطبيقنا:", + "Insufficient Balance": "رصيد غير كافٍ", + "Invalid MPIN": "رمز MPIN غير صالح", + "Invalid OTP": "رمز OTP غير صالح", + "Invalid customer MSISDN": "رقم هاتف العميل غير صالح", + "Invitation Used": "تم استخدام الدعوة", + "Invitations Sent": "تم إرسال الدعوات", + "Invite": "ادعُ", + "Invite Driver": "دعوة سائق", + "Invite Rider": "دعوة راكب", + "Invite a Driver": "ادعُ سائقاً", + "Invite another driver and both get a gift after he completes 100 trips!": "ادعُ سائق تاني وكلكم بتاخدوا هدية بعد ما يكمل 100 رحلة!", + "Invite code already used": "كود الدعوة مستخدم من قبل", + "Invite sent successfully": "تم إرسال الدعوة بنجاح", + "Is device compatible": "الجهاز متوافق", + "Is the Passenger in your Car ?": "الراكب بسيارتك؟", + "Is the Passenger in your Car?": "الراكب بسيارتك؟", + "Issue Date": "تاريخ الإصدار", + "IssueDate": "تاريخ الإصدار", + "JOD": "د.أ", + "Join": "انضم", + "Join Siro as a driver using my referral code!": "انضم لسواقة سيرو بكود الدعوة بتاعي!", + "Jordan": "الأردن", + "Just now": "الآن", + "KM": "كم", + "Keep it up!": "كمل بهالحماس!", + "Kuwait": "الكويت", + "L.E": "ل.م", + "L.S": "ل.س", + "LE": "ل.م", + "Lady": "سائقة بنات", + "Lady Captain for girls": "كابتن بنات للبنات", + "Lady Captains Available": "سواقة بنات متاحين", + "Lady 👩": "سائقة بنات 👩", + "Lady: For girl drivers.": "سائقة بنات: للرحلات النسائية.", + "Language": "اللغة", + "Language Options": "خيارات اللغة", + "Last 10 Trips": "آخر 10 رحلات", + "Last Name": "اسم العائلة", + "Last name": "اسم العائلة", + "Last updated:": "آخر تحديث:", + "Later": "لاحقاً", + "Latest Recent Trip": "أحدث رحلة", + "Leaderboard": "لوحة المتصدرين", + "Learn more about our app and mission": "تعرف أكثر عن تطبيقنا ورسالتنا", + "Leave": "مغادرة", + "Leave a detailed comment (Optional)": "اترك تعليق مفصل (اختياري)", + "Let the passenger scan this code to sign up": "خلي الراكب يمسح هالكود عشان يسجّل", + "Lets check Car license": "يلا نفحص رخصة السيارة", + "Lets check Car license ": "يلا نفحص رخصة السيارة", + "Lets check License Back Face": "يلا نفحص الوجه الخلفي للرخصة", + "License Categories": "فئات الرخصة", + "License Expiry Date": "تاريخ انتهاء الرخصة", + "License Type": "نوع الرخصة", + "Link a phone number for transfers": "اربط رقم هاتف للتحويلات", + "Location Access Required": "مطلوب الوصول للموقع", + "Location Link": "رابط الموقع", + "Location Tracking Active": "تتبع الموقع مفعل", + "Log Off": "تسجيل خروج", + "Log Out Page": "صفحة تسجيل الخروج", + "Login": "تسجيل الدخول", + "Login Captin": "تسجيل دخول الكابتن", + "Login Driver": "تسجيل دخول السائق", + "Login failed": "فشل تسجيل الدخول", + "Logout": "تسجيل خروج", + "Lowest Price Achieved": "تم تحقيق أدنى سعر", + "MIDBANK": "بنك ميد", + "MTN Cash": "MTN Cash", + "Made :": "صنع :", + "Maintain 5.0 rating": "حافظ على تقييم 5.0", + "Maintenance Center": "مركز الصيانة", + "Maintenance Offer": "عرض صيانة", + "Make": "الماركة", + "Make a U-turn": "اعمل دورّة", + "Make is": "الماركة هي", + "Make purchases.": "ادفع واشتري.", + "Male": "ذكر", + "Map Dark Mode": "الوضع الليلي للخريطة", + "Map Passenger": "خريطة الراكب", + "Marital Status": "الحالة الاجتماعية", + "Mashreq Bank": "بنك المشرق", + "Mashwari": "مشاري", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "مشاري: للرحلات المرنة اللي بيختار فيها الراكب السيارة والسائق بترتيب مسبق.", + "Master\\'s Degree": "درجة الماجستير", + "Max Speed": "أقصى سرعة", + "Maximum Level Reached!": "وصلت لأعلى مستوى!", + "Maximum fare": "أقصى أجرة", + "Message": "رسالة", + "Meter Fare": "أجرة العداد", + "Microphone permission is required for voice calls": "مطلوب صلاحية الميكروفون للمكالمات الصوتية", + "Minimum fare": "أدنى أجرة", + "Minute": "دقيقة", + "Minutes": "دقايق", + "Mishwar Vip": "مشوار VIP", + "Missing Documents": "وثائق ناقصة", + "Mobile Wallets": "محافظ الجوال", + "Model": "الموديل", + "Model is": "الموديل هو", + "Mon": "الاثنين", + "Monthly Report": "التقرير الشهري", + "Monthly Streak": "سلسلة شهرية", + "More": "المزيد", + "Morning": "الصباح", + "Morning Promo": "عرض الصباح", + "Morning Promo Rides": "رحلات عرض الصباح", + "Most Secure Methods": "أكثر الطرق أماناً", + "Motorcycle": "موتوسيكل", + "Move the map to adjust the pin": "حرّك الخريطة عشان تعدّل الدبوس", + "Mute": "كتم الصوت", + "My Balance": "رصيدي", + "My Card": "بطاقتي", + "My Cared": "بطاقتي", + "My Cars": "سياراتي", + "My Location": "موقعي", + "My Profile": "ملفي الشخصي", + "My Schedule": "جدولي", + "My Wallet": "محفظتي", + "My current location is:": "موقعي الحالي هو:", + "My location is correct. You can search for me using the navigation app": "موقعي صحيح. تقدر تبحث عليي بتطبيق الملاحة", + "MyLocation": "موقعي", + "N/A": "غير متاح", + "NEXT >>": "التالي >>", + "NEXT STEP": "الخطوة التالية", + "Name": "الاسم", + "Name (Arabic)": "الاسم (عربي)", + "Name (English)": "الاسم (إنجليزي)", + "Name :": "الاسم :", + "Name in arabic": "الاسم بالعربي", + "Name must be at least 2 characters": "الاسم لازم يكون حرفين على الأقل", + "Name of the Passenger is": "اسم الراكب هو", + "Nasser Social Bank": "بنك ناصر الاجتماعي", + "National Bank of Egypt": "البنك الأهلي المصري", + "National Bank of Greece": "البنك الوطني اليوناني", + "National Bank of Kuwait – Egypt": "البنك الوطني الكويتي – مصر", + "National ID": "الهوية الشخصية", + "National ID (Back)": "الهوية الشخصية (خلفي)", + "National ID (Front)": "الهوية الشخصية (أمامي)", + "National ID Number": "رقم الهوية الشخصية", + "National ID must be 11 digits": "رقم الهوية لازم يكون 11 رقم", + "National Number": "الرقم القومي", + "NationalID": "الهوية الشخصية", + "Navigation": "الملاحة", + "Nearest Car": "أقرب سيارة", + "Nearest Car for you about": "أقرب سيارة لك بعد حوالي", + "Nearest Car: ~": "أقرب سيارة: ~", + "Need assistance? Contact us": "بدك مساعدة؟ تواصل معنا", + "Need help? Contact Us": "بدك مساعدة؟ تواصل معنا", + "Needs Improvement": "يحتاج تحسين", + "Net Profit": "صافي الربح", + "Network error": "خطأ في الشبكة", + "Next": "التالي", + "Next Level:": "المستوى التالي:", + "Next as Cash !": "الرحلة الجاية كاش!", + "Night": "الليل", + "No": "لأ", + "No ,still Waiting.": "لأ، لسا عم نستنى.", + "No Captain Accepted Your Order": "ما في كابتن قبل طلبك", + "No Car in your site. Sorry!": "ما في سيارة بموقعك. آسفين!", + "No Car or Driver Found in your area.": "ما لقينا سيارة أو سائق بمنطقتك.", + "No I want": "لأ، أنا بدّي", + "No Promo for today .": "ما في عروض بهاليوم.", + "No Response yet.": "ما في رد لسا.", + "No Rides Available": "ما في رحلات متاحة", + "No Rides Yet": "ما في رحلات لسا", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة، ما في مشكلة! اتصل بسائقك مباشرة عبر التطبيق. بنستخدم تكنولوجيا متطورة عشان نضمن خصوصيتك.", + "No accepted orders? Try raising your trip fee to attract riders.": "ما في طلبات منقبولة؟ جرّب ترفع رسوم رحلتك عشان تجذب ركاب.", + "No audio files found for this ride.": "ما لقينا تسجيلات صوتية لهاد المشوار.", + "No audio files found.": "ما لقينا ملفات صوتية.", + "No audio files recorded.": "ما في ملفات صوتية مسجلة.", + "No cars are available at the moment. Please try again later.": "ما في سيارات متاحة هلق. تفضّل جرّب مرة تانية لاحقاً.", + "No cars nearby": "ما في سيارات قريبة", + "No contact selected": "ما في جهة اتصال مختارة", + "No contacts found": "ما لقينا جهات اتصال", + "No contacts with phone numbers found": "ما لقينا جهات اتصال بأرقام هواتف", + "No contacts with phone numbers were found on your device.": "ما لقينا جهات اتصال بأرقام هواتف بجهازك.", + "No data yet": "ما في بيانات لسا", + "No data yet!": "ما في بيانات لسا!", + "No driver accepted my request": "ما في سائق قبل طلبي", + "No drivers accepted your request yet": "ما في سائقين قبلوا طلبك لسا", + "No drivers available": "ما في سائقين متاحين", + "No drivers available at the moment. Please try again later.": "ما في سائقين متاحين هلق. تفضّل جرّب مرة تانية لاحقاً.", + "No face detected": "ما في وجه مكتشف", + "No favorite places yet!": "ما في أماكن مفضلة لسا!", + "No i want": "لأ، أنا بدّي", + "No image selected yet": "ما في صورة مختارة لسا", + "No internet connection": "لا يوجد اتصال بالإنترنت", + "No invitation found": "ما لقينا دعوة", + "No invitation found yet!": "ما لقينا دعوة لسا!", + "No one accepted? Try increasing the fare.": "ما في حدا قبل؟ جرّب ترفع الأجرة.", + "No orders available": "ما في طلبات متاحة", + "No passenger found for the given phone number": "ما لقينا راكب بهالرقم", + "No phone number": "ما في رقم هاتف", + "No promos available right now.": "ما في عروض ترويجية هلق.", + "No questions asked yet.": "ما في أسئلة لسا.", + "No ride found yet": "ما لقينا رحلة لسا", + "No ride yet": "ما في رحلة لسا", + "No rides available for your vehicle type.": "ما في رحلات متاحة لنوع سيارتك.", + "No rides available right now.": "ما في رحلات متاحة هلق.", + "No rides found to complain about.": "ما لقينا أي مشاوير لحتى تقدم شكوى عليها.", + "No route points found": "ما لقينا نقاط للمسار", + "No statistics yet": "ما في إحصائيات لسا", + "No transactions this week": "ما في معاملات بهالأسبوع", + "No transactions yet": "ما في معاملات لسا", + "No trip data available": "ما في بيانات رحلة متاحة", + "No trip history found": "ما لقينا سجل رحلات", + "No trip yet found": "ما لقينا رحلة لسا", + "No user found for the given phone number": "ما لقينا مستخدم بهالرقم", + "No wallet record found": "ما لقينا سجل محفظة", + "No, I want to cancel this trip": "لأ، بدّي ألغي هالرحلة", + "No, still Waiting.": "لأ، لسا عم نستنى.", + "No, thanks": "لأ، شكراً", + "No,I want": "لأ، أنا بدّي", + "Non Egypt": "غير مصر", + "Not Connected": "غير متصل", + "Not set": "غير محدد", + "Not updated": "ما انحدث", + "Notifications": "الإشعارات", + "Now select start pick": "هلق اختر نقطة البداية", + "OK": "تمام", + "OTP is incorrect or expired": "رمز OTP غير صحيح أو منتهي الصلاحية", + "Occupation": "المهنة", + "Offline": "غير متصل", + "Ok": "تمام", + "Ok , See you Tomorrow": "تمام، نشوفك بكرة", + "Ok I will go now.": "تمام، رحروح هلق.", + "Old and affordable, perfect for budget rides.": "قديمة ومناسبة للسعر، مثالية لرحلات الميزانية المحدودة.", + "Online": "متصل", + "Online Duration": "مدة التواجد", + "Only Syrian phone numbers are allowed": "مسموح بس بأرقام الهواتف السورية", + "Open App": "افتح التطبيق", + "Open Settings": "افتح الإعدادات", + "Open app and go to passenger": "افتح التطبيق وروح للراكب", + "Open in Maps": "افتح بالخرائط", + "Open the app to stay updated and ready for upcoming tasks.": "افتح التطبيق عشان تظل محدّث وجاهز للمهام الجاية.", + "Opted out": "تم إلغاء الاشتراك", + "Or": "أو", + "Or pay with Cash instead": "أو ادفع كاش بدل هيك", + "Order": "طلب", + "Order Accepted": "تم قبول الطلب", + "Order Accepted by another driver": "طلبك انقبل من سائق تاني", + "Order Applied": "تم تطبيق الطلب", + "Order Cancelled": "تم إلغاء الطلب", + "Order Cancelled by Passenger": "تم إلغاء الطلب من الراكب", + "Order Details Siro": "تفاصيل الطلب سيرو", + "Order History": "سجل الطلبات", + "Order ID": "رقم الطلب", + "Order Request Page": "صفحة طلب الرحلة", + "Order Under Review": "الطلب قيد المراجعة", + "Order for myself": "طلب لحالي", + "Order for someone else": "طلب لغيري", + "OrderId": "رقم الطلب", + "OrderVIP": "طلب VIP", + "Orders Page": "صفحة الطلبات", + "Origin": "نقطة البداية", + "Original Fare": "الأجرة الأصلية", + "Other": "أخرى", + "Our dedicated customer service team ensures swift resolution of any issues.": "فريق خدمة العملاء المتخصص عندنا بيضمن حل سريع لأي مشكلة.", + "Overall Behavior Score": "درجة السلوك العامة", + "Overlay": "العرض العلوي", + "Owner Name": "اسم المالك", + "PTS": "نقطة", + "Passenger": "الراكب", + "Passenger & Status": "الراكب والحالة", + "Passenger Cancel Trip": "الراكب ألغى الرحلة", + "Passenger Information": "معلومات الراكب", + "Passenger Invitations": "دعوات الركاب", + "Passenger Name": "اسم الراكب", + "Passenger Name is": "اسم الراكب هو", + "Passenger Referral": "إحالة الراكب", + "Passenger cancel trip": "الراكب ألغى الرحلة", + "Passenger cancelled order": "الراكب ألغى الطلب", + "Passenger cancelled the ride.": "ألغى الراكب الرحلة.", + "Passenger come to you": "الراكب قادم إليك", + "Passenger name :": "اسم الراكب :", + "Passenger name:": "اسم الراكب:", + "Passenger paid amount": "المبلغ اللي دفعه الراكب", + "Passengers": "الركاب", + "Password": "كلمة المرور", + "Password must be at least 6 characters": "كلمة المرور لازم تكون 6 أحرف على الأقل", + "Password must be at least 6 characters.": "كلمة المرور لازم تكون 6 أحرف على الأقل.", + "Password must br at least 6 character.": "كلمة المرور لازم تكون 6 أحرف على الأقل.", + "Paste WhatsApp location link": "الصق رابط موقع الواتساب", + "Paste location link here": "الصق رابط الموقع هون", + "Paste the code here": "الصق الكود هون", + "Pay": "ادفع", + "Pay by MTN Wallet": "الدفع عبر محفظة MTN", + "Pay by Sham Cash": "الدفع عبر شام كاش", + "Pay by Syriatel Wallet": "الدفع عبر محفظة سيريتل", + "Pay directly to the captain": "ادفع مباشرة للكابتن", + "Pay from my budget": "الدفع من الرصيد المتاح", + "Pay remaining to Wallet?": "بدك تدفع الباقي للمحفظة؟", + "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 (الاسم المستعار: siroapp)", + "Pay with Credit Card": "ادفع ببطاقة ائتمان", + "Pay with Debit Card": "ادفع ببطاقة خصم", + "Pay with Wallet": "ادفع من المحفظة", + "Pay with Your": "ادفع بـ", + "Pay with Your PayPal": "ادفع بباي بال", + "Payment Failed": "فشل الدفع", + "Payment History": "سجل المدفوعات", + "Payment Method": "طريقة الدفع", + "Payment Method:": "طريقة الدفع:", + "Payment Options": "خيارات الدفع", + "Payment Successful": "تم الدفع بنجاح", + "Payment Successful!": "تم الدفع بنجاح!", + "Payment details added successfully": "تمت إضافة تفاصيل الدفع بنجاح", + "Payments": "المدفوعات", + "Percent Canceled": "نسبة الإلغاء", + "Percent Completed": "نسبة الإنجاز", + "Percent Rejected": "نسبة الرفض", + "Perfect for adventure seekers who want to experience something new and exciting": "مثالية لمحبي المغامرة اللي بدّهم يجربوا شي جديد ومثير", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالية للركاب اللي بيدوروا على أحدث موديلات السيارات مع حرية اختيار أي طريق بدّهم", + "Permission denied": "تم رفض الصلاحية", + "Personal Information": "المعلومات الشخصية", + "Petrol": "بنزين", + "Phone": "رقم الهاتف", + "Phone Check": "فحص الهاتف", + "Phone Number": "رقم الهاتف", + "Phone Number Check": "فحص رقم الهاتف", + "Phone Number is": "رقم الهاتف هو", + "Phone Number is not Egypt phone": "رقم الهاتف مش مصري", + "Phone Number is not Egypt phone ": "رقم الهاتف مش مصري", + "Phone Number wrong": "رقم الهاتف غلط", + "Phone Wallet Saved Successfully": "تم حفظ رقم المحفظة بنجاح", + "Phone number is already verified": "رقم الهاتف موثق من قبل", + "Phone number is verified before": "رقم الهاتف موثق من قبل", + "Phone number must be exactly 11 digits long": "رقم الهاتف لازم يكون بالضبط 11 رقم", + "Phone number must be valid.": "رقم الهاتف لازم يكون صحيح.", + "Phone number seems too short": "يبدو أن رقم الهاتف قصير جداً", + "Pick from map": "اختر من الخريطة", + "Pick from map destination": "اختر الوجهة من الخريطة", + "Pick or Tap to confirm": "اختر أو اضغط للتأكيد", + "Pick your destination from Map": "اختر وجهتك من الخريطة", + "Pick your ride location on the map - Tap to confirm": "اختر موقع رحلتك على الخريطة - اضغط للتأكيد", + "Pickup Location": "موقع الالتقاط", + "Place added successfully! Thanks for your contribution.": "تمت إضافة المكان بنجاح! شكراً لمساهمتك.", + "Plate": "اللوحة", + "Plate Number": "رقم اللوحة", + "Please Try anther time": "تفضّل جرّب مرة تانية", + "Please Wait If passenger want To Cancel!": "تفضّل استنى إذا بد الراكب يلغي!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "يرجى السماح بالوصول للموقع \"دائماً\" لاستلام طلبات الرحلات حتى عندما يكون التطبيق في الخلفية.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "تفضّل اسمح بالوصول للموقع دايماً عشان تستلم طلبات الرحلات وتضمن خدمة سلسة.", + "Please check back later for available rides.": "تفضّل رجع لاحقاً للرحلات المتاحة.", + "Please complete more distance before ending.": "تفضّل كمّل شوية مسافة قبل ما تنهي.", + "Please describe your issue before submitting.": "تفضّل صف مشكلتك قبل ما ترسل.", + "Please enter": "تفضّل أدخل", + "Please enter Your Email.": "تفضّل أدخل بريدك الإلكتروني.", + "Please enter Your Password.": "تفضّل أدخل كلمة المرور.", + "Please enter a correct phone": "تفضّل أدخل رقم هاتف صحيح", + "Please enter a description of the issue.": "تفضّل أدخل وصفاً للمشكلة.", + "Please enter a health insurance status.": "تفضّل أدخل حالة التأمين الصحي.", + "Please enter a phone number": "تفضّل أدخل رقم هاتف", + "Please enter a valid 16-digit card number": "تفضّل أدخل رقم بطاقة صالح من 16 رقم", + "Please enter a valid card 16-digit number.": "تفضّل أدخل رقم بطاقة صالح من 16 رقم.", + "Please enter a valid email": "الرجاء إدخال بريد إلكتروني صالح", + "Please enter a valid email.": "تفضّل أدخل بريد إلكتروني صحيح.", + "Please enter a valid insurance provider": "الرجاء إدخال مزود تأمين صالح", + "Please enter a valid phone number.": "تفضّل أدخل رقم هاتف صحيح.", + "Please enter a valid promo code": "تفضّل أدخل كود خصم صالح", + "Please enter phone number": "يرجى إدخال رقم الهاتف", + "Please enter the CVV code": "تفضّل أدخل رمز CVV", + "Please enter the cardholder name": "تفضّل أدخل اسم حامل البطاقة", + "Please enter the complete 6-digit code.": "تفضّل أدخل الكود المكون من 6 أرقام كاملاً.", + "Please enter the emergency number.": "تفضّل أدخل رقم الطوارئ.", + "Please enter the expiry date": "تفضّل أدخل تاريخ الانتهاء", + "Please enter the number without the leading 0": "يرجى إدخال الرقم بدون الصفر الأولي", + "Please enter your City.": "تفضّل أدخل مدينتك.", + "Please enter your Email.": "تفضّل أدخل بريدك الإلكتروني.", + "Please enter your Password.": "تفضّل أدخل كلمة المرور.", + "Please enter your Question.": "تفضّل أدخل سؤالك.", + "Please enter your complaint.": "تفضّل أدخل شكواك.", + "Please enter your feedback.": "تفضّل أدخل تعليقك.", + "Please enter your first name.": "تفضّل أدخل اسمك الأول.", + "Please enter your last name.": "تفضّل أدخل اسم عائلتك.", + "Please enter your phone number": "يرجى إدخال رقم هاتفك", + "Please enter your phone number.": "تفضّل أدخل رقم هاتفك.", + "Please enter your question": "تفضّل أدخل سؤالك", + "Please go closer to the passenger location (less than 150m)": "تفضّل قرب من موقع الراكب (أقل من 150 متر)", + "Please go to Car Driver": "يرجى الذهاب إلى سائق السيارة", + "Please go to Car now": "تفضّل روح للسيارة هلق", + "Please go to the pickup location exactly": "يرجى الذهاب إلى موقع الالتقاط بالضبط", + "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 paste the transfer message": "يرجى لصق رسالة التحويل", + "Please provide details about any long-term diseases.": "تفضّل قدّم تفاصيل عن أي أمراض مزمنة.", + "Please put your licence in these border": "تفضّل حط رخصتك بهالإطار", + "Please select a contact": "تفضّل اختر جهة اتصال", + "Please select a date": "تفضّل اختر تاريخ", + "Please select a rating before submitting.": "تفضّل اختر تقييم قبل ما ترسل.", + "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": "يرجى تحويل المبلغ إلى الاسم المستعار: siroapp", + "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 وثائق المطلوبة.", + "Please upload this license.": "تفضّل ارفع هالرخصة.", + "Please verify your identity": "تفضّل وثّق هويتك", + "Please wait": "يرجى الانتظار", + "Please wait for all documents to finish uploading before registering.": "يرجى الانتظار حتى الانتهاء من رفع جميع المستندات قبل التسجيل.", + "Please wait for the passenger to enter the car before starting the trip.": "تفضّل استنى لحتى يدخل الراكب السيارة قبل ما تبدأ الرحلة.", + "Please wait while we prepare your trip.": "تفضّل استنى شوي لحتى نجهّز رحلتك.", + "Point": "نقطة", + "Points": "نقاط", + "Policy restriction on calls": "قيود سياسة على المكالمات", + "Potential security risks detected. The application may not function correctly.": "تم اكتشاف مخاطر أمنية محتملة. التطبيق ممكن ما يشتغل بشكل صحيح.", + "Potential security risks detected. The application may not function correctly.": "تم اكتشاف مخاطر أمنية محتملة. التطبيق ممكن ما يشتغل بشكل صحيح.", + "Potential security risks detected. The application will close in @seconds seconds.": "تم اكتشاف مخاطر أمنية محتملة. التطبيق رح يقفل خلال @seconds ثانية.", + "Pre-booking": "حجز مسبق", + "Press here": "اضغط هون", + "Press to hear": "اضغط عشان تسمع", + "Price": "السعر", + "Price is": "السعر هو", + "Price of trip": "سعر الرحلة", + "Price:": "السعر:", + "Priority medium": "أولوية متوسطة", + "Priority support": "دعم فني ذو أولوية", + "Privacy Notice": "إشعار الخصوصية", + "Privacy Policy": "سياسة الخصوصية", + "Profile": "الملف الشخصي", + "Profile Photo Required": "مطلوب صورة شخصية", + "Profile Picture": "صورة الملف الشخصي", + "Progress:": "التقدم:", + "Promo": "عرض ترويجي", + "Promo Already Used": "تم استخدام العرض من قبل", + "Promo Code": "كود الخصم", + "Promo Code Accepted": "تم قبول كود الخصم", + "Promo Copied!": "تم نسخ الكود!", + "Promo End !": "انتهى العرض!", + "Promo Ended": "انتهى العرض", + "Promo code copied to clipboard!": "تم نسخ كود الخصم!", + "Promos": "العروض", + "Promos For Today": "عروض اليوم", + "Promos For today": "عروض اليوم", + "Promotions": "العروض الترويجية", + "Pyament Cancelled .": "تم إلغاء الدفع.", + "Qatar": "قطر", + "Qatar National Bank Alahli": "البنك الأهلي القطري", + "Question": "سؤال", + "Quick Actions": "إجراءات سريعة", + "Quick Invite": "دعوة سريعة", + "Quick Invite Link:": "رابط الدعوة السريع:", + "Quick Messages": "رسائل سريعة", + "Quiet & Eco-Friendly": "هادئ وصديق للبيئة", + "Raih Gai: For same-day return trips longer than 50km.": "رايح جاي: لرحلات العودة بنفس اليوم أطول من 50 كم.", + "Rate": "تقييم", + "Rate Captain": "قيّم الكابتن", + "Rate Driver": "قيّم السائق", + "Rate Our App": "قيّم تطبيقنا", + "Rate Passenger": "قيّم الراكب", + "Rating": "التقييم", + "Rating is": "التقييم هو", + "Rating submitted successfully": "تم إرسال التقييم بنجاح", + "Rayeh Gai": "رايح جاي", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة الذهاب والعودة لرحلات مريحة بين المدن، سهلة وموثوقة.", + "Reason": "السبب", + "Recent Places": "الأماكن الأخيرة", + "Recent Transactions": "المعاملات الأخيرة", + "Recharge Balance": "شحن الرصيد", + "Recharge Balance Packages": "باقات شحن الرصيد", + "Recharge my Account": "اشحن حسابي", + "Record": "تسجيل", + "Record saved": "تم حفظ التسجيل", + "Recorded Trips (Voice & AI Analysis)": "الرحلات المسجلة (صوت وتحليل ذكاء اصطناعي)", + "Recorded Trips for Safety": "رحلات مسجلة للسلامة", + "Refer 5 drivers": "ادعُ 5 سائقين", + "Referral Center": "مركز الإحالات", + "Referrals": "الإحالات", + "Refresh": "تحديث", + "Refresh Market": "تحديث السوق", + "Refresh Status": "تحديث الحالة", + "Refuse Order": "رفض الطلب", + "Refused": "مرفوضة", + "Register": "اشتراك جديد", + "Register Captin": "تسجيل الكابتن", + "Register Driver": "تسجيل السائق", + "Register as Driver": "سجل كسائق", + "Registration": "التسجيل", + "Registration completed successfully!": "تم التسجيل بنجاح!", + "Registration failed. Please try again.": "فشل التسجيل. تفضّل جرّب مرة تانية.", + "Reject": "رفض", + "Rejected Orders": "الطلبات المرفوضة", + "Rejected Orders Count": "عدد الطلبات المرفوضة", + "Religion": "الدين", + "Remainder": "الباقي", + "Remaining time": "الوقت المتبقي", + "Remaining:": "المتبقي:", + "Report": "تقرير", + "Required field": "حقل مطلوب", + "Resend Code": "إعادة إرسال الكود", + "Resend code": "إعادة إرسال الكود", + "Reward Claimed": "تم استلام المكافأة", + "Reward Status": "حالة المكافأة", + "Reward claimed successfully!": "تم استلام المكافأة بنجاح!", + "Ride": "المشوار", + "Ride History": "سجل الرحلات", + "Ride Management": "إدارة الرحلات", + "Ride Status": "حالة الرحلة", + "Ride Summaries": "ملخصات الرحلات", + "Ride Summary": "ملخص الرحلة", + "Ride Today :": "رحلات اليوم :", + "Ride Wallet": "محفظة الرحلة", + "Ride info": "معلومات الرحلة", + "Ride information not found. Please refresh the page.": "ما لقينا معلومات الرحلة. تفضّل حدّث الصفحة.", + "Rides": "الرحلات", + "Road Legend": "أسطورة الطريق", + "Road Warrior": "محارب الطريق", + "Rouats of Trip": "محطات الرحلة", + "Route Not Found": "ما لقينا طريق", + "Routs of Trip": "محطات الرحلة", + "Run Google Maps directly": "شغّل خرائط جوجل مباشرة", + "S.P": "ل.س", + "SAFAR Wallet": "محفظة سفر", + "SOS": "طوارئ", + "SOS Phone": "هاتف الطوارئ", + "SUBMIT": "إرسال", + "SYP": "ل.س", + "Safety & Security": "السلامة والأمان", + "Safety First 🛑": "السلامة أولاً 🛑", + "Same device detected": "تم اكتشاف نفس الجهاز", + "Sat": "السبت", + "Saudi Arabia": "السعودية", + "Save": "حفظ", + "Save & Call": "حفظ واتصل", + "Save Credit Card": "حفظ بطاقة الائتمان", + "Saved Sucssefully": "تم الحفظ بنجاح", + "Scan Driver License": "امسح رخصة السائق", + "Scan ID Api": "امسح الهوية API", + "Scan ID MklGoogle": "امسح الهوية MklGoogle", + "Scan ID Tesseract": "امسح الهوية Tesseract", + "Scan Id": "امسح الهوية", + "Scheduled Time:": "الوقت المحدد:", + "Scooter": "سكوتر", + "Score": "التقييم", + "Search country": "ابحث عن بلد", + "Search for a starting point": "ابحث عن نقطة بداية", + "Search for waypoint": "ابحث عن نقطة طريق", + "Search for your Start point": "ابحث عن نقطة البداية", + "Search for your destination": "ابحث عن وجهتك", + "Search name or number...": "ابحث باسم أو رقم...", + "Searching for the nearest captain...": "عم نبحث عن أقرب كابتن...", + "Security Warning": "تحذير أمني", + "See you Tomorrow!": "نشوفك بكرة!", + "See you on the road!": "نشوفك على الطريق!", + "Select Country": "اختر البلد", + "Select Date": "اختر التاريخ", + "Select Name of Your Bank": "اختر اسم بنكك", + "Select Order Type": "اختر نوع الطلب", + "Select Payment Amount": "اختر مبلغ الدفع", + "Select Payment Method": "اختر طريقة الدفع", + "Select This Ride": "اختر هالرحلة", + "Select Time": "اختر الوقت", + "Select Waiting Hours": "اختر ساعات الانتظار", + "Select Your Country": "اختر بلدك", + "Select a Bank": "اختر بنك", + "Select a Contact": "اختر جهة اتصال", + "Select a File": "اختر ملف", + "Select a file": "اختر ملف", + "Select a quick message": "اختر رسالة سريعة", + "Select date and time of trip": "اختر تاريخ ووقت الرحلة", + "Select how you want to charge your account": "اختر كيف تريد شحن حسابك", + "Select one message": "اختر رسالة وحدة", + "Select recorded trip": "اختر رحلة مسجلة", + "Select your destination": "اختر وجهتك", + "Select your preferred language for the app interface.": "اختر اللغة اللي بتفضلها لواجهة التطبيق.", + "Selected Date": "التاريخ المختار", + "Selected Date and Time": "التاريخ والوقت المختار", + "Selected Location": "الموقع المحدد", + "Selected Time": "الوقت المختار", + "Selected driver": "السائق المختار", + "Selected file:": "الملف المختار:", + "Send Email": "أرسل بريد", + "Send Invite": "أرسل دعوة", + "Send Message": "أرسل رسالة", + "Send Siro app to him": "أرسل تطبيق سيرو له", + "Send Verfication Code": "أرسل رمز التحقق", + "Send Verification Code": "أرسل رمز التحقق", + "Send WhatsApp Message": "أرسل رسالة واتساب", + "Send a custom message": "أرسل رسالة مخصصة", + "Send to Driver Again": "أرسل للسائق مرة تانية", + "Send your referral code to friends": "أرسل كود الإحالة الخاص بك للأصدقاء", + "Server error": "خطأ في الخادم", + "Server error. Please try again.": "خطأ بالخادم. تفضّل جرّب مرة تانية.", + "Session expired. Please log in again.": "الجلسة انتهت. سجل دخول مرة تانية.", + "Set Daily Goal": "تحديد الهدف اليومي", + "Set Goal": "تحديد هدف", + "Set Location on Map": "حدد الموقع على الخريطة", + "Set Phone Number": "حدد رقم الهاتف", + "Set Wallet Phone Number": "حدد رقم هاتف المحفظة", + "Set pickup location": "حدد موقع الالتقاط", + "Setting": "إعداد", + "Settings": "الإعدادات", + "Sex is": "الجنس هو", + "Sham Cash": "شام كاش", + "ShamCash Account": "حساب شام كاش", + "Share": "مشاركة", + "Share App": "شارك التطبيق", + "Share Code": "شارك الكود", + "Share Trip Details": "شارك تفاصيل الرحلة", + "Share the app with another new driver": "شارك التطبيق مع سائق جديد تاني", + "Share the app with another new passenger": "شارك التطبيق مع راكب جديد تاني", + "Share this code to earn rewards": "شارك هذا الكود لكسب المكافآت", + "Share this code with other drivers. Both of you will receive rewards!": "شارك هالكود مع سواقين تانيين. كلكم رح تاخدوا مكافآت!", + "Share this code with passengers and earn rewards when they use it!": "شارك هالكود مع ركاب واكسب مكافآت لما يستخدموه!", + "Share this code with your friends and earn rewards when they use it!": "شارك هالكود مع صحابك واكسب مكافآت لما يستخدموه!", + "Share via": "مشاركة عبر", + "Share with friends and earn rewards": "شارك مع صحابك واكسب مكافآت", + "Share your experience to help us improve...": "شارك تجربتك عشان تساعدنا نتحسّن...", + "Show Invitations": "عرض الدعوات", + "Show My Trip Count": "عرض عدد رحلاتي", + "Show Promos": "عرض العروض", + "Show Promos to Charge": "عرض العروض للشحن", + "Show behavior page": "عرض صفحة السلوك", + "Show health insurance providers near me": "اعرض مزودي التأمين الصحي القريبين مني", + "Show latest promo": "عرض أحدث عرض ترويجي", + "Show maintenance center near my location": "اعرض مراكز الصيانة القريبة مني", + "Show my Cars": "عرض سياراتي", + "Showing": "عرض", + "Sign In by Apple": "تسجيل الدخول بآبل", + "Sign In by Google": "تسجيل الدخول بجوجل", + "Sign In with Google": "تسجيل الدخول بجوجل", + "Sign Out": "تسجيل خروج", + "Sign in for a seamless experience": "سجل دخول لتجربة سلسة", + "Sign in to start your journey": "سجل الدخول لبدء رحلتك", + "Sign in with Apple": "تسجيل الدخول بآبل", + "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": "Siro 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": "Siro123", + "Siro: For fixed salary and endpoints.": "سيرو: للراتب الثابت والمحطات النهائية.", + "Slide to End Trip": "اسحب عشان تنهي الرحلة", + "So go and gain your money": "يلا استلم فلوسك", + "Social Butterfly": "الفراشة الاجتماعية", + "Societe Arabe Internationale De Banque": "المجتمع العربي الدولي للبنوك", + "Something went wrong. Please try again.": "صار شي غلط. جرب مرة تانية.", + "Sorry": "آسف", + "Sorry, the order was taken by another driver.": "آسف، الطلب أخذه سائق تاني.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان واسعة مثالية للعائلات والمجموعات. رحلة مريحة، آمنة، واقتصادية سوا.", + "Speaker": "مكبر الصوت", + "Special Order": "طلب خاص", + "Speed": "السرعة", + "Speed Order": "طلب سريع", + "Speed 🔻": "سرعة 🔻", + "Standard Call": "مكالمة عادية", + "Standard support": "دعم قياسي", + "Start": "ابدأ", + "Start Navigation?": "بدء الملاحة؟", + "Start Record": "ابدأ التسجيل", + "Start Ride": "ابدأ الرحلة", + "Start Trip": "ابدأ الرحلة", + "Start Trip?": "ابدأ الرحلة؟", + "Start sharing your code!": "ابدأ بمشاركة كودك!", + "Start the Ride": "ابدأ الرحلة", + "Starting contacts sync in background...": "عم نبدأ مزامنة جهات الاتصال بالخلفية...", + "Statistic": "إحصائية", + "Statistics": "الإحصائيات", + "Status": "الحالة", + "Status is": "الحالة هي", + "Stay": "ابقى", + "Step-by-step instructions on how to request a ride through the Siro app.": "تعليمات خطوة بخطوة عشان تطلب رحلة عبر تطبيق سيرو.", + "Stop": "توقف", + "Store your money with us and receive it in your bank as a monthly salary.": "خزّن فلوسك عنا واستلمها ببنكك كراتب شهري.", + "Submission Failed": "فشل الإرسال", + "Submit": "إرسال", + "Submit ": "إرسال", + "Submit Complaint": "إرسال شكوى", + "Submit Question": "إرسال سؤال", + "Submit Rating": "إرسال تقييم", + "Submit Your Complaint": "أرسل شكواك", + "Submit Your Question": "أرسل سؤالك", + "Submit a Complaint": "قدّم شكوى", + "Submit rating": "أرسل تقييم", + "Success": "تم بنجاح", + "Suez Canal Bank": "بنك قناة السويس", + "Summary of your daily activity": "ملخص نشاطك اليومي", + "Sun": "الأحد", + "Support": "الدعم", + "Support Reply": "رد الدعم", + "Swipe to End Trip": "اسحب عشان تنهي الرحلة", + "Switch Rider": "تبديل الراكب", + "Switch between light and dark map styles": "بدّل بين أنماط الخريطة الفاتحة والداكنة", + "Switch between light and dark themes": "بدّل بين السمات الفاتحة والداكنة", + "Syria": "سوريا", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'ل.س", + "Syriatel Cash": "سيريتل كاش", + "Take Image": "التقط صورة", + "Take Photo Now": "التقط صورة هلق", + "Take Picture Of Driver License Card": "التقط صورة لرخصة السائق", + "Take Picture Of ID Card": "التقط صورة لبطاقة الهوية", + "Tap on the promo code to copy it!": "اضغط على كود الخصم عشان تنسخه!", + "Tap to upload": "اضغط عشان ترفع", + "Target": "الهدف", + "Tariff": "التعريفة", + "Tariffs": "التعريفات", + "Tax Expiry Date": "تاريخ انتهاء الضريبة", + "Terms of Use": "شروط الاستخدام", + "Terms of Use & Privacy Notice": "شروط الاستخدام وإشعار الخصوصية", + "Thank You!": "شكراً كتير!", + "Thanks": "شكراً", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "الـ 300 نقطة بتساوي 300 ل.م لك\\nيلا استلم فلوسك", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "الـ 30000 نقطة بتساوي 30000 ل.س لك\\nيلا استلم فلوسك", + "The Amount is less than": "المبلغ أقل من", + "The Driver Will be in your location soon .": "السائق رح يوصل لموقعك قريباً.", + "The United Bank": "البنك المتحد", + "The app may not work optimally": "ممكن التطبيق ما يشتغل بأحسن شكل", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "الملف الصوتي ما انرفع لسا.\\nبدك ترسل من دونه؟", + "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "المعلومات ما بتعطي تفاصيل عن الشكوى، فما بقدر قدّم حل. تفضّل قدّم المعلومات اللازمة، ورح أساعدك بكل سرور.", + "The distance less than 500 meter.": "المسافة أقل من 500 متر.", + "The driver accept your order for": "السائق قبل طلبك بـ", + "The driver accepted your order for": "السائق قبل طلبك بـ", + "The driver accepted your trip": "السائق قبل رحلتك", + "The driver canceled your ride.": "السائق ألغى رحلتك.", + "The driver is approaching.": "السائق عم يقرب.", + "The driver on your way": "السائق بطريقه لعندك", + "The driver waiting you in picked location .": "السائق عم يستنياك بمكان الالتقاط.", + "The driver waitting you in picked location .": "السائق عم يستنياك بمكان الالتقاط.", + "The drivers are reviewing your request": "السواقين عم يراجعوا طلبك", + "The email or phone number is already registered.": "البريد أو رقم الهاتف مسجل من قبل.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "الاسم الكامل بصحيفتك الجنائية ما بيتطابق مع رخصة السائق. تفضّل تحقق وقدّم الوثائق الصحيحة.", + "The invitation was sent successfully": "تم إرسال الدعوة بنجاح", + "The map will show an approximate view.": "ستعرض الخريطة نظرة تقريبية.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "الرقم القومي برخصة السائق ما بيتطابق مع الهوية. تفضّل تحقق وقدّم الوثائق الصحيحة.", + "The order Accepted by another Driver": "تم قبول الطلب من سائق تاني", + "The order has been accepted by another driver.": "تم قبول الطلب من سائق تاني.", + "The payment was approved.": "تمت الموافقة على الدفع.", + "The payment was not approved. Please try again.": "ما انقبل الدفع. تفضّل جرّب مرة تانية.", + "The period of this code is 24 hours": "صلاحية هذا الكود هي 24 ساعة", + "The price may increase if the route changes.": "السعر ممكن يزيد إذا تغيّر الطريق.", + "The price must be over than": "السعر لازم يكون أكثر من", + "The promotion period has ended.": "انتهت فترة العرض.", + "The reason is": "السبب هو", + "The selected contact does not have a phone number": "جهة الاتصال المختارة ما فيها رقم هاتف", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "بلشت الرحلة! تفضّل اتصل بأرقام الطوارئ، شارك رحلتك، أو فعّل التسجيل الصوتي للرحلة", + "There is no data yet.": "ما في بيانات لسا.", + "There is no help Question here": "ما في أسئلة مساعدة هون", + "There is no notification yet": "ما في إشعارات لسا", + "There no Driver Aplly your order sorry for that": "ما في سائق قدم على طلبك، آسفين علهيك", + "They register using your code": "يسجلون باستخدام كودك", + "This Trip Cancelled": "تم إلغاء هالرحلة", + "This Trip Was Cancelled": "تم إلغاء هالرحلة", + "This amount for all trip I get from Passengers": "هالمبلغ عن كل الرحلات اللي جبته من الركاب", + "This amount for all trip I get from Passengers and Collected For me in": "هالمبلغ عن كل الرحلات اللي جبته من الركاب وتم جمعه لي بـ", + "This driver is not registered": "هالسائق مش مسجل", + "This for new registration": "هالتسجيل جديد", + "This is a scheduled notification.": "هإشعار مبرمج.", + "This is for delivery or a motorcycle.": "هالتوصيل أو للموتوسيكل.", + "This is for scooter or a motorcycle.": "هالسكوتر أو للموتوسيكل.", + "This is the total number of rejected orders per day after accepting the orders": "هالعدد الكلي للطلبات المرفوضة باليوم بعد ما انقبلت", + "This page is only available for Android devices": "هالصفحة متاحة بس لأجهزة أندرويد", + "This phone number has already been invited.": "هالرقم انُدعِي من قبل.", + "This price is": "هالسعر هو", + "This price is fixed even if the route changes for the driver.": "هالسعر ثابت حتى لو تغيّر الطريق للسائق.", + "This price may be changed": "هالسعر ممكن يتغير", + "This ride is already applied by another driver.": "هالرحلة قدم عليها سائق تاني من قبل.", + "This ride is already taken by another driver.": "هالرحلة أخدها سائق تاني من قبل.", + "This ride type allows changes, but the price may increase": "هالنوع من الرحلات بيسمح بالتغييرات، بس السعر ممكن يزيد", + "This ride type does not allow changes to the destination or additional stops": "هالنوع من الرحلات ما بيسمح بتغيير الوجهة أو إضافة محطات", + "This ride was just accepted by another driver.": "هالرحلة انقبلت للتو من سائق تاني.", + "This service will be available soon.": "هالخدمة رح تتوفر قريباً.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "هالرحلة بتروح مباشرة من نقطة البداية للوجهة بسعر ثابت. السائق لازم يتبع الطريق المخطط", + "This trip is for women only": "هالرحلة للنساء بس", + "This will delete all recorded files from your device.": "هالشي رح يحذف كل الملفات المسجلة من جهازك.", + "Thu": "الخميس", + "Time": "الوقت", + "Time Finish is": "وقت الانتهاء هو", + "Time to Passenger": "الوقت للراكب", + "Time to Passenger is": "الوقت للراكب هو", + "Time to arrive": "وقت الوصول", + "TimeStart is": "وقت البدء هو", + "Times of Trip": "أوقات الرحلة", + "Tip is": "الإكرامية هي", + "To :": "إلى :", + "To Home": "للمنزل", + "To Work": "للعمل", + "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 change Language the App": "عشان تغير لغة التطبيق", + "To change some Settings": "عشان تغير بعض الإعدادات", + "To display orders instantly, please grant permission to draw over other apps.": "عشان تعرض الطلبات فوراً، تفضّل امنح صلاحية العرض فوق التطبيقات الأخرى.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "مشان نضمنلك أحسن تجربة، بنقترح تعديل الإعدادات لتناسب جهازك. بدك نكمل؟", + "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 use Wallet charge it": "عشان تستخدم المحفظة اشحنها", + "Today": "اليوم", + "Today Overview": "نظرة عامة على اليوم", + "Top up Balance": "شحن الرصيد", + "Top up Balance to continue": "اشحن الرصيد عشان تكمل", + "Top up Wallet": "شحن المحفظة", + "Top up Wallet to continue": "اشحن المحفظة عشان تكمل", + "Total Amount:": "المبلغ الإجمالي:", + "Total Budget from trips by": "إجمالي الميزانية من الرحلات بـ", + "Total Budget from trips by\\nCredit card is": "إجمالي الميزانية من الرحلات بـ\\nبطاقة الائتمان هي", + "Total Budget from trips is": "إجمالي الميزانية من الرحلات هو", + "Total Budget is": "إجمالي الميزانية هو", + "Total Connection": "إجمالي الاتصال", + "Total Connection Duration:": "إجمالي مدة الاتصال:", + "Total Cost": "التكلفة الإجمالية", + "Total Cost is": "التكلفة الإجمالية هي", + "Total Duration:": "إجمالي المدة:", + "Total Earnings": "إجمالي الأرباح", + "Total For You is": "الإجمالي لك هو", + "Total From Passenger is": "الإجمالي من الراكب هو", + "Total Hours on month": "إجمالي الساعات بالشهر", + "Total Invites": "إجمالي الدعوات", + "Total Net": "صافي الإجمالي", + "Total Orders": "إجمالي الطلبات", + "Total Points": "إجمالي النقاط", + "Total Points is": "إجمالي النقاط هو", + "Total Price": "السعر الإجمالي", + "Total Rides": "إجمالي الرحلات", + "Total Trips": "إجمالي الرحلات", + "Total Weekly Earnings": "إجمالي الأرباح الأسبوعية", + "Total budgets on month": "إجمالي الميزانيات بالشهر", + "Total is": "الإجمالي هو", + "Total points is": "إجمالي النقاط هو", + "Total price from": "السعر الإجمالي من", + "Total rides on month": "إجمالي الرحلات بالشهر", + "Total wallet is": "إجمالي المحفظة هو", + "Total weekly is": "إجمالي الأسبوعي هو", + "Transaction failed": "فشلت العملية", + "Transaction failed, please try again.": "فشلت العملية، يرجى المحاولة مرة أخرى.", + "Transaction successful": "نجاح العملية", + "Transactions this week": "المعاملات بهالأسبوع", + "Transfer": "تحويل", + "Transfer budget": "تحويل الميزانية", + "Transfer money multiple times.": "حوّل فلوس كذا مرة.", + "Transfer to anyone.": "حوّل لأي واحد.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "سافر بسيارة كهربائية حديثة وهادئة. خيار فاخر وصديق للبيئة لرحلة سلسة.", + "Traveled": "تم السفر", + "Trip": "مشوار", + "Trip Cancelled": "انلغى المشوار", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "انلغى المشوار من السائق. عم نبحث عن سائق جديد. تفضّل استنى.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "تم إلغاء الرحلة. رح تتضاف تكلفة الرحلة لمحفظتك.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "تم إلغاء الرحلة. رح تنخصم تكلفة الرحلة من محفظتك.", + "Trip Completed": "تمت الرحلة", + "Trip Detail": "تفاصيل الرحلة", + "Trip Details": "تفاصيل الرحلة", + "Trip Finished": "خلص المشوار", + "Trip ID": "رقم الرحلة", + "Trip Info": "معلومات الرحلة", + "Trip Monitor": "مراقب الرحلة", + "Trip Monitoring": "مراقبة الرحلة", + "Trip Started": "بلش المشوار", + "Trip Status:": "حالة الرحلة:", + "Trip Summary with": "ملخص الرحلة مع", + "Trip Timeline": "خط زمني للرحلة", + "Trip finished": "الرحلة خلصت", + "Trip has Steps": "الرحلة فيها محطات", + "Trip is Begin": "بلشت الرحلة", + "Trip taken": "تم أخذ الرحلة", + "Trip updated successfully": "تم تحديث الرحلة بنجاح", + "Trips": "الرحلات", + "Trips recorded": "تم تسجيل الرحلات", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "الرحلات: \\\$trips / \\\$target", + "Tue": "الثلاثاء", + "Turkey": "تركيا", + "Turn left": "انعطف يسار", + "Turn right": "انعطف يمين", + "Turn sharp left": "انعطف حاد يسار", + "Turn sharp right": "انعطف حاد يمين", + "Turn slight left": "انعطف خفيف يسار", + "Turn slight right": "انعطف خفيف يمين", + "Type Any thing": "اكتب أي شي", + "Type a message...": "اكتب رسالة...", + "Type here Place": "اكتب المكان هون", + "Type something": "اكتب شيئًا", + "Type something...": "اكتب شيئًا...", + "Type your Email": "اكتب بريدك الإلكتروني", + "Type your message": "اكتب رسالتك", + "Type your message...": "اكتب رسالتك...", + "Types of Trips in Siro:": "أنواع الرحلات بسيرو:", + "USA": "أمريكا", + "Uncompromising Security": "أمان لا يتنازل عنه", + "Unknown": "غير معروف", + "Unknown Driver": "سائق غير معروف", + "Unknown Location": "موقع غير معروف", + "Update": "تحديث", + "Update Available": "في تحديث جديد", + "Update Education": "تحديث التعليم", + "Update Gender": "تحديث الجنس", + "Updated": "تم التحديث", + "Updated successfully": "تم التحديث بنجاح", + "Upload Documents": "ارفع المستندات", + "Upload or AI failed": "فشل الرفع أو الذكاء الاصطناعي", + "Uploaded": "تم الرفع", + "Use Touch ID or Face ID to confirm payment": "استخدم بصمة الإصبع أو الوجه لتأكيد الدفع", + "Use code:": "استخدم الكود:", + "Use my invitation code to get a special gift on your first ride!": "استخدم كود الدعوة بتاعي عشان تاخد هدية خاصة بأول رحلة!", + "Use my referral code:": "استخدم كود الدعوة بتاعي:", + "Use this code in registration": "استخدم هالكود بالتسجيل", + "User does not exist.": "المستخدم مش موجود.", + "User does not have a wallet #1652": "المستخدم ما عندو محفظة #1652", + "User not found": "ما لقينا المستخدم", + "User not logged in": "المستخدم غير مسجل دخول", + "User with this phone number or email already exists.": "مستخدم بهالرقم أو البريد موجود من قبل.", + "Uses cellular network": "يستخدم شبكة الجوال", + "VIN": "رقم الهيكل", + "VIN :": "رقم الهيكل :", + "VIN is": "رقم الهيكل هو", + "VIP Order": "طلب VIP", + "VIP Order Accepted": "تم قبول طلب VIP", + "VIP Orders": "طلبات VIP", + "VIP first": "أولوية VIP", + "Valid Until:": "صالح حتى:", + "Value": "القيمة", + "Van": "فان", + "Van / Bus": "فان / باص", + "Van for familly": "فان للعائلات", + "Variety of Trip Choices": "تنوع خيارات الرحلات", + "Vehicle": "المركبة", + "Vehicle Category": "فئة المركبة", + "Vehicle Details": "تفاصيل المركبة", + "Vehicle Details Back": "تفاصيل المركبة (خلفي)", + "Vehicle Details Front": "تفاصيل المركبة (أمامي)", + "Vehicle Information": "معلومات المركبة", + "Vehicle Options": "خيارات المركبة", + "Verification Code": "رمز التحقق", + "Verify": "توثيق", + "Verify Email": "توثيق البريد", + "Verify Email For Driver": "توثيق البريد للسائق", + "Verify OTP": "توثيق OTP", + "Vibration": "اهتزاز", + "Vibration feedback for all buttons": "تغذية راجعة بالاهتزاز لكل الأزرار", + "Vibration feedback for buttons": "تغذية راجعة بالاهتزاز للأزرار", + "Videos Tutorials": "فيديوهات تعليمية", + "View All": "عرض الكل", + "View your past transactions": "شوف معاملاتك السابقة", + "Visa": "فيزا", + "Visit Website/Contact Support": "زور الموقع/تواصل مع الدعم", + "Visit our website or contact Siro support for information on driver registration and requirements.": "زور موقعنا أو تواصل مع دعم سيرو لمعلومات عن تسجيل السائق والمتطلبات.", + "Voice Calling": "الاتصال الصوتي", + "Voice call over internet": "مكالمة صوتية عبر الإنترنت", + "Wait for timer": "استنى ليخلص الوقت", + "Waiting": "بالانتظار", + "Waiting Time": "وقت الانتظار", + "Waiting VIP": "انتظار VIP", + "Waiting for Captin ...": "عم نستنى الكابتن...", + "Waiting for Driver ...": "عم نستنى السائق...", + "Waiting for trips": "بانتظار الرحلات", + "Waiting for your location": "عم نستنى موقعك", + "Wallet": "المحفظة", + "Wallet Add": "إضافة للمحفظة", + "Wallet Added": "تمت الإضافة للمحفظة", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة للمحفظة \\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "تمت الإضافة للمحفظة \\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "الدفع عبر المحفظة", + "Wallet Phone Number": "رقم هاتف المحفظة", + "Wallet Type": "نوع المحفظة", + "Wallet is blocked": "المحفظة محظورة", + "Wallet!": "المحفظة!", + "Warning": "تحذير", + "Warning: Siroing 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 process picture please wait": "عم نعالج الصورة تفضّل استنى", + "We are process picture please wait ": "عم نعالج الصورة تفضّل استنى", + "We are search for nearst driver": "عم نبحث عن أقرب سائق", + "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 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:": "أرسلنا رمز تحقق لرقم جوالك:", + "We need access to your location to match you with nearby passengers and ensure accurate navigation.": "نحتاج صلاحية موقعك عشان نربطك بركاب قريبين ونضمن ملاحة دقيقة.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "نحتاج للوصول لموقعك عشان نربطك بالركاب القريبين ونوفر توجيه دقيق.", + "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 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 أرقام لبريدك الإلكتروني اللي قدّمته", + "We use location to get accurate and nearest passengers for you": "بنستخدم موقعك عشان نلاقي أدق وأقرب ركاب لك", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "بنستخدم موقعك الدقيق عشان نلاقي أقرب سائق متاح ونعطيك معلومات دقيقة للالتقاط والتنزيل. تقدر تدير هالشي بالإعدادات.", + "We will look for a new driver.\\nPlease wait.": "هنبحث عن سائق جديد.\\nمن فضلك انتظر.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "رح نرسل لك إشعار بمجرد الموافقة على حسابك. تقدر تغلق هالصفحة بأمان، ورح نعلمك لما تكتمل المراجعة.", + "Wed": "الأربعاء", + "Weekly Budget": "الميزانية الأسبوعية", + "Weekly Challenges": "التحديات الأسبوعية", + "Weekly Earnings": "الأرباح الأسبوعية", + "Weekly Plan": "الخطة الأسبوعية", + "Weekly Streak": "سلسلة أسبوعية", + "Weekly Summary": "الملخص الأسبوعي", + "Welcome": "ياهلا وسهلا", + "Welcome Back!": "مرحباً بعودتك!", + "Welcome Offer!": "عرض ترحيبي!", + "Welcome to Siro!": "أهلاً بسيرو!", + "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 the feature of our wallet?": "إيش مميزات محفظتنا؟", + "What safety measures does Siro offer?": "إيش إجراءات السلامة اللي بيقدمها سيرو؟", + "What types of vehicles are available?": "إيش أنواع المركبات المتاحة؟", + "WhatsApp": "واتساب", + "WhatsApp Location Extractor": "مستخرج موقع الواتساب", + "When": "متى", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "لما تكمل 500 رحلة، رح تكون مؤهل لعروض تأمين صحي حصرية.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "لما تكمل 600 رحلة، رح تكون مؤهل لعروض صيانة سيارتك.", + "Where are you going?": "وين رايح؟", + "Where are you, sir?": "وينك يا سيدي؟", + "Where to": "وين بدك تروح؟", + "Where you want go": "وين بدك تروح", + "Which method you will pay": "إيش طريقة الدفع اللي بدك تستخدمها", + "Why Choose Siro?": "ليش تختار سيرو؟", + "Why do you want to cancel this trip?": "ليش بدك تلغي هالرحلة؟", + "With Siro, you can get a ride to your destination in minutes.": "مع سيرو، تقدر تاخد رحلة لوجهتك بدقايق.", + "Withdraw": "سحب", + "Work": "العمل", + "Work & Contact": "العمل والتواصل", + "Work 30 consecutive days": "اعمل 30 يوم متتالي", + "Work 7 consecutive days": "اعمل 7 أيام متتالية", + "Work Days": "أيام العمل", + "Work Saved": "تم حفظ العمل", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 لـ 17:00.\\nتقدر ترسل رسالة واتساب أو بريد إلكتروني.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 ص لـ 4:00 م.\\nتقدر ترسل رسالة واتساب أو بريد إلكتروني.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "وقت العمل من 12:00 لـ 19:00.\\nتقدر ترسل رسالة واتساب أو بريد إلكتروني.", + "Would the passenger like to settle the remaining fare using their wallet?": "بد الراكب يسدّد الأجرة المتبقية بمحفظته؟", + "Would you like to proceed with health insurance?": "بدك تكمل مع التأمين الصحي؟", + "Write note": "اكتب ملاحظة", + "Write the reason for canceling the trip": "اكتب سبب إلغاء الرحلة", + "Write your comment here": "اكتب تعليقك هون", + "Write your reason...": "اكتب سببك...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "السنة", + "Year is": "السنة هي", + "Year of Manufacture": "سنة الصنع", + "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, but please note that cancellation fees may apply depending on how far in advance you cancel.": "إي، تقدر تلغي رحلتك، بس انتبه إن في رسوم إلغاء ممكن تتطبق حسب الوقت اللي بتلغي فيه.", + "You": "أنت", + "You Are Stopped For this Day !": "تم إيقافك لهاليوم!", + "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي الرحلة وتسترد التكلفة من", + "You Can Cancel the Trip and get Cost From": "تقدر تلغي الرحلة وتسترد التكلفة من", + "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي الرحلة إذا ما جاك الكابتن بالوقت المحدد", + "You Dont Have Any amount in": "ما عندك أي مبلغ بـ", + "You Dont Have Any places yet !": "ما عندك أي أماكن لسا!", + "You Earn today is": "أرباحك اليوم هي", + "You Have": "عندك", + "You Have Tips": "عندك إكراميات", + "You Have in": "عندك بـ", + "You Refused 3 Rides this Day that is the reason": "رفضت 3 رحلات بهاليوم وهيك السبب", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "رفضت 3 رحلات بهاليوم وهيك السبب\\nنشوفك بكرة!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "رفضت 3 رحلات بهاليوم وهيك السبب\\nنشوفك بكرة!", + "You Should be select reason.": "لازم تختار سبب.", + "You Should choose rate figure": "لازم تختار رقم التقييم", + "You Will Be Notified": "رح نبلّغك", + "You accepted the VIP order.": "قبلت طلب VIP.", + "You are Delete": "تم حذفك", + "You are Stopped": "تم إيقافك", + "You are buying": "أنت تقوم بشراء", + "You are far from passenger location": "أنت بعيد عن موقع الراكب", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "أنت برحلة نشطة. خروجك من هالشاشة ممكن يوقف التتبع. متأكد بدك تخرج؟", + "You are near the destination": "أنت قريب من الوجهة", + "You are not in near to passenger location": "أنت مش قريب من موقع الراكب", + "You are not near": "أنت مش قريب من", + "You are not near the passenger location": "أنت مش قريب من موقع الراكب", + "You can buy Points to let you online": "تقدر تشتري نقاط عشان تكون أونلاين", + "You can buy Points to let you online\\nby this list below": "تقدر تشتري نقاط عشان تكون أونلاين\\nبهالقائمة تحت", + "You can buy points from your budget": "تقدر تشتري نقاط من ميزانيتك", + "You can call or record audio during this trip.": "تقدر تتصل أو تسجّل صوت خلال هالرحلة.", + "You can call or record audio of this trip": "تقدر تتصل أو تسجّل صوت هالرحلة", + "You can cancel Ride now": "تقدر تلغي الرحلة هلق", + "You can cancel trip": "تقدر تلغي الرحلة", + "You can change the Country to get all features": "تقدر تغير البلد عشان تاخد كل الميزات", + "You can change the destination by long-pressing any point on the map": "تقدر تغير الوجهة بالضغط المطوّل على أي نقطة بالخريطة", + "You can change the language of the app": "تقدر تغير لغة التطبيق", + "You can change the vibration feedback for all buttons": "تقدر تغير الاهتزاز لكل الأزرار", + "You can claim your gift once they complete 2 trips.": "تقدر تستلم هديتك لما يكملوا رحلتين.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "تقدر تتواصل مع السائق أو الراكب عبر الدردشة جوا التطبيق بعد ما تتأكد الرحلة.", + "You can contact us during working hours from 10:00 - 16:00.": "تقدر تتواصل معنا بساعات العمل من 10:00 لـ 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "تقدر تتواصل معنا بساعات العمل من 10:00 لـ 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "تقدر تتواصل معنا بساعات العمل من 12:00 لـ 19:00.", + "You can decline a request without any cost": "تقدر ترفض طلب من دون أي تكلفة", + "You can now receive orders": "الآن تقدر تستلم طلبات", + "You can only use one device at a time. This device will now be set as your active device.": "تقدر تستخدم جهاز واحد بوقت واحد. هالجهاز رح يصير جهازك النشط هلق.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "تقدر تدفع لرحلتك كاش أو ببطاقة ائتمان/خصم. تقدر تختار طريقة الدفع المفضلة قبل ما تؤكد الرحلة.", + "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 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", + "You cannot call the passenger due to policy violations": "ما تقدر تتصل بالراكب بسبب انتهاكات السياسة", + "You deserve the gift": "أنت تستحق الهدية", + "You do not have enough money in your SAFAR wallet": "ما عندك فلوس كافية بمحفظة سفرك", + "You dont Add Emergency Phone Yet!": "ما ضفت رقم طوارئ لسا!", + "You dont have Points": "ما عندك نقاط", + "You dont have invitation code": "ما عندك كود دعوة", + "You dont have money in your Wallet": "ما عندك فلوس بمحفظتك", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "ما عندك فلوس بمحفظتك أو لازم تحول أقل من 5 ل.م عشان تفعّل", + "You gained": "ربحت", + "You get 100 pts, they get 50 pts": "أنت تكسب 100 نقطة، وهم يكسبون 50 نقطة", + "You have": "عندك", + "You have 200": "عندك 200", + "You have 500": "عندك 500", + "You have already received your gift for inviting": "استلمت هديتك للدعوة من قبل", + "You have already used this promo code.": "استخدمت هالكود الترويجي من قبل.", + "You have arrived at your destination": "وصلت لوجهتك", + "You have arrived at your destination, @name": "وصلت لوجهتك، @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "قمت بالقيادة لمدة 12 ساعة. لسلامتك والامتثال، يرجى أخذ استراحة لمدة 6 ساعات.", + "You have call from driver": "عندك مكالمة من السائق", + "You have chosen not to proceed with health insurance.": "اخترت ما تكمل مع التأمين الصحي.", + "You have copied the promo code.": "نسخت الكود الترويجي.", + "You have earned 20": "ربحت 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "تجاوزت الحد المسموح للإلغاء (3 مرات).\\nما تقدر تشتغل لحتى تنتهي العقوبة.", + "You have finished all times": "خلصت كل الأوقات", + "You have finished all times ": "خلصت كل الأوقات", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "عندك هدية 300 ج.م", + "You have gift 300 JOD": "عندك هدية 300 د.أ", + "You have gift 300 L.E": "عندك هدية 300 ل.م", + "You have gift 300 SYP": "عندك هدية 300 ل.س", + "You have gift 300 \\\${CurrencyHelper.currency}": "عندك هدية 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "عندك هدية 30000 ج.م", + "You have gift 30000 JOD": "عندك هدية 30000 د.أ", + "You have gift 30000 SYP": "عندك هدية 30000 ل.س", + "You have got a gift": "وصلتك هدية", + "You have got a gift for invitation": "وصلتك هدية للدعوة", + "You have in account": "لديك في الحساب", + "You have promo!": "عندك عرض ترويجي!", + "You have received a gift token!": "استلمت رمز هدية!", + "You have successfully charged your account": "شحنت حسابك بنجاح", + "You have successfully opted for health insurance.": "اخترت التأمين الصحي بنجاح.", + "You have transfer to your wallet from": "تم التحويل لمحفظتك من", + "You have transferred to your wallet from": "تم التحويل لمحفظتك من", + "You have upload Criminal documents": "رفعت وثائق جنائية", + "You haven't moved sufficiently!": "لم تتحرك بالقدر الكافي", + "You must Verify email !.": "لازم توثّق بريدك الإلكتروني !.", + "You must be charge your Account": "لازم تشحن حسابك", + "You must be closer than 100 meters to arrive": "لازم تكون أقرب من 100 متر مشان توصل", + "You must be recharge your Account": "لازم تعيد شحن حسابك", + "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق عشان تغير اللغة.", + "You need to be closer to the pickup location.": "لازم تكون أقرب لموقع الالتقاط.", + "You need to complete 500 trips": "لازم تكمل 500 رحلة", + "You should complete 500 trips to unlock this feature.": "لازم تكمل 500 رحلة عشان تفتح هالميزة.", + "You should complete 600 trips": "لازم تكمل 600 رحلة", + "You should have upload it .": "لازم تكون رفعتها.", + "You should renew Driver license": "لازم تجدّد رخصة السائق", + "You should restart app to change language": "لازم تعيد تشغيل التطبيق عشان تغير اللغة", + "You should select one": "لازم تختار واحد", + "You should select your country": "لازم تختار بلدك", + "You should use Touch ID or Face ID to confirm payment": "لازم تستخدم بصمة اللمس أو الوجه لتأكيد الدفع", + "You trip distance is": "مسافة رحلتك هي", + "You will arrive to your destination after": "رح توصل لوجهتك بعد", + "You will arrive to your destination after timer end.": "رح توصل لوجهتك بعد ما يخلص العداد.", + "You will be charged for the cost of the driver coming to your location.": "رح يتحسب عليك تكلفة وصول السائق لموقعك.", + "You will be pay the cost to driver or we will get it from you on next trip": "رح تدفع التكلفة للسائق أو بنخصمها من رحلتك الجاية", + "You will be thier in": "رح توصل هناك بـ", + "You will cancel registration": "رح تلغي التسجيل", + "You will choose allow all the time to be ready receive orders": "رح تختار السماح دايماً عشان تكون جاهز تستلم طلبات", + "You will choose one of above !": "رح تختار واحد من فوق!", + "You will get cost of your work for this trip": "رح تاخد أجرة شغلك بهالرحلة", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "لازم تدفع التكلفة للسائق، أو رح تنخصم من رحلتك الجاية", + "You will receive a code in SMS message": "رح تستلم كود برسالة SMS", + "You will receive a code in WhatsApp Messenger": "رح تستلم كود بواتساب", + "You will receive code in sms message": "رح تستلم كود برسالة SMS", + "You will recieve code in sms message": "رح تستلم كود برسالة SMS", + "Your Account is Deleted": "تم حذف حسابك", + "Your Activity": "نشاطك", + "Your Application is Under Review": "طلبك قيد المراجعة", + "Your Budget less than needed": "رصيدك أقل من المطلوب", + "Your Choice, Our Priority": "اختيارك، أولويتنا", + "Your Driver Referral Code": "كود دعوة السائق بتاعك", + "Your Earnings": "أرباحك", + "Your Journey Begins Here": "رحلتك بلشت من هون", + "Your Name is Wrong": "اسمك غلط", + "Your Passenger Referral Code": "كود دعوة الراكب بتاعك", + "Your Question": "سؤالك", + "Your Questions": "أسئلتك", + "Your Referral Code": "كود الإحالة الخاص بك", + "Your Rewards": "مكافآتك", + "Your Ride Duration is": "مدة رحلتك هي", + "Your Wallet balance is": "رصيد محفظتك هو", + "Your account is temporarily restricted ⛔": "حسابك مقيد مؤقتاً ⛔", + "Your are far from passenger location": "أنت بعيد عن موقع الراكب", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "رصيدك أقل من الحد الأدنى للسحب وهو {minAmount} ل.س.", + "Your complaint has been submitted.": "تم إرسال شكواك.", + "Your completed trips will appear here": "ستظهر رحلاتك المكتملة هنا", + "Your data will be erased after 2 weeks": "بياناتك رح تنمسح بعد أسبوعين", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "بياناتك رح تنمسح بعد أسبوعين\\nوما رح تقدر ترجع تستخدم التطبيق بعد شهر", + "Your device appears to be compromised. The app will now close.": "يبدو أن جهازك مخترق. سيتم إغلاق التطبيق الآن.", + "Your device is good and very suitable": "جهازك جيد ومناسب كتير", + "Your device provides excellent performance": "جهازك بيعطيك أداء ممتاز", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "رخصة سيارتك و/أو ضريبة السيارة منتهية. تفضّل تجددها قبل ما تكمل.", + "Your driver’s license has expired.": "رخصة سيارتك منتهية.", + "Your driver’s license has expired. Please renew it before proceeding.": "رخصة سيارتك منتهية. تفضّل تجددها قبل ما تكمل.", + "Your driver’s license has expired. Please renew it.": "رخصة سيارتك منتهية. تفضّل تجددها.", + "Your email address": "عنوان بريدك الإلكتروني", + "Your email not updated yet": "بريدك ما انحدث لسا", + "Your fee is": "أجرتك هي", + "Your invite code was successfully applied!": "تم تطبيق كود الدعوة بنجاح!", + "Your journey starts here": "رحلتك بلشت من هون", + "Your location is being tracked in the background.": "موقعك عم يتتبع بالخلفية.", + "Your name": "اسمك", + "Your order is being prepared": "طلبك عم يتجهّز", + "Your order sent to drivers": "تم إرسال طلبك للسواقين", + "Your password": "كلمة مرورك", + "Your past trips will appear here.": "رحلاتك السابقة رح تظهر هون.", + "Your payment is being processed and your wallet will be updated shortly.": "يتم معالجة دفعتك وسيتم تحديث محفظتك قريباً.", + "Your payment was successful.": "تم دفعك بنجاح.", + "Your personal invitation code is:": "كود الدعوة الشخصي بتاعك هو:", + "Your rating has been submitted.": "تم إرسال تقييمك.", + "Your total balance:": "رصيدك الإجمالي:", + "Your trip cost is": "تكلفة رحلتك هي", + "Your trip distance is": "مسافة رحلتك هي", + "Your trip is scheduled": "رحلتك مجدولة", + "Your valuable feedback helps us improve our service quality.": "تعليقك القيم بيساعدنا نحسّن جودة خدمتنا.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"نقطة", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'رحلة", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'رحلة", + "\\\$error": "صار خطأ", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'تمت إضافته لميزانيتك", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"أدنى مبلغ للتحويل هو", + "\\\${\"NEXT STEP": "\\\${\"الخطوة التالية", + "\\\${\"NationalID": "\\\${\"الهوية الشخصية", + "\\\${\"Passenger cancelled the ride.": "\\\${\"ألغى الراكب الرحلة.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"إجمالي الميزانيات بالشهر\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"إجمالي الرحلات بالشهر\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"رسوم التحويل", + "\\\${\"You must leave at least": "\\\${\"يجب أن تترك على الأقل", + "\\\${\"amount": "\\\${\"المبلغ", + "\\\${\"transaction_id": "\\\${\"رقم_العملية", + "\\\${'*Siro APP CODE*": "\\\${'*كود تطبيق سيرو*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*كود سائق سيرو*", + "\\\${'Address": "\\\${'العنوان", + "\\\${'Address: ": "\\\${'العنوان: ", + "\\\${'Age": "\\\${'العمر", + "\\\${'An unexpected error occurred:": "\\\${'حدث خطأ غير متوقع:", + "\\\${'Average of Hours of": "\\\${'متوسط ساعات", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'تأكد من التقاط صور واضحة من فضلك\\nلديك", + "\\\${'Car Expire": "\\\${'انتهاء صلاحية السيارة", + "\\\${'Car Kind": "\\\${'نوع السيارة", + "\\\${'Car Plate": "\\\${'لوحة السيارة", + "\\\${'Chassis": "\\\${'الشاسيه", + "\\\${'Color": "\\\${'اللون", + "\\\${'Date of Birth": "\\\${'تاريخ الميلاد", + "\\\${'Date of Birth: ": "\\\${'تاريخ الميلاد: ", + "\\\${'Displacement": "\\\${'الإزاحة", + "\\\${'Document Number: ": "\\\${'رقم الوثيقة: ", + "\\\${'Drivers License Class": "\\\${'فئة رخصة السائق", + "\\\${'Drivers License Class: ": "\\\${'فئة رخصة السائق: ", + "\\\${'Expiry Date": "\\\${'تاريخ الانتهاء", + "\\\${'Expiry Date: ": "\\\${'تاريخ الانتهاء: ", + "\\\${'Failed to save driver data": "\\\${'فشل حفظ بيانات السائق", + "\\\${'Fuel": "\\\${'الوقود", + "\\\${'FullName": "\\\${'الاسم الكامل", + "\\\${'Height: ": "\\\${'الطول: ", + "\\\${'Hi": "\\\${'أهلاً", + "\\\${'How can I register as a driver?": "\\\${'كيف يمكنني التسجيل كسائق؟", + "\\\${'Inspection Date": "\\\${'تاريخ الفحص", + "\\\${'InspectionResult": "\\\${'نتيجة الفحص", + "\\\${'IssueDate": "\\\${'تاريخ الإصدار", + "\\\${'License Expiry Date": "\\\${'تاريخ انتهاء الرخصة", + "\\\${'Made :": "\\\${'صنع :", + "\\\${'Make": "\\\${'الماركة", + "\\\${'Model": "\\\${'الموديل", + "\\\${'Name": "\\\${'الاسم", + "\\\${'Name :": "\\\${'الاسم :", + "\\\${'Name in arabic": "\\\${'الاسم بالعربي", + "\\\${'National Number": "\\\${'الرقم القومي", + "\\\${'NationalID": "\\\${'الهوية الشخصية", + "\\\${'Next Level:": "\\\${'المستوى التالي:", + "\\\${'OrderId": "\\\${'رقم_الطلب", + "\\\${'Owner Name": "\\\${'اسم المالك", + "\\\${'Plate Number": "\\\${'رقم اللوحة", + "\\\${'Please enter": "\\\${'الرجاء إدخال", + "\\\${'Please wait": "\\\${'يرجى الانتظار", + "\\\${'Price:": "\\\${'السعر:", + "\\\${'Remaining:": "\\\${'المتبقي:", + "\\\${'Ride": "\\\${'رحلة", + "\\\${'Tax Expiry Date": "\\\${'تاريخ انتهاء الضريبة", + "\\\${'The price must be over than ": "\\\${'يجب أن يكون السعر أعلى من ", + "\\\${'The reason is": "\\\${'السبب هو", + "\\\${'Transaction successful": "\\\${'تمت العملية بنجاح", + "\\\${'Update": "\\\${'تحديث", + "\\\${'VIN :": "\\\${'رقم الهيكل :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'لقد أرسلنا رمز تحقق إلى رقم هاتفك:", + "\\\${'When": "\\\${'متى", + "\\\${'Year": "\\\${'السنة", + "\\\${'You can resend in": "\\\${'يمكنك إعادة الإرسال خلال", + "\\\${'You gained": "\\\${'لقد ربحت", + "\\\${'You have call from driver": "\\\${'لديك مكالمة من السائق", + "\\\${'You have in account": "\\\${'لديك في الحساب", + "\\\${'before": "\\\${'قبل", + "\\\${'expected": "\\\${'متوقع", + "\\\${'model :": "\\\${'موديل :", + "\\\${'wallet_credited_message": "\\\${'تم إضافة الرصيد للمحفظة", + "\\\${'year :": "\\\${'سنة :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'تاريخ الانتهاء", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'رحلة", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'رحلة", + "\\\${AppInformation.appName} Wallet": "محفظة \\\${AppInformation.appName}", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'نقطة", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'رحلة", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'إنجاز", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'مراجعة", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'نشط", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'إجمالي الدعوات", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'مكافآت", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'يوم", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "حدث خطأ", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "محفظة \\\\\\\${AppInformation.appName}", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nكمان بنعطي أولوية للتوفير، بنقدّم أسعار منافسة عشان الرحلات تكون بمتناول إيدك.", + "accepted": "مقبول", + "accepted your order": "قبل طلبك", + "accepted your order at price": "قبل طلبك بسعر", + "age": "العمر", + "agreement subtitle": "عنوان الاتفاقية", + "airport": "المطار", + "alert": "تنبيه", + "amount": "المبلغ", + "amount_paid": "المبلغ المدفوع", + "an error occurred": "حدث خطأ", + "and I have a trip on": "وعندي رحلة بـ", + "and acknowledge our": "ونوافق على", + "and acknowledge our Privacy Policy.": "ونوافق على سياسة الخصوصية.", + "and acknowledge the": "ونوافق على", + "app_description": "وصف التطبيق", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "وقت الوصول لنقطتك", + "as the driver.": "كسائق.", + "attach audio of complain": "أرفق صوت الشكوى", + "attach correct audio": "أرفق الصوت الصحيح", + "be sure": "تأكد", + "before": "قبل", + "below, I confirm that I have read and agree to the": "أدناه، أؤكد أنني قرأت ووافقت على", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "أدناه، راجعت ووافقت على شروط الاستخدام وأوافق على", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "أدناه، راجعت ووافقت على شروط الاستخدام وأوافق على سياسة الخصوصية. عمري 18 سنة أو أكثر.", + "birthdate": "تاريخ الميلاد", + "bonus_added": "البونص المضاف", + "by": "بواسطة", + "by this list below": "بهالقائمة تحت", + "cancel": "إلغاء", + "carType'] ?? 'Fixed Price": "carType'] ?? 'سعر ثابت", + "car_back": "خلفي السيارة", + "car_color": "لون السيارة", + "car_front": "أمامي السيارة", + "car_license_back": "الجانب الخلفي لرخصة السيارة", + "car_license_front": "الجانب الأمامي لرخصة السيارة", + "car_model": "موديل السيارة", + "car_plate": "لوحة السيارة", + "change device": "تغيير الجهاز", "color.beige": "بيج", "color.black": "أسود", "color.blue": "أزرق", @@ -558,514 +2322,71 @@ final Map ar_sy = { "color.silver": "فضي", "color.white": "أبيض", "color.yellow": "أصفر", - "Comfort": "كومفورت", - "Comfort choice": "خيار مريح", - "Comfort ❄️": "كومفورت ❄️", - "Comfort: For cars newer than 2017 with air conditioning.": - "كومفورت: للسيارات موديل 2017 وما فوق مع تكييف.", - "Coming Soon": "قريباً", - "Commercial International Bank - Egypt S.A.E": "البنك التجاري الدولي - مصر", - "Commission": "العمولة", "committed_to_safety": "ملتزم بالسلامة", - "Communication": "التواصل", - "Compatible, you may notice some slowness": "متوافق، بس ممكن تلاحظ شوية بطء", - "Compensation Received": "تم استلام التعويض", - "Complaint": "شكوى", - "Complaint cannot be filed for this ride. It may not have been completed or started.": - "لا يمكن تقديم شكوى لهذه الرحلة. قد لا تكون مكتملة أو لم تبدأ بعد.", - "Complaint data saved successfully": "تم حفظ بيانات الشكوى بنجاح", - "Complete 100 trips": "أكمل 100 رحلة", - "Complete 50 trips": "أكمل 50 رحلة", - "Complete 500 trips": "أكمل 500 رحلة", - "Complete Payment": "إتمام الدفع", "complete profile subtitle": "عنوان إكمال الملف", "complete registration button": "زر إكمال التسجيل", - "Complete your first trip": "أكمل أول رحلة لك", "complete, you can claim your gift": "اكمل، تقدر تستلم هديتك", - "Completed": "مكتملة", - "Confirm": "تأكيد", - "Confirm & Find a Ride": "تأكيد والبحث عن رحلة", - "Confirm Attachment": "تأكيد المرفق", - "Confirm Cancellation": "تأكيد الإلغاء", - "Confirm Payment": "تأكيد الدفع", - "Confirm payment with biometrics": "تأكيد الدفع بالبصمة", - "Confirm Pick-up Location": "تأكيد موقع الالتقاط", - "Confirm Selection": "تأكيد الاختيار", - "Confirm Trip": "تأكيد الرحلة", - "Confirm your Email": "تأكيد بريدك الإلكتروني", - "Confirmation": "تأكيد", - "Connected": "متصل", - "Connecting...": "عم يتم الاتصال...", - "Connection error": "خطأ في الاتصال", "connection_failed": "فشل الاتصال", - "Contact Options": "خيارات التواصل", - "Contact permission is required to pick a contact": - "مطلوب صلاحية جهات الاتصال عشان تختار جهة اتصال", - "Contact permission is required to pick contacts": - "مطلوب صلاحية جهات الاتصال عشان تختار جهات اتصال", - "Contact Support": "تواصل مع الدعم", - "Contact Support to Recharge": "تواصل مع الدعم للشحن", - "Contact Us": "تواصل معنا", - "Contact us for any questions on your order.": "تواصل معنا لأي سؤال عن طلبك.", - "Contacts Loaded": "تم تحميل جهات الاتصال", - "Contacts sync completed successfully!": "تمت مزامنة جهات الاتصال بنجاح!", - "Continue": "متابعة", - "Continue Ride": "متابعة الرحلة", - "Continue straight": "كمل على خط مستقيم", - "Continue to App": "أكمل للتطبيق", "copied to clipboard": "تم النسخ للحافظة", - "Copy": "نسخ", - "Copy Code": "نسخ الكود", - "Copy this Promo to use it in your Ride!": - "انسخ هذا العرض عشان تستخدمه برحلتك!", - "Cost": "التكلفة", - "Cost Duration": "مدة التكلفة", "cost is": "التكلفة هي", - "Cost Of Trip IS": "تكلفة الرحلة هي", - "Could not load trip details.": "تعذر تحميل تفاصيل الرحلة.", - "Could not start ride. Please check internet.": - "تعذر بدء الرحلة. يرجى التحقق من الإنترنت.", - "Counts of budgets on days": "عدد الميزانيات بالأيام", - "Counts of Hours on days": "عدد الساعات بالأيام", - "Counts of rides on days": "عدد الرحلات بالأيام", - "Create Account": "إنشاء حساب", - "Create Account with Email": "إنشاء حساب بالبريد الإلكتروني", - "Create Driver Account": "إنشاء حساب سائق", - "Create new Account": "إنشاء حساب جديد", - "Create Wallet to receive your money": "أنشئ محفظة عشان تستلم فلوسك", "created time": "وقت الإنشاء", - "Credit": "رصيد", - "Credit Agricole Egypt S.A.E": "كريدي أجريكول مصر", - "Credit card is": "بطاقة الائتمان هي", - "Criminal Document": "الوثيقة الجنائية", - "Criminal Document Required": "مطلوب وثيقة جنائية", - "Criminal Record": "صحيفة الحالة الجنائية", - "Cropper": "أداة القص", - "Current Balance": "الرصيد الحالي", - "Current Location": "الموقع الحالي", - "Customer MSISDN doesn’t have customer wallet": - "رقم هاتف العميل لا يحتوي على محفظة عميل", - "Customer not found": "لم يتم العثور على العميل", - "Customer phone is not active": "هاتف العميل غير نشط", - "Daily Challenges": "التحديات اليومية", - "Daily Goal": "الهدف اليومي", - "Date": "التاريخ", - "Date and Time Picker": "اختيار التاريخ والوقت", - "Date of Birth": "تاريخ الميلاد", - "Date of Birth is": "تاريخ الميلاد هو", - "Date of Birth:": "تاريخ الميلاد:", - "Day Off": "يوم عطلة", - "Day Streak": "سلسلة الأيام", - "Days": "الأيام", "de": "de", - "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سيرو ،", - "Debit": "خصم", - "Debit Card": "بطاقة خصم", - "Dec 15 - Dec 21, 2024": "15 كانون الأول - 21 كانون الأول 2024", - "Decline": "رفض", "default_tone": "النغمة الافتراضية", - "Delete": "حذف", - "Delete My Account": "احذف حسابي", - "Delete Permanently": "حذف نهائي", - "Deleted": "محذوف", "deleted": "تم الحذف", - "Delivery": "توصيل", - "Destination": "الوجهة", - "Destination Location": "موقع الوجهة", - "Destination selected": "تم اختيار الوجهة", - "Detect Your Face": "اكتشاف وجهك", - "Detect Your Face ": "اكتشاف وجهك", "detected": "تم الكشف عنه", - "Device Change Detected": "تم اكتشاف تغيير الجهاز", - "Device Compatibility": "توافق الجهاز", - "Diamond badge": "وسام ألماسي", - "Diesel": "ديزل", - "Directions": "الاتجاهات", - "DISCOUNT": "خصم", - "Displacement": "الإزاحة", - "Distance": "المسافة", - "Distance from Passenger to destination is": "المسافة من الراكب للوجهة هي", - "Distance is": "المسافة هي", "distance is": "المسافة هي", - "Distance of the Ride is": "مسافة الرحلة هي", - "Distance To Passenger is": "المسافة للراكب هي", - "Do you have a disease for a long time?": "عندك مرض مزمن من زمان؟", - "Do you have an invitation code from another driver?": - "عندك كود دعوة من سائق تاني؟", - "Do you want to change Home location": "بدك تغير موقع المنزل؟", - "Do you want to change Work location": "بدك تغير موقع العمل؟", - "Do you want to collect your earnings?": "بدك تجمع أرباحك؟", - "Do you want to go to this location?": "بدك تروح لهالموقع؟", - "Do you want to pay Tips for this Driver": "بدك تدفع إكرامية لهالسائق؟", - "Docs": "المستندات", - "Doctoral Degree": "دكتوراه", - "Document Number:": "رقم الوثيقة:", - "Documents check": "فحص المستندات", - "Don't have an account? Register": "ليس لديك حساب؟ سجل الآن", - "Done": "تم", - "Don’t forget your personal belongings.": "متنساش حاجاتك الشخصية.", - "Download the app now:": "حمّل التطبيق هلق:", - "Download the Siro app now and enjoy your ride!": - "حمّل تطبيق سيرو هلق واستمتع برحلتك!", - "Download the Siro Driver app now and earn rewards!": - "حمّل تطبيق سائق سيرو هلق واكسب مكافآت!", - "Drawing route on map...": "عم نرسم الطريق على الخريطة...", - "Driver": "السائق", - "Driver Accepted Request": "السائق قبل الطلب", - "Driver Accepted the Ride for You": "السائق قبل الرحلة لك", - "Driver Agreement": "اتفاقية السائق", - "Driver already has 2 trips within the specified period.": - "عند السائق رحلتين بهالفترة المحددة من قبل.", - "Driver Applied the Ride for You": "السائق قدم على الرحلة لك", - "Driver Balance": "رصيد السائق", - "Driver Behavior": "سلوك السائق", - "Driver Cancel Your Trip": "السائق ألغى رحلتك", - "Driver Cancelled Your Trip": "السائق ألغى رحلتك", - "Driver Car Plate": "لوحة سيارة السائق", - "Driver Finish Trip": "السائق أنهى الرحلة", - "Driver Invitations": "دعوات السائقين", - "Driver Is Going To Passenger": "السائق بيوصل للراكب", - "Driver is on the way": "السائق عم ييجي", - "Driver is waiting": "السائق عم يستنى", - "Driver is waiting at pickup.": "السائق عم يستنى بمكان الالتقاط.", - "Driver joined the channel": "السائق دخل القناة", - "Driver left the channel": "السائق خرج من القناة", - "Driver Level": "مستوى السائق", - "Driver License (Back)": "رخصة السائق (خلفي)", - "Driver License (Front)": "رخصة السائق (أمامي)", - "Driver List": "قائمة السائقين", - "Driver Login": "تسجيل دخول السائق", - "Driver Message": "رسالة السائق", - "Driver Name": "اسم السائق", - "Driver Name:": "اسم السائق:", - "Driver phone": "رقم السائق", - "Driver Phone:": "رقم السائق:", - "Driver Portal": "بوابة السائق", - "Driver Referral": "إحالة السائق", - "Driver Registration": "تسجيل السائق", - "Driver Registration & Requirements": "تسجيل السائق والمتطلبات", - "Driver Wallet": "محفظة السائق", "driver' ? 'Invite Driver": "driver' ? 'ادعُ سائقاً", - "Driver's Personal Information": "المعلومات الشخصية للسائق", - "DRIVER123": "DRIVER123", "driver_license": "رخصة القيادة", - "Drivers": "السواقين", - "Drivers License Class": "فئة رخصة السائق", - "Drivers License Class:": "فئة رخصة السائق:", - "Drivers received orders": "السواقين استلموا طلبات", - "Driving Behavior": "سلوك القيادة", - "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": - "بسبب كثرة الإلغاءات (3 مرات)، تم إيقاف استقبال الطلبات لمدة 4 ساعات.", - "Duration": "المدة", - "Duration is": "المدة هي", "duration is": "المدة هي", - "Duration of the Ride is": "مدة الرحلة هي", - "Duration of Trip is": "مدة الرحلة هي", - "Duration To Passenger is": "الوقت للراكب هو", - "E-Cash payment gateway": "بوابة دفع E-Cash", - "E-mail validé.\\\\": "تم التحقق من البريد الإلكتروني.\\\\", "e.g., 0912345678": "مثال: 0912345678", - "Earnings": "الأرباح", - "Earnings & Distance": "الأرباح والمسافة", - "Earnings Summary": "ملخص الأرباح", - "Edit": "تعديل", - "Edit Profile": "تعديل الملف الشخصي", - "Edit Your data": "عدّل بياناتك", - "Education": "التعليم", "education": "التعليم", - "EGP": "ج.م", - "Egypt": "مصر", - "Egypt Post": "البريد المصري", - "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", - "Egypt': return 'EGP": "Egypt': return 'ج.م", - "Egyptian Arab Land Bank": "البنك العقاري المصري العربي", - "Egyptian Gulf Bank": "البنك المصري الخليجي", "el": "el", - "Electric": "كهربائي", - "Email": "البريد الإلكتروني", - "Email is": "البريد هو", - "Email must be correct.": "البريد لازم يكون صحيح.", "email optional label": "تسمية البريد الاختياري", - "Email Us": "راسلنا", - "Email Wrong": "البريد خاطئ", - "Email you inserted is Wrong.": "البريد اللي أدخلته غلط.", - "email', 'support@sefer.live', 'Hello": - "email', 'support@sefer.live', 'أهلاً", - "Emergency Contact": "جهة اتصال طوارئ", - "Emergency Number": "رقم الطوارئ", - "Emirates National Bank of Dubai": "بنك الإمارات الوطني دبي", - "Employment Type": "نوع التوظيف", - "Enable Location": "تفعيل الموقع", - "Enable Location Access": "تفعيل الوصول للموقع", - "Enable Location Permission": "تفعيل صلاحية الموقع", - "End": "إنهاء", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'أهلاً", "end": "نهاية", - "End Ride": "أنهِ الرحلة", - "End Trip": "أنهِ الرحلة", - "end_name'] ?? 'Destination Location": "end_name'] ?? 'موقع الوجهة", "endName'] ?? 'Destination": "endName'] ?? 'الوجهة", - "Enjoy a safe and comfortable ride.": "استمتع برحلة آمنة ومريحة.", - "Enjoy competitive prices across all trip options, making travel accessible.": - "استمتع بأسعار منافسة بكل خيارات الرحلات، عشان السفر يكون بمتناول إيدك.", - "Ensure the passenger is in the car.": "تأكد إن الراكب دخل السيارة.", - "Enter a valid email": "أدخل بريد إلكتروني صحيح", - "Enter a valid year": "أدخل سنة صحيحة", - "Enter Amount Paid": "أدخل المبلغ المدفوع", - "Enter Health Insurance Provider": "أدخل مزود التأمين الصحي", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'موقع الوجهة", "enter otp validation": "أدخل تحقق OTP", - "Enter phone": "أدخل الهاتف", - "Enter phone number": "أدخل رقم الهاتف", - "Enter promo code": "أدخل كود الخصم", - "Enter promo code here": "أدخل كود الخصم هون", - "Enter the 3-digit code": "أدخل الكود المكون من ٣ أرقام", - "Enter the promo code and get": "أدخل كود الخصم واحصل على", - "Enter your City": "أدخل مدينتك", - "Enter your code below to apply the discount.": - "أدخل كودك تحت عشان تطبق الخصم.", - "Enter your complaint here": "أدخل شكواك هون", - "Enter your complaint here...": "أدخل شكواك هون...", - "Enter your email": "أدخل بريدك الإلكتروني", - "Enter your email address": "أدخل عنوان بريدك الإلكتروني", - "Enter your feedback here": "أدخل تعليقك هون", - "Enter Your First Name": "أدخل اسمك الأول", - "Enter your first name": "أدخل اسمك الأول", - "Enter your last name": "أدخل اسم عائلتك", - "Enter your Note": "أدخل ملاحظتك", - "Enter your Password": "أدخل كلمة المرور", - "Enter your password": "أدخل كلمة المرور", - "Enter your phone number": "أدخل رقم هاتفك", - "Enter your promo code": "أدخل كود الخصم بتاعك", - "Enter your Question here": "أدخل سؤالك هون", - "Enter your wallet number": "أدخل رقم محفظتك", - "Error": "خطأ", "error": "خطأ", - "Error connecting call": "خطأ في الاتصال", - "Error processing request": "خطأ في معالجة الطلب", - "Error starting voice call": "خطأ في بدء المكالمة الصوتية", - "Error uploading proof": "خطأ في رفع الإثبات", - "Error', 'An application error occurred.": "خطأ', 'حدث خطأ في التطبيق.", "error'] ?? 'Failed to claim reward": "error'] ?? 'فشل استلام المكافأة", "error_processing_document": "خطأ بمعالجة المستند", "es": "es", - "Evening": "المساء", - "Excellent": "ممتاز", - "Exclusive offers and discounts always with the Sefer app": - "عروض وخصومات حصرية دايماً مع تطبيق سفر", - "Exclusive offers and discounts always with the Siro app": - "عروض وخصومات حصرية دايماً مع تطبيق سيرو", - "Exit": "خروج", - "Exit Ride?": "تخرج من الرحلة؟", "expected": "متوقع", - "Expiration Date": "تاريخ الانتهاء", "expiration_date": "تاريخ الانتهاء", - "Expired Driver’s License": "رخصة السائق منتهية", - "Expired License": "رخصة منتهية", - "Expired License', 'Your driver’s license has expired.": - "رخصة منتهية', 'رخصة قيادتك منتهية.", - "Expiry Date": "تاريخ الانتهاء", - "Expiry Date:": "تاريخ الانتهاء:", - "Export Development Bank of Egypt": "بنك التصدير والاستيراد المصري", - "Extra 200 pts when they complete 10 trips": - "200 نقطة إضافية عند إكمال 10 رحلات", "fa": "fa", "face detect": "كشف الوجه", - "Face Detection Result": "نتيجة كشف الوجه", - "Failed": "فشل", - "Failed to add place. Please try again later.": - "تعذر إضافة المكان. يرجى المحاولة لاحقاً.", - "Failed to cancel ride": "فشل إلغاء الرحلة", - "Failed to claim reward": "فشل استلام المكافأة", - "Failed to connect to the server. Please try again.": - "تعذر الاتصال بالخادم. يرجى المحاولة مرة أخرى.", - "Failed to fetch rides. Please try again.": - "تعذر جلب الرحلات. يرجى المحاولة مرة أخرى.", - "Failed to finish ride. Please check internet.": - "فشل إنهاء الرحلة. تفضّل تحقق من الإنترنت.", - "Failed to initiate call session. Please try again.": - "فشل بدء جلسة الاتصال. يرجى المحاولة مرة أخرى.", - "Failed to initiate payment. Please try again.": - "فشل بدء الدفع. يرجى المحاولة مرة أخرى.", - "Failed to load profile data.": "فشل تحميل بيانات الملف الشخصي.", - "Failed to process route points": "فشل معالجة نقاط المسار", - "Failed to save driver data": "فشل حفظ بيانات السائق", - "Failed to send invite": "فشل إرسال الدعوة", "failed to send otp": "فشل إرسال OTP", - "Failed to upload audio file.": "فشل رفع الملف الصوتي.", - "Faisal Islamic Bank of Egypt": "بنك فيصل الإسلامي المصري", "false": "خطأ", - "Fastest Complaint Response": "أسرع رد على الشكاوى", - "Favorite Places": "الأماكن المفضلة", - "Fee is": "الرسوم هي", - "Feed Back": "التعليق", - "Feedback": "التعليق", - "Feedback data saved successfully": "تم حفظ بيانات التعليق بنجاح", - "Female": "أنثى", - "Find answers to common questions": "لاقي أجوبة للأسئلة الشائعة", - "Finish & Submit": "إنهاء وإرسال", - "Finish Monitor": "إنهاء المراقبة", - "Finished": "انتهت", - "First Abu Dhabi Bank": "بنك أبوظبي الأول", - "First Name": "الاسم الأول", - "First name": "الاسم الأول", "first name label": "تسمية الاسم الأول", "first name required": "الاسم الأول مطلوب", - "First Trip": "أول رحلة", - "Five Star Driver": "سائق 5 نجوم", - "Fixed Price": "سعر ثابت", - "Flag-down fee": "رسوم بداية المشوار", "for": "بـ", "for ": "بـ ", - "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 transfer fees": "لرسوم التحويل", "for your first registration!": "لتسجيلك الأول!", "fr": "fr", - "Free Call": "مكالمة مجانية", - "Frequently Asked Questions": "الأسئلة الشائعة", - "Frequently Questions": "أسئلة متكررة", - "Fri": "الجمعة", - "From": "من", - "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": - "من 7:30 لـ 10:30 (خميس، جمعة، سبت، اثنين)", - "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": - "من 12:00 لـ 15:00 (خميس، جمعة، سبت، اثنين)", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30 (خميس، جمعة، سبت، اثنين)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 15:00 (خميس، جمعة، سبت، اثنين)", "from 23:59 till 05:30": "من 23:59 لـ 5:30", "from 3 times Take Attention": "انتبه بعد 3 مرات", "from 3:00pm to 6:00 pm": "من 3:00 م لـ 6:00 م", "from 7:00am to 10:00am": "من 7:00 ص لـ 10:00 ص", - "From :": "من :", - "From : Current Location": "من : الموقع الحالي", - "From Budget": "من الميزانية", "from your favorites": "من مفضلاتك", "from your list": "من قائمتك", - "From:": "من:", "fromBudget": "من الميزانية", - "Fuel": "الوقود", - "Fuel Type": "نوع الوقود", - "Full Name": "الاسم الكامل", - "Full Name (Marital)": "الاسم الكامل (الزواج)", - "FullName": "الاسم الكامل", - "Gender": "الجنس", "gender": "الجنس", - "General": "عام", - "General Authority For Supply Commodities": "الهيئة العامة للسلع التموينية", - "Get": "احصل على", - "Get a discount on your first Siro ride!": "احصل على خصم بأول رحلة سيرو!", - "Get Details of Trip": "احصل على تفاصيل الرحلة", - "Get Direction": "احصل على الاتجاهات", - "Get features for your country": "احصل على الميزات لبلدك", - "Get it Now!": "احصل عليها هلق!", - "Get to your destination quickly and easily.": "توصل لوجهتك بسرعة وسهولة.", "get_a_ride": "احصل على رحلة", "get_to_destination": "الوصول للوجهة", - "Getting Started": "البدء", - "Gift Already Claimed": "تم استلام الهدية من قبل", - "Go": "سيرو", - "Go Now": "اذهب الآن", - "Go Online": "ابدأ العمل", - "Go To Favorite Places": "روح للأماكن المفضلة", - "Go to next step": "روح للخطوة الجاية", - "Go to next step\nscan Car License.": "روح للخطوة الجاية\nامسح رخصة السيارة.", - "Go to passenger Location": "روح لموقع الراكب", - "Go to passenger Location now": "روح لموقع الراكب هلق", - "Go to passenger:": "روح للراكب:", - "Go to this location": "روح لهالموقع", - "Go to this Target": "روح لهالهدف", "go to your passenger location before": "روح لموقع الراكب قبل", - "go to your passenger location before\nPassenger cancel trip": - "روح لموقع الراكب قبل ما يلغي الراكب الرحلة", - "Goal Achieved!": "تم تحقيق الهدف!", - "Gold badge": "وسام ذهبي", - "Good": "جيد", - "Google Map App": "تطبيق خرائط جوجل", - "GPS Required Allow !.": "مطلوب تفعيل GPS !.", + "go to your passenger location before\\nPassenger cancel trip": "روح لموقع الراكب قبل ما يلغي الراكب الرحلة", "h": "ساعة", - "H and": "و", - "Hard Brake": "فرملة قوية", - "Hard Brakes": "الفرامل المفاجئة", - "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'فرامل مفاجئة", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'فرامل مفاجئة", "has been added to your budget": "تمت إضافته لميزانيتك", "has completed": "اكتمل", - "Have a promo code?": "عندك كود ترويجي؟", - "Head": "الرأس", - "Heading your way now. Please be ready.": - "عم ييجي لعندك هلق. تفضّل جهّز حالك.", - "Health Insurance": "التأمين الصحي", - "Heatmap": "خريطة حرارية", - "Height:": "الطول:", - "Hello": "أهلاً", - "Hello this is Captain": "أهلاً، أنا الكابتن", - "Hello this is Driver": "أهلاً، أنا السائق", - "Help & Support": "المساعدة والدعم", - "Help Details": "تفاصيل المساعدة", - "Helping Center": "مركز المساعدة", - "Helping Page": "صفحة المساعدة", - "Here recorded trips audio": "هون في صوت الرحلات المسجلة", - "Hi": "هلا", "hi": "هلا", - "Hi ,I Arrive your site": "هلا، وصلت لموقعك", - "Hi ,I will go now": "هلا، رح روح هلق", - "Hi! This is": "هلا! أنا", - "Hi, I will go now": "هلا، رح روح هلق", - "Hi, Where to": "أهلاً، وين بدك تروح؟", - "High priority": "أولوية عالية", - "High School Diploma": "شهادة ثانوية عامة", - "History": "السجل", - "History of Trip": "سجل الرحلات", - "History Page": "صفحة السجل", - "Home": "الرئيسية", - "Home Page": "الصفحة الرئيسية", - "Home Saved": "تم حفظ المنزل", "hour": "ساعة", - "Hours": "ساعات", "hours before trying again.": "ساعات قبل ما تجرب مرة تانية.", - "Housing And Development Bank": "بنك الإسكان والتعمير", - "How can I pay for my ride?": "كيف بقدر أدفع لرحلتي؟", - "How can I register as a driver?": "كيف بقدر أسجل كسائق؟", - "How do I communicate with the other party (passenger/driver)?": - "كيف بقدر أتواصل مع الطرف التاني (راكب/سائق)؟", - "How do I request a ride?": "كيف بطلب رحلة؟", - "How It Works": "كيف يعمل", - "How many hours would you like to wait?": "كام ساعة بدك تستنى؟", - "How much do you want to earn today?": "كم تريد أن تربح اليوم؟", - "How much longer will you be?": "قديش بعدك بتأخر؟", - "How much Passenger pay?": "قديش بدفع الراكب؟", - "How to use App": "كيف تستخدم التطبيق", - "How to use Siro": "كيف تستخدم سيرو", - "How was the passenger?": "كيف كان الراكب؟", - "How was your trip with": "كيف كانت رحلتك مع", - "How would you like to receive your reward?": "كيف بدك تستلم مكافأتك؟", - "How would you rate our app?": "كيف بتقيّم تطبيقنا؟", - "HSBC Bank Egypt S.A.E": "بنك إتش إس بي سي مصر", - "Hybrid": "هايبرد", - "I added the wrong pick-up/drop-off location": - "حطيت مكان الالتقاط/التنزيل غلط", - "I Agree": "أوافق", "i agree": "أوافق", - "I am currently located at": "أنا موجود حالياً بـ", - "I am using": "أنا عم بستخدم", - "I Arrive": "وصلت", - "I arrive you": "وصلت لعندك", - "I Arrive your site": "وصلت لموقعك", - "I cant register in your app in face detection": - "ما بقدر أسجل بتطبيقك بكشف الوجه", - "I cant register in your app in face detection ": - "ما بقدر أسجل بتطبيقك بكشف الوجه", - "I Have Arrived": "أنا وصلت", - "I want to order for myself": "حابب أطلب لحالي", - "I want to order for someone else": "حابب أطلب لغيري", - "I was just trying the application": "كنت عم جرّب التطبيق بس", - "I will go now": "رحروح هلق", - "I will slow down": "رحخفف السرعة", - "I've arrived.": "لقد وصلت.", - "ID Documents Back": "وثائق الهوية (خلفي)", - "ID Documents Front": "وثائق الهوية (أمامي)", - "ID Mismatch": "عدم تطابق الهوية", "id': 1, 'name': 'Car": "id': 1, 'name': 'سيارة", "id': 1, 'name': 'Petrol": "id': 1, 'name': 'بنزين", "id': 2, 'name': 'Diesel": "id': 2, 'name': 'ديزل", @@ -1078,972 +2399,116 @@ final Map ar_sy = { "id_card_front": "الجانب الأمامي لبطاقة الهوية", "id_front": "أمامي الهوية", "if you dont have account": "إذا ما عندك حساب", - "If you in Car Now. Press Start The Ride": - "إذا أنت بالسيارة هلق. اضغط ابدأ الرحلة", - "If you need any help or have question this is right site to do that and your welcome": - "إذا بدك مساعدة أو عندك سؤال، هون المكان المناسب. أهلاً وسهلاً!", - "If you need any help or have questions, this is the right place to do that. You are welcome!": - "إذا كنت بحاجة لأي مساعدة أو عندك أسئلة، هون المكان المناسب. أهلاً وسهلاً!", - "If you need assistance, contact us": "إذا بدك مساعدة، تواصل معنا", - "If you need to reach me, please contact the driver directly at": - "إذا بدك تتواصل معي، اتصل بالسائق مباشرة على", - "If you want add stop click here": "إذا بدك تضيف محطة اضغط هون", "if you want help you can email us here": "إذا بدك مساعدة تقدر تراسلنا هون", - "If you want order to another person": "إذا بدك تطلب لشخص تاني", - "If you want to make Google Map App run directly when you apply order": - "إذا بدك تطبيق خرائط جوجل يشتغل مباشرة وقت تقدم الطلب", - "If your car license has the new design, upload the front side with two images.": - "إذا رخصة سيارتك عليها التصميم الجديد، ارفع الوجه الأمامي بصورتين.", - "Image detecting result is": "نتيجة كشف الصورة هي", - "Image detecting result is ": "نتيجة كشف الصورة هي", - "Image Upload Failed": "فشل رفع الصورة", "image verified": "تم التحقق من الصورة", - "Improve app performance": "تحسين أداء التطبيق", "in your": "بـ", "in your wallet": "بمحفظتك", - "In-App VOIP Calls": "مكالمات صوتية جوا التطبيق", - "Including Tax": "شامل الضريبة", - "Incoming Call...": "مكالمة واردة...", - "Incorrect sms code": "كود SMS غلط", "incorrect_document_message": "رسالة المستند غير صحيح", "incorrect_document_title": "وثيقة غير صحيحة", - "Increase Fare": "زيادة الأجرة", - "Increase Fee": "زيادة الرسوم", - "Increase Your Trip Fee (Optional)": "زيد رسوم رحلتك (اختياري)", - "Increasing the fare might attract more drivers. Would you like to increase the price?": - "زيادة الأجرة ممكن تجذب سواقين أكثر. بدك ترفع السعر؟", - "Industrial Development Bank": "بنك التنمية الصناعية", - "Ineligible for Offer": "غير مؤهل للعرض", - "Info": "معلومات", - "Insert": "إدخال", - "Insert Account Bank": "أدخل الحساب البنكي", "insert amount": "أدخل المبلغ", - "Insert Card Bank Details to Receive Your Visa Money Weekly": - "أدخل تفاصيل البطاقة البنكية عشان تستلم فلوسك أسبوعياً", - "Insert card number": "أدخل رقم البطاقة", - "Insert Emergency Number": "أدخل رقم الطوارئ", - "Insert Emergincy Number": "أدخل رقم الطوارئ", - "Insert mobile wallet number": "أدخل رقم محفظة الجوال", - "Insert Payment Details": "أدخل تفاصيل الدفع", - "Insert SOS Phone": "أدخل رقم طوارئ", - "Insert Wallet phone number": "أدخل رقم هاتف المحفظة", - "Insert your mobile wallet details to receive your money weekly": - "أدخل تفاصيل محفظة الجوال عشان تستلم فلوسك أسبوعياً", - "Insert Your Promo Code": "أدخل كود الخصم بتاعك", - "Inspection Date": "تاريخ الفحص", - "InspectionResult": "نتيجة الفحص", - "Install our app:": "ثبّت تطبيقنا:", - "Insufficient Balance": "رصيد غير كافٍ", - "Invalid customer MSISDN": "رقم هاتف العميل غير صالح", - "Invalid MPIN": "رمز MPIN غير صالح", - "Invalid OTP": "رمز OTP غير صالح", - "Invitation Used": "تم استخدام الدعوة", - "Invitations Sent": "تم إرسال الدعوات", - "Invite": "ادعُ", - "Invite a Driver": "ادعُ سائقاً", - "Invite another driver and both get a gift after he completes 100 trips!": - "ادعُ سائق تاني وكلكم بتاخدوا هدية بعد ما يكمل 100 رحلة!", - "Invite code already used": "كود الدعوة مستخدم من قبل", - "Invite Driver": "دعوة سائق", - "Invite Rider": "دعوة راكب", - "Invite sent successfully": "تم إرسال الدعوة بنجاح", - "is calling you": "عم يتصل فيك", - "Is device compatible": "الجهاز متوافق", - "is driving a": "عم يسوق", "is ON for this month": "مفعّلة هذا الشهر", - "is reviewing your order. They may need more information or a higher price.": - "عم يراجع طلبك. ممكن يحتاجوا معلومات أكثر أو سعر أعلى.", - "Is the Passenger in your Car ?": "الراكب بسيارتك؟", - "Is the Passenger in your Car?": "الراكب بسيارتك؟", - "Issue Date": "تاريخ الإصدار", - "IssueDate": "تاريخ الإصدار", + "is calling you": "عم يتصل فيك", + "is driving a": "عم يسوق", + "is reviewing your order. They may need more information or a higher price.": "عم يراجع طلبك. ممكن يحتاجوا معلومات أكثر أو سعر أعلى.", "it": "it", - "JOD": "د.أ", - "Join": "انضم", - "Join Siro as a driver using my referral code!": - "انضم لسواقة سيرو بكود الدعوة بتاعي!", "joined": "انضم", - "Jordan": "الأردن", - "Just now": "الآن", - "Keep it up!": "كمل بهالحماس!", "kilometer": "كيلومتر", - "KM": "كم", - "Kuwait": "الكويت", - "L.E": "ل.م", - "L.S": "ل.س", - "Lady": "سائقة بنات", - "Lady Captain for girls": "كابتن بنات للبنات", - "Lady Captains Available": "سواقة بنات متاحين", - "Lady 👩": "سائقة بنات 👩", - "Lady: For girl drivers.": "سائقة بنات: للرحلات النسائية.", - "Language": "اللغة", - "Language Options": "خيارات اللغة", - "Last 10 Trips": "آخر 10 رحلات", - "Last Name": "اسم العائلة", - "Last name": "اسم العائلة", "last name label": "تسمية اسم العائلة", "last name required": "اسم العائلة مطلوب", - "Last updated:": "آخر تحديث:", - "Later": "لاحقاً", - "Latest Recent Trip": "أحدث رحلة", - "LE": "ل.م", - "Leaderboard": "لوحة المتصدرين", - "Learn more about our app and mission": "تعرف أكثر عن تطبيقنا ورسالتنا", - "Leave": "مغادرة", - "Leave a detailed comment (Optional)": "اترك تعليق مفصل (اختياري)", - "Let the passenger scan this code to sign up": - "خلي الراكب يمسح هالكود عشان يسجّل", - "Lets check Car license": "يلا نفحص رخصة السيارة", - "Lets check Car license ": "يلا نفحص رخصة السيارة", - "Lets check License Back Face": "يلا نفحص الوجه الخلفي للرخصة", - "License Categories": "فئات الرخصة", - "License Expiry Date": "تاريخ انتهاء الرخصة", - "License Type": "نوع الرخصة", - "Link a phone number for transfers": "اربط رقم هاتف للتحويلات", - "ll let you know when the review is complete.": - "رح نعلمك لما تكتمل المراجعة.", - "Location Access Required": "مطلوب الوصول للموقع", - "Location Link": "رابط الموقع", - "Location Tracking Active": "تتبع الموقع مفعل", - "Log Off": "تسجيل خروج", - "Log Out Page": "صفحة تسجيل الخروج", - "Login": "تسجيل الدخول", - "Login Captin": "تسجيل دخول الكابتن", - "Login Driver": "تسجيل دخول السائق", - "Login failed": "فشل تسجيل الدخول", + "ll let you know when the review is complete.": "رح نعلمك لما تكتمل المراجعة.", "login or register subtitle": "عنوان تسجيل الدخول أو التسجيل", - "Logout": "تسجيل خروج", - "Lowest Price Achieved": "تم تحقيق أدنى سعر", "m": "م", "m at the agreed-upon location": "بالموقع المتفق عليه", "m inviting you to try Siro.": "بدعوك تجرب سيرو.", "m waiting for you": "عم أستناك", "m waiting for you at the specified location.": "عم أستناك بالموقع المحدد.", - "Made :": "صنع :", - "Maintain 5.0 rating": "حافظ على تقييم 5.0", - "Maintenance Center": "مركز الصيانة", - "Maintenance Offer": "عرض صيانة", - "Make": "الماركة", - "Make a U-turn": "اعمل دورّة", - "Make is": "الماركة هي", - "Make purchases.": "ادفع واشتري.", - "Male": "ذكر", - "Map Dark Mode": "الوضع الليلي للخريطة", - "Map Passenger": "خريطة الراكب", - "Marital Status": "الحالة الاجتماعية", - "Mashreq Bank": "بنك المشرق", - "Mashwari": "مشاري", - "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": - "مشاري: للرحلات المرنة اللي بيختار فيها الراكب السيارة والسائق بترتيب مسبق.", - "Master\\'s Degree": "درجة الماجستير", - "Max Speed": "أقصى سرعة", - "Maximum fare": "أقصى أجرة", - "Maximum Level Reached!": "وصلت لأعلى مستوى!", - "Message": "رسالة", "message From Driver": "رسالة من السائق", "message From passenger": "رسالة من الراكب", - "message'] ?? 'An unknown server error occurred": - "message'] ?? 'حدث خطأ غير معروف في الخادم", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'حدث خطأ غير معروف في الخادم", "message'] ?? 'Claim failed": "message'] ?? 'فشل استلام المكافأة", "message'] ?? 'Failed to send OTP.": "message'] ?? 'فشل إرسال OTP.", - "message']?.toString() ?? 'Failed to create invoice": - "message']?.toString() ?? 'فشل إنشاء الفاتورة", - "Meter Fare": "أجرة العداد", - "Microphone permission is required for voice calls": - "مطلوب صلاحية الميكروفون للمكالمات الصوتية", - "MIDBANK": "بنك ميد", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'فشل إنشاء الفاتورة", "min": "دقيقة", - "Minimum fare": "أدنى أجرة", - "Minute": "دقيقة", "minute": "دقيقة", - "Minutes": "دقايق", "minutes before trying again.": "دقايق قبل ما تجرب مرة تانية.", - "Mishwar Vip": "مشوار VIP", - "Missing Documents": "وثائق ناقصة", - "Mobile Wallets": "محافظ الجوال", - "Model": "الموديل", "model :": "موديل :", - "Model is": "الموديل هو", "moi\\\\": "moi\\\\", - "Mon": "الاثنين", - "Monthly Report": "التقرير الشهري", - "Monthly Streak": "سلسلة شهرية", - "More": "المزيد", - "Morning": "الصباح", - "Morning Promo": "عرض الصباح", - "Morning Promo Rides": "رحلات عرض الصباح", - "Most Secure Methods": "أكثر الطرق أماناً", - "Motorcycle": "موتوسيكل", - "Move the map to adjust the pin": "حرّك الخريطة عشان تعدّل الدبوس", + "moi\\\\\\\\": "moi\\\\\\\\", "mtn": "mtn", - "MTN Cash": "MTN Cash", - "Mute": "كتم الصوت", - "My Balance": "رصيدي", - "My Card": "بطاقتي", - "My Cared": "بطاقتي", - "My Cars": "سياراتي", - "My current location is:": "موقعي الحالي هو:", - "My Location": "موقعي", "my location": "موقعي", - "My location is correct. You can search for me using the navigation app": - "موقعي صحيح. تقدر تبحث عليي بتطبيق الملاحة", - "My Profile": "ملفي الشخصي", - "My Schedule": "جدولي", - "My Wallet": "محفظتي", - "MyLocation": "موقعي", - "N/A": "غير متاح", - "Name": "الاسم", - "Name (Arabic)": "الاسم (عربي)", - "Name (English)": "الاسم (إنجليزي)", - "Name :": "الاسم :", - "Name in arabic": "الاسم بالعربي", - "Name must be at least 2 characters": "الاسم لازم يكون حرفين على الأقل", - "Name of the Passenger is": "اسم الراكب هو", - "Nasser Social Bank": "بنك ناصر الاجتماعي", - "National Bank of Egypt": "البنك الأهلي المصري", - "National Bank of Greece": "البنك الوطني اليوناني", - "National Bank of Kuwait – Egypt": "البنك الوطني الكويتي – مصر", - "National ID": "الهوية الشخصية", - "National ID (Back)": "الهوية الشخصية (خلفي)", - "National ID (Front)": "الهوية الشخصية (أمامي)", - "National ID must be 11 digits": "رقم الهوية لازم يكون 11 رقم", - "National ID Number": "رقم الهوية الشخصية", - "National Number": "الرقم القومي", - "NationalID": "الهوية الشخصية", - "Navigation": "الملاحة", - "Nearest Car": "أقرب سيارة", - "Nearest Car for you about": "أقرب سيارة لك بعد حوالي", - "Nearest Car: ~": "أقرب سيارة: ~", - "Need assistance? Contact us": "بدك مساعدة؟ تواصل معنا", - "Need help? Contact Us": "بدك مساعدة؟ تواصل معنا", - "Needs Improvement": "يحتاج تحسين", - "Net Profit": "صافي الربح", - "Network error": "خطأ في الشبكة", - "Next": "التالي", - "NEXT >>": "التالي >>", - "Next as Cash !": "الرحلة الجاية كاش!", - "Next Level:": "المستوى التالي:", - "NEXT STEP": "الخطوة التالية", - "Night": "الليل", - "No": "لأ", - "No ,still Waiting.": "لأ، لسا عم نستنى.", - "No accepted orders? Try raising your trip fee to attract riders.": - "ما في طلبات منقبولة؟ جرّب ترفع رسوم رحلتك عشان تجذب ركاب.", - "No audio files found for this ride.": "ما لقينا تسجيلات صوتية لهاد المشوار.", - "No audio files found.": "ما لقينا ملفات صوتية.", - "No audio files recorded.": "ما في ملفات صوتية مسجلة.", - "No Captain Accepted Your Order": "ما في كابتن قبل طلبك", - "No Car in your site. Sorry!": "ما في سيارة بموقعك. آسفين!", - "No Car or Driver Found in your area.": "ما لقينا سيارة أو سائق بمنطقتك.", - "No cars are available at the moment. Please try again later.": - "ما في سيارات متاحة هلق. تفضّل جرّب مرة تانية لاحقاً.", - "No cars nearby": "ما في سيارات قريبة", - "No contact selected": "ما في جهة اتصال مختارة", - "No contacts found": "ما لقينا جهات اتصال", - "No contacts with phone numbers found": "ما لقينا جهات اتصال بأرقام هواتف", - "No contacts with phone numbers were found on your device.": - "ما لقينا جهات اتصال بأرقام هواتف بجهازك.", - "No data yet": "ما في بيانات لسا", - "No data yet!": "ما في بيانات لسا!", - "No driver accepted my request": "ما في سائق قبل طلبي", - "No drivers accepted your request yet": "ما في سائقين قبلوا طلبك لسا", - "No drivers available": "ما في سائقين متاحين", - "No drivers available at the moment. Please try again later.": - "ما في سائقين متاحين هلق. تفضّل جرّب مرة تانية لاحقاً.", - "No face detected": "ما في وجه مكتشف", - "No favorite places yet!": "ما في أماكن مفضلة لسا!", - "No I want": "لأ، أنا بدّي", - "No i want": "لأ، أنا بدّي", - "No image selected yet": "ما في صورة مختارة لسا", - "No internet connection": "لا يوجد اتصال بالإنترنت", - "No invitation found": "ما لقينا دعوة", - "No invitation found yet!": "ما لقينا دعوة لسا!", - "No one accepted? Try increasing the fare.": - "ما في حدا قبل؟ جرّب ترفع الأجرة.", - "No orders available": "ما في طلبات متاحة", - "No passenger found for the given phone number": "ما لقينا راكب بهالرقم", - "No phone number": "ما في رقم هاتف", - "No Promo for today .": "ما في عروض بهاليوم.", - "No promos available right now.": "ما في عروض ترويجية هلق.", - "No questions asked yet.": "ما في أسئلة لسا.", - "No Response yet.": "ما في رد لسا.", - "No ride found yet": "ما لقينا رحلة لسا", - "No ride yet": "ما في رحلة لسا", - "No Rides Available": "ما في رحلات متاحة", - "No rides available for your vehicle type.": "ما في رحلات متاحة لنوع سيارتك.", - "No rides available right now.": "ما في رحلات متاحة هلق.", - "No rides found to complain about.": - "ما لقينا أي مشاوير لحتى تقدم شكوى عليها.", - "No Rides Yet": "ما في رحلات لسا", - "No route points found": "ما لقينا نقاط للمسار", - "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": - "ما عندك شريحة، ما في مشكلة! اتصل بسائقك مباشرة عبر التطبيق. بنستخدم تكنولوجيا متطورة عشان نضمن خصوصيتك.", - "No statistics yet": "ما في إحصائيات لسا", - "No transactions this week": "ما في معاملات بهالأسبوع", - "No transactions yet": "ما في معاملات لسا", - "No trip data available": "ما في بيانات رحلة متاحة", - "No trip history found": "ما لقينا سجل رحلات", - "No trip yet found": "ما لقينا رحلة لسا", - "No user found for the given phone number": "ما لقينا مستخدم بهالرقم", - "No wallet record found": "ما لقينا سجل محفظة", - "No, I want to cancel this trip": "لأ، بدّي ألغي هالرحلة", - "No, still Waiting.": "لأ، لسا عم نستنى.", - "No, thanks": "لأ، شكراً", - "No,I want": "لأ، أنا بدّي", - "Non Egypt": "غير مصر", "non_id_card_back": "خلفي غير الهوية", "non_id_card_front": "أمامي غير الهوية", - "Not Connected": "غير متصل", - "Not set": "غير محدد", "not similar": "غير متشابه", - "Not updated": "ما انحدث", - "Notifications": "الإشعارات", - "Now select start pick": "هلق اختر نقطة البداية", - "Occupation": "المهنة", "of": "من", - "Offline": "غير متصل", - "OK": "تمام", - "Ok": "تمام", - "Ok , See you Tomorrow": "تمام، نشوفك بكرة", - "Ok I will go now.": "تمام، رحروح هلق.", - "Old and affordable, perfect for budget rides.": - "قديمة ومناسبة للسعر، مثالية لرحلات الميزانية المحدودة.", "on": "على", "one last step title": "عنوان الخطوة الأخيرة", - "Online": "متصل", - "Online Duration": "مدة التواجد", - "Only Syrian phone numbers are allowed": "مسموح بس بأرقام الهواتف السورية", - "Open App": "افتح التطبيق", - "Open app and go to passenger": "افتح التطبيق وروح للراكب", - "Open in Maps": "افتح بالخرائط", - "Open Settings": "افتح الإعدادات", - "Open the app to stay updated and ready for upcoming tasks.": - "افتح التطبيق عشان تظل محدّث وجاهز للمهام الجاية.", - "Opted out": "تم إلغاء الاشتراك", - "Or": "أو", - "Or pay with Cash instead": "أو ادفع كاش بدل هيك", - "Order": "طلب", - "Order Accepted": "تم قبول الطلب", - "Order Accepted by another driver": "طلبك انقبل من سائق تاني", - "Order Applied": "تم تطبيق الطلب", - "Order Cancelled": "تم إلغاء الطلب", - "Order Cancelled by Passenger": "تم إلغاء الطلب من الراكب", - "Order Details Siro": "تفاصيل الطلب سيرو", - "Order for myself": "طلب لحالي", - "Order for someone else": "طلب لغيري", - "Order History": "سجل الطلبات", - "Order ID": "رقم الطلب", - "Order Request Page": "صفحة طلب الرحلة", - "Order Under Review": "الطلب قيد المراجعة", - "OrderId": "رقم الطلب", - "Orders Page": "صفحة الطلبات", - "OrderVIP": "طلب VIP", - "Origin": "نقطة البداية", - "Original Fare": "الأجرة الأصلية", - "Other": "أخرى", - "OTP is incorrect or expired": "رمز OTP غير صحيح أو منتهي الصلاحية", "otp sent subtitle": "عنوان إرسال OTP", "otp sent success": "تم إرسال OTP بنجاح", "otp verification failed": "فشل التحقق من OTP", - "Our dedicated customer service team ensures swift resolution of any issues.": - "فريق خدمة العملاء المتخصص عندنا بيضمن حل سريع لأي مشكلة.", - "Overall Behavior Score": "درجة السلوك العامة", - "Overlay": "العرض العلوي", - "Owner Name": "اسم المالك", - "Passenger": "الراكب", - "Passenger & Status": "الراكب والحالة", "passenger agreement": "اتفاقية الراكب", "passenger amount to me": "مبلغ الراكب لي", - "Passenger Cancel Trip": "الراكب ألغى الرحلة", - "Passenger cancel trip": "الراكب ألغى الرحلة", - "Passenger cancelled order": "الراكب ألغى الطلب", - "Passenger cancelled the ride.": "ألغى الراكب الرحلة.", - "Passenger come to you": "الراكب قادم إليك", - "Passenger Information": "معلومات الراكب", - "Passenger Invitations": "دعوات الركاب", - "Passenger Name": "اسم الراكب", - "Passenger name :": "اسم الراكب :", - "Passenger Name is": "اسم الراكب هو", - "Passenger name:": "اسم الراكب:", - "Passenger paid amount": "المبلغ اللي دفعه الراكب", - "Passenger Referral": "إحالة الراكب", - "Passengers": "الركاب", - "Password": "كلمة المرور", - "Password must be at least 6 characters": - "كلمة المرور لازم تكون 6 أحرف على الأقل", - "Password must be at least 6 characters.": - "كلمة المرور لازم تكون 6 أحرف على الأقل.", - "Password must br at least 6 character.": - "كلمة المرور لازم تكون 6 أحرف على الأقل.", - "Paste location link here": "الصق رابط الموقع هون", - "Paste the code here": "الصق الكود هون", - "Paste WhatsApp location link": "الصق رابط موقع الواتساب", - "Pay": "ادفع", - "Pay by MTN Wallet": "الدفع عبر محفظة MTN", - "Pay by Sham Cash": "الدفع عبر شام كاش", - "Pay by Syriatel Wallet": "الدفع عبر محفظة سيريتل", - "Pay directly to the captain": "ادفع مباشرة للكابتن", - "Pay from my budget": "الدفع من الرصيد المتاح", - "Pay remaining to Wallet?": "بدك تدفع الباقي للمحفظة؟", - "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 (الاسم المستعار: siroapp)", - "Pay with Credit Card": "ادفع ببطاقة ائتمان", - "Pay with Debit Card": "ادفع ببطاقة خصم", - "Pay with Wallet": "ادفع من المحفظة", - "Pay with Your": "ادفع بـ", - "Pay with Your PayPal": "ادفع بباي بال", - "Payment details added successfully": "تمت إضافة تفاصيل الدفع بنجاح", - "Payment Failed": "فشل الدفع", - "Payment History": "سجل المدفوعات", - "Payment Method": "طريقة الدفع", - "Payment Method:": "طريقة الدفع:", - "Payment Options": "خيارات الدفع", - "Payment Successful": "تم الدفع بنجاح", - "Payment Successful!": "تم الدفع بنجاح!", "payment_success": "تمت العملية بنجاح", - "Payments": "المدفوعات", "pending": "قيد الانتظار", - "Percent Canceled": "نسبة الإلغاء", - "Percent Completed": "نسبة الإنجاز", - "Percent Rejected": "نسبة الرفض", - "Perfect for adventure seekers who want to experience something new and exciting": - "مثالية لمحبي المغامرة اللي بدّهم يجربوا شي جديد ومثير", - "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": - "مثالية للركاب اللي بيدوروا على أحدث موديلات السيارات مع حرية اختيار أي طريق بدّهم", - "Permission denied": "تم رفض الصلاحية", - "Personal Information": "المعلومات الشخصية", - "Petrol": "بنزين", - "Phone": "رقم الهاتف", - "Phone Check": "فحص الهاتف", - "Phone Number": "رقم الهاتف", - "Phone Number Check": "فحص رقم الهاتف", - "Phone Number is": "رقم الهاتف هو", - "Phone number is already verified": "رقم الهاتف موثق من قبل", - "Phone Number is not Egypt phone": "رقم الهاتف مش مصري", - "Phone Number is not Egypt phone ": "رقم الهاتف مش مصري", - "Phone number is verified before": "رقم الهاتف موثق من قبل", "phone number label": "تسمية رقم الهاتف", - "Phone number must be exactly 11 digits long": - "رقم الهاتف لازم يكون بالضبط 11 رقم", - "Phone number must be valid.": "رقم الهاتف لازم يكون صحيح.", "phone number of driver": "رقم هاتف السائق", "phone number required": "رقم الهاتف مطلوب", - "Phone number seems too short": "يبدو أن رقم الهاتف قصير جداً", - "Phone Number wrong": "رقم الهاتف غلط", - "Phone Wallet Saved Successfully": "تم حفظ رقم المحفظة بنجاح", - "Pick from map": "اختر من الخريطة", - "Pick from map destination": "اختر الوجهة من الخريطة", - "Pick or Tap to confirm": "اختر أو اضغط للتأكيد", - "Pick your destination from Map": "اختر وجهتك من الخريطة", - "Pick your ride location on the map - Tap to confirm": - "اختر موقع رحلتك على الخريطة - اضغط للتأكيد", - "Pickup Location": "موقع الالتقاط", - "Place added successfully! Thanks for your contribution.": - "تمت إضافة المكان بنجاح! شكراً لمساهمتك.", - "Plate": "اللوحة", - "Plate Number": "رقم اللوحة", - "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": - "يرجى السماح بالوصول للموقع \"دائماً\" لاستلام طلبات الرحلات حتى عندما يكون التطبيق في الخلفية.", - "Please allow location access at all times to receive ride requests and ensure smooth service.": - "تفضّل اسمح بالوصول للموقع دايماً عشان تستلم طلبات الرحلات وتضمن خدمة سلسة.", - "Please check back later for available rides.": - "تفضّل رجع لاحقاً للرحلات المتاحة.", - "Please complete more distance before ending.": - "تفضّل كمّل شوية مسافة قبل ما تنهي.", - "Please describe your issue before submitting.": - "تفضّل صف مشكلتك قبل ما ترسل.", - "Please enter": "تفضّل أدخل", - "Please enter a correct phone": "تفضّل أدخل رقم هاتف صحيح", - "Please enter a description of the issue.": "تفضّل أدخل وصفاً للمشكلة.", - "Please enter a health insurance status.": "تفضّل أدخل حالة التأمين الصحي.", - "Please enter a phone number": "تفضّل أدخل رقم هاتف", - "Please enter a valid 16-digit card number": - "تفضّل أدخل رقم بطاقة صالح من 16 رقم", - "Please enter a valid card 16-digit number.": - "تفضّل أدخل رقم بطاقة صالح من 16 رقم.", - "Please enter a valid email": "الرجاء إدخال بريد إلكتروني صالح", - "Please enter a valid email.": "تفضّل أدخل بريد إلكتروني صحيح.", - "Please enter a valid insurance provider": "الرجاء إدخال مزود تأمين صالح", - "Please enter a valid phone number.": "تفضّل أدخل رقم هاتف صحيح.", - "Please enter a valid promo code": "تفضّل أدخل كود خصم صالح", - "Please enter phone number": "يرجى إدخال رقم الهاتف", - "Please enter the cardholder name": "تفضّل أدخل اسم حامل البطاقة", - "Please enter the complete 6-digit code.": - "تفضّل أدخل الكود المكون من 6 أرقام كاملاً.", - "Please enter the CVV code": "تفضّل أدخل رمز CVV", - "Please enter the emergency number.": "تفضّل أدخل رقم الطوارئ.", - "Please enter the expiry date": "تفضّل أدخل تاريخ الانتهاء", - "Please enter the number without the leading 0": - "يرجى إدخال الرقم بدون الصفر الأولي", - "Please enter your City.": "تفضّل أدخل مدينتك.", - "Please enter your complaint.": "تفضّل أدخل شكواك.", - "Please enter Your Email.": "تفضّل أدخل بريدك الإلكتروني.", - "Please enter your Email.": "تفضّل أدخل بريدك الإلكتروني.", - "Please enter your feedback.": "تفضّل أدخل تعليقك.", - "Please enter your first name.": "تفضّل أدخل اسمك الأول.", - "Please enter your last name.": "تفضّل أدخل اسم عائلتك.", - "Please enter Your Password.": "تفضّل أدخل كلمة المرور.", - "Please enter your Password.": "تفضّل أدخل كلمة المرور.", - "Please enter your phone number": "يرجى إدخال رقم هاتفك", - "Please enter your phone number.": "تفضّل أدخل رقم هاتفك.", - "Please enter your question": "تفضّل أدخل سؤالك", - "Please enter your Question.": "تفضّل أدخل سؤالك.", - "Please go closer to the passenger location (less than 150m)": - "تفضّل قرب من موقع الراكب (أقل من 150 متر)", - "Please go to Car Driver": "يرجى الذهاب إلى سائق السيارة", - "Please go to Car now": "تفضّل روح للسيارة هلق", "please go to picker location exactly": "تفضّل روح لموقع الالتقاط بالضبط", - "Please go to the pickup location exactly": - "يرجى الذهاب إلى موقع الالتقاط بالضبط", - "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 order now": "تفضّل اطلب هلق", - "Please paste the transfer message": "يرجى لصق رسالة التحويل", - "Please provide details about any long-term diseases.": - "تفضّل قدّم تفاصيل عن أي أمراض مزمنة.", - "Please put your licence in these border": "تفضّل حط رخصتك بهالإطار", - "Please select a contact": "تفضّل اختر جهة اتصال", - "Please select a date": "تفضّل اختر تاريخ", - "Please select a rating before submitting.": "تفضّل اختر تقييم قبل ما ترسل.", - "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": - "يرجى تحويل المبلغ إلى الاسم المستعار: siroapp", - "Please try again in a few moments": "تفضّل جرّب مرة تانية بعد شوي", - "Please Try anther time": "تفضّل جرّب مرة تانية", - "Please upload a clear photo of your face to be identified by passengers.": - "تفضّل ارفع صورة واضحة لوجهك عشان الركاب يتعرفوا عليك.", - "Please upload all 4 required documents.": - "تفضّل ارفع كل الـ4 وثائق المطلوبة.", - "Please upload this license.": "تفضّل ارفع هالرخصة.", - "Please verify your identity": "تفضّل وثّق هويتك", - "Please wait": "يرجى الانتظار", - "Please wait for all documents to finish uploading before registering.": - "يرجى الانتظار حتى الانتهاء من رفع جميع المستندات قبل التسجيل.", - "Please wait for the passenger to enter the car before starting the trip.": - "تفضّل استنى لحتى يدخل الراكب السيارة قبل ما تبدأ الرحلة.", - "Please Wait If passenger want To Cancel!": "تفضّل استنى إذا بد الراكب يلغي!", - "please wait till driver accept your order": - "تفضّل استنى لحتى يقبل السائق طلبك", - "Please wait while we prepare your trip.": - "تفضّل استنى شوي لحتى نجهّز رحلتك.", - "Point": "نقطة", - "Points": "نقاط", + "please wait till driver accept your order": "تفضّل استنى لحتى يقبل السائق طلبك", "points": "نقطة", - "Policy restriction on calls": "قيود سياسة على المكالمات", - "Potential security risks detected. The application may not function correctly.": - "تم اكتشاف مخاطر أمنية محتملة. التطبيق ممكن ما يشتغل بشكل صحيح.", - "Potential security risks detected. The application may not function correctly.": - "تم اكتشاف مخاطر أمنية محتملة. التطبيق ممكن ما يشتغل بشكل صحيح.", - "Potential security risks detected. The application will close in @seconds seconds.": - "تم اكتشاف مخاطر أمنية محتملة. التطبيق رح يقفل خلال @seconds ثانية.", - "Pre-booking": "حجز مسبق", - "Press here": "اضغط هون", - "Press to hear": "اضغط عشان تسمع", - "Price": "السعر", - "Price is": "السعر هو", "price is": "السعر هو", - "Price of trip": "سعر الرحلة", - "Price:": "السعر:", - "Priority medium": "أولوية متوسطة", - "Priority support": "دعم فني ذو أولوية", - "Privacy Notice": "إشعار الخصوصية", - "Privacy Policy": "سياسة الخصوصية", "privacy policy": "سياسة الخصوصية", - "Profile": "الملف الشخصي", - "Profile Photo Required": "مطلوب صورة شخصية", - "Profile Picture": "صورة الملف الشخصي", - "Progress:": "التقدم:", - "Promo": "عرض ترويجي", - "Promo Already Used": "تم استخدام العرض من قبل", - "Promo Code": "كود الخصم", - "Promo Code Accepted": "تم قبول كود الخصم", - "Promo code copied to clipboard!": "تم نسخ كود الخصم!", - "Promo Copied!": "تم نسخ الكود!", - "Promo End !": "انتهى العرض!", - "Promo Ended": "انتهى العرض", - "Promos": "العروض", - "Promos For Today": "عروض اليوم", - "Promos For today": "عروض اليوم", - "Promotions": "العروض الترويجية", - "PTS": "نقطة", - "Pyament Cancelled .": "تم إلغاء الدفع.", - "Qatar": "قطر", - "Qatar National Bank Alahli": "البنك الأهلي القطري", - "Question": "سؤال", - "Quick Actions": "إجراءات سريعة", - "Quick Invite": "دعوة سريعة", - "Quick Invite Link:": "رابط الدعوة السريع:", - "Quick Messages": "رسائل سريعة", - "Quiet & Eco-Friendly": "هادئ وصديق للبيئة", - "Raih Gai: For same-day return trips longer than 50km.": - "رايح جاي: لرحلات العودة بنفس اليوم أطول من 50 كم.", - "Rate": "تقييم", - "Rate Captain": "قيّم الكابتن", - "Rate Driver": "قيّم السائق", - "Rate Our App": "قيّم تطبيقنا", - "Rate Passenger": "قيّم الراكب", - "Rating": "التقييم", - "Rating is": "التقييم هو", - "Rating submitted successfully": "تم إرسال التقييم بنجاح", "rating_count": "عدد التقييمات", "rating_driver": "تقييم السائق", - "Rayeh Gai": "رايح جاي", - "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": - "رايح جاي: خدمة الذهاب والعودة لرحلات مريحة بين المدن، سهلة وموثوقة.", "re eligible for a special offer!": "رح تكون مؤهل لعرض خاص!", - "Reason": "السبب", - "Recent Places": "الأماكن الأخيرة", - "Recent Transactions": "المعاملات الأخيرة", - "Recharge Balance": "شحن الرصيد", - "Recharge Balance Packages": "باقات شحن الرصيد", - "Recharge my Account": "اشحن حسابي", - "Record": "تسجيل", - "Record saved": "تم حفظ التسجيل", - "Recorded Trips (Voice & AI Analysis)": - "الرحلات المسجلة (صوت وتحليل ذكاء اصطناعي)", - "Recorded Trips for Safety": "رحلات مسجلة للسلامة", - "Refer 5 drivers": "ادعُ 5 سائقين", - "Referral Center": "مركز الإحالات", - "Referrals": "الإحالات", - "Refresh": "تحديث", - "Refresh Market": "تحديث السوق", - "Refresh Status": "تحديث الحالة", - "Refuse Order": "رفض الطلب", - "Refused": "مرفوضة", - "Register": "اشتراك جديد", - "Register as Driver": "سجل كسائق", - "Register Captin": "تسجيل الكابتن", - "Register Driver": "تسجيل السائق", - "Registration": "التسجيل", - "Registration completed successfully!": "تم التسجيل بنجاح!", "registration failed": "فشل التسجيل", - "Registration failed. Please try again.": - "فشل التسجيل. تفضّل جرّب مرة تانية.", "registration_date": "تاريخ التسجيل", - "Reject": "رفض", "reject your order.": "رفض طلبك.", "rejected": "مرفوض", - "Rejected Orders": "الطلبات المرفوضة", - "Rejected Orders Count": "عدد الطلبات المرفوضة", - "Religion": "الدين", - "Remainder": "الباقي", "remaining": "المتبقي", - "Remaining time": "الوقت المتبقي", - "Remaining:": "المتبقي:", - "Report": "تقرير", - "Required field": "حقل مطلوب", - "Resend Code": "إعادة إرسال الكود", - "Resend code": "إعادة إرسال الكود", "reviews": "المراجعات", - "Reward Claimed": "تم استلام المكافأة", - "Reward claimed successfully!": "تم استلام المكافأة بنجاح!", - "Reward Status": "حالة المكافأة", - "Ride": "المشوار", - "Ride History": "سجل الرحلات", - "Ride info": "معلومات الرحلة", - "Ride information not found. Please refresh the page.": - "ما لقينا معلومات الرحلة. تفضّل حدّث الصفحة.", - "Ride Management": "إدارة الرحلات", - "Ride Status": "حالة الرحلة", - "Ride Summaries": "ملخصات الرحلات", - "Ride Summary": "ملخص الرحلة", - "Ride Today :": "رحلات اليوم :", - "Ride Wallet": "محفظة الرحلة", - "Rides": "الرحلات", "rides": "الرحلات", - "Road Legend": "أسطورة الطريق", - "Road Warrior": "محارب الطريق", - "Rouats of Trip": "محطات الرحلة", - "Route Not Found": "ما لقينا طريق", - "Routs of Trip": "محطات الرحلة", "ru": "ru", - "Run Google Maps directly": "شغّل خرائط جوجل مباشرة", "s Degree": "درجة", - "s heavy traffic here. Can you suggest an alternate pickup point?": - "في زحمة كتير هون. تقترّح نقطة التقاط تانية؟", "s License": "رخصة", - "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. Please verify and provide the correct documents.": - "رخصته. تفضّل تحقق وقدّم الوثائق الصحيحة.", "s Personal Information": "المعلومات الشخصية", - "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 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 Siro 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. 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.P": "ل.س", - "SAFAR Wallet": "محفظة سفر", "safe_and_comfortable": "آمن ومريح", - "Safety & Security": "السلامة والأمان", - "Safety First 🛑": "السلامة أولاً 🛑", - "Same device detected": "تم اكتشاف نفس الجهاز", - "Sat": "السبت", - "Saudi Arabia": "السعودية", - "Save": "حفظ", - "Save & Call": "حفظ واتصل", - "Save Credit Card": "حفظ بطاقة الائتمان", - "Saved Sucssefully": "تم الحفظ بنجاح", "scams operations": "عمليات احتيال", "scan Car License.": "امسح رخصة السيارة.", - "Scan Driver License": "امسح رخصة السائق", - "Scan Id": "امسح الهوية", - "Scan ID Api": "امسح الهوية API", - "Scan ID MklGoogle": "امسح الهوية MklGoogle", - "Scan ID Tesseract": "امسح الهوية Tesseract", - "Scheduled Time:": "الوقت المحدد:", - "Scooter": "سكوتر", - "Score": "التقييم", - "Search country": "ابحث عن بلد", - "Search for a starting point": "ابحث عن نقطة بداية", - "Search for waypoint": "ابحث عن نقطة طريق", - "Search for your destination": "ابحث عن وجهتك", - "Search for your Start point": "ابحث عن نقطة البداية", - "Search name or number...": "ابحث باسم أو رقم...", - "Searching for the nearest captain...": "عم نبحث عن أقرب كابتن...", "seconds": "ثواني", - "Security Warning": "تحذير أمني", "security_warning": "تحذير أمني", - "See you on the road!": "نشوفك على الطريق!", - "See you Tomorrow!": "نشوفك بكرة!", - "Select a Bank": "اختر بنك", - "Select a Contact": "اختر جهة اتصال", - "Select a File": "اختر ملف", - "Select a file": "اختر ملف", - "Select a quick message": "اختر رسالة سريعة", - "Select Country": "اختر البلد", - "Select Date": "اختر التاريخ", - "Select date and time of trip": "اختر تاريخ ووقت الرحلة", - "Select how you want to charge your account": "اختر كيف تريد شحن حسابك", - "Select Name of Your Bank": "اختر اسم بنكك", - "Select one message": "اختر رسالة وحدة", - "Select Order Type": "اختر نوع الطلب", - "Select Payment Amount": "اختر مبلغ الدفع", - "Select Payment Method": "اختر طريقة الدفع", - "Select recorded trip": "اختر رحلة مسجلة", - "Select This Ride": "اختر هالرحلة", - "Select Time": "اختر الوقت", - "Select Waiting Hours": "اختر ساعات الانتظار", - "Select Your Country": "اختر بلدك", - "Select your destination": "اختر وجهتك", - "Select your preferred language for the app interface.": - "اختر اللغة اللي بتفضلها لواجهة التطبيق.", - "Selected Date": "التاريخ المختار", - "Selected Date and Time": "التاريخ والوقت المختار", - "Selected driver": "السائق المختار", - "Selected file:": "الملف المختار:", - "Selected Location": "الموقع المحدد", - "Selected Time": "الوقت المختار", - "Send a custom message": "أرسل رسالة مخصصة", - "Send Email": "أرسل بريد", - "Send Invite": "أرسل دعوة", - "Send Message": "أرسل رسالة", "send otp button": "زر إرسال OTP", - "Send Siro app to him": "أرسل تطبيق سيرو له", - "Send to Driver Again": "أرسل للسائق مرة تانية", - "Send Verfication Code": "أرسل رمز التحقق", - "Send Verification Code": "أرسل رمز التحقق", - "Send WhatsApp Message": "أرسل رسالة واتساب", - "Send your referral code to friends": "أرسل كود الإحالة الخاص بك للأصدقاء", - "Server error": "خطأ في الخادم", "server error try again": "خطأ بالخادم جرّب مرة تانية", - "Server error. Please try again.": "خطأ بالخادم. تفضّل جرّب مرة تانية.", "server_error": "خطأ بالخادم", "server_error_message": "صار خطأ بالاتصال بالخادم", - "Session expired. Please log in again.": "الجلسة انتهت. سجل دخول مرة تانية.", - "Set Daily Goal": "تحديد الهدف اليومي", - "Set Goal": "تحديد هدف", - "Set Location on Map": "حدد الموقع على الخريطة", - "Set Phone Number": "حدد رقم الهاتف", - "Set pickup location": "حدد موقع الالتقاط", - "Set Wallet Phone Number": "حدد رقم هاتف المحفظة", - "Setting": "إعداد", - "Settings": "الإعدادات", - "Sex is": "الجنس هو", - "Sham Cash": "شام كاش", - "ShamCash Account": "حساب شام كاش", - "Share": "مشاركة", - "Share App": "شارك التطبيق", - "Share Code": "شارك الكود", - "Share the app with another new driver": "شارك التطبيق مع سائق جديد تاني", - "Share the app with another new passenger": "شارك التطبيق مع راكب جديد تاني", - "Share this code to earn rewards": "شارك هذا الكود لكسب المكافآت", - "Share this code with other drivers. Both of you will receive rewards!": - "شارك هالكود مع سواقين تانيين. كلكم رح تاخدوا مكافآت!", - "Share this code with passengers and earn rewards when they use it!": - "شارك هالكود مع ركاب واكسب مكافآت لما يستخدموه!", - "Share this code with your friends and earn rewards when they use it!": - "شارك هالكود مع صحابك واكسب مكافآت لما يستخدموه!", - "Share Trip Details": "شارك تفاصيل الرحلة", - "Share via": "مشاركة عبر", - "Share with friends and earn rewards": "شارك مع صحابك واكسب مكافآت", - "Share your experience to help us improve...": - "شارك تجربتك عشان تساعدنا نتحسّن...", - "Show behavior page": "عرض صفحة السلوك", - "Show health insurance providers near me": - "اعرض مزودي التأمين الصحي القريبين مني", - "Show Invitations": "عرض الدعوات", - "Show latest promo": "عرض أحدث عرض ترويجي", - "Show maintenance center near my location": "اعرض مراكز الصيانة القريبة مني", - "Show my Cars": "عرض سياراتي", - "Show My Trip Count": "عرض عدد رحلاتي", - "Show Promos": "عرض العروض", - "Show Promos to Charge": "عرض العروض للشحن", - "Showing": "عرض", - "Sign In by Apple": "تسجيل الدخول بآبل", - "Sign In by Google": "تسجيل الدخول بجوجل", - "Sign in for a seamless experience": "سجل دخول لتجربة سلسة", - "Sign in to start your journey": "سجل الدخول لبدء رحلتك", - "Sign in with a provider for easy access": - "سجل الدخول عبر مزود للوصول بسهولة", - "Sign in with Apple": "تسجيل الدخول بآبل", - "Sign In with Google": "تسجيل الدخول بجوجل", - "Sign in with Google for easier email and name entry": - "سجل الدخول بجوجل لإدخال البريد والاسم بسهولة", - "Sign Out": "تسجيل خروج", - "Silver badge": "وسام فضي", "similar": "متشابه", - "Siro": "سيرو", - "Siro Balance": "رصيد سيرو", - "Siro Driver": "سائق سيرو", - "Siro DRIVER CODE": "كود سائق سيرو", - "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 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 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 LLC": "شركة سيرو", - "Siro LLC\n\${'Syria": "شركة سيرو\n\${'سوريا", - "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 Order": "طلب سيرو", - "Siro Over": "سيرو انتهى", - "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 Reminder": "تذكير سيرو", - "Siro Wallet": "محفظة سيرو", - "Siro Wallet Features:": "ميزات محفظة سيرو:", - "Siro's Response": "رد سيرو", - "Siro123": "Siro123", - "Siro: For fixed salary and endpoints.": - "سيرو: للراتب الثابت والمحطات النهائية.", - "Slide to End Trip": "اسحب عشان تنهي الرحلة", - "So go and gain your money": "يلا استلم فلوسك", - "Social Butterfly": "الفراشة الاجتماعية", - "Societe Arabe Internationale De Banque": "المجتمع العربي الدولي للبنوك", - "Something went wrong. Please try again.": "صار شي غلط. جرب مرة تانية.", - "Sorry": "آسف", - "Sorry, the order was taken by another driver.": "آسف، الطلب أخذه سائق تاني.", - "SOS": "طوارئ", - "SOS Phone": "هاتف الطوارئ", - "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": - "خدمة فان واسعة مثالية للعائلات والمجموعات. رحلة مريحة، آمنة، واقتصادية سوا.", - "Speaker": "مكبر الصوت", - "Special Order": "طلب خاص", - "Speed": "السرعة", - "Speed Order": "طلب سريع", - "Speed 🔻": "سرعة 🔻", - "Standard Call": "مكالمة عادية", - "Standard support": "دعم قياسي", - "Start": "ابدأ", "start": "ابدأ", - "Start Navigation?": "بدء الملاحة؟", - "Start Record": "ابدأ التسجيل", - "Start Ride": "ابدأ الرحلة", - "Start sharing your code!": "ابدأ بمشاركة كودك!", - "Start the Ride": "ابدأ الرحلة", - "Start Trip": "ابدأ الرحلة", - "Start Trip?": "ابدأ الرحلة؟", - "start_name'] ?? 'Pickup Location": "start_name'] ?? 'موقع الالتقاط", - "Starting contacts sync in background...": - "عم نبدأ مزامنة جهات الاتصال بالخلفية...", "startName'] ?? 'Unknown Location": "startName'] ?? 'موقع غير معروف", - "Statistic": "إحصائية", - "Statistics": "الإحصائيات", - "Status": "الحالة", - "Status is": "الحالة هي", - "Stay": "ابقى", - "Step-by-step instructions on how to request a ride through the Siro app.": - "تعليمات خطوة بخطوة عشان تطلب رحلة عبر تطبيق سيرو.", - "Stop": "توقف", - "Store your money with us and receive it in your bank as a monthly salary.": - "خزّن فلوسك عنا واستلمها ببنكك كراتب شهري.", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'موقع الالتقاط", "string": "نص", - "Submission Failed": "فشل الإرسال", - "SUBMIT": "إرسال", - "Submit": "إرسال", - "Submit ": "إرسال", - "Submit a Complaint": "قدّم شكوى", - "Submit Complaint": "إرسال شكوى", - "Submit Question": "إرسال سؤال", - "Submit Rating": "إرسال تقييم", - "Submit rating": "أرسل تقييم", - "Submit Your Complaint": "أرسل شكواك", - "Submit Your Question": "أرسل سؤالك", - "Success": "تم بنجاح", - "Suez Canal Bank": "بنك قناة السويس", - "Summary of your daily activity": "ملخص نشاطك اليومي", - "Sun": "الأحد", - "Support": "الدعم", - "Support Reply": "رد الدعم", - "Swipe to End Trip": "اسحب عشان تنهي الرحلة", - "Switch between light and dark map styles": - "بدّل بين أنماط الخريطة الفاتحة والداكنة", - "Switch between light and dark themes": "بدّل بين السمات الفاتحة والداكنة", - "Switch Rider": "تبديل الراكب", - "SYP": "ل.س", - "Syria": "سوريا", - "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", - "Syria': return 'SYP": "Syria': return 'ل.س", "syriatel": "سيريتل", - "Syriatel Cash": "سيريتل كاش", "t an Egyptian phone number": "رقم هاتف مصري", "t be late": "ما تتأخر", "t cancel!": "ما تلغي!", "t continue with us .": "ما تقدر تكمل معنا.", - "t continue with us .\nYou should renew Driver license": - "ما تقدر تكمل معنا.\nلازم تجدّد رخصة السائق", - "t find a valid route to this destination. Please try selecting a different point.": - "ما لقينا طريق صالح لهالوجهة. تفضّل جرّب تختار نقطة تانية.", + "t continue with us .\\nYou should renew Driver license": "ما تقدر تكمل معنا.\\nلازم تجدّد رخصة السائق", + "t find a valid route to this destination. Please try selecting a different point.": "ما لقينا طريق صالح لهالوجهة. تفضّل جرّب تختار نقطة تانية.", "t forget your personal belongings.": "ما تنسى حاجاتك الشخصية.", "t forget your ride!": "ما تنسى رحلتك!", - "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": - "ما لقينا سواقين لسا. فكّر ترفع رسوم رحلتك عشان تجذب سواقين أكثر.", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ما لقينا سواقين لسا. فكّر ترفع رسوم رحلتك عشان تجذب سواقين أكثر.", "t have a code": "ما عندك كود", "t have a phone number.": "ما عندك رقم هاتف.", "t have a reason": "ما عندك سبب", @@ -2053,762 +2518,82 @@ final Map ar_sy = { "t need a ride anymore": "ما بدك رحلة بعد هيك", "t return to use app after 1 month": "ما ترجع تستخدم التطبيق بعد شهر", "t start trip if not": "ما تبدأ الرحلة إذا ما", - "t start trip if passenger not in your car": - "لا تبدأ الرحلة إذا الراكب مش بسيارتك", - "Take Image": "التقط صورة", - "Take Photo Now": "التقط صورة هلق", - "Take Picture Of Driver License Card": "التقط صورة لرخصة السائق", - "Take Picture Of ID Card": "التقط صورة لبطاقة الهوية", - "Tap on the promo code to copy it!": "اضغط على كود الخصم عشان تنسخه!", - "Tap to upload": "اضغط عشان ترفع", - "Target": "الهدف", - "Tariff": "التعريفة", - "Tariffs": "التعريفات", - "Tax Expiry Date": "تاريخ انتهاء الضريبة", - "Terms of Use": "شروط الاستخدام", + "t start trip if passenger not in your car": "لا تبدأ الرحلة إذا الراكب مش بسيارتك", "terms of use": "شروط الاستخدام", - "Terms of Use & Privacy Notice": "شروط الاستخدام وإشعار الخصوصية", - "Thank You!": "شكراً كتير!", - "Thanks": "شكراً", "the 300 points equal 300 L.E": "الـ 300 نقطة بتساوي 300 ل.م", "the 300 points equal 300 L.E for you": "الـ 300 نقطة بتساوي 300 ل.م لك", - "The 300 points equal 300 L.E for you\nSo go and gain your money": - "الـ 300 نقطة بتساوي 300 ل.م لك\nيلا استلم فلوسك", - "the 300 points equal 300 L.E for you\nSo go and gain your money": - "الـ 300 نقطة بتساوي 300 ل.م لك\nيلا استلم فلوسك", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "الـ 300 نقطة بتساوي 300 ل.م لك\\nيلا استلم فلوسك", "the 3000 points equal 3000 L.E": "الـ 3000 نقطة بتساوي 3000 ل.م", "the 3000 points equal 3000 L.E for you": "الـ 3000 نقطة بتساوي 3000 ل.م لك", - "The 30000 points equal 30000 S.P for you\nSo go and gain your money": - "الـ 30000 نقطة بتساوي 30000 ل.س لك\nيلا استلم فلوسك", "the 500 points equal 30 JOD": "الـ 500 نقطة بتساوي 30 د.أ", "the 500 points equal 30 JOD for you": "الـ 500 نقطة بتساوي 30 د.أ لك", - "the 500 points equal 30 JOD for you\nSo go and gain your money": - "الـ 500 نقطة بتساوي 30 د.أ لك\nيلا استلم فلوسك", - "The Amount is less than": "المبلغ أقل من", - "The app may not work optimally": "ممكن التطبيق ما يشتغل بأحسن شكل", - "The audio file is not uploaded yet.\nDo you want to submit without it?": - "الملف الصوتي ما انرفع لسا.\nبدك ترسل من دونه؟", - "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", - "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": - "المعلومات ما بتعطي تفاصيل عن الشكوى، فما بقدر قدّم حل. تفضّل قدّم المعلومات اللازمة، ورح أساعدك بكل سرور.", - "The distance less than 500 meter.": "المسافة أقل من 500 متر.", - "The driver accept your order for": "السائق قبل طلبك بـ", - "The driver accepted your order for": "السائق قبل طلبك بـ", - "The driver accepted your trip": "السائق قبل رحلتك", - "The driver canceled your ride.": "السائق ألغى رحلتك.", - "The driver is approaching.": "السائق عم يقرب.", - "The driver on your way": "السائق بطريقه لعندك", - "The driver waiting you in picked location .": - "السائق عم يستنياك بمكان الالتقاط.", - "The driver waitting you in picked location .": - "السائق عم يستنياك بمكان الالتقاط.", - "The Driver Will be in your location soon .": "السائق رح يوصل لموقعك قريباً.", - "The drivers are reviewing your request": "السواقين عم يراجعوا طلبك", - "The email or phone number is already registered.": - "البريد أو رقم الهاتف مسجل من قبل.", - "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": - "الاسم الكامل بصحيفتك الجنائية ما بيتطابق مع رخصة السائق. تفضّل تحقق وقدّم الوثائق الصحيحة.", - "The invitation was sent successfully": "تم إرسال الدعوة بنجاح", - "The map will show an approximate view.": "ستعرض الخريطة نظرة تقريبية.", - "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": - "الرقم القومي برخصة السائق ما بيتطابق مع الهوية. تفضّل تحقق وقدّم الوثائق الصحيحة.", - "The order Accepted by another Driver": "تم قبول الطلب من سائق تاني", - "The order has been accepted by another driver.": - "تم قبول الطلب من سائق تاني.", - "The payment was approved.": "تمت الموافقة على الدفع.", - "The payment was not approved. Please try again.": - "ما انقبل الدفع. تفضّل جرّب مرة تانية.", - "The period of this code is 24 hours": "صلاحية هذا الكود هي 24 ساعة", - "The price may increase if the route changes.": - "السعر ممكن يزيد إذا تغيّر الطريق.", - "The price must be over than": "السعر لازم يكون أكثر من", - "The promotion period has ended.": "انتهت فترة العرض.", - "The reason is": "السبب هو", - "The selected contact does not have a phone number": - "جهة الاتصال المختارة ما فيها رقم هاتف", - "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": - "بلشت الرحلة! تفضّل اتصل بأرقام الطوارئ، شارك رحلتك، أو فعّل التسجيل الصوتي للرحلة", - "The United Bank": "البنك المتحد", - "There is no data yet.": "ما في بيانات لسا.", - "There is no help Question here": "ما في أسئلة مساعدة هون", - "There is no notification yet": "ما في إشعارات لسا", - "There no Driver Aplly your order sorry for that": - "ما في سائق قدم على طلبك، آسفين علهيك", - "They register using your code": "يسجلون باستخدام كودك", - "This amount for all trip I get from Passengers": - "هالمبلغ عن كل الرحلات اللي جبته من الركاب", - "This amount for all trip I get from Passengers and Collected For me in": - "هالمبلغ عن كل الرحلات اللي جبته من الركاب وتم جمعه لي بـ", - "This driver is not registered": "هالسائق مش مسجل", - "This for new registration": "هالتسجيل جديد", - "This is a scheduled notification.": "هإشعار مبرمج.", - "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": - "هالعدد لكل رحلاتك بعرض الظهيرة اليوم من 3:00 م لـ 6:00 م", - "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": - "هالعدد لكل رحلاتك بعرض الظهيرة اليوم من 3:00 م لـ 6:00 م", - "this is count of your all trips in the morning promo today from 7:00am to 10:00am": - "هالعدد لكل رحلاتك بعرض الصباح اليوم من 7:00 ص لـ 10:00 ص", - "this is count of your all trips in the morning promo today from 7:00am-10:00am": - "هالعدد لكل رحلاتك بعرض الصباح اليوم من 7:00 ص لـ 10:00 ص", - "This is for delivery or a motorcycle.": "هالتوصيل أو للموتوسيكل.", - "This is for scooter or a motorcycle.": "هالسكوتر أو للموتوسيكل.", - "This is the total number of rejected orders per day after accepting the orders": - "هالعدد الكلي للطلبات المرفوضة باليوم بعد ما انقبلت", - "This page is only available for Android devices": - "هالصفحة متاحة بس لأجهزة أندرويد", - "This phone number has already been invited.": "هالرقم انُدعِي من قبل.", - "This price is": "هالسعر هو", - "This price is fixed even if the route changes for the driver.": - "هالسعر ثابت حتى لو تغيّر الطريق للسائق.", - "This price may be changed": "هالسعر ممكن يتغير", - "This ride is already applied by another driver.": - "هالرحلة قدم عليها سائق تاني من قبل.", - "This ride is already taken by another driver.": - "هالرحلة أخدها سائق تاني من قبل.", - "This ride type allows changes, but the price may increase": - "هالنوع من الرحلات بيسمح بالتغييرات، بس السعر ممكن يزيد", - "This ride type does not allow changes to the destination or additional stops": - "هالنوع من الرحلات ما بيسمح بتغيير الوجهة أو إضافة محطات", - "This ride was just accepted by another driver.": - "هالرحلة انقبلت للتو من سائق تاني.", - "This service will be available soon.": "هالخدمة رح تتوفر قريباً.", - "This Trip Cancelled": "تم إلغاء هالرحلة", - "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": - "هالرحلة بتروح مباشرة من نقطة البداية للوجهة بسعر ثابت. السائق لازم يتبع الطريق المخطط", - "This trip is for women only": "هالرحلة للنساء بس", - "This Trip Was Cancelled": "تم إلغاء هالرحلة", - "this will delete all files from your device": - "هالشي رح يحذف كل الملفات من جهازك", - "This will delete all recorded files from your device.": - "هالشي رح يحذف كل الملفات المسجلة من جهازك.", - "Thu": "الخميس", - "Time": "الوقت", - "Time Finish is": "وقت الانتهاء هو", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "الـ 500 نقطة بتساوي 30 د.أ لك\\nيلا استلم فلوسك", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "هالعدد لكل رحلاتك بعرض الظهيرة اليوم من 3:00 م لـ 6:00 م", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "هالعدد لكل رحلاتك بعرض الظهيرة اليوم من 3:00 م لـ 6:00 م", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "هالعدد لكل رحلاتك بعرض الصباح اليوم من 7:00 ص لـ 10:00 ص", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "هالعدد لكل رحلاتك بعرض الصباح اليوم من 7:00 ص لـ 10:00 ص", + "this will delete all files from your device": "هالشي رح يحذف كل الملفات من جهازك", "time Selected": "الوقت المختار", - "Time to arrive": "وقت الوصول", - "Time to Passenger": "الوقت للراكب", - "Time to Passenger is": "الوقت للراكب هو", - "Times of Trip": "أوقات الرحلة", - "TimeStart is": "وقت البدء هو", - "Tip is": "الإكرامية هي", "tips": "الإكراميات", - "tips\nTotal is": "الإكراميات\nالإجمالي هو", + "tips\\nTotal is": "الإكراميات\\nالإجمالي هو", "title': 'scams operations": "title': 'عمليات احتيال", "to": "إلى", - "To :": "إلى :", "to arrive you.": "ليوصل لعندك.", - "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 change Language the App": "عشان تغير لغة التطبيق", - "To change some Settings": "عشان تغير بعض الإعدادات", - "To display orders instantly, please grant permission to draw over other apps.": - "عشان تعرض الطلبات فوراً، تفضّل امنح صلاحية العرض فوق التطبيقات الأخرى.", - "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": - "مشان نضمنلك أحسن تجربة، بنقترح تعديل الإعدادات لتناسب جهازك. بدك نكمل؟", - "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 Home": "للمنزل", - "to receive ride requests even when the app is in the background.": - "عشان تستلم طلبات الرحلات حتى لو التطبيق شغّال بالخلفية.", - "To register as a driver or learn about the requirements, please visit our website or contact Siro support directly.": - "عشان تسجل كسائق أو تتعرف على المتطلبات، تفضّل زور موقعنا أو تواصل مع دعم سيرو مباشرة.", + "to receive ride requests even when the app is in the background.": "عشان تستلم طلبات الرحلات حتى لو التطبيق شغّال بالخلفية.", "to ride with": "لترحل مع", - "To use Wallet charge it": "عشان تستخدم المحفظة اشحنها", - "To Work": "للعمل", - "Today": "اليوم", - "Today Overview": "نظرة عامة على اليوم", "token change": "تغيير الرمز", "token updated": "تم تحديث الرمز", - "Top up Balance": "شحن الرصيد", - "Top up Balance to continue": "اشحن الرصيد عشان تكمل", - "Top up Wallet": "شحن المحفظة", - "Top up Wallet to continue": "اشحن المحفظة عشان تكمل", - "Total Amount:": "المبلغ الإجمالي:", - "Total Budget from trips by": "إجمالي الميزانية من الرحلات بـ", - "Total Budget from trips by\nCredit card is": - "إجمالي الميزانية من الرحلات بـ\nبطاقة الائتمان هي", - "Total Budget from trips is": "إجمالي الميزانية من الرحلات هو", - "Total Budget is": "إجمالي الميزانية هو", - "Total budgets on month": "إجمالي الميزانيات بالشهر", - "Total Connection": "إجمالي الاتصال", - "Total Connection Duration:": "إجمالي مدة الاتصال:", - "Total Cost": "التكلفة الإجمالية", - "Total Cost is": "التكلفة الإجمالية هي", - "Total Duration:": "إجمالي المدة:", - "Total Earnings": "إجمالي الأرباح", - "Total For You is": "الإجمالي لك هو", - "Total From Passenger is": "الإجمالي من الراكب هو", - "Total Hours on month": "إجمالي الساعات بالشهر", - "Total Invites": "إجمالي الدعوات", - "Total is": "الإجمالي هو", - "Total Net": "صافي الإجمالي", - "Total Orders": "إجمالي الطلبات", - "Total Points": "إجمالي النقاط", - "Total Points is": "إجمالي النقاط هو", - "Total points is": "إجمالي النقاط هو", - "Total Price": "السعر الإجمالي", - "Total price from": "السعر الإجمالي من", - "Total Rides": "إجمالي الرحلات", - "Total rides on month": "إجمالي الرحلات بالشهر", - "Total Trips": "إجمالي الرحلات", - "Total wallet is": "إجمالي المحفظة هو", - "Total Weekly Earnings": "إجمالي الأرباح الأسبوعية", - "Total weekly is": "إجمالي الأسبوعي هو", "towards": "باتجاه", "tr": "tr", - "Transaction failed": "فشلت العملية", - "Transaction failed, please try again.": - "فشلت العملية، يرجى المحاولة مرة أخرى.", - "Transaction successful": "نجاح العملية", "transaction_failed": "فشلت العملية", "transaction_id": "رقم العملية", - "Transactions this week": "المعاملات بهالأسبوع", - "Transfer": "تحويل", - "Transfer budget": "تحويل الميزانية", - "Transfer money multiple times.": "حوّل فلوس كذا مرة.", "transfer Successful": "نجاح التحويل", - "Transfer to anyone.": "حوّل لأي واحد.", - "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": - "سافر بسيارة كهربائية حديثة وهادئة. خيار فاخر وصديق للبيئة لرحلة سلسة.", - "Traveled": "تم السفر", - "Trip": "مشوار", - "Trip Cancelled": "انلغى المشوار", - "Trip Cancelled from driver. We are looking for a new driver. Please wait.": - "انلغى المشوار من السائق. عم نبحث عن سائق جديد. تفضّل استنى.", - "Trip Cancelled. The cost of the trip will be added to your wallet.": - "تم إلغاء الرحلة. رح تتضاف تكلفة الرحلة لمحفظتك.", - "Trip Cancelled. The cost of the trip will be deducted from your wallet.": - "تم إلغاء الرحلة. رح تنخصم تكلفة الرحلة من محفظتك.", - "Trip Completed": "تمت الرحلة", - "Trip Detail": "تفاصيل الرحلة", - "Trip Details": "تفاصيل الرحلة", - "Trip Finished": "خلص المشوار", - "Trip finished": "الرحلة خلصت", - "Trip has Steps": "الرحلة فيها محطات", - "Trip ID": "رقم الرحلة", - "Trip Info": "معلومات الرحلة", - "Trip is Begin": "بلشت الرحلة", - "Trip Monitor": "مراقب الرحلة", - "Trip Monitoring": "مراقبة الرحلة", - "Trip Started": "بلش المشوار", - "Trip Status:": "حالة الرحلة:", - "Trip Summary with": "ملخص الرحلة مع", - "Trip taken": "تم أخذ الرحلة", - "Trip Timeline": "خط زمني للرحلة", - "Trip updated successfully": "تم تحديث الرحلة بنجاح", - "Trips": "الرحلات", "trips": "الرحلات", - "Trips recorded": "تم تسجيل الرحلات", - "Trips: \$trips / \$target": "الرحلات: \$trips / \$target", "true": "صحيح", - "Tue": "الثلاثاء", - "Turkey": "تركيا", - "Turn left": "انعطف يسار", - "Turn right": "انعطف يمين", - "Turn sharp left": "انعطف حاد يسار", - "Turn sharp right": "انعطف حاد يمين", - "Turn slight left": "انعطف خفيف يسار", - "Turn slight right": "انعطف خفيف يمين", - "Type a message...": "اكتب رسالة...", - "Type Any thing": "اكتب أي شي", "type here": "اكتب هون", - "Type here Place": "اكتب المكان هون", - "Type something": "اكتب شيئًا", - "Type something...": "اكتب شيئًا...", - "Type your Email": "اكتب بريدك الإلكتروني", - "Type your message": "اكتب رسالتك", - "Type your message...": "اكتب رسالتك...", - "Types of Trips in Siro:": "أنواع الرحلات بسيرو:", - "Uncompromising Security": "أمان لا يتنازل عنه", - "Unknown": "غير معروف", - "Unknown Driver": "سائق غير معروف", - "Unknown Location": "موقع غير معروف", "unknown_document": "وثيقة غير معروفة", - "Update": "تحديث", - "Update Available": "في تحديث جديد", - "Update Education": "تحديث التعليم", - "Update Gender": "تحديث الجنس", - "Updated": "تم التحديث", - "Updated successfully": "تم التحديث بنجاح", "upgrade price": "رفع السعر", - "Upload Documents": "ارفع المستندات", - "Upload or AI failed": "فشل الرفع أو الذكاء الاصطناعي", - "Uploaded": "تم الرفع", "uploaded sucssefuly": "تم الرفع بنجاح", - "USA": "أمريكا", - "Use code:": "استخدم الكود:", - "Use my invitation code to get a special gift on your first ride!": - "استخدم كود الدعوة بتاعي عشان تاخد هدية خاصة بأول رحلة!", - "Use my referral code:": "استخدم كود الدعوة بتاعي:", - "Use this code in registration": "استخدم هالكود بالتسجيل", - "Use Touch ID or Face ID to confirm payment": - "استخدم بصمة الإصبع أو الوجه لتأكيد الدفع", - "User does not exist.": "المستخدم مش موجود.", - "User does not have a wallet #1652": "المستخدم ما عندو محفظة #1652", - "User not found": "ما لقينا المستخدم", - "User not logged in": "المستخدم غير مسجل دخول", - "User with this phone number or email already exists.": - "مستخدم بهالرقم أو البريد موجود من قبل.", - "Uses cellular network": "يستخدم شبكة الجوال", - "Valid Until:": "صالح حتى:", - "Value": "القيمة", - "Van": "فان", - "Van / Bus": "فان / باص", - "Van for familly": "فان للعائلات", - "Variety of Trip Choices": "تنوع خيارات الرحلات", "ve arrived.": "وصلت.", - "ve been trying to reach you but your phone is off.": - "كنت عم حاول أوصلك بس هاتفك مقفول.", - "Vehicle": "المركبة", - "Vehicle Category": "فئة المركبة", - "Vehicle Details": "تفاصيل المركبة", - "Vehicle Details Back": "تفاصيل المركبة (خلفي)", - "Vehicle Details Front": "تفاصيل المركبة (أمامي)", - "Vehicle Information": "معلومات المركبة", - "Vehicle Options": "خيارات المركبة", - "Verification Code": "رمز التحقق", - "Verify": "توثيق", + "ve been trying to reach you but your phone is off.": "كنت عم حاول أوصلك بس هاتفك مقفول.", "verify and continue button": "زر التحقق والمتابعة", - "Verify Email": "توثيق البريد", - "Verify Email For Driver": "توثيق البريد للسائق", - "Verify OTP": "توثيق OTP", "verify your number title": "عنوان التحقق من رقمك", - "Vibration": "اهتزاز", - "Vibration feedback for all buttons": "تغذية راجعة بالاهتزاز لكل الأزرار", - "Vibration feedback for buttons": "تغذية راجعة بالاهتزاز للأزرار", - "Videos Tutorials": "فيديوهات تعليمية", - "View All": "عرض الكل", - "View your past transactions": "شوف معاملاتك السابقة", - "VIN": "رقم الهيكل", "vin": "رقم الهيكل", - "VIN :": "رقم الهيكل :", - "VIN is": "رقم الهيكل هو", - "VIP first": "أولوية VIP", - "VIP Order": "طلب VIP", - "VIP Order Accepted": "تم قبول طلب VIP", - "VIP Orders": "طلبات VIP", - "Visa": "فيزا", - "Visit our website or contact Siro support for information on driver registration and requirements.": - "زور موقعنا أو تواصل مع دعم سيرو لمعلومات عن تسجيل السائق والمتطلبات.", - "Visit Website/Contact Support": "زور الموقع/تواصل مع الدعم", - "Voice call over internet": "مكالمة صوتية عبر الإنترنت", - "Voice Calling": "الاتصال الصوتي", "wait 1 minute to receive message": "استنى دقيقة وحدة عشان تستلم الرسالة", - "Wait for timer": "استنى ليخلص الوقت", - "Waiting": "بالانتظار", - "Waiting for Captin ...": "عم نستنى الكابتن...", - "Waiting for Driver ...": "عم نستنى السائق...", - "Waiting for trips": "بانتظار الرحلات", - "Waiting for your location": "عم نستنى موقعك", - "Waiting Time": "وقت الانتظار", - "Waiting VIP": "انتظار VIP", - "Wallet": "المحفظة", - "Wallet Add": "إضافة للمحفظة", - "Wallet Added": "تمت الإضافة للمحفظة", - "Wallet Added\${(remainingFee).toStringAsFixed(0)}": - "تمت الإضافة للمحفظة \${(remainingFee).toStringAsFixed(0)}", - "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": - "تمت الإضافة للمحفظة \\\${(remainingFee).toStringAsFixed(0)}", "wallet due to a previous trip.": "المحفظة بسبب رحلة سابقة.", - "Wallet is blocked": "المحفظة محظورة", - "Wallet Payment": "الدفع عبر المحفظة", - "Wallet Phone Number": "رقم هاتف المحفظة", - "Wallet Type": "نوع المحفظة", - "Wallet!": "المحفظة!", "wallet_credited_message": "تم إضافة", "wallet_updated": "تم تحديث المحفظة", - "Warning": "تحذير", - "Warning: Siroing detected!": "تحذير: تم كشف تجاوزات!", - "Warning: Speeding detected!": "تحذير: تم كشف سرعة زائدة!", - "We are looking for a captain but the price may increase to let a captain accept": - "عم نبحث عن كابتن بس السعر ممكن يزيد عشان يقبل كابتن", - "We are process picture please wait": "عم نعالج الصورة تفضّل استنى", - "We are process picture please wait ": "عم نعالج الصورة تفضّل استنى", - "We are search for nearst driver": "عم نبحث عن أقرب سائق", - "We are searching for the nearest driver": "عم نبحث عن أقرب سائق لك", - "We are searching for the nearest driver to you": "عم نبحث عن أقرب سائق لك", - "We Are Sorry That we dont have cars in your Location!": - "آسفين ما عندنا سيارات بموقعك!", - "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 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:": - "أرسلنا رمز تحقق لرقم جوالك:", - "We need access to your location to match you with nearby passengers and ensure accurate navigation.": - "نحتاج صلاحية موقعك عشان نربطك بركاب قريبين ونضمن ملاحة دقيقة.", - "We need access to your location to match you with nearby passengers and provide accurate navigation.": - "نحتاج للوصول لموقعك عشان نربطك بالركاب القريبين ونوفر توجيه دقيق.", - "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 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 أرقام لبريدك الإلكتروني اللي قدّمته", - "We use location to get accurate and nearest passengers for you": - "بنستخدم موقعك عشان نلاقي أدق وأقرب ركاب لك", - "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": - "بنستخدم موقعك الدقيق عشان نلاقي أقرب سائق متاح ونعطيك معلومات دقيقة للالتقاط والتنزيل. تقدر تدير هالشي بالإعدادات.", - "We will look for a new driver.\nPlease wait.": - "هنبحث عن سائق جديد.\nمن فضلك انتظر.", - "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": - "رح نرسل لك إشعار بمجرد الموافقة على حسابك. تقدر تغلق هالصفحة بأمان، ورح نعلمك لما تكتمل المراجعة.", - "Wed": "الأربعاء", - "Weekly Budget": "الميزانية الأسبوعية", - "Weekly Challenges": "التحديات الأسبوعية", - "Weekly Earnings": "الأرباح الأسبوعية", - "Weekly Plan": "الخطة الأسبوعية", - "Weekly Streak": "سلسلة أسبوعية", - "Weekly Summary": "الملخص الأسبوعي", - "Welcome": "ياهلا وسهلا", - "Welcome Back!": "مرحباً بعودتك!", - "Welcome Offer!": "عرض ترحيبي!", "welcome to siro": "أهلاً بك في سيرو", - "Welcome to Siro!": "أهلاً بسيرو!", "welcome user": "أهلاً بالمستخدم", "welcome_message": "رسالة الترحيب", "welcome_to_siro": "أهلاً بك في سيرو", - "What are the order details we provide to you?": - "إيش تفاصيل الطلب اللي بنقدملك؟", - "What are the requirements to become a driver?": - "إيش المتطلبات عشان تصير سائق؟", - "What is the feature of our wallet?": "إيش مميزات محفظتنا؟", - "What is Types of Trips in Siro?": "إيش أنواع الرحلات بسيرو؟", - "What safety measures does Siro offer?": - "إيش إجراءات السلامة اللي بيقدمها سيرو؟", - "What types of vehicles are available?": "إيش أنواع المركبات المتاحة؟", - "WhatsApp": "واتساب", - "WhatsApp Location Extractor": "مستخرج موقع الواتساب", "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'أهلاً", - "When": "متى", - "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": - "لما تكمل 500 رحلة، رح تكون مؤهل لعروض تأمين صحي حصرية.", - "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": - "لما تكمل 600 رحلة، رح تكون مؤهل لعروض صيانة سيارتك.", - "Where are you going?": "وين رايح؟", - "Where are you, sir?": "وينك يا سيدي؟", - "Where to": "وين بدك تروح؟", - "Where you want go": "وين بدك تروح", - "Which method you will pay": "إيش طريقة الدفع اللي بدك تستخدمها", - "Why Choose Siro?": "ليش تختار سيرو؟", - "Why do you want to cancel this trip?": "ليش بدك تلغي هالرحلة؟", "with license plate": "لوحة أرقام", - "With Siro, you can get a ride to your destination in minutes.": - "مع سيرو، تقدر تاخد رحلة لوجهتك بدقايق.", "with type": "بالنوع", - "Withdraw": "سحب", "witout zero": "بدون صفر", - "Work": "العمل", - "Work & Contact": "العمل والتواصل", - "Work 30 consecutive days": "اعمل 30 يوم متتالي", - "Work 7 consecutive days": "اعمل 7 أيام متتالية", - "Work Days": "أيام العمل", - "Work Saved": "تم حفظ العمل", - "Work time is from 10:00 - 17:00.\nYou can send a WhatsApp message or email.": - "وقت العمل من 10:00 لـ 17:00.\nتقدر ترسل رسالة واتساب أو بريد إلكتروني.", - "Work time is from 10:00 AM to 16:00 PM.\nYou can send a WhatsApp message or email.": - "وقت العمل من 10:00 ص لـ 4:00 م.\nتقدر ترسل رسالة واتساب أو بريد إلكتروني.", - "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": - "وقت العمل من 12:00 لـ 19:00.\nتقدر ترسل رسالة واتساب أو بريد إلكتروني.", - "Would the passenger like to settle the remaining fare using their wallet?": - "بد الراكب يسدّد الأجرة المتبقية بمحفظته؟", - "Would you like to proceed with health insurance?": - "بدك تكمل مع التأمين الصحي؟", "write Color for your car": "اكتب لون سيارتك", - "write comment here": "اكتب تعليق هون", "write Expiration Date for your car": "اكتب تاريخ انتهاء سيارتك", "write Make for your car": "اكتب ماركة سيارتك", "write Model for your car": "اكتب موديل سيارتك", - "Write note": "اكتب ملاحظة", - "Write the reason for canceling the trip": "اكتب سبب إلغاء الرحلة", - "write vin for your car": "اكتب رقم هيكل سيارتك", "write Year for your car": "اكتب سنة سيارتك", - "Write your comment here": "اكتب تعليقك هون", - "Write your reason...": "اكتب سببك...", - "Year": "السنة", + "write comment here": "اكتب تعليق هون", + "write vin for your car": "اكتب رقم هيكل سيارتك", "year :": "سنة :", - "Year is": "السنة هي", - "Year of Manufacture": "سنة الصنع", - "Yes": "إي", - "Yes, optimize": "إي، حسن الأداء", - "Yes, Pay": "إي، ادفع", - "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, but please note that cancellation fees may apply depending on how far in advance you cancel.": - "إي، تقدر تلغي رحلتك، بس انتبه إن في رسوم إلغاء ممكن تتطبق حسب الوقت اللي بتلغي فيه.", - "You": "أنت", - "You accepted the VIP order.": "قبلت طلب VIP.", - "You are buying": "أنت تقوم بشراء", - "You are Delete": "تم حذفك", - "You are far from passenger location": "أنت بعيد عن موقع الراكب", - "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": - "أنت برحلة نشطة. خروجك من هالشاشة ممكن يوقف التتبع. متأكد بدك تخرج؟", - "You are near the destination": "أنت قريب من الوجهة", - "You are not in near to passenger location": "أنت مش قريب من موقع الراكب", "you are not moved yet !": "ما تحركت لسا!", - "You are not near": "أنت مش قريب من", - "You are not near the passenger location": "أنت مش قريب من موقع الراكب", - "You are Stopped": "تم إيقافك", - "You Are Stopped For this Day !": "تم إيقافك لهاليوم!", "you can buy": "تقدر تشتري", - "You can buy points from your budget": "تقدر تشتري نقاط من ميزانيتك", - "You can buy Points to let you online": "تقدر تشتري نقاط عشان تكون أونلاين", - "You can buy Points to let you online\nby this list below": - "تقدر تشتري نقاط عشان تكون أونلاين\nبهالقائمة تحت", - "You can call or record audio during this trip.": - "تقدر تتصل أو تسجّل صوت خلال هالرحلة.", - "You can call or record audio of this trip": "تقدر تتصل أو تسجّل صوت هالرحلة", - "You Can cancel Ride After Captain did not come in the time": - "تقدر تلغي الرحلة إذا ما جاك الكابتن بالوقت المحدد", - "You can cancel Ride now": "تقدر تلغي الرحلة هلق", - "You Can Cancel the Trip and get Cost From": - "تقدر تلغي الرحلة وتسترد التكلفة من", - "You can cancel trip": "تقدر تلغي الرحلة", - "You Can Cancel Trip And get Cost of Trip From": - "تقدر تلغي الرحلة وتسترد التكلفة من", - "You can change the Country to get all features": - "تقدر تغير البلد عشان تاخد كل الميزات", - "You can change the destination by long-pressing any point on the map": - "تقدر تغير الوجهة بالضغط المطوّل على أي نقطة بالخريطة", - "You can change the language of the app": "تقدر تغير لغة التطبيق", - "You can change the vibration feedback for all buttons": - "تقدر تغير الاهتزاز لكل الأزرار", - "You can claim your gift once they complete 2 trips.": - "تقدر تستلم هديتك لما يكملوا رحلتين.", - "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": - "تقدر تتواصل مع السائق أو الراكب عبر الدردشة جوا التطبيق بعد ما تتأكد الرحلة.", - "You can contact us during working hours from 10:00 - 16:00.": - "تقدر تتواصل معنا بساعات العمل من 10:00 لـ 16:00.", - "You can contact us during working hours from 10:00 - 17:00.": - "تقدر تتواصل معنا بساعات العمل من 10:00 لـ 17:00.", - "You can contact us during working hours from 12:00 - 19:00.": - "تقدر تتواصل معنا بساعات العمل من 12:00 لـ 19:00.", - "You can decline a request without any cost": "تقدر ترفض طلب من دون أي تكلفة", - "You can now receive orders": "الآن تقدر تستلم طلبات", - "You can only use one device at a time. This device will now be set as your active device.": - "تقدر تستخدم جهاز واحد بوقت واحد. هالجهاز رح يصير جهازك النشط هلق.", - "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": - "تقدر تدفع لرحلتك كاش أو ببطاقة ائتمان/خصم. تقدر تختار طريقة الدفع المفضلة قبل ما تؤكد الرحلة.", - "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 show video how to setup": "تقدر تشوف فيديو كيف تضبط", - "You can upgrade price to may driver accept your order": - "تقدر ترفع السعر عشان يقبل سائق طلبك", - "You can\\'t continue with us .\nYou should renew Driver license": - "ما تقدر تكمل معنا.\nلازم تجدّد رخصة السائق", "you canceled order": "ألغيت الطلب", - "You canceled VIP trip": "ألغيت رحلة VIP", - "You cannot call the passenger due to policy violations": - "ما تقدر تتصل بالراكب بسبب انتهاكات السياسة", - "You deserve the gift": "أنت تستحق الهدية", - "You do not have enough money in your SAFAR wallet": - "ما عندك فلوس كافية بمحفظة سفرك", - "You dont Add Emergency Phone Yet!": "ما ضفت رقم طوارئ لسا!", "you dont have accepted ride": "ما عندك رحلة مقبولة", - "You Dont Have Any amount in": "ما عندك أي مبلغ بـ", - "You Dont Have Any places yet !": "ما عندك أي أماكن لسا!", - "You dont have invitation code": "ما عندك كود دعوة", - "You dont have money in your Wallet": "ما عندك فلوس بمحفظتك", - "You dont have money in your Wallet or you should less transfer 5 LE to activate": - "ما عندك فلوس بمحفظتك أو لازم تحول أقل من 5 ل.م عشان تفعّل", - "You dont have Points": "ما عندك نقاط", - "You Earn today is": "أرباحك اليوم هي", "you gain": "تكسب", - "You gained": "ربحت", - "You get 100 pts, they get 50 pts": "أنت تكسب 100 نقطة، وهم يكسبون 50 نقطة", - "You Have": "عندك", - "You have": "عندك", - "You have 200": "عندك 200", - "You have 500": "عندك 500", "you have a negative balance of": "عندك رصيد سلبي بقيمة", - "You have already received your gift for inviting": - "استلمت هديتك للدعوة من قبل", - "You have already used this promo code.": "استخدمت هالكود الترويجي من قبل.", - "You have arrived at your destination": "وصلت لوجهتك", - "You have arrived at your destination, @name": "وصلت لوجهتك، @name", - "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": - "قمت بالقيادة لمدة 12 ساعة. لسلامتك والامتثال، يرجى أخذ استراحة لمدة 6 ساعات.", - "You have call from driver": "عندك مكالمة من السائق", - "You have chosen not to proceed with health insurance.": - "اخترت ما تكمل مع التأمين الصحي.", - "you have connect to passengers and let them cancel the order": - "لقد تواصلت مع الركاب وسمحت لهم بإلغاء الطلب", - "You have copied the promo code.": "نسخت الكود الترويجي.", - "You have earned 20": "ربحت 20", - "You have exceeded the allowed cancellation limit (3 times).\nYou cannot work until the penalty expires.": - "تجاوزت الحد المسموح للإلغاء (3 مرات).\nما تقدر تشتغل لحتى تنتهي العقوبة.", - "You have finished all times": "خلصت كل الأوقات", - "You have finished all times ": "خلصت كل الأوقات", - "You have gift 300 \${CurrencyHelper.currency}": - "عندك هدية 300 \${CurrencyHelper.currency}", - "You have gift 300 EGP": "عندك هدية 300 ج.م", - "You have gift 300 JOD": "عندك هدية 300 د.أ", - "You have gift 300 L.E": "عندك هدية 300 ل.م", - "You have gift 300 SYP": "عندك هدية 300 ل.س", - "You have gift 30000 EGP": "عندك هدية 30000 ج.م", - "You have gift 30000 JOD": "عندك هدية 30000 د.أ", - "You have gift 30000 SYP": "عندك هدية 30000 ل.س", - "You have got a gift": "وصلتك هدية", - "You have got a gift for invitation": "وصلتك هدية للدعوة", - "You Have in": "عندك بـ", - "You have in account": "لديك في الحساب", - "You have promo!": "عندك عرض ترويجي!", - "You have received a gift token!": "استلمت رمز هدية!", - "You have successfully charged your account": "شحنت حسابك بنجاح", - "You have successfully opted for health insurance.": - "اخترت التأمين الصحي بنجاح.", - "You Have Tips": "عندك إكراميات", - "You have transfer to your wallet from": "تم التحويل لمحفظتك من", - "You have transferred to your wallet from": "تم التحويل لمحفظتك من", - "You have upload Criminal documents": "رفعت وثائق جنائية", - "You haven't moved sufficiently!": "لم تتحرك بالقدر الكافي", - "You must be charge your Account": "لازم تشحن حسابك", - "You must be closer than 100 meters to arrive": - "لازم تكون أقرب من 100 متر مشان توصل", - "You must be recharge your Account": "لازم تعيد شحن حسابك", + "you have connect to passengers and let them cancel the order": "لقد تواصلت مع الركاب وسمحت لهم بإلغاء الطلب", "you must insert token code": "لازم تدخل رمز الرمز", "you must insert token code ": "لازم تدخل رمز الرمز", - "You must restart the app to change the language.": - "لازم تعيد تشغيل التطبيق عشان تغير اللغة.", - "You must Verify email !.": "لازم توثّق بريدك الإلكتروني !.", - "You need to be closer to the pickup location.": - "لازم تكون أقرب لموقع الالتقاط.", - "You need to complete 500 trips": "لازم تكمل 500 رحلة", - "You Refused 3 Rides this Day that is the reason": - "رفضت 3 رحلات بهاليوم وهيك السبب", - "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": - "رفضت 3 رحلات بهاليوم وهيك السبب\nنشوفك بكرة!", - "You Refused 3 Rides this Day that is the reason\nSee you Tomorrow!": - "رفضت 3 رحلات بهاليوم وهيك السبب\nنشوفك بكرة!", - "You Should be select reason.": "لازم تختار سبب.", - "You Should choose rate figure": "لازم تختار رقم التقييم", - "You should complete 500 trips to unlock this feature.": - "لازم تكمل 500 رحلة عشان تفتح هالميزة.", - "You should complete 600 trips": "لازم تكمل 600 رحلة", - "You should have upload it .": "لازم تكون رفعتها.", - "You should renew Driver license": "لازم تجدّد رخصة السائق", - "You should restart app to change language": - "لازم تعيد تشغيل التطبيق عشان تغير اللغة", - "You should select one": "لازم تختار واحد", - "You should select your country": "لازم تختار بلدك", - "You should use Touch ID or Face ID to confirm payment": - "لازم تستخدم بصمة اللمس أو الوجه لتأكيد الدفع", - "You trip distance is": "مسافة رحلتك هي", - "You will arrive to your destination after": "رح توصل لوجهتك بعد", - "You will arrive to your destination after timer end.": - "رح توصل لوجهتك بعد ما يخلص العداد.", - "You will be charged for the cost of the driver coming to your location.": - "رح يتحسب عليك تكلفة وصول السائق لموقعك.", - "You Will Be Notified": "رح نبلّغك", - "You will be pay the cost to driver or we will get it from you on next trip": - "رح تدفع التكلفة للسائق أو بنخصمها من رحلتك الجاية", - "You will be thier in": "رح توصل هناك بـ", - "You will cancel registration": "رح تلغي التسجيل", - "You will choose allow all the time to be ready receive orders": - "رح تختار السماح دايماً عشان تكون جاهز تستلم طلبات", - "You will choose one of above !": "رح تختار واحد من فوق!", - "You will get cost of your work for this trip": "رح تاخد أجرة شغلك بهالرحلة", - "You will need to pay the cost to the driver, or it will be deducted from your next trip": - "لازم تدفع التكلفة للسائق، أو رح تنخصم من رحلتك الجاية", "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 receive a code in SMS message": "رح تستلم كود برسالة SMS", - "You will receive a code in WhatsApp Messenger": "رح تستلم كود بواتساب", - "You will receive code in sms message": "رح تستلم كود برسالة SMS", - "You will recieve code in sms message": "رح تستلم كود برسالة SMS", + "you will pay to Driver you will be pay the cost of driver time look to your Siro Wallet": "رح تدفع للسائق هتدفع تكلفة وقت السائق شوف محفظة سيرو بتاعتك", "you will use this device?": "رح تستخدم هالجهاز؟", - "Your Account is Deleted": "تم حذف حسابك", - "Your account is temporarily restricted ⛔": "حسابك مقيد مؤقتاً ⛔", - "Your Activity": "نشاطك", - "Your Application is Under Review": "طلبك قيد المراجعة", - "Your are far from passenger location": "أنت بعيد عن موقع الراكب", - "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": - "رصيدك أقل من الحد الأدنى للسحب وهو {minAmount} ل.س.", - "Your Budget less than needed": "رصيدك أقل من المطلوب", - "Your Choice, Our Priority": "اختيارك، أولويتنا", - "Your complaint has been submitted.": "تم إرسال شكواك.", - "Your completed trips will appear here": "ستظهر رحلاتك المكتملة هنا", - "Your data will be erased after 2 weeks": "بياناتك رح تنمسح بعد أسبوعين", - "Your data will be erased after 2 weeks\nAnd you will can\\'t return to use app after 1 month": - "بياناتك رح تنمسح بعد أسبوعين\nوما رح تقدر ترجع تستخدم التطبيق بعد شهر", - "Your device appears to be compromised. The app will now close.": - "يبدو أن جهازك مخترق. سيتم إغلاق التطبيق الآن.", - "Your device is good and very suitable": "جهازك جيد ومناسب كتير", - "Your device provides excellent performance": "جهازك بيعطيك أداء ممتاز", - "Your Driver Referral Code": "كود دعوة السائق بتاعك", - "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": - "رخصة سيارتك و/أو ضريبة السيارة منتهية. تفضّل تجددها قبل ما تكمل.", - "Your driver’s license has expired.": "رخصة سيارتك منتهية.", - "Your driver’s license has expired. Please renew it before proceeding.": - "رخصة سيارتك منتهية. تفضّل تجددها قبل ما تكمل.", - "Your driver’s license has expired. Please renew it.": - "رخصة سيارتك منتهية. تفضّل تجددها.", - "Your Earnings": "أرباحك", - "Your email address": "عنوان بريدك الإلكتروني", - "Your email not updated yet": "بريدك ما انحدث لسا", - "Your fee is": "أجرتك هي", - "Your invite code was successfully applied!": "تم تطبيق كود الدعوة بنجاح!", - "Your Journey Begins Here": "رحلتك بلشت من هون", - "Your journey starts here": "رحلتك بلشت من هون", - "Your location is being tracked in the background.": - "موقعك عم يتتبع بالخلفية.", - "Your name": "اسمك", - "Your Name is Wrong": "اسمك غلط", - "Your order is being prepared": "طلبك عم يتجهّز", - "Your order sent to drivers": "تم إرسال طلبك للسواقين", - "Your Passenger Referral Code": "كود دعوة الراكب بتاعك", - "Your password": "كلمة مرورك", - "Your past trips will appear here.": "رحلاتك السابقة رح تظهر هون.", - "Your payment is being processed and your wallet will be updated shortly.": - "يتم معالجة دفعتك وسيتم تحديث محفظتك قريباً.", - "Your payment was successful.": "تم دفعك بنجاح.", - "Your personal invitation code is:": "كود الدعوة الشخصي بتاعك هو:", - "Your Question": "سؤالك", - "Your Questions": "أسئلتك", - "Your rating has been submitted.": "تم إرسال تقييمك.", - "Your Referral Code": "كود الإحالة الخاص بك", - "Your Rewards": "مكافآتك", - "Your Ride Duration is": "مدة رحلتك هي", "your ride is Accepted": "رحلتك انقبلت", "your ride is applied": "تم تقديم رحلتك", - "Your total balance:": "رصيدك الإجمالي:", - "Your trip cost is": "تكلفة رحلتك هي", - "Your trip distance is": "مسافة رحلتك هي", - "Your trip is scheduled": "رحلتك مجدولة", - "Your valuable feedback helps us improve our service quality.": - "تعليقك القيم بيساعدنا نحسّن جودة خدمتنا.", - "Your Wallet balance is": "رصيد محفظتك هو", - "YYYY-MM-DD": "YYYY-MM-DD", "zh": "zh", "أدخل رقم محفظتك": "أدخل رقم محفظتك", "أوافق": "أوافق", @@ -2828,8 +2613,7 @@ final Map ar_sy = { "الرصيد المتاح": "الرصيد المتاح", "الرقم القومي": "الرقم القومي", "السعر": "السعر", - "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": - "المبلغ بمحفظتك أقل من الحد الأدنى للسحب وهو", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ بمحفظتك أقل من الحد الأدنى للسحب وهو", "المسافة": "المسافة", "الوقت المتبقي": "الوقت المتبقي", "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", @@ -2856,24 +2640,23 @@ final Map ar_sy = { "عدم محكومية": "عدم محكومية", "قبول": "قبول", "ل.س": "ل.س", - "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": - "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", "للوصول": "للوصول", "مثال: 0912345678": "مثال: 0912345678", - "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": - "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", - "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": - "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", "ملخص الأرباح": "ملخص الأرباح", "من": "من", "موافق": "موافق", "نتيجة الفحص": "نتيجة الفحص", "هل تريد سحب أرباحك؟": "بدك تسحب أرباحك؟", - "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": - "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", "ُExpire Date": "تاريخ الانتهاء", "⚠️ You need to choose an amount!": "⚠️ لازم تختار مبلغ!", - "🏆 \${'Maximum Level Reached!": "🏆 \${'وصلت لأعلى مستوى!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'وصلت لأعلى مستوى!", "💰 Pay with Wallet": "💰 ادفع من المحفظة", "💳 Pay with Credit Card": "💳 ادفع ببطاقة ائتمان", }; diff --git a/siro_driver/lib/controller/local/de.dart b/siro_driver/lib/controller/local/de.dart new file mode 100644 index 0000000..61451b5 --- /dev/null +++ b/siro_driver/lib/controller/local/de.dart @@ -0,0 +1,2662 @@ +final Map de = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " und erkennen unsere Datenschutzrichtlinie an.", + " is ON for this month": " ist diesen Monat aktiviert", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". Ich bin mindestens 18 Jahre alt.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. Beschreiben Sie Ihr Problem", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 und erhalten Sie 4% Rabatt", + "100 and get 11% discount": "100 und erhalten Sie 11% Rabatt", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. Aufgenommenes Audio anhängen", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 und erhalten Sie 6% Rabatt", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. Details & Antwort prüfen", + "300 LE": "300 LE", + "3000 LE": "3000 LE", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 und erhalten Sie 8% Rabatt", + "5 digit": "5-stellig", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "Eine neue Version der App ist verfügbar. Bitte aktualisieren Sie auf die neueste Version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Eine Fahrt mit Vorabreservierung, die es Ihnen ermöglicht, die besten Kapitäne und Autos auszuwählen.", + "AI Page": "KI-Seite", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "Über uns", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "Bestellung annehmen", + "Accept Ride": "Accept Ride", + "Accepted Ride": "Fahrt angenommen", + "Accepted your order": "Ihre Bestellung wurde angenommen", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "Aktive Dauer:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "Karte hinzufügen", + "Add Credit Card": "Kreditkarte hinzufügen", + "Add Home": "Zuhause hinzufügen", + "Add Location": "Standort hinzufügen", + "Add Location 1": "Standort 1 hinzufügen", + "Add Location 2": "Standort 2 hinzufügen", + "Add Location 3": "Standort 3 hinzufügen", + "Add Location 4": "Standort 4 hinzufügen", + "Add Payment Method": "Zahlungsmethode hinzufügen", + "Add Phone": "Telefon hinzufügen", + "Add Promo": "Promotion hinzufügen", + "Add Question": "Add Question", + "Add SOS Phone": "SOS-Telefon hinzufügen", + "Add Stops": "Stopps hinzufügen", + "Add Work": "Arbeit hinzufügen", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "Add funds using our secure methods", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Fügen Sie das Telefon-Portemonnaie hinzu, das Sie verwenden", + "Address": "Adresse", + "Address:": "Address:", + "Admin DashBoard": "Admin-Dashboard", + "Affordable for Everyone": "Erschwinglich für alle", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "Benachrichtigungen", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "Standortzugriff erlauben", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "Während des Zahlungsvorgangs ist ein Fehler aufgetreten.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "Beim Auswählen von Kontakten ist ein Fehler aufgetreten:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "App mit Fahrgast", + "Applied": "Angewandt", + "Apply": "Anwenden", + "Apply Order": "Bestellung anwenden", + "Apply Promo Code": "Promo-Code anwenden", + "Approaching your area. Should be there in 3 minutes.": "Nähern Sie sich Ihrem Gebiet. Sollte in 3 Minuten da sein.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "Sind Sie sicher, dass Sie fahren möchten nach", + "Are you Sure to LogOut?": "Sind Sie sicher, dass Sie sich abmelden möchten?", + "Are you sure to cancel?": "Sind Sie sicher, dass Sie stornieren möchten?", + "Are you sure to delete recorded files": "Sind Sie sicher, dass Sie die aufgezeichneten Dateien löschen möchten?", + "Are you sure to delete this location?": "Sind Sie sicher, dass Sie diesen Ort löschen möchten?", + "Are you sure to delete your account?": "Sind Sie sicher, dass Sie Ihr Konto löschen möchten?", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "Sind Sie sicher? Diese Aktion kann nicht rückgängig gemacht werden.", + "Are you want to change": "Möchten Sie ändern", + "Are you want to go this site": "Möchten Sie zu dieser Seite gehen?", + "Are you want to go to this site": "Möchten Sie zu dieser Seite gehen?", + "Are you want to wait drivers to accept your order": "Möchten Sie warten, bis Fahrer Ihre Bestellung annehmen?", + "Arrival time": "Ankunftszeit", + "Associate Degree": "Associate Degree", + "Attach this audio file?": "Diese Audiodatei anhängen?", + "Attention": "Achtung", + "Audio file not attached": "Audiodatei nicht angehängt", + "Audio uploaded successfully.": "Audio erfolgreich hochgeladen.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "Verfügbar für Fahrten", + "Average of Hours of": "Durchschnitt der Stunden von", + "Awaiting response...": "Warten auf Antwort...", + "Awfar Car": "Awfar Auto", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Zurück", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "Bahrain", + "Balance": "Guthaben", + "Balance limit exceeded": "Balance limit exceeded", + "Balance not enough": "Balance not enough", + "Balance:": "Guthaben:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "Langsam sein", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "Bitte achten Sie darauf, genaue Bilder aufzunehmen\\nSie haben", + "Be sure to use it quickly! This code expires at": "Nutzen Sie ihn schnell! Dieser Code läuft ab am", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Weil wir in der Nähe sind, haben Sie die Flexibilität, die Fahrt zu wählen, die am besten zu Ihnen passt.", + "Before we start, please review our terms.": "Bevor wir beginnen, lesen Sie bitte unsere Bedingungen.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Beste Wahl für ein komfortables Auto mit einer flexiblen Route und Haltepunkten. Dieser Flughafen bietet Visa-Einreise zu diesem Preis.", + "Best choice for cities": "Beste Wahl für Städte", + "Best choice for comfort car and flexible route and stops point": "Beste Wahl für ein komfortables Auto und eine flexible Route mit Haltepunkten", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "Geburtsdatum", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonusgeschenk", + "BookingFee": "Buchungsgebühr", + "Bottom Bar Example": "Beispiel für die untere Leiste", + "But you have a negative salary of": "Aber Sie haben ein negatives Gehalt von", + "CODE": "CODE", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "Anrufende", + "Call Ended": "Call Ended", + "Call Income": "Eingehender Anruf", + "Call Income from Driver": "Eingehender Anruf vom Fahrer", + "Call Income from Passenger": "Eingehender Anruf vom Fahrgast", + "Call Left": "Verbleibender Anruf", + "Call Options": "Call Options", + "Call Page": "Anrufseite", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "Kamerazugriff verweigert.", + "Camera not initialized yet": "Kamera noch nicht initialisiert", + "Camera not initilaized yet": "Kamera noch nicht initialisiert", + "Can I cancel my ride?": "Kann ich meine Fahrt stornieren?", + "Can we know why you want to cancel Ride ?": "Können wir erfahren, warum Sie die Fahrt stornieren möchten?", + "Cancel": "Abbrechen", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "Cancel Ride", + "Cancel Search": "Suche abbrechen", + "Cancel Trip": "Fahrt stornieren", + "Cancel Trip from driver": "Fahrt vom Fahrer stornieren", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "Storniert", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "Weitere Rabatte können nicht angewendet werden.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Machen Sie ein Bild Ihres Strafregisters", + "Capture an Image of Your Driver License": "Machen Sie ein Bild Ihres Führerscheins", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "Machen Sie ein Bild der Rückseite Ihres Ausweisdokuments", + "Capture an Image of Your ID Document front": "Machen Sie ein Bild der Vorderseite Ihres Ausweisdokuments", + "Capture an Image of Your car license back": "Machen Sie ein Bild der Rückseite Ihrer Fahrzeuglizenz", + "Capture an Image of Your car license front": "Foto von der Vorderseite des Fahrzeugscheins machen", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "Auto", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Autofarbe:", + "Car Details": "Autodetails", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "Fahrzeuglizenzkarte", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Automarke:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Automodell:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Nummernschild:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "Kartennummer", + "Card Payment": "Card Payment", + "CardID": "Karten-ID", + "Cash": "Bargeld", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "Land ändern", + "Change Home location?": "Change Home location?", + "Change Ride": "Fahrt ändern", + "Change Route": "Route ändern", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "Chassis", + "Check back later for new offers!": "Schauen Sie später für neue Angebote vorbei!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "Sprache auswählen", + "Choose a contact option": "Wählen Sie eine Kontaktoption", + "Choose between those Type Cars": "Wählen Sie zwischen diesen Autotypen", + "Choose from Map": "Aus der Karte auswählen", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "Wählen Sie die Fahrtoption, die perfekt zu Ihren Bedürfnissen und Vorlieben passt.", + "Choose who this order is for": "Wählen Sie, für wen diese Bestellung ist", + "Choose your ride": "Wählen Sie Ihre Fahrt", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "Stadt", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "Fordern Sie Ihr 20 LE Geschenk für die Einladung an", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Klicken Sie hier", + "Click here to Show it in Map": "Klicken Sie hier, um es auf der Karte anzuzeigen", + "Close": "Schließen", + "Closest & Cheapest": "Nächstgelegen & Günstigst", + "Closest to You": "Am nächsten bei Ihnen", + "Code": "Code", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "Code nicht genehmigt", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "Farbe", + "Color is": "Color is", + "Comfort": "Comfort", + "Comfort choice": "Comfort-Option", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "Kommunikation", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "Beschwerde", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Für diese Fahrt kann keine Beschwerde eingereicht werden. Sie wurde möglicherweise noch nicht abgeschlossen oder gestartet.", + "Complaint data saved successfully": "Beschwerdedaten erfolgreich gespeichert", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "Bestätigen", + "Confirm & Find a Ride": "Bestätigen & Fahrt finden", + "Confirm Attachment": "Anhang bestätigen", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Abholort bestätigen", + "Confirm Selection": "Auswahl bestätigen", + "Confirm Trip": "Fahrt bestätigen", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "E-Mail bestätigen", + "Confirmation": "Confirmation", + "Connected": "Verbunden", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "Kontaktoptionen", + "Contact Support": "Support kontaktieren", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "Kontaktieren Sie uns", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "Kontaktberechtigung ist erforderlich, um Kontakte auszuwählen", + "Contact us for any questions on your order.": "Kontaktieren Sie uns bei Fragen zu Ihrer Bestellung.", + "Contacts Loaded": "Contacts Loaded", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "Weiter", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "Kopieren", + "Copy Code": "Code kopieren", + "Copy this Promo to use it in your Ride!": "Kopieren Sie diese Promotion, um sie in Ihrer Fahrt zu verwenden!", + "Cost": "Cost", + "Cost Duration": "Kostendauer", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "Anzahl der Stunden pro Tag", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "Erstellen Sie ein Portemonnaie, um Ihr Geld zu erhalten", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "Führungszeugnis erforderlich", + "Criminal Record": "Strafregister", + "Cropper": "Zuschneider", + "Current Balance": "Current Balance", + "Current Location": "Aktueller Standort", + "Customer MSISDN doesn’t have customer wallet": "MSISDN des Kunden hat keine Geldbörse", + "Customer not found": "Customer not found", + "Customer phone is not active": "Customer phone is not active", + "DISCOUNT": "RABATT", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "Datum", + "Date and Time Picker": "Datum- und Uhrzeitauswahl", + "Date of Birth": "Date of Birth", + "Date of Birth is": "Geburtsdatum ist", + "Date of Birth:": "Date of Birth:", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "Mein Konto löschen", + "Delete Permanently": "Dauerhaft löschen", + "Deleted": "Gelöscht", + "Delivery": "Delivery", + "Destination": "Ziel", + "Destination Location": "Destination Location", + "Destination selected": "Ziel ausgewählt", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "Erkennen Sie Ihr Gesicht ", + "Device Change Detected": "Gerätewechsel erkannt", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "Hubraum", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "Haben Sie einen Einladungscode von einem anderen Fahrer?", + "Do you want to change Home location": "Möchten Sie den Wohnort ändern?", + "Do you want to change Work location": "Möchten Sie den Arbeitsort ändern?", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "Möchten Sie Trinkgeld für diesen Fahrer bezahlen?", + "Docs": "Docs", + "Doctoral Degree": "Doktortitel", + "Document Number:": "Document Number:", + "Documents check": "Dokumentenprüfung", + "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 Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro 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", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "Der Fahrer hat die Fahrt für Sie angenommen", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "Der Fahrer hat die Fahrt für Sie übernommen", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "Fahrer hat Ihre Fahrt storniert", + "Driver Car Plate": "Fahrer-Nummernschild", + "Driver Finish Trip": "Fahrer beendet die Fahrt", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "Fahrer ist auf dem Weg zum Fahrgast", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Fahrerliste", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "Fahrername", + "Driver Name:": "Fahrername:", + "Driver Phone:": "Fahrertelefon:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "Fahrerregistrierung", + "Driver Registration & Requirements": "Fahrerregistrierung & Anforderungen", + "Driver Wallet": "Fahrer-Portemonnaie", + "Driver already has 2 trips within the specified period.": "Der Fahrer hat bereits 2 Fahrten innerhalb des angegebenen Zeitraums.", + "Driver is on the way": "Der Fahrer ist unterwegs", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "Der Fahrer wartet am Abholpunkt.", + "Driver joined the channel": "Der Fahrer ist dem Kanal beigetreten", + "Driver left the channel": "Der Fahrer hat den Kanal verlassen", + "Driver phone": "Fahrertelefon", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "Führerscheinklasse", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "Dauer ist", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "Profil bearbeiten", + "Edit Your data": "Bearbeiten Sie Ihre Daten", + "Education": "Bildung", + "Egypt": "Ägypten", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "Electric", + "Email": "E-Mail", + "Email Us": "Senden Sie uns eine E-Mail", + "Email Wrong": "E-Mail falsch", + "Email is": "E-Mail ist", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "Die von Ihnen eingegebene E-Mail ist falsch.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "Beschäftigungsart", + "Enable Location": "Standort aktivieren", + "Enable Location Access": "Standortzugriff aktivieren", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "Fahrt beenden", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "Genießen Sie eine sichere und komfortable Fahrt.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Genießen Sie wettbewerbsfähige Preise für alle Fahrtoptionen, die Reisen zugänglich machen.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "Geben Sie Ihren Vornamen ein", + "Enter a valid email": "Geben Sie eine gültige E-Mail-Adresse ein", + "Enter a valid year": "Enter a valid year", + "Enter phone": "Telefon eingeben", + "Enter phone number": "Enter phone number", + "Enter promo code": "Promo-Code eingeben", + "Enter promo code here": "Geben Sie den Promo-Code hier ein", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "Geben Sie den Promo-Code ein und erhalten Sie", + "Enter your City": "Enter your City", + "Enter your Note": "Geben Sie Ihre Notiz ein", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Geben Sie unten Ihren Code ein, um den Rabatt anzuwenden.", + "Enter your complaint here": "Geben Sie Ihre Beschwerde hier ein", + "Enter your complaint here...": "Geben Sie hier Ihre Beschwerde ein...", + "Enter your email": "Enter your email", + "Enter your email address": "Geben Sie Ihre E-Mail-Adresse ein", + "Enter your feedback here": "Geben Sie Ihr Feedback hier ein", + "Enter your first name": "Geben Sie Ihren Vornamen ein", + "Enter your last name": "Geben Sie Ihren Nachnamen ein", + "Enter your password": "Geben Sie Ihr Passwort ein", + "Enter your phone number": "Geben Sie Ihre Telefonnummer ein", + "Enter your promo code": "Geben Sie Ihren Promo-Code ein", + "Enter your wallet number": "Enter your wallet number", + "Error": "Fehler", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "Ablaufdatum", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "Ablaufdatum", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "Ergebnis der Gesichtserkennung", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "Schnellste Beschwerdeantwort", + "Favorite Places": "Lieblingsorte", + "Fee is": "Gebühr ist", + "Feed Back": "Feedback", + "Feedback": "Feedback", + "Feedback data saved successfully": "Feedback-Daten erfolgreich gespeichert", + "Female": "Weiblich", + "Find answers to common questions": "Finden Sie Antworten auf häufig gestellte Fragen", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "Monitor beenden", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "Vorname", + "First Trip": "First Trip", + "First name": "Vorname", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "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 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 Siro 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", + "Fri": "Fri", + "From": "Von", + "From :": "Von :", + "From : Current Location": "Von : Aktueller Standort", + "From Budget": "From Budget", + "From:": "Von:", + "Fuel": "Kraftstoff", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "Vollständiger Name (Familienstand)", + "FullName": "Vollständiger Name", + "GPS Required Allow !.": "GPS erforderlich, erlauben!.", + "Gender": "Geschlecht", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "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 Siro 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.", + "Getting Started": "Erste Schritte", + "Gift Already Claimed": "Geschenk bereits beansprucht", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "Zu Lieblingsorten gehen", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "Gehen Sie zum nächsten Schritt\\nscannen Sie die Fahrzeuglizenz.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "Gehen Sie jetzt zum Standort des Fahrgasts", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "Gehen Sie zu diesem Ziel", + "Go to this location": "Gehen Sie zu diesem Ort", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "Stunden und", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "Haben Sie einen Promo-Code?", + "Head": "Head", + "Heading your way now. Please be ready.": "Jetzt auf dem Weg zu Ihnen. Bitte seien Sie bereit.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "Hallo, das ist Kapitän", + "Hello this is Driver": "Hallo, das ist der Fahrer", + "Help & Support": "Help & Support", + "Help Details": "Hilfedetails", + "Helping Center": "Hilfezentrum", + "Helping Page": "Helping Page", + "Here recorded trips audio": "Hier sind die Audioaufnahmen der Fahrten", + "Hi": "Hallo", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Hallo, ich werde jetzt gehen", + "Hi! This is": "Hallo! Das ist", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "Abitur", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "Fahrtverlauf", + "Home": "Home", + "Home Page": "Startseite", + "Home Saved": "Zuhause gespeichert", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "Wie kann ich meine Fahrt bezahlen?", + "How can I register as a driver?": "Wie kann ich mich als Fahrer registrieren?", + "How do I communicate with the other party (passenger/driver)?": "Wie kommuniziere ich mit der anderen Partei (Fahrgast/Fahrer)?", + "How do I request a ride?": "Wie buche ich eine Fahrt?", + "How many hours would you like to wait?": "Wie viele Stunden möchten Sie warten?", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "Ich stimme zu", + "I Arrive": "I Arrive", + "I Arrive your site": "Ich bin an Ihrem Standort angekommen", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "Ich habe den falschen Abhol-/Absetzort hinzugefügt", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "Ich komme zu Ihnen", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "Ich kann mich in Ihrer App nicht mit Gesichtserkennung registrieren ", + "I want to order for myself": "Ich möchte für mich selbst bestellen", + "I want to order for someone else": "Ich möchte für jemand anderen bestellen", + "I was just trying the application": "Ich habe die Anwendung nur ausprobiert", + "I will go now": "Ich werde jetzt gehen", + "I will slow down": "Ich werde langsamer fahren", + "I've arrived.": "I've arrived.", + "ID Documents Back": "Rückseite der Ausweisdokumente", + "ID Documents Front": "Vorderseite der Ausweisdokumente", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "Wenn Sie jetzt im Auto sind. Drücken Sie Fahrt starten", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "Wenn Sie Hilfe benötigen, kontaktieren Sie uns", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Wenn Sie einen Stopp hinzufügen möchten, klicken Sie hier", + "If you want order to another person": "Wenn Sie für eine andere Person bestellen möchten", + "If you want to make Google Map App run directly when you apply order": "Wenn Sie möchten, dass die Google Map App direkt ausgeführt wird, wenn Sie eine Bestellung aufgeben", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "Das Ergebnis der Bilderkennung ist ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "VOIP-Anrufe in der App", + "Including Tax": "Inklusive Steuer", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "Incorrect sms code", + "Increase Fare": "Increase Fare", + "Increase Fee": "Preis erhöhen", + "Increase Your Trip Fee (Optional)": "Erhöhen Sie Ihre Fahrpreise (optional)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Increasing the fare might attract more drivers. Would you like to increase the price?", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "Einfügen", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "Notrufnummer einfügen", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "SOS-Telefon einfügen", + "Insert Wallet phone number": "Geben Sie die Telefonnummer des Portemonnaies ein", + "Insert Your Promo Code": "Geben Sie Ihren Promo-Code ein", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "Inspektionsdatum", + "InspectionResult": "Inspektionsergebnis", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "Ungültiger MPIN", + "Invalid OTP": "Ungültiger OTP", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "Einladung verwendet", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "Einladung erfolgreich gesendet", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "Ist der Fahrgast in Ihrem Auto?", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "Ausstellungsdatum", + "IssueDate": "Ausstellungsdatum", + "JOD": "JOD", + "Join": "Beitreten", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "Jordanien", + "Just now": "Just now", + "KM": "KM", + "Keep it up!": "Weiter so!", + "Kuwait": "Kuwait", + "L.E": "L.E", + "L.S": "L.S", + "LE": "LE", + "Lady": "Lady", + "Lady Captain for girls": "Fahrerin für Frauen", + "Lady Captains Available": "Kapitäninnen verfügbar", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "Sprache", + "Language Options": "Sprachoptionen", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "Nachname", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "Letzte kürzliche Fahrt", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Erfahren Sie mehr über unsere App und Mission", + "Leave": "Verlassen", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "Lassen Sie uns die Fahrzeuglizenz überprüfen ", + "Lets check License Back Face": "Lassen Sie uns die Rückseite des Führerscheins überprüfen", + "License Categories": "Lizenzkategorien", + "License Expiry Date": "License Expiry Date", + "License Type": "Lizenztyp", + "Link a phone number for transfers": "Link a phone number for transfers", + "Location Access Required": "Location Access Required", + "Location Link": "Standortlink", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "Abmelden", + "Log Out Page": "Abmeldeseite", + "Login": "Anmelden", + "Login Captin": "Kapitän anmelden", + "Login Driver": "Fahrer anmelden", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "Niedrigster Preis erreicht", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "Hergestellt :", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "Marke", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "Männlich", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "Karte Fahrgast", + "Marital Status": "Familienstand", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "Höchsttarif", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Mindesttarif", + "Minute": "Minute", + "Minutes": "Minutes", + "Mishwar Vip": "Mishwar Vip", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "Modell", + "Model is": "Modell ist", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "Morgen", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "Sicherste Methoden", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "Karte bewegen, um die Nadel anzupassen", + "Mute": "Mute", + "My Balance": "Mein Guthaben", + "My Card": "Meine Karte", + "My Cared": "Meine Karten", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "Mein Profil", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "Mein aktueller Standort ist:", + "My location is correct. You can search for me using the navigation app": "Mein Standort ist korrekt. Sie können mich über die Navigations-App suchen.", + "MyLocation": "Mein Standort", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "Name", + "Name (Arabic)": "Name (Arabisch)", + "Name (English)": "Name (Englisch)", + "Name :": "Name :", + "Name in arabic": "Name auf Arabisch", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "Nationale ID", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "Nationale Nummer", + "NationalID": "Nationale ID", + "Navigation": "Navigation", + "Nearest Car": "Nächstes Auto", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nächstes Auto: ~", + "Need assistance? Contact us": "Brauchen Sie Hilfe? Kontaktieren Sie uns", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "Weiter", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "Nacht", + "No": "Nein", + "No ,still Waiting.": "Nein, noch warten.", + "No Captain Accepted Your Order": "Kein Kapitän hat Ihre Bestellung angenommen", + "No Car in your site. Sorry!": "Kein Auto in Ihrer Region. Entschuldigung!", + "No Car or Driver Found in your area.": "Kein Auto oder Fahrer in Ihrer Region gefunden.", + "No I want": "Nein, ich möchte", + "No Promo for today .": "Keine Promotion für heute.", + "No Response yet.": "Noch keine Antwort.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Keine SIM-Karte, kein Problem! Rufen Sie Ihren Fahrer direkt über unsere App an. Wir verwenden fortschrittliche Technologie, um Ihre Privatsphäre zu gewährleisten.", + "No accepted orders? Try raising your trip fee to attract riders.": "Keine angenommenen Bestellungen? Versuchen Sie, Ihre Fahrpreise zu erhöhen, um Fahrer anzulocken.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "Keine Audiodateien gefunden.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "Keine Autos in der Nähe", + "No contact selected": "No contact selected", + "No contacts found": "Keine Kontakte gefunden", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "Auf Ihrem Gerät wurden keine Kontakte mit Telefonnummern gefunden.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "Kein Fahrer hat meine Anfrage angenommen", + "No drivers accepted your request yet": "No drivers accepted your request yet", + "No drivers available": "Keine Fahrer verfügbar", + "No drivers available at the moment. Please try again later.": "Derzeit sind keine Fahrer verfügbar. Bitte versuchen Sie es später erneut.", + "No face detected": "Kein Gesicht erkannt", + "No favorite places yet!": "Noch keine Lieblingsorte!", + "No i want": "No i want", + "No image selected yet": "Noch kein Bild ausgewählt", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "Noch keine Einladung gefunden!", + "No one accepted? Try increasing the fare.": "Niemand hat angenommen? Versuchen Sie, den Fahrpreis zu erhöhen.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "Kein Fahrgast für die angegebene Telefonnummer gefunden", + "No phone number": "No phone number", + "No promos available right now.": "Derzeit sind keine Promos verfügbar.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "Noch keine Fahrt gefunden", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "Keine Fahrtdaten verfügbar", + "No trip history found": "Keine Fahrthistorie gefunden", + "No trip yet found": "Noch keine Fahrt gefunden", + "No user found for the given phone number": "Kein Benutzer für die angegebene Telefonnummer gefunden", + "No wallet record found": "Kein Portemonnaie-Eintrag gefunden", + "No, I want to cancel this trip": "Nein, ich möchte diese Fahrt stornieren", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "Nein, danke", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "Nicht verbunden", + "Not set": "Nicht festgelegt", + "Not updated": "Not updated", + "Notifications": "Benachrichtigungen", + "Now select start pick": "Wählen Sie nun den Startpunkt aus", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "Beruf", + "Offline": "Offline", + "Ok": "Ok", + "Ok , See you Tomorrow": "Ok, bis morgen", + "Ok I will go now.": "Ok, ich werde jetzt gehen.", + "Old and affordable, perfect for budget rides.": "Alt und erschwinglich, perfekt für preiswerte Fahrten.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "Einstellungen öffnen", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "Oder zahlen Sie stattdessen bar", + "Order": "Bestellung", + "Order Accepted": "Bestellung angenommen", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "Bestellung übernommen", + "Order Cancelled": "Bestellung storniert", + "Order Cancelled by Passenger": "Bestellung vom Fahrgast storniert", + "Order Details Siro": "Order Details Siro", + "Order History": "Bestellverlauf", + "Order ID": "Order ID", + "Order Request Page": "Bestellanfrageseite", + "Order Under Review": "Bestellung in Überprüfung", + "Order for myself": "Für mich selbst bestellen", + "Order for someone else": "Für jemand anderen bestellen", + "OrderId": "Bestell-ID", + "OrderVIP": "VIP-Bestellung", + "Orders Page": "Orders Page", + "Origin": "Ursprung", + "Original Fare": "Original Fare", + "Other": "Andere", + "Our dedicated customer service team ensures swift resolution of any issues.": "Unser engagiertes Kundenservice-Team sorgt für eine schnelle Lösung aller Probleme.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "Name des Eigentümers", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "Fahrgast hat die Fahrt storniert", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Der Fahrgast hat die Bestellung storniert", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "Fahrgast kommt zu Ihnen", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Passwort", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "Das Passwort muss mindestens 6 Zeichen lang sein.", + "Paste WhatsApp location link": "Fügen Sie den WhatsApp-Standortlink ein", + "Paste location link here": "Fügen Sie den Standortlink hier ein", + "Paste the code here": "Fügen Sie den Code hier ein", + "Pay": "Bezahlen", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Direkt beim Kapitän bezahlen", + "Pay from my budget": "Aus meinem Budget bezahlen", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "Mit Kreditkarte bezahlen", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "Mit Portemonnaie bezahlen", + "Pay with Your": "Bezahlen Sie mit Ihrem", + "Pay with Your PayPal": "Mit Ihrem PayPal bezahlen", + "Payment Failed": "Zahlung fehlgeschlagen", + "Payment History": "Payment History", + "Payment Method": "Zahlungsmethode", + "Payment Method:": "Payment Method:", + "Payment Options": "Zahlungsoptionen", + "Payment Successful": "Zahlung erfolgreich", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "Zahlungen", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "Perfekt für Abenteurer, die etwas Neues und Aufregendes erleben möchten", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfekt für Fahrgäste, die die neuesten Automodelle suchen und die Freiheit haben möchten, jede gewünschte Route zu wählen", + "Permission denied": "Berechtigung verweigert", + "Personal Information": "Persönliche Informationen", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Telefonnummer ist", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Telefon-Portemonnaie erfolgreich gespeichert", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Die Telefonnummer wurde bereits verifiziert", + "Phone number must be exactly 11 digits long": "Die Telefonnummer muss genau 11 Ziffern lang sein", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "Aus der Karte auswählen", + "Pick from map destination": "Ziel auf der Karte auswählen", + "Pick or Tap to confirm": "Auswählen oder Tippen, um zu bestätigen", + "Pick your destination from Map": "Wählen Sie Ihr Ziel aus der Karte aus", + "Pick your ride location on the map - Tap to confirm": "Wählen Sie Ihren Fahrtort auf der Karte aus - Tippen Sie, um zu bestätigen", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "Nummernschild", + "Plate Number": "Nummernschild", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "Bitte warten Sie, wenn der Fahrgast stornieren möchte!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "Bitte eingeben", + "Please enter Your Email.": "Bitte geben Sie Ihre E-Mail ein.", + "Please enter Your Password.": "Bitte geben Sie Ihr Passwort ein.", + "Please enter a correct phone": "Bitte geben Sie eine korrekte Telefonnummer ein", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "Bitte geben Sie eine Telefonnummer ein", + "Please enter a valid 16-digit card number": "Bitte geben Sie eine gültige 16-stellige Kartennummer ein", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Bitte geben Sie einen gültigen Promo-Code ein", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Bitte geben Sie den CVV-Code ein", + "Please enter the cardholder name": "Bitte geben Sie den Namen des Karteninhabers ein", + "Please enter the complete 6-digit code.": "Bitte geben Sie den vollständigen 6-stelligen Code ein.", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "Bitte geben Sie das Ablaufdatum ein", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Bitte geben Sie Ihre Stadt ein.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "Bitte geben Sie Ihre Frage ein.", + "Please enter your complaint.": "Bitte geben Sie Ihre Beschwerde ein.", + "Please enter your feedback.": "Bitte geben Sie Ihr Feedback ein.", + "Please enter your first name.": "Bitte geben Sie Ihren Vornamen ein.", + "Please enter your last name.": "Bitte geben Sie Ihren Nachnamen ein.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Bitte geben Sie Ihre Telefonnummer ein.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "Bitte gehen Sie zum Autofahrer", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "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 Siro 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", + "Please select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "Bitte verifizieren Sie Ihre Identität", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "Bitte warten Sie, bis der Fahrgast ins Auto steigt, bevor Sie die Fahrt starten.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "Punkt", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "Potenzielle Sicherheitsrisiken erkannt. Die Anwendung funktioniert möglicherweise nicht korrekt.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Vorabbuchung", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Preis", + "Price is": "Price is", + "Price of trip": "Preis der Fahrt", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Datenschutzhinweis", + "Privacy Policy": "Datenschutzrichtlinie", + "Profile": "Profil", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "Promo", + "Promo Already Used": "Promotion bereits verwendet", + "Promo Code": "Promo-Code", + "Promo Code Accepted": "Promo-Code akzeptiert", + "Promo Copied!": "Promotion kopiert!", + "Promo End !": "Promotion beendet!", + "Promo Ended": "Promotion beendet", + "Promo code copied to clipboard!": "Promo-Code in die Zwischenablage kopiert!", + "Promos": "Promotionen", + "Promos For Today": "Promotionen für heute", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "Zahlung storniert .", + "Qatar": "Katar", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "Schnelle Aktionen", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "Leise & Umweltfreundlich", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "Kapitän bewerten", + "Rate Driver": "Fahrer bewerten", + "Rate Our App": "Rate Our App", + "Rate Passenger": "Fahrgast bewerten", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "Rayeh Gai", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai: Rundreiseservice für bequemes Reisen zwischen Städten, einfach und zuverlässig.", + "Reason": "Reason", + "Recent Places": "Letzte Orte", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "Mein Konto aufladen", + "Record": "Record", + "Record saved": "Aufnahme gespeichert", + "Recorded Trips (Voice & AI Analysis)": "Aufgezeichnete Fahrten (Sprach- & KI-Analyse)", + "Recorded Trips for Safety": "Aufgezeichnete Fahrten für die Sicherheit", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "Bestellung ablehnen", + "Refused": "Refused", + "Register": "Registrieren", + "Register Captin": "Kapitän registrieren", + "Register Driver": "Fahrer registrieren", + "Register as Driver": "Als Fahrer registrieren", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Religion", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "Code erneut senden", + "Resend code": "Code erneut senden", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "Fahrtmanagement", + "Ride Status": "Ride Status", + "Ride Summaries": "Fahrtzusammenfassungen", + "Ride Summary": "Fahrtzusammenfassung", + "Ride Today :": "Ride Today :", + "Ride Wallet": "Fahrt-Portemonnaie", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "Fahrten", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "Routen der Fahrt", + "Route Not Found": "Route Not Found", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "SOS-Telefon", + "SUBMIT": "SUBMIT", + "SYP": "SYP", + "Safety & Security": "Sicherheit & Schutz", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "Saudi-Arabien", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "Kreditkarte speichern", + "Saved Sucssefully": "Erfolgreich gespeichert", + "Scan Driver License": "Führerschein scannen", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "ID MklGoogle scannen", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "ID scannen", + "Scheduled Time:": "Geplante Zeit:", + "Scooter": "Roller", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "Wegpunkt suchen", + "Search for your Start point": "Suchen Sie Ihren Startpunkt", + "Search for your destination": "Suchen Sie Ihr Ziel", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "Suche nach dem nächsten Kapitän...", + "Security Warning": "Sicherheitswarnung", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "Wir sehen uns auf der Straße!", + "Select Country": "Land auswählen", + "Select Date": "Datum auswählen", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "Bestelltyp auswählen", + "Select Payment Amount": "Zahlungsbetrag auswählen", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "Zeit auswählen", + "Select Waiting Hours": "Wartezeit auswählen", + "Select Your Country": "Wählen Sie Ihr Land aus", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Datum und Uhrzeit der Fahrt auswählen", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "Wählen Sie eine Nachricht", + "Select recorded trip": "Aufgezeichnete Fahrt auswählen", + "Select your destination": "Wählen Sie Ihr Ziel aus", + "Select your preferred language for the app interface.": "Wählen Sie Ihre bevorzugte Sprache für die App-Oberfläche.", + "Selected Date": "Ausgewähltes Datum", + "Selected Date and Time": "Ausgewähltes Datum und Uhrzeit", + "Selected Location": "Selected Location", + "Selected Time": "Ausgewählte Zeit", + "Selected driver": "Ausgewählter Fahrer", + "Selected file:": "Ausgewählte Datei:", + "Send Email": "Send Email", + "Send Invite": "Einladung senden", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Verifizierungscode senden", + "Send Verification Code": "Verifizierungscode senden", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Benutzerdefinierte Nachricht senden", + "Send to Driver Again": "Nochmals an den Fahrer senden", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Sitzung abgelaufen. Bitte melden Sie sich erneut an.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Ort auf der Karte festlegen", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Set Wallet Phone Number", + "Set pickup location": "Abholort festlegen", + "Setting": "Einstellung", + "Settings": "Einstellungen", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "App teilen", + "Share Code": "Share Code", + "Share Trip Details": "Fahrtdetails teilen", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "Teilen Sie diesen Code mit Ihren Freunden und verdienen Sie Belohnungen, wenn sie ihn verwenden!", + "Share via": "Share via", + "Share with friends and earn rewards": "Mit Freunden teilen und Belohnungen verdienen", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Einladungen anzeigen", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "Promotionen anzeigen", + "Show Promos to Charge": "Promotionen zum Aufladen anzeigen", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "Neueste Promotion anzeigen", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "Showing", + "Sign In by Apple": "Mit Apple anmelden", + "Sign In by Google": "Mit Google anmelden", + "Sign In with Google": "Mit Google anmelden", + "Sign Out": "Abmelden", + "Sign in for a seamless experience": "Melden Sie sich für ein nahtloses Erlebnis an", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Mit Apple anmelden", + "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": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Geräumiger Van-Service, ideal für Familien und Gruppen. Komfortables, sicheres und kostengünstiges gemeinsames Reisen.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "Aufnahme starten", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "Fahrt starten", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "Statistiken", + "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 Siro 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", + "Submit": "Einreichen", + "Submit ": "Einreichen ", + "Submit Complaint": "Beschwerde einreichen", + "Submit Question": "Frage einreichen", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "Beschwerde einreichen", + "Submit rating": "Bewertung abschicken", + "Success": "Erfolg", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "Fahrgast wechseln", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "Syrien", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "Bild aufnehmen", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "Machen Sie ein Bild Ihrer Führerscheinkarte", + "Take Picture Of ID Card": "Machen Sie ein Bild Ihres Ausweises", + "Tap on the promo code to copy it!": "Tippen Sie auf den Promo-Code, um ihn zu kopieren!", + "Tap to upload": "Tap to upload", + "Target": "Ziel", + "Tariff": "Tarif", + "Tariffs": "Tarife", + "Tax Expiry Date": "Steuerablaufdatum", + "Terms of Use": "Nutzungsbedingungen", + "Terms of Use & Privacy Notice": "Nutzungsbedingungen & Datenschutzhinweis", + "Thank You!": "Thank You!", + "Thanks": "Danke", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "Der Fahrer wird bald an Ihrem Standort sein .", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "Die Audiodatei wurde noch nicht hochgeladen.\\nMöchten Sie ohne sie senden?", + "The captain is responsible for the route.": "Der Kapitän ist für die Route verantwortlich.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "Die Entfernung beträgt weniger als 500 Meter.", + "The driver accept your order for": "Der Fahrer hat Ihre Bestellung für", + "The driver accepted your order for": "Der Fahrer hat Ihre Bestellung für", + "The driver accepted your trip": "Der Fahrer hat Ihre Fahrt angenommen", + "The driver canceled your ride.": "Der Fahrer hat Ihre Fahrt storniert.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "Der Fahrer ist auf dem Weg zu Ihnen", + "The driver waiting you in picked location .": "Der Fahrer wartet an dem ausgewählten Ort auf Sie.", + "The driver waitting you in picked location .": "Der Fahrer wartet an dem ausgewählten Ort auf Sie .", + "The drivers are reviewing your request": "Die Fahrer überprüfen Ihre Anfrage", + "The email or phone number is already registered.": "Die E-Mail oder Telefonnummer ist bereits registriert.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "Die Einladung wurde erfolgreich versendet", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "Die Bestellung wurde von einem anderen Fahrer angenommen", + "The order has been accepted by another driver.": "Die Bestellung wurde von einem anderen Fahrer angenommen.", + "The payment was approved.": "Die Zahlung wurde genehmigt.", + "The payment was not approved. Please try again.": "Die Zahlung wurde nicht genehmigt. Bitte versuchen Sie es erneut.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "Der Preis kann steigen, wenn sich die Route ändert.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "Die Promotionsperiode ist beendet.", + "The reason is": "Der Grund ist", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Die Fahrt hat begonnen! Zögern Sie nicht, Notrufnummern zu kontaktieren, Ihre Fahrt zu teilen oder die Sprachaufzeichnung für die Reise zu aktivieren", + "There is no data yet.": "Es gibt noch keine Daten.", + "There is no help Question here": "Hier gibt es keine Hilfefrage", + "There is no notification yet": "Es gibt noch keine Benachrichtigung", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "Dieser Betrag für alle Fahrten, die ich von Fahrgästen erhalte", + "This amount for all trip I get from Passengers and Collected For me in": "Dieser Betrag für alle Fahrten, die ich von Fahrgästen erhalte und für mich gesammelt habe in", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "Dies ist eine geplante Benachrichtigung.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Dies ist für einen Roller oder ein Motorrad.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "Diese Telefonnummer wurde bereits eingeladen.", + "This price is": "Dieser Preis ist", + "This price is fixed even if the route changes for the driver.": "Dieser Preis ist fest, auch wenn sich die Route für den Fahrer ändert.", + "This price may be changed": "Dieser Preis kann geändert werden", + "This ride is already applied by another driver.": "Diese Fahrt wurde bereits von einem anderen Fahrer übernommen.", + "This ride is already taken by another driver.": "Diese Fahrt wurde bereits von einem anderen Fahrer übernommen.", + "This ride type allows changes, but the price may increase": "Dieser Fahrttyp erlaubt Änderungen, aber der Preis kann steigen", + "This ride type does not allow changes to the destination or additional stops": "Dieser Fahrttyp erlaubt keine Änderungen des Ziels oder zusätzliche Stopps", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Diese Fahrt geht direkt von Ihrem Startpunkt zu Ihrem Ziel für einen festen Preis. Der Fahrer muss der geplanten Route folgen.", + "This trip is for women only": "Diese Fahrt ist nur für Frauen", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "Ankunftszeit", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "Nach Hause", + "To Work": "Zur Arbeit", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro 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.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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 Siro support directly.", + "To use Wallet charge it": "Um das Portemonnaie zu verwenden, laden Sie es auf", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Top up Wallet", + "Top up Wallet to continue": "Geldbörse aufladen, um fortzufahren", + "Total Amount:": "Gesamtbetrag:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "Gesamte Verbindungsdauer:", + "Total Cost": "Gesamtkosten", + "Total Cost is": "Total Cost is", + "Total Duration:": "Gesamtdauer:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "Gesamtstunden im Monat", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "Die Gesamtpunktzahl beträgt", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "Gesamtbudgets des Monats", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Reisen Sie in einem modernen, geräuschlosen Elektroauto. Eine erstklassige, umweltfreundliche Wahl für eine reibungslose Fahrt.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "Fahrt storniert", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Fahrt storniert. Die Kosten der Fahrt werden Ihrem Portemonnaie hinzugefügt.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Fahrt storniert. Die Kosten der Fahrt werden von Ihrem Portemonnaie abgezogen.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Fahrtmonitor", + "Trip Monitoring": "Fahrtüberwachung", + "Trip Started": "Trip Started", + "Trip Status:": "Fahrtstatus:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "Fahrt beendet", + "Trip has Steps": "Die Fahrt hat Schritte", + "Trip is Begin": "Fahrt beginnt", + "Trip taken": "Trip taken", + "Trip updated successfully": "Fahrt erfolgreich aktualisiert", + "Trips": "Trips", + "Trips recorded": "Fahrten aufgezeichnet", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "Türkei", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "Geben Sie hier den Ort ein", + "Type something": "Type something", + "Type something...": "Geben Sie etwas ein...", + "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 Siro:", + "USA": "USA", + "Uncompromising Security": "Kompromisslose Sicherheit", + "Unknown": "Unknown", + "Unknown Driver": "Unbekannter Fahrer", + "Unknown Location": "Unknown Location", + "Update": "Aktualisieren", + "Update Available": "Update verfügbar", + "Update Education": "Bildung aktualisieren", + "Update Gender": "Geschlecht aktualisieren", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "Hochgeladen", + "Use Touch ID or Face ID to confirm payment": "Verwenden Sie Touch ID oder Face ID, um die Zahlung zu bestätigen", + "Use code:": "Use code:", + "Use my invitation code to get a special gift on your first ride!": "Nutzen Sie meinen Einladungscode, um ein besonderes Geschenk bei Ihrer ersten Fahrt zu erhalten!", + "Use my referral code:": "Use my referral code:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "Benutzer existiert nicht.", + "User does not have a wallet #1652": "Der Benutzer hat kein Portemonnaie #1652", + "User not found": "Benutzer nicht gefunden", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "Benutzer mit dieser Telefonnummer oder E-Mail existiert bereits.", + "Uses cellular network": "Uses cellular network", + "VIN": "Fahrgestellnummer", + "VIN :": "Fahrgestellnummer :", + "VIN is": "Fahrgestellnummer ist", + "VIP Order": "VIP-Bestellung", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "Gültig bis:", + "Value": "Value", + "Van": "Van", + "Van / Bus": "Van / Bus", + "Van for familly": "Familien-Van", + "Variety of Trip Choices": "Vielfalt der Fahrtoptionen", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "Fahrzeugdetails Rückseite", + "Vehicle Details Front": "Fahrzeugdetails Vorderseite", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "Fahrzeugoptionen", + "Verification Code": "Verifizierungscode", + "Verify": "Verifizieren", + "Verify Email": "E-Mail verifizieren", + "Verify Email For Driver": "E-Mail für Fahrer verifizieren", + "Verify OTP": "Code verifizieren", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Vibrationsfeedback für alle Tasten", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "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 Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Warten auf VIP", + "Waiting for Captin ...": "Warten auf Kapitän ...", + "Waiting for Driver ...": "Warten auf Fahrer ...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Warten auf Ihren Standort", + "Wallet": "Portemonnaie", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "Wallet is blocked", + "Wallet!": "Portemonnaie!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing 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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "Wir verarbeiten das Bild, bitte warten Sie ", + "We are search for nearst driver": "Wir suchen den nächstgelegenen Fahrer", + "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 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 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 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:", + "We need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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 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 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", + "We use location to get accurate and nearest passengers for you": "Wir verwenden den Standort, um genaue und nahegelegene Fahrgäste für Sie zu finden", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "Wir verwenden Ihren genauen Standort, um den nächsten verfügbaren Fahrer zu finden und genaue Abhol- und Absetzinformationen bereitzustellen. Sie können dies in den Einstellungen verwalten.", + "We will look for a new driver.\\nPlease wait.": "Wir werden nach einem neuen Fahrer suchen.\\nBitte warten Sie.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "Willkommen zurück!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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 Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Welche Fahrzeugtypen sind verfügbar?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "WhatsApp-Standort-Extraktor", + "When": "Wann", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "Wohin gehen Sie?", + "Where are you, sir?": "Wo sind Sie, Sir?", + "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 Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "Arbeit", + "Work & Contact": "Arbeit & Kontakt", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Arbeitsort gespeichert", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Die Arbeitszeit ist von 12:00 - 19:00 Uhr.\\nSie können eine WhatsApp-Nachricht oder E-Mail senden.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "Notiz schreiben", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "Jahr", + "Year is": "Jahr ist", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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!", + "You Can Cancel Trip And get Cost of Trip From": "Sie können die Fahrt stornieren und die Fahrtkosten von", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "Sie können die Fahrt stornieren, wenn der Kapitän nicht rechtzeitig gekommen ist", + "You Dont Have Any amount in": "Sie haben keinen Betrag in", + "You Dont Have Any places yet !": "Sie haben noch keine Orte!", + "You Earn today is": "You Earn today is", + "You Have": "Sie haben", + "You Have Tips": "Sie haben Trinkgeld", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Sie haben 3 Fahrten an diesem Tag abgelehnt, das ist der Grund \\nBis morgen!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "Sie sollten einen Grund auswählen.", + "You Should choose rate figure": "Sie sollten eine Bewertungszahl auswählen", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "Sie löschen", + "You are Stopped": "Sie sind gestoppt", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "Sie sind nicht in der Nähe des Standorts des Fahrgasts", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "Sie können Punkte kaufen, um online zu gehen\\nmit dieser Liste unten", + "You can buy points from your budget": "Sie können Punkte aus Ihrem Budget kaufen", + "You can call or record audio during this trip.": "You can call or record audio during this trip.", + "You can call or record audio of this trip": "Sie können anrufen oder das Audio dieser Fahrt aufnehmen", + "You can cancel Ride now": "Sie können die Fahrt jetzt stornieren", + "You can cancel trip": "Sie können die Fahrt stornieren", + "You can change the Country to get all features": "Sie können das Land ändern, um alle Funktionen zu erhalten", + "You can change the destination by long-pressing any point on the map": "Sie können das Ziel ändern, indem Sie einen beliebigen Punkt auf der Karte lange drücken", + "You can change the language of the app": "Sie können die Sprache der App ändern", + "You can change the vibration feedback for all buttons": "Sie können das Vibrationsfeedback für alle Schaltflächen ändern", + "You can claim your gift once they complete 2 trips.": "Sie können Ihr Geschenk anfordern, sobald zwei Fahrten abgeschlossen sind.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Sie können mit Ihrem Fahrer oder Fahrgast über die In-App-Chat-Funktion kommunizieren, sobald eine Fahrt bestätigt ist.", + "You can contact us during working hours from 10:00 - 16:00.": "Sie können uns während der Arbeitszeiten von 10:00 bis 16:00 Uhr kontaktieren.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Sie können uns während der Arbeitszeiten von 12:00 - 19:00 Uhr kontaktieren.", + "You can decline a request without any cost": "Sie können eine Anfrage ohne Kosten ablehnen", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "Sie können nur ein Gerät gleichzeitig verwenden. Dieses Gerät wird nun als Ihr aktives Gerät festgelegt.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Sie können Ihre Fahrt mit Bargeld oder Kredit-/Debitkarte bezahlen. Sie können Ihre bevorzugte Zahlungsmethode vor der Bestätigung Ihrer Fahrt auswählen.", + "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 Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "Sie verdienen das Geschenk", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "Sie haben noch kein Notfalltelefon hinzugefügt!", + "You dont have Points": "Sie haben keine Punkte", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "Sie haben Ihr Geschenk für die Einladung bereits erhalten", + "You have already used this promo code.": "Sie haben diesen Promo-Code bereits verwendet.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "Sie haben einen Anruf vom Fahrer", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "Sie haben den Promo-Code kopiert.", + "You have earned 20": "Sie haben 20 verdient", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "Sie haben alle Zeiten beendet ", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "Sie haben ein Geschenk für die Einladung erhalten", + "You have in account": "Sie haben auf dem Konto", + "You have promo!": "Sie haben eine Promotion!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "Sie müssen die E-Mail verifizieren!.", + "You must be charge your Account": "Sie müssen Ihr Konto aufladen", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "Sie müssen die App neu starten, um die Sprache zu ändern.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "Sie hätten es hochladen sollen.", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "Sie sollten die App neu starten, um die Sprache zu ändern", + "You should select one": "Sie sollten eines auswählen", + "You should select your country": "Sie sollten Ihr Land auswählen", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "Ihre Fahrtstrecke beträgt", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "Sie werden nach Ablauf des Timers an Ihrem Ziel ankommen.", + "You will be charged for the cost of the driver coming to your location.": "Ihnen werden die Kosten für den Fahrer berechnet, der zu Ihrem Standort kommt.", + "You will be pay the cost to driver or we will get it from you on next trip": "Sie werden die Kosten an den Fahrer zahlen oder wir werden sie bei der nächsten Fahrt von Ihnen einziehen", + "You will be thier in": "Sie werden dort sein in", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "Sie werden die Erlaubnis jederzeit erteilen, um bereit zu sein, Bestellungen zu empfangen", + "You will choose one of above !": "Sie werden eines der oben genannten auswählen!", + "You will get cost of your work for this trip": "Sie erhalten die Kosten für Ihre Arbeit für diese Fahrt", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "Sie erhalten einen Code per SMS", + "You will receive a code in WhatsApp Messenger": "Sie erhalten einen Code in WhatsApp Messenger", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "Sie erhalten den Code per SMS", + "Your Account is Deleted": "Ihr Konto wurde gelöscht", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "Ihr Budget ist geringer als benötigt", + "Your Choice, Our Priority": "Ihre Wahl, unsere Priorität", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Ihre Reise beginnt hier", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "Sie sind weit vom Standort des Fahrgasts entfernt", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Ihre E-Mail-Adresse", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "Ihr Einladungscode wurde erfolgreich angewendet!", + "Your journey starts here": "Ihre Reise beginnt hier", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "Ihr Name", + "Your order is being prepared": "Ihre Bestellung wird vorbereitet", + "Your order sent to drivers": "Ihre Bestellung wurde an die Fahrer gesendet", + "Your password": "Ihr Passwort", + "Your past trips will appear here.": "Ihre vergangenen Fahrten werden hier angezeigt.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "Ihr persönlicher Einladungscode lautet:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "Ihre Fahrtkosten betragen", + "Your trip distance is": "Ihre Fahrtstrecke beträgt", + "Your trip is scheduled": "Ihre Fahrt ist geplant", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWir legen auch Wert auf Erschwinglichkeit und bieten wettbewerbsfähige Preise, um Ihre Fahrten zugänglich zu machen.", + "accepted": "akzeptiert", + "accepted your order": "accepted your order", + "accepted your order at price": "hat Ihre Bestellung zum Preis von", + "age": "age", + "agreement subtitle": "Bedingungen akzeptieren", + "airport": "Flughafen", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "ein Fehler ist aufgetreten", + "and I have a trip on": "und ich habe eine Fahrt am", + "and acknowledge our": "und bestätigen unsere", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "gelesen und akzeptiert habe und den", + "app_description": "Intaleq ist eine zuverlässige, sichere und zugängliche Mitfahr-App.", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "Ankunftszeit, um Ihren Punkt zu erreichen", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "vor", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "von", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "Gerät ändern", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "Intaleq setzt sich für Sicherheit ein, und alle unsere Kapitäne werden sorgfältig überprüft.", + "complete profile subtitle": "Profil vervollständigen", + "complete registration button": "Registrierung abschließen", + "complete, you can claim your gift": "abgeschlossen, Sie können Ihr Geschenk einfordern", + "connection_failed": "connection_failed", + "copied to clipboard": "in die Zwischenablage kopiert", + "cost is": "cost is", + "created time": "Erstellungszeit", + "de": "de", + "default_tone": "default_tone", + "deleted": "gelöscht", + "detected": "detected", + "distance is": "Entfernung ist", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "Führerschein", + "duration is": "Dauer ist", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "E-Mail (optional)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "Bitte Code eingeben", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "Gesichtserkennung", + "failed to send otp": "Code konnte nicht gesendet werden", + "false": "false", + "first name label": "Vorname", + "first name required": "Vorname erforderlich", + "for": "für", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "für Ihre erste Registrierung!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "von 07:30 bis 10:30 (Donnerstag, Freitag, Samstag, Montag)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "von 12:00 bis 15:00 (Donnerstag, Freitag, Samstag, Montag)", + "from 23:59 till 05:30": "von 23:59 bis 05:30", + "from 3 times Take Attention": "von 3 Malen, achten Sie darauf", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "aus Ihren Favoriten", + "from your list": "aus Ihrer Liste", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "Mit Intaleq können Sie in wenigen Minuten an Ihr Ziel gelangen.", + "get_to_destination": "Erreichen Sie Ihr Ziel schnell und einfach.", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "gehen Sie zum Standort des Fahrgasts, bevor\\n der Fahrgast die Fahrt storniert", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "hat abgeschlossen", + "hi": "hi", + "hour": "Stunde", + "hours before trying again.": "hours before trying again.", + "i agree": "Ich stimme zu", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "Wenn Sie kein Konto haben", + "if you want help you can email us here": "Wenn Sie Hilfe benötigen, können Sie uns hier eine E-Mail senden", + "image verified": "Bild verifiziert", + "in your": "in Ihrem", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "Betrag einfügen", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "überprüft Ihre Bestellung. Möglicherweise benötigen sie mehr Informationen oder einen höheren Preis.", + "it": "it", + "joined": "beigetreten", + "kilometer": "kilometer", + "last name label": "Nachname", + "last name required": "Nachname erforderlich", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "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 Siro.", + "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", + "message From passenger": "Nachricht vom Fahrgast", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "Modell :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "mein Standort", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "nicht ähnlich", + "of": "of", + "on": "on", + "one last step title": "Ein letzter Schritt", + "otp sent subtitle": "Verifizierungscode gesendet", + "otp sent success": "Code erfolgreich gesendet", + "otp verification failed": "Code-Verifizierung fehlgeschlagen", + "passenger agreement": "Fahrgastvereinbarung", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "ausstehend", + "phone number label": "Telefonnummer", + "phone number of driver": "phone number of driver", + "phone number required": "Telefonnummer erforderlich", + "please go to picker location exactly": "Bitte gehen Sie genau zum Abholort", + "please order now": "bitte jetzt bestellen", + "please wait till driver accept your order": "Bitte warten Sie, bis der Fahrer Ihre Bestellung annimmt", + "points": "points", + "price is": "Preis ist", + "privacy policy": "Datenschutzrichtlinie", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "Registrierung fehlgeschlagen", + "registration_date": "registration_date", + "reject your order.": "hat Ihre Bestellung abgelehnt.", + "rejected": "abgelehnt", + "remaining": "verbleibend", + "reviews": "reviews", + "rides": "Fahrten", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "Genießen Sie eine sichere und komfortable Fahrt.", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "Sekunden", + "security_warning": "security_warning", + "send otp button": "Code senden", + "server error try again": "Serverfehler, versuchen Sie es erneut", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "ähnlich", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "Nutzungsbedingungen", + "the 300 points equal 300 L.E": "300 Punkte entsprechen 300 L.E", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "500 Punkte entsprechen 30 JOD", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "Dadurch werden alle Dateien von Ihrem Gerät gelöscht", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "Token-Änderung", + "token updated": "Token aktualisiert", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "Fahrten", + "true": "true", + "type here": "hier eingeben", + "unknown_document": "unknown_document", + "upgrade price": "Preis erhöhen", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "Verifizieren und fortfahren", + "verify your number title": "Nummer verifizieren", + "vin": "vin", + "wait 1 minute to receive message": "Warten Sie 1 Minute, um die Nachricht zu erhalten", + "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 siro", + "welcome user": "Willkommen", + "welcome_message": "Willkommen bei Intaleq!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "mit Typ", + "witout zero": "witout zero", + "write Color for your car": "Geben Sie die Farbe Ihres Autos ein", + "write Expiration Date for your car": "Geben Sie das Ablaufdatum Ihres Autos ein", + "write Make for your car": "Geben Sie die Marke Ihres Autos ein", + "write Model for your car": "Geben Sie das Modell Ihres Autos ein", + "write Year for your car": "Geben Sie das Jahr Ihres Autos ein", + "write comment here": "write comment here", + "write vin for your car": "Geben Sie die Fahrgestellnummer Ihres Autos ein", + "year :": "Jahr :", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "Sie haben die Bestellung storniert", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "Sie erhalten", + "you have a negative balance of": "Sie haben ein negatives Guthaben von", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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 Siro 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", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "Ablaufdatum", + "⚠️ You need to choose an amount!": "⚠️ Sie müssen einen Betrag auswählen!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "Mit Portemonnaie bezahlen", + "💳 Pay with Credit Card": "💳 Mit Kreditkarte bezahlen", +}; diff --git a/siro_driver/lib/controller/local/el.dart b/siro_driver/lib/controller/local/el.dart new file mode 100644 index 0000000..444a754 --- /dev/null +++ b/siro_driver/lib/controller/local/el.dart @@ -0,0 +1,2662 @@ +final Map el = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " και την Πολιτική Απορρήτου.", + " is ON for this month": " είναι ON αυτόν τον μήνα", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. Περιγράψτε το θέμα", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 και κερδίστε 4% έκπτωση", + "100 and get 11% discount": "100 και κερδίστε 11% έκπτωση", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. Επισύναψη Ήχου", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 και κερδίστε 6% έκπτωση", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. Έλεγχος Λεπτομερειών", + "300 LE": "300 LE", + "3000 LE": "30 €", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 και κερδίστε 8% έκπτωση", + "5 digit": "5 ψηφία", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Διαδρομή με κράτηση, επιλογή οδηγών και οχημάτων.", + "AI Page": "Σελίδα AI", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "Σχετικά", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "Αποδοχή", + "Accept Ride": "Accept Ride", + "Accepted Ride": "Αποδεκτή Διαδρομή", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "Ενεργή Διάρκεια:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "Προσθήκη Κάρτας", + "Add Credit Card": "Προσθήκη Πιστωτικής", + "Add Home": "Προσθήκη Σπιτιού", + "Add Location": "Προσθήκη Τοποθεσίας", + "Add Location 1": "Προσθήκη Τοποθεσίας 1", + "Add Location 2": "Προσθήκη Τοποθεσίας 2", + "Add Location 3": "Προσθήκη Τοποθεσίας 3", + "Add Location 4": "Προσθήκη Τοποθεσίας 4", + "Add Payment Method": "Προσθήκη Τρόπου Πληρωμής", + "Add Phone": "Προσθήκη Τηλεφώνου", + "Add Promo": "Προσθήκη Προσφοράς", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Προσθήκη Στάσεων", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "Προσθήκη χρημάτων με ασφάλεια", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Διεύθυνση", + "Address:": "Address:", + "Admin DashBoard": "Πίνακας Ελέγχου", + "Affordable for Everyone": "Οικονομικό", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "Ειδοποιήσεις", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "Να επιτρέπεται η πρόσβαση", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "Σφάλμα πληρωμής.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "Σφάλμα κατά την επιλογή επαφών:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "Προέκυψε απροσδόκητο σφάλμα. Προσπαθήστε ξανά.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "Εφαρμογή με Επιβάτη", + "Applied": "Καταχωρήθηκε", + "Apply": "Apply", + "Apply Order": "Αποδοχή", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "Πλησιάζω. Εκεί σε 3 λεπτά.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "Σίγουρα προς", + "Are you Sure to LogOut?": "Σίγουρα Αποσύνδεση;", + "Are you sure to cancel?": "Σίγουρα ακύρωση;", + "Are you sure to delete recorded files": "Διαγραφή αρχείων;", + "Are you sure to delete this location?": "Σίγουρα θέλετε να διαγράψετε την τοποθεσία;", + "Are you sure to delete your account?": "Σίγουρα διαγραφή;", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "Είστε σίγουροι; Αυτή η ενέργεια δεν αναιρείται.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Θέλετε να πάτε σε αυτό το σημείο;", + "Are you want to go to this site": "Θέλετε να πάτε εδώ;", + "Are you want to wait drivers to accept your order": "Θέλετε να περιμένετε;", + "Arrival time": "Ώρα άφιξης", + "Associate Degree": "Πτυχίο ΙΕΚ/Κολεγίου", + "Attach this audio file?": "Επισύναψη αυτού του αρχείου;", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Επιτυχής μεταφόρτωση.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "Διαθέσιμος", + "Average of Hours of": "Μέσος όρος ωρών", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Οικονομικό Όχημα", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "Μπαχρέιν", + "Balance": "Υπόλοιπο", + "Balance limit exceeded": "Υπέρβαση ορίου υπολοίπου", + "Balance not enough": "Ανεπαρκές υπόλοιπο", + "Balance:": "Υπόλοιπο:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "Πιο αργά", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "Βγάλτε καθαρές φωτογραφίες\\nΈχετε", + "Be sure to use it quickly! This code expires at": "Χρησιμοποίησέ το γρήγορα! Λήγει στις", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Ευελιξία επιλογής.", + "Before we start, please review our terms.": "Πριν ξεκινήσουμε, δείτε τους όρους μας.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Καλύτερη επιλογή για πόλη", + "Best choice for comfort car and flexible route and stops point": "Άνετο αμάξι, ευέλικτη διαδρομή", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "Ημ. Γέννησης", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "Κόστος Κράτησης", + "Bottom Bar Example": "Παράδειγμα", + "But you have a negative salary of": "Αρνητικό υπόλοιπο:", + "CODE": "ΚΩΔΙΚΟΣ", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "Τέλος Κλήσης", + "Call Ended": "Call Ended", + "Call Income": "Εισερχόμενη Κλήση", + "Call Income from Driver": "Κλήση από τον Οδηγό", + "Call Income from Passenger": "Κλήση από Επιβάτη", + "Call Left": "Κλήσεις που απομένουν", + "Call Options": "Call Options", + "Call Page": "Σελίδα Κλήσης", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "Άρνηση Πρόσβασης Κάμερας.", + "Camera not initialized yet": "Η κάμερα δεν άνοιξε", + "Camera not initilaized yet": "Κάμερα μη έτοιμη", + "Can I cancel my ride?": "Μπορώ να ακυρώσω;", + "Can we know why you want to cancel Ride ?": "Γιατί ακυρώνετε;", + "Cancel": "Ακύρωση", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "Ακύρωση", + "Cancel Search": "Ακύρωση Αναζήτησης", + "Cancel Trip": "Ακύρωση Διαδρομής", + "Cancel Trip from driver": "Ακύρωση από τον οδηγό", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "Ακυρώθηκε", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "Δεν υπάρχουν άλλες εκπτώσεις.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Φωτογραφία Ποινικού Μητρώου", + "Capture an Image of Your Driver License": "Φωτογραφία Διπλώματος", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "Φωτογραφία Ταυτότητας (Πίσω)", + "Capture an Image of Your ID Document front": "Φωτογραφία Ταυτότητας (Μπροστά)", + "Capture an Image of Your car license back": "Φωτογραφία Άδειας (Πίσω)", + "Capture an Image of Your car license front": "Φωτογραφία Άδειας Κυκλοφορίας (Μπροστά)", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "Όχημα", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "Στοιχεία Οχήματος", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "Άδεια Κυκλοφορίας", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "Αριθμός Κάρτας", + "Card Payment": "Card Payment", + "CardID": "Αρ. Κάρτας", + "Cash": "Μετρητά", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "Αλλαγή Χώρας", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "Αριθμός Πλαισίου", + "Check back later for new offers!": "Ελέγξτε ξανά αργότερα!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "Επιλογή Γλώσσας", + "Choose a contact option": "Επιλογή επικοινωνίας", + "Choose between those Type Cars": "Επιλογή Τύπου Οχήματος", + "Choose from Map": "Επιλογή από Χάρτη", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "Επιλέξτε ό,τι σας ταιριάζει.", + "Choose who this order is for": "Για ποιον είναι η διαδρομή;", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "Πόλη", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "Διεκδικήστε το δώρο 20 € για την πρόσκληση", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "Προβολή στον Χάρτη", + "Close": "Κλείσιμο", + "Closest & Cheapest": "Κοντινότερο & Φθηνότερο", + "Closest to You": "Δίπλα σας", + "Code": "Κωδικός", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "Κωδικός μη αποδεκτός", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "Χρώμα", + "Color is": "Color is", + "Comfort": "Comfort", + "Comfort choice": "Επιλογή Comfort", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "Επικοινωνία", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "Καταγγελία", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Δεν μπορεί να υποβληθεί καταγγελία για αυτή τη διαδρομή. Ίσως δεν ολοκληρώθηκε ή δεν ξεκίνησε.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "Επιβεβαίωση", + "Confirm & Find a Ride": "Επιβεβαίωση & Εύρεση", + "Confirm Attachment": "Επιβεβαίωση Επισύναψης", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "Επιβεβαίωση", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "Επιβεβαίωση Email", + "Confirmation": "Confirmation", + "Connected": "Συνδέθηκε", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "Επικοινωνία", + "Contact Support": "Επικοινωνία με Υποστήριξη", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "Επικοινωνία", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "Απαιτείται άδεια επαφών.", + "Contact us for any questions on your order.": "Επικοινωνήστε για ερωτήσεις.", + "Contacts Loaded": "Οι επαφές φορτώθηκαν", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "Συνέχεια", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "Αντιγραφή", + "Copy Code": "Αντιγραφή", + "Copy this Promo to use it in your Ride!": "Αντιγράψτε τον κωδικό!", + "Cost": "Cost", + "Cost Duration": "Κόστος Διάρκειας", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "Ώρες ανά ημέρα", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "Δημιουργία Πορτοφολιού", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "Απαιτείται Ποινικό Μητρώο", + "Criminal Record": "Ποινικό Μητρώο", + "Cropper": "Περικοπή", + "Current Balance": "Τρέχον Υπόλοιπο", + "Current Location": "Τρέχουσα Τοποθεσία", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Ο πελάτης δεν βρέθηκε", + "Customer phone is not active": "Το τηλέφωνο δεν είναι ενεργό", + "DISCOUNT": "ΕΚΠΤΩΣΗ", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "Ημερομηνία", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "Ημ. Γέννησης:", + "Date of Birth:": "Date of Birth:", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "Διαγραφή Λογαριασμού", + "Delete Permanently": "Οριστική Διαγραφή", + "Deleted": "Διαγράφηκε", + "Delivery": "Delivery", + "Destination": "Προορισμός", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "Ανίχνευση Προσώπου ", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "Κυβισμός", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "Έχετε κωδικό πρόσκλησης;", + "Do you want to change Home location": "Αλλαγή τοποθεσίας Σπιτιού;", + "Do you want to change Work location": "Αλλαγή τοποθεσίας Εργασίας;", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "Θέλετε να δώσετε φιλοδώρημα;", + "Docs": "Docs", + "Doctoral Degree": "Διδακτορικό", + "Document Number:": "Document Number:", + "Documents check": "Έλεγχος Εγγράφων", + "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 Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Κατέβασε την εφαρμογή:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Οδηγός", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "Ο οδηγός αποδέχτηκε τη διαδρομή για εσάς", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "Ο οδηγός καταχώρησε τη διαδρομή για εσάς", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "Ο Οδηγός Ακύρωσε τη Διαδρομή", + "Driver Car Plate": "Πινακίδα Οδηγού", + "Driver Finish Trip": "Ο Οδηγός Ολοκλήρωσε τη Διαδρομή", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "Ο οδηγός πηγαίνει στον Επιβάτη", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "Όνομα Οδηγού", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "Εγγραφή", + "Driver Registration & Requirements": "Εγγραφή Οδηγού", + "Driver Wallet": "Πορτοφόλι Οδηγού", + "Driver already has 2 trips within the specified period.": "Ο οδηγός έχει ήδη 2 διαδρομές.", + "Driver is on the way": "Ο οδηγός έρχεται", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "Ο οδηγός περιμένει.", + "Driver joined the channel": "Ο οδηγός μπήκε στο κανάλι", + "Driver left the channel": "Ο οδηγός βγήκε από το κανάλι", + "Driver phone": "Τηλέφωνο Οδηγού", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "Κατηγορία", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "Διάρκεια:", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "Επεξεργασία", + "Edit Your data": "Επεξεργασία", + "Education": "Εκπαίδευση", + "Egypt": "Αίγυπτος", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "Ηλεκτρικό", + "Email": "Email", + "Email Us": "Στείλτε Email", + "Email Wrong": "Λάθος Email", + "Email is": "Email:", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "Το email είναι λάθος.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "Τύπος Απασχόλησης", + "Enable Location": "Ενεργοποίηση Τοποθεσίας", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "Τέλος Διαδρομής", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "Απολαύστε ασφαλή διαδρομή.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Ανταγωνιστικές τιμές.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "Εισάγετε Όνομα", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "Εισαγωγή τηλεφώνου", + "Enter phone number": "Enter phone number", + "Enter promo code": "Εισάγετε κωδικό", + "Enter promo code here": "Εισάγετε κωδικό εδώ", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "Εισάγετε κωδικό και κερδίστε", + "Enter your City": "Enter your City", + "Enter your Note": "Σχόλιο", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Γράψτε την καταγγελία εδώ...", + "Enter your email": "Enter your email", + "Enter your email address": "Εισάγετε email", + "Enter your feedback here": "Εισάγετε σχόλια", + "Enter your first name": "Εισάγετε όνομα", + "Enter your last name": "Εισάγετε επώνυμο", + "Enter your password": "Enter your password", + "Enter your phone number": "Εισάγετε τηλέφωνο", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "Σφάλμα", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "Ημερομηνία Λήξης", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "Ημ. Λήξης", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "Αποτέλεσμα Ανίχνευσης Προσώπου", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "Άμεση Ανταπόκριση", + "Favorite Places": "Favorite Places", + "Fee is": "Κόστος: ", + "Feed Back": "Σχόλια", + "Feedback": "Σχόλια", + "Feedback data saved successfully": "Αποθηκεύτηκε", + "Female": "Γυναίκα", + "Find answers to common questions": "Απαντήσεις", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "Τέλος Παρακολούθησης", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "Όνομα", + "First Trip": "First Trip", + "First name": "Όνομα", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "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 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 Siro 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": "Συχνές Ερωτήσεις", + "Fri": "Fri", + "From": "Από", + "From :": "Από:", + "From : Current Location": "Από: Τρέχουσα Τοποθεσία", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "Καύσιμο", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "Ονοματεπώνυμο", + "FullName": "Ονοματεπώνυμο", + "GPS Required Allow !.": "Απαιτείται GPS!", + "Gender": "Φύλο", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "Get": "Get", + "Get Details of Trip": "Λεπτομέρειες", + "Get Direction": "Οδηγίες", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get features for your country": "Get features for your country", + "Get it Now!": "Πάρτε το!", + "Get to your destination quickly and easily.": "Φτάστε γρήγορα στον προορισμό.", + "Getting Started": "Ξεκινώντας", + "Gift Already Claimed": "Το δώρο έχει ήδη ληφθεί", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "Μετάβαση στα Αγαπημένα", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "Επόμενο βήμα\\nσάρωση Άδειας.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "Πηγαίνετε στον Επιβάτη", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "Μετάβαση στον Προορισμό", + "Go to this location": "Μετάβαση σε αυτή την τοποθεσία", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "H και", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "Έχετε κωδικό προσφοράς;", + "Head": "Head", + "Heading your way now. Please be ready.": "Έρχομαι. Να είστε έτοιμοι.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "Γεια σας, ο Οδηγός", + "Hello this is Driver": "Γεια σας, ο Οδηγός", + "Help & Support": "Help & Support", + "Help Details": "Λεπτομέρειες Βοήθειας", + "Helping Center": "Κέντρο Βοήθειας", + "Helping Page": "Helping Page", + "Here recorded trips audio": "Ηχογραφήσεις διαδρομών", + "Hi": "Γεια", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Γεια, ξεκινάω τώρα", + "Hi! This is": "Γεια! Είμαι", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "Απολυτήριο Λυκείου", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "Ιστορικό", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "Πώς πληρώνω;", + "How can I register as a driver?": "Πώς γίνομαι οδηγός;", + "How do I communicate with the other party (passenger/driver)?": "Πώς επικοινωνώ;", + "How do I request a ride?": "Πώς ζητάω διαδρομή;", + "How many hours would you like to wait?": "Πόσες ώρες αναμονής;", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "Συμφωνώ", + "I Arrive": "I Arrive", + "I Arrive your site": "Έφτασα στο σημείο", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "Λάθος τοποθεσία", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "Έφτασα", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "Πρόβλημα με ανίχνευση προσώπου", + "I want to order for myself": "Για εμένα", + "I want to order for someone else": "Για κάποιον άλλον", + "I was just trying the application": "Δοκίμαζα την εφαρμογή", + "I will go now": "Πηγαίνω τώρα", + "I will slow down": "Θα επιβραδύνω", + "I've arrived.": "I've arrived.", + "ID Documents Back": "Ταυτότητα (Πίσω)", + "ID Documents Front": "Ταυτότητα (Μπροστά)", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "Αν είστε στο όχημα, πατήστε Έναρξη", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "Επικοινωνήστε για βοήθεια", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Για προσθήκη στάσης πατήστε εδώ", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Άμεσο άνοιγμα Google Maps", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "Αποτέλεσμα: ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "Κλήσεις VOIP", + "Including Tax": "Με ΦΠΑ", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "⚠️ Λάθος κωδικός SMS. Προσπαθήστε ξανά.", + "Increase Fare": "Αύξηση Ναύλου", + "Increase Fee": "Αύξηση Τιμής", + "Increase Your Trip Fee (Optional)": "Αύξηση Ναύλου (Προαιρετικό)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Η αύξηση του ναύλου μπορεί να προσελκύσει περισσότερους οδηγούς. Θέλετε να αυξήσετε την τιμή;", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "Εισαγωγή", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "Εισαγωγή SOS Αριθμού", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Εισαγωγή Κωδικού", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "Ημ. ΚΤΕΟ", + "InspectionResult": "Αποτέλεσμα Ελέγχου", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "Άκυρο MPIN", + "Invalid OTP": "Άκυρο OTP", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "Πρόσκληση Χρησιμοποιήθηκε", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "Η πρόσκληση στάλθηκε", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "Είναι ο Επιβάτης στο Όχημα;", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "Ημ. Έκδοσης", + "IssueDate": "Ημ. Έκδοσης", + "JOD": "€", + "Join": "Συμμετοχή", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "Ιορδανία", + "Just now": "Just now", + "KM": "Χλμ", + "Keep it up!": "Συνεχίστε έτσι!", + "Kuwait": "Κουβέιτ", + "L.E": "L.E", + "L.S": "L.S", + "LE": "€", + "Lady": "Lady (Γυναίκες)", + "Lady Captain for girls": "Γυναίκα Οδηγός για γυναίκες", + "Lady Captains Available": "Γυναίκες Οδηγοί", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "Γλώσσα", + "Language Options": "Επιλογές Γλώσσας", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "Επώνυμο", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "Τελευταία Διαδρομή", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Αποχώρηση", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "Έλεγχος Άδειας ", + "Lets check License Back Face": "Έλεγχος Πίσω Όψης", + "License Categories": "Κατηγορίες", + "License Expiry Date": "License Expiry Date", + "License Type": "Τύπος Διπλώματος", + "Link a phone number for transfers": "Σύνδεση τηλεφώνου για μεταφορές", + "Location Access Required": "Location Access Required", + "Location Link": "Σύνδεσμος Τοποθεσίας", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "Αποσύνδεση", + "Log Out Page": "Αποσύνδεση", + "Login": "Login", + "Login Captin": "Είσοδος Οδηγού", + "Login Driver": "Είσοδος Οδηγού", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "Χαμηλότερη Τιμή", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "Κατασκευαστής :", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "Μάρκα", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "Άνδρας", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "Χάρτης Επιβάτη", + "Marital Status": "Οικογενειακή Κατάσταση", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "Μέγιστη χρέωση", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Ελάχιστη χρέωση", + "Minute": "Λεπτό", + "Minutes": "Minutes", + "Mishwar Vip": "VIP Διαδρομή", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "Μοντέλο", + "Model is": "Μοντέλο:", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "Πρωί", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "Ασφαλείς Μέθοδοι", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "Μετακινήστε τον χάρτη", + "Mute": "Mute", + "My Balance": "Το Υπόλοιπό μου", + "My Card": "Η Κάρτα Μου", + "My Cared": "Οι Κάρτες Μου", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "Το Προφίλ μου", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "Η τοποθεσία μου:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "Η Τοποθεσία Μου", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "Όνομα", + "Name (Arabic)": "Όνομα (Αραβικά)", + "Name (English)": "Όνομα (Αγγλικά)", + "Name :": "Όνομα :", + "Name in arabic": "Όνομα (Τοπικό)", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "Ταυτότητα", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "Αριθμός Ταυτότητας", + "NationalID": "Αριθμός Ταυτότητας", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "Επόμενο", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "Βράδυ", + "No": "Όχι", + "No ,still Waiting.": "Όχι, αναμονή.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Κανένα όχημα. Συγγνώμη!", + "No Car or Driver Found in your area.": "Δεν βρέθηκε όχημα ή οδηγός.", + "No I want": "Όχι θέλω", + "No Promo for today .": "Καμία Προσφορά σήμερα.", + "No Response yet.": "Καμία απάντηση.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Χωρίς SIM; Καλέστε μέσω εφαρμογής.", + "No accepted orders? Try raising your trip fee to attract riders.": "Αυξήστε την προσφορά σας.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "Δεν βρέθηκαν αρχεία ήχου.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "Δεν βρέθηκαν επαφές", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "Δεν βρέθηκαν επαφές με αριθμούς στη συσκευή.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "Κανείς δεν αποδέχτηκε", + "No drivers accepted your request yet": "Κανένας οδηγός δεν αποδέχτηκε ακόμα", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "Δεν ανιχνεύτηκε πρόσωπο", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Δεν επιλέχθηκε εικόνα", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "Καμία πρόσκληση!", + "No one accepted? Try increasing the fare.": "Κανείς δεν δέχτηκε; Αυξήστε την προσφορά.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "Δεν βρέθηκε επιβάτης", + "No phone number": "No phone number", + "No promos available right now.": "Δεν υπάρχουν προσφορές τώρα.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "Δεν βρέθηκε διαδρομή", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "Δεν βρέθηκε ιστορικό", + "No trip yet found": "Δεν βρέθηκε διαδρομή", + "No user found for the given phone number": "Δεν βρέθηκε χρήστης", + "No wallet record found": "Δεν βρέθηκε πορτοφόλι", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "Όχι, ευχαριστώ", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "Δεν συνδέθηκε", + "Not set": "Δεν ορίστηκε", + "Not updated": "Not updated", + "Notifications": "Ειδοποιήσεις", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "Επάγγελμα", + "Offline": "Offline", + "Ok": "ΟΚ", + "Ok , See you Tomorrow": "ΟΚ, τα λέμε αύριο", + "Ok I will go now.": "Εντάξει, πηγαίνω τώρα.", + "Old and affordable, perfect for budget rides.": "Οικονομικό και προσιτό.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "Ρυθμίσεις", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "Ή πληρώστε με Μετρητά", + "Order": "Αίτημα", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "Το αίτημα υποβλήθηκε", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Ακύρωση από Επιβάτη", + "Order Details Siro": "Order Details Siro", + "Order History": "Ιστορικό Διαδρομών", + "Order ID": "Order ID", + "Order Request Page": "Σελίδα Αιτήματος", + "Order Under Review": "Order Under Review", + "Order for myself": "Διαδρομή για εμένα", + "Order for someone else": "Διαδρομή για άλλον", + "OrderId": "ID Παραγγελίας", + "OrderVIP": "VIP Αίτημα", + "Orders Page": "Orders Page", + "Origin": "Αφετηρία", + "Original Fare": "Original Fare", + "Other": "Άλλο", + "Our dedicated customer service team ensures swift resolution of any issues.": "Επίλυση θεμάτων άμεσα.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "Ιδιοκτήτης", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "Ο επιβάτης ακύρωσε τη διαδρομή", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "Ο επιβάτης έρχεται σε εσάς", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "Τουλάχιστον 6 χαρακτήρες.", + "Paste WhatsApp location link": "Επικολλήστε σύνδεσμο WhatsApp", + "Paste location link here": "Επικολλήστε τον σύνδεσμο εδώ", + "Paste the code here": "Επικόλληση κωδικού", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Πληρωμή απευθείας στον οδηγό", + "Pay from my budget": "Πληρωμή από υπόλοιπο", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "Πληρωμή με Κάρτα", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "Πληρωμή με Πορτοφόλι", + "Pay with Your": "Πληρωμή με", + "Pay with Your PayPal": "Πληρωμή με PayPal", + "Payment Failed": "Αποτυχία Πληρωμής", + "Payment History": "Ιστορικό Πληρωμών", + "Payment Method": "Τρόπος Πληρωμής", + "Payment Method:": "Payment Method:", + "Payment Options": "Επιλογές Πληρωμής", + "Payment Successful": "Επιτυχής Πληρωμή", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "Πληρωμές", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "Για όσους ψάχνουν περιπέτεια", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Ιδανικό για νέα μοντέλα και ελευθερία διαδρομής", + "Permission denied": "Άρνηση πρόσβασης", + "Personal Information": "Προσωπικά Στοιχεία", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Τηλέφωνο:", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "Επιλογή από χάρτη", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "Προορισμός από Χάρτη", + "Pick your ride location on the map - Tap to confirm": "Επιλέξτε σημείο στον χάρτη - Πατήστε για επιβεβαίωση", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "Πινακίδα", + "Plate Number": "Αριθμός Πινακίδας", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "Περιμένετε μήπως ακυρώσει ο επιβάτης!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "Εισάγετε", + "Please enter Your Email.": "Παρακαλώ εισάγετε Email.", + "Please enter Your Password.": "Εισάγετε Κωδικό.", + "Please enter a correct phone": "Εισάγετε σωστό τηλέφωνο", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "Εισάγετε τηλέφωνο", + "Please enter a valid 16-digit card number": "Εισάγετε έγκυρο αριθμό κάρτας", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Εισάγετε έγκυρο κωδικό", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Κωδικός CVV", + "Please enter the cardholder name": "Όνομα κατόχου", + "Please enter the complete 6-digit code.": "Παρακαλώ εισάγετε τον πλήρη 6ψήφιο κωδικό.", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "Ημερομηνία λήξης", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Εισάγετε Πόλη.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "Εισάγετε Ερώτηση.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Παρακαλώ εισάγετε σχόλια.", + "Please enter your first name.": "Παρακαλώ εισάγετε όνομα.", + "Please enter your last name.": "Παρακαλώ εισάγετε επώνυμο.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Παρακαλώ εισάγετε τηλέφωνο.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "Παρακαλώ πηγαίνετε στον Οδηγό", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "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 Siro 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 select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "Επαλήθευση ταυτότητας", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "Περιμένετε να μπει ο επιβάτης.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "Πόντος", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "Εντοπίστηκαν πιθανοί κίνδυνοι ασφαλείας. Η εφαρμογή ενδέχεται να μην λειτουργεί σωστά.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Πολιτική Απορρήτου", + "Profile": "Προφίλ", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "Προσφορά", + "Promo Already Used": "Χρησιμοποιήθηκε ήδη", + "Promo Code": "Κωδικός Προσφοράς", + "Promo Code Accepted": "Κωδικός Δεκτός", + "Promo Copied!": "Αντιγράφηκε!", + "Promo End !": "Τέλος Προσφοράς!", + "Promo Ended": "Η Προσφορά Έληξε", + "Promo code copied to clipboard!": "Αντιγράφηκε!", + "Promos": "Προσφορές", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "Πληρωμή Ακυρώθηκε.", + "Qatar": "Κατάρ", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "Γρήγορες Ενέργειες", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "Ήσυχο & Οικολογικό", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "Βαθμολογία Οδηγού", + "Rate Driver": "Βαθμολογία Οδηγού", + "Rate Our App": "Rate Our App", + "Rate Passenger": "Βαθμολογία Επιβάτη", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "Μετ' επιστροφής", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Μετ' επιστροφής: Άνετο ταξίδι μεταξύ πόλεων.", + "Reason": "Reason", + "Recent Places": "Πρόσφατα Μέρη", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "Φόρτιση", + "Record": "Record", + "Record saved": "Αποθηκεύτηκε", + "Recorded Trips (Voice & AI Analysis)": "Καταγεγραμμένες Διαδρομές", + "Recorded Trips for Safety": "Καταγεγραμμένες Διαδρομές", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "Απόρριψη", + "Refused": "Refused", + "Register": "Εγγραφή", + "Register Captin": "Εγγραφή Οδηγού", + "Register Driver": "Εγγραφή Οδηγού", + "Register as Driver": "Εγγραφή ως Οδηγός", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Θρήσκευμα", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "Επαναποστολή Κωδικού", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "Διαχείριση", + "Ride Status": "Ride Status", + "Ride Summaries": "Συνόψεις", + "Ride Summary": "Σύνοψη", + "Ride Today :": "Ride Today :", + "Ride Wallet": "Πορτοφόλι", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "Διαδρομές", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "Διαδρομές", + "Route Not Found": "Η διαδρομή δεν βρέθηκε", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "Τηλέφωνο SOS", + "SUBMIT": "SUBMIT", + "SYP": "SYP", + "Safety & Security": "Ασφάλεια", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "Σαουδική Αραβία", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "Αποθήκευση Κάρτας", + "Saved Sucssefully": "Αποθηκεύτηκε Επιτυχώς", + "Scan Driver License": "Σάρωση Διπλώματος", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "Σάρωση Ταυτότητας", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "Σάρωση Ταυτότητας", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Σκούτερ", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "Στάση", + "Search for your Start point": "Σημείο εκκίνησης", + "Search for your destination": "Αναζήτηση προορισμού", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "Αναζήτηση κοντινότερου οδηγού...", + "Security Warning": "⚠️ Προειδοποίηση Ασφαλείας", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "Τα λέμε στον δρόμο!", + "Select Country": "Επιλογή Χώρας", + "Select Date": "Επιλογή Ημερομηνίας", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "Επιλογή Τύπου Διαδρομής", + "Select Payment Amount": "Επιλογή Ποσού", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "Επιλογή Ώρας", + "Select Waiting Hours": "Ώρες Αναμονής", + "Select Your Country": "Επιλογή Χώρας", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "Επιλογή μηνύματος", + "Select recorded trip": "Επιλογή διαδρομής", + "Select your destination": "Επιλογή προορισμού", + "Select your preferred language for the app interface.": "Επιλέξτε γλώσσα εφαρμογής.", + "Selected Date": "Επιλεγμένη Ημερομηνία", + "Selected Date and Time": "Επιλογή", + "Selected Location": "Selected Location", + "Selected Time": "Επιλεγμένη Ώρα", + "Selected driver": "Επιλεγμένος οδηγός", + "Selected file:": "Επιλεγμένο αρχείο:", + "Send Email": "Send Email", + "Send Invite": "Αποστολή Πρόσκλησης", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Αποστολή Κωδικού", + "Send Verification Code": "Αποστολή Κωδικού", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Προσαρμοσμένο μήνυμα", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Η συνεδρία έληξε. Συνδεθείτε ξανά.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Ορισμός Τηλεφώνου Πορτοφολιού", + "Set pickup location": "Ορισμός παραλαβής", + "Setting": "Ρύθμιση", + "Settings": "Ρυθμίσεις", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "Κοινοποίηση Εφαρμογής", + "Share Code": "Share Code", + "Share Trip Details": "Κοινοποίηση Λεπτομερειών", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "Μοιραστείτε και κερδίστε!", + "Share via": "Share via", + "Share with friends and earn rewards": "Μοιραστείτε με φίλους και κερδίστε", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Προβολή Προσκλήσεων", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "Εμφάνιση Προσφορών", + "Show Promos to Charge": "Προσφορές Φόρτισης", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "Εμφάνιση τελευταίων προσφορών", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "Εμφάνιση", + "Sign In by Apple": "Είσοδος με Apple", + "Sign In by Google": "Είσοδος με Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Αποσύνδεση", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "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": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Ευρύχωρο βαν, ιδανικό για οικογένειες. Άνετο, ασφαλές και οικονομικό.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "Έναρξη Εγγραφής", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "Έναρξη", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "Στατιστικά", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "Υποβολή ", + "Submit Complaint": "Υποβολή", + "Submit Question": "Υποβολή Ερώτησης", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "Υποβολή Καταγγελίας", + "Submit rating": "Υποβολή", + "Success": "Επιτυχία", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "Αλλαγή Επιβάτη", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "Συρία", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "Λήψη Φωτογραφίας", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "Φωτογραφία Διπλώματος", + "Take Picture Of ID Card": "Φωτογραφία Ταυτότητας", + "Tap on the promo code to copy it!": "Πατήστε για αντιγραφή!", + "Tap to upload": "Tap to upload", + "Target": "Στόχος", + "Tariff": "Τιμοκατάλογος", + "Tariffs": "Χρεώσεις", + "Tax Expiry Date": "Λήξη Τελών", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "Ευχαριστώ", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "Ο Οδηγός φτάνει σύντομα.", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "Ο οδηγός είναι υπεύθυνος για τη διαδρομή.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "Απόσταση κάτω από 500μ.", + "The driver accept your order for": "Ο οδηγός δέχτηκε για", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "Ο οδηγός αποδέχτηκε τη διαδρομή σας", + "The driver canceled your ride.": "Ο οδηγός ακύρωσε τη διαδρομή σας.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "Ο οδηγός έρχεται", + "The driver waiting you in picked location .": "Ο οδηγός περιμένει στο σημείο.", + "The driver waitting you in picked location .": "Ο οδηγός περιμένει.", + "The drivers are reviewing your request": "Εξέταση αιτήματος", + "The email or phone number is already registered.": "Το email ή τηλέφωνο χρησιμοποιείται.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "Η πρόσκληση στάλθηκε", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "Το αίτημα έγινε δεκτό από άλλον Οδηγό", + "The order has been accepted by another driver.": "Το αίτημα έγινε αποδεκτό από άλλον οδηγό.", + "The payment was approved.": "Εγκρίθηκε.", + "The payment was not approved. Please try again.": "Η πληρωμή δεν εγκρίθηκε. Προσπαθήστε ξανά.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "Η τιμή μπορεί να αυξηθεί.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "Η προσφορά έληξε.", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Η διαδρομή ξεκίνησε! Μοιραστείτε την ή ηχογραφήστε.", + "There is no data yet.": "Δεν υπάρχουν δεδομένα.", + "There is no help Question here": "Δεν υπάρχει ερώτηση βοήθειας", + "There is no notification yet": "Καμία ειδοποίηση", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "Ποσό από Επιβάτες", + "This amount for all trip I get from Passengers and Collected For me in": "Ποσό που εισπράχθηκε", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "Προγραμματισμένη ειδοποίηση.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Για σκούτερ ή μοτοσυκλέτα.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "Αυτός ο αριθμός έχει ήδη προσκληθεί.", + "This price is": "Η τιμή είναι", + "This price is fixed even if the route changes for the driver.": "Σταθερή τιμή.", + "This price may be changed": "Η τιμή μπορεί να αλλάξει", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Η διαδρομή αναλήφθηκε.", + "This ride type allows changes, but the price may increase": "Αλλαγές επιτρέπονται, η τιμή ίσως αυξηθεί", + "This ride type does not allow changes to the destination or additional stops": "Χωρίς αλλαγές/στάσεις", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Απευθείας διαδρομή, σταθερή τιμή.", + "This trip is for women only": "Μόνο για γυναίκες", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "Ώρα άφιξης", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro 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.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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 Siro support directly.", + "To use Wallet charge it": "Φορτίστε το πορτοφόλι", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Φόρτιση Πορτοφολιού", + "Top up Wallet to continue": "Φορτίστε το Πορτοφόλι για συνέχεια", + "Total Amount:": "Συνολικό Ποσό:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "Διάρκεια Σύνδεσης:", + "Total Cost": "Συνολικό Κόστος", + "Total Cost is": "Total Cost is", + "Total Duration:": "Συνολική Διάρκεια:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "Σύνολο Ωρών μήνα", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "Σύνολο Πόντων", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "Σύνολο μήνα", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Ταξιδέψτε με σύγχρονο, αθόρυβο ηλεκτρικό αυτοκίνητο. Premium και οικολογική επιλογή.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "Διαδρομή Ακυρώθηκε", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Η διαδρομή ακυρώθηκε. Το κόστος θα προστεθεί στο πορτοφόλι σας.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Παρακολούθηση Διαδρομής", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "Η διαδρομή έληξε", + "Trip has Steps": "Διαδρομή με Στάσεις", + "Trip is Begin": "Η διαδρομή ξεκινά", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "Καταγεγραμμένες", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "Τουρκία", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "Πληκτρολογήστε μέρος", + "Type something": "Type something", + "Type something...": "Γράψτε κάτι...", + "Type your Email": "Πληκτρολογήστε το Email", + "Type your message": "Γράψτε μήνυμα", + "Type your message...": "Type your message...", + "Types of Trips in Siro:": "Types of Trips in Siro:", + "USA": "ΗΠΑ", + "Uncompromising Security": "Ασφάλεια", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Ενημέρωση", + "Update Available": "Update Available", + "Update Education": "Ενημέρωση Εκπαίδευσης", + "Update Gender": "Ενημέρωση Φύλου", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "Μεταφορτώθηκε", + "Use Touch ID or Face ID to confirm payment": "Χρήση Touch ID ή Face ID", + "Use code:": "Χρήση κωδικού:", + "Use my invitation code to get a special gift on your first ride!": "Χρησιμοποίησε τον κωδικό μου για δώρο στην πρώτη διαδρομή!", + "Use my referral code:": "Χρησιμοποιήστε τον κωδικό μου:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "Ο χρήστης δεν υπάρχει.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "Υπάρχει ήδη χρήστης με αυτό το τηλέφωνο ή email.", + "Uses cellular network": "Uses cellular network", + "VIN": "Πλαίσιο", + "VIN :": "Πλαίσιο :", + "VIN is": "Πλαίσιο:", + "VIP Order": "VIP Αίτημα", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "Ισχύει έως:", + "Value": "Value", + "Van": "Van", + "Van / Bus": "Van / Bus", + "Van for familly": "Βαν για οικογένεια", + "Variety of Trip Choices": "Ποικιλία", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "Στοιχεία Οχήματος (Πίσω)", + "Vehicle Details Front": "Στοιχεία Οχήματος (Μπροστά)", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "Επιλογές Οχήματος", + "Verification Code": "Κωδικός Επαλήθευσης", + "Verify": "Επαλήθευση", + "Verify Email": "Επαλήθευση Email", + "Verify Email For Driver": "Επαλήθευση Email Οδηγού", + "Verify OTP": "Επαλήθευση OTP", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Δόνηση για όλα τα κουμπιά", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "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 Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "Αναμονή Οδηγού...", + "Waiting for Driver ...": "Αναμονή Οδηγού...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Αναμονή τοποθεσίας", + "Wallet": "Πορτοφόλι", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "Το πορτοφόλι έχει αποκλειστεί", + "Wallet!": "Πορτοφόλι!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing 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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "Επεξεργασία εικόνας, περιμένετε ", + "We are search for nearst driver": "Αναζήτηση οδηγού", + "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 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 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 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 need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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 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 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ψήφιο κωδικό", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "Αναζητούμε νέο οδηγό.\\nΠαρακαλώ περιμένετε.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "Καλώς ήρθατε ξανά!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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 Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Τι οχήματα υπάρχουν;", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "Εξαγωγή Τοποθεσίας WhatsApp", + "When": "Όταν", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "Πού πηγαίνετε;", + "Where are you, sir?": "Where are you, sir?", + "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 Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "Εργασία", + "Work & Contact": "Εργασία & Επικοινωνία", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Ώρες 12:00 - 19:00.\\nΣτείλτε WhatsApp ή email.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "Σημείωση", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "Έτος", + "Year is": "Έτος:", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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 !": "Αποκλεισμός για σήμερα!", + "You Can Cancel Trip And get Cost of Trip From": "Ακύρωση και λήψη κόστους από", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "Ακύρωση αν ο οδηγός αργήσει", + "You Dont Have Any amount in": "Δεν έχετε υπόλοιπο στο", + "You Dont Have Any places yet !": "Κανένα μέρος ακόμα!", + "You Earn today is": "You Earn today is", + "You Have": "Έχετε", + "You Have Tips": "Έχετε φιλοδώρημα", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Απορρίψατε 3 διαδρομές.\\nΤα λέμε αύριο!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "Επιλέξτε λόγο.", + "You Should choose rate figure": "Επιλέξτε βαθμολογία", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "Διαγραφή", + "You are Stopped": "Αποκλεισμός", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "Δεν είστε κοντά στον επιβάτη", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "Αγορά Πόντων για online", + "You can buy points from your budget": "Αγορά πόντων από υπόλοιπο", + "You can call or record audio during this trip.": "Μπορείτε να καλέσετε ή να ηχογραφήσετε κατά τη διαδρομή.", + "You can call or record audio of this trip": "Μπορείτε να καλέσετε ή να ηχογραφήσετε", + "You can cancel Ride now": "Μπορείτε να ακυρώσετε", + "You can cancel trip": "Μπορείτε να ακυρώσετε", + "You can change the Country to get all features": "Αλλάξτε Χώρα για όλα τα χαρακτηριστικά", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Αλλαγή γλώσσας εφαρμογής", + "You can change the vibration feedback for all buttons": "Αλλαγή δόνησης κουμπιών", + "You can claim your gift once they complete 2 trips.": "Μπορείτε να πάρετε το δώρο αφού ολοκληρώσουν 2 διαδρομές.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Μέσω chat.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Επικοινωνήστε 12:00 - 19:00.", + "You can decline a request without any cost": "Απόρριψη χωρίς χρέωση", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Μετρητά ή Κάρτα.", + "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 Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "Αξίζετε το δώρο", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "Δεν προσθέσατε τηλέφωνο έκτακτης ανάγκης!", + "You dont have Points": "Δεν έχετε Πόντους", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "Έχετε ήδη λάβει το δώρο σας", + "You have already used this promo code.": "Χρησιμοποιήσατε τον κωδικό.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "Κλήση από οδηγό", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "Αντιγράψατε τον κωδικό.", + "You have earned 20": "Κερδίσατε 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "Τέλος προσπαθειών", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "Έχετε ένα δώρο πρόσκλησης", + "You have in account": "Έχετε στον λογαριασμό", + "You have promo!": "Έχετε προσφορά!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "Επαληθεύστε το email!", + "You must be charge your Account": "Φορτίστε τον λογαριασμό", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "Επανεκκίνηση για αλλαγή γλώσσας.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "Πρέπει να το ανεβάσετε.", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Επιλέξτε ένα", + "You should select your country": "Επιλέξτε χώρα", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "Απόσταση: ", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "Άφιξη μετά το πέρας του χρόνου.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Πληρωμή στον οδηγό ή στην επόμενη διαδρομή", + "You will be thier in": "Θα είστε εκεί σε", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "Επιλέξτε 'Πάντα' για λήψη παραγγελιών", + "You will choose one of above !": "Επιλέξτε ένα!", + "You will get cost of your work for this trip": "Θα πληρωθείτε για τη διαδρομή", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "Θα λάβετε SMS", + "You will receive a code in WhatsApp Messenger": "Θα λάβετε κωδικό στο WhatsApp", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "Θα λάβετε SMS με κωδικό", + "Your Account is Deleted": "Ο Λογαριασμός Διαγράφηκε", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "Υπόλοιπο χαμηλότερο του απαιτούμενου", + "Your Choice, Our Priority": "Προτεραιότητά μας", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "Είστε μακριά από τον επιβάτη", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "Εφαρμόστηκε επιτυχώς!", + "Your journey starts here": "Το ταξίδι ξεκινά εδώ", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "Το όνομά σας", + "Your order is being prepared": "Προετοιμασία", + "Your order sent to drivers": "Απεστάλη στους οδηγούς", + "Your password": "Your password", + "Your past trips will appear here.": "Οι προηγούμενες διαδρομές θα εμφανιστούν εδώ.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "Ο κωδικός πρόσκλησής σου:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "Κόστος διαδρομής", + "Your trip distance is": "Απόσταση διαδρομής:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nΠροσιτές τιμές για όλους.", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "Αποδοχή Όρων Χρήσης και Πολιτικής Απορρήτου.", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "Προέκυψε σφάλμα: @error", + "and I have a trip on": "και έχω διαδρομή στο", + "and acknowledge our": "και την", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Ασφαλής μετακίνηση.", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "ώρα άφιξης στο σημείο", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "πριν", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "Δέσμευση στην ασφάλεια.", + "complete profile subtitle": "Ολοκληρώστε το προφίλ σας για να ξεκινήσετε", + "complete registration button": "Ολοκλήρωση Εγγραφής", + "complete, you can claim your gift": "ολοκληρώθηκε, λάβετε το δώρο", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "ώρα δημιουργίας", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "απόσταση είναι", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "δίπλωμα_οδήγησης", + "duration is": "διάρκεια είναι", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "Email (Προαιρετικό)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "Εισάγετε τον 5ψήφιο κωδικό OTP", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "Ανίχνευση Προσώπου", + "failed to send otp": "Αποτυχία αποστολής OTP.", + "false": "false", + "first name label": "Όνομα", + "first name required": "Απαιτείται όνομα", + "for": "για", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "για την πρώτη εγγραφή!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 - 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 - 15:00", + "from 23:59 till 05:30": "23:59 - 05:30", + "from 3 times Take Attention": "από 3 φορές, Προσοχή", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "από τη λίστα", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "Βρείτε διαδρομή.", + "get_to_destination": "Φτάστε στον προορισμό.", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "Πηγαίνετε στον επιβάτη πριν ακυρώσει", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "ολοκλήρωσε", + "hi": "hi", + "hour": "ώρα", + "hours before trying again.": "hours before trying again.", + "i agree": "συμφωνώ", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "αν δεν έχετε λογαριασμό", + "if you want help you can email us here": "Στείλτε μας email για βοήθεια", + "image verified": "επαληθεύτηκε", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "εισαγωγή ποσού", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "μπήκε", + "kilometer": "kilometer", + "last name label": "Επώνυμο", + "last name required": "Απαιτείται επώνυμο", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "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 Siro.", + "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 passenger": "Μήνυμα από τον επιβάτη", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "Μοντέλο :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "τοποθεσία μου", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "Μη παρόμοιο", + "of": "από", + "on": "on", + "one last step title": "Ένα τελευταίο βήμα", + "otp sent subtitle": "Ένας 5ψήφιος κωδικός στάλθηκε στο\\n@phoneNumber", + "otp sent success": "Ο κωδικός στάλθηκε στο WhatsApp.", + "otp verification failed": "Η επαλήθευση OTP απέτυχε.", + "passenger agreement": "συμφωνία επιβάτη", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "Αριθμός Τηλεφώνου", + "phone number of driver": "phone number of driver", + "phone number required": "Απαιτείται αριθμός τηλεφώνου", + "please go to picker location exactly": "πηγαίνετε ακριβώς στο σημείο παραλαβής", + "please order now": "Κάντε αίτημα τώρα", + "please wait till driver accept your order": "περιμένετε την αποδοχή", + "points": "points", + "price is": "τιμή είναι", + "privacy policy": "πολιτική απορρήτου.", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "Η εγγραφή απέτυχε.", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "Ασφάλεια και άνεση.", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "δευτερόλεπτα", + "security_warning": "security_warning", + "send otp button": "Αποστολή Κωδικού OTP", + "server error try again": "Σφάλμα διακομιστή, προσπαθήστε ξανά.", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "Παρόμοιο", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "όρους χρήσης", + "the 300 points equal 300 L.E": "300 πόντοι = 300 €", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "500 πόντοι ισούνται με 30 €", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "διαγραφή όλων των αρχείων", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "Αλλαγή Token", + "token updated": "token ενημερώθηκε", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "διαδρομές", + "true": "true", + "type here": "γράψτε εδώ", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "Επαλήθευση και Συνέχεια", + "verify your number title": "Επαληθεύστε τον αριθμό σας", + "vin": "vin", + "wait 1 minute to receive message": "περιμένετε 1 λεπτό", + "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 siro", + "welcome user": "Καλώς ήρθες, @firstName!", + "welcome_message": "Καλώς ήρθατε στο Intaleq!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "εισάγετε χρώμα", + "write Expiration Date for your car": "εισάγετε ημερομηνία λήξης", + "write Make for your car": "εισάγετε μάρκα", + "write Model for your car": "εισάγετε μοντέλο", + "write Year for your car": "εισάγετε έτος", + "write comment here": "write comment here", + "write vin for your car": "εισάγετε πλαίσιο", + "year :": "Έτος :", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "κερδίσατε", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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 Siro Wallet", + "you will use this device?": "you will use this device?", + "your ride is Accepted": "Η διαδρομή έγινε δεκτή", + "your ride is applied": "η διαδρομή καταχωρήθηκε", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "Ημ. Λήξης", + "⚠️ You need to choose an amount!": "⚠️ Επιλέξτε ποσό!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 Πληρωμή με Πορτοφόλι", + "💳 Pay with Credit Card": "💳 Πληρωμή με Κάρτα", +}; diff --git a/siro_driver/lib/controller/local/en.dart b/siro_driver/lib/controller/local/en.dart new file mode 100644 index 0000000..c39a033 --- /dev/null +++ b/siro_driver/lib/controller/local/en.dart @@ -0,0 +1,2662 @@ +final Map en = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " and acknowledge our Privacy Policy.", + " is ON for this month": " is ON for this month", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. Describe Your Issue", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 and get 4% discount", + "100 and get 11% discount": "100 and get 11% discount", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. Attach Recorded Audio", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 and get 6% discount", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. Review Details & Response", + "300 LE": "300 LE", + "3000 LE": "3000 LE", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 and get 8% discount", + "5 digit": "5 digit", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "A trip with a prior reservation, allowing you to choose the best captains and cars.", + "AI Page": "AI Page", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "About Us", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "Accept Order", + "Accept Ride": "Accept Ride", + "Accepted Ride": "Accepted Ride", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "Active Duration:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "Add Card", + "Add Credit Card": "Add Credit Card", + "Add Home": "Add Home", + "Add Location": "Add Location", + "Add Location 1": "Add Location 1", + "Add Location 2": "Add Location 2", + "Add Location 3": "Add Location 3", + "Add Location 4": "Add Location 4", + "Add Payment Method": "Add Payment Method", + "Add Phone": "Add Phone", + "Add Promo": "Add Promo", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Add Stops", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "Add funds using our secure methods", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Address", + "Address:": "Address:", + "Admin DashBoard": "Admin DashBoard", + "Affordable for Everyone": "Affordable for Everyone", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "Alerts", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "Allow Location Access", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "An error occurred during the payment process.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "An error occurred while picking contacts:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "An unexpected error occurred. Please try again.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "App with Passenger", + "Applied": "Applied", + "Apply": "Apply", + "Apply Order": "Apply Order", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "Approaching your area. Should be there in 3 minutes.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "Are You sure to ride to", + "Are you Sure to LogOut?": "Are you Sure to LogOut?", + "Are you sure to cancel?": "Are you sure to cancel?", + "Are you sure to delete recorded files": "Are you sure to delete recorded files", + "Are you sure to delete this location?": "Are you sure to delete this location?", + "Are you sure to delete your account?": "Are you sure to delete your account?", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "Are you sure? This action cannot be undone.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Are you want to go this site", + "Are you want to go to this site": "Are you want to go to this site", + "Are you want to wait drivers to accept your order": "Are you want to wait drivers to accept your order", + "Arrival time": "Arrival time", + "Associate Degree": "Associate Degree", + "Attach this audio file?": "Attach this audio file?", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Audio uploaded successfully.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "Available for rides", + "Average of Hours of": "Average of Hours of", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Awfar Car", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "Bahrain", + "Balance": "Balance", + "Balance limit exceeded": "Balance limit exceeded", + "Balance not enough": "Balance not enough", + "Balance:": "Balance:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "Be Slowly", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure to use it quickly! This code expires at": "Be sure to use it quickly! This code expires at", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Because we are near, you have the flexibility to choose the ride that works best for you.", + "Before we start, please review our terms.": "Before we start, please review our terms.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Best choice for cities", + "Best choice for comfort car and flexible route and stops point": "Best choice for comfort car and flexible route and stops point", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "Birth Date", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "BookingFee", + "Bottom Bar Example": "Bottom Bar Example", + "But you have a negative salary of": "But you have a negative salary of", + "CODE": "CODE", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "Call End", + "Call Ended": "Call Ended", + "Call Income": "Call Income", + "Call Income from Driver": "Call Income from Driver", + "Call Income from Passenger": "Call Income from Passenger", + "Call Left": "Call Left", + "Call Options": "Call Options", + "Call Page": "Call Page", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "Camera Access Denied.", + "Camera not initialized yet": "Camera not initialized yet", + "Camera not initilaized yet": "Camera not initilaized yet", + "Can I cancel my ride?": "Can I cancel my ride?", + "Can we know why you want to cancel Ride ?": "Can we know why you want to cancel Ride ?", + "Cancel": "Cancel", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "Cancel Ride", + "Cancel Search": "Cancel Search", + "Cancel Trip": "Cancel Trip", + "Cancel Trip from driver": "Cancel Trip from driver", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "Canceled", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "Cannot apply further discounts.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Capture an Image of Your Criminal Record", + "Capture an Image of Your Driver License": "Capture an Image of Your Driver License", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "Capture an Image of Your ID Document Back", + "Capture an Image of Your ID Document front": "Capture an Image of Your ID Document front", + "Capture an Image of Your car license back": "Capture an Image of Your car license back", + "Capture an Image of Your car license front": "Capture an Image of Your car license front", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "Car", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "Car Details", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "Car License Card", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "Card Number", + "Card Payment": "Card Payment", + "CardID": "CardID", + "Cash": "Cash", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "Change Country", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "Chassis", + "Check back later for new offers!": "Check back later for new offers!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "Choose Language", + "Choose a contact option": "Choose a contact option", + "Choose between those Type Cars": "Choose between those Type Cars", + "Choose from Map": "Choose from Map", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "Choose the trip option that perfectly suits your needs and preferences.", + "Choose who this order is for": "Choose who this order is for", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "City", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "Claim your 20 LE gift for inviting", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "Click here to Show it in Map", + "Close": "Close", + "Closest & Cheapest": "Closest & Cheapest", + "Closest to You": "Closest to You", + "Code": "Code", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "Code not approved", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "Color", + "Color is": "Color is", + "Comfort": "Comfort", + "Comfort choice": "Comfort choice", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "Communication", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "Complaint", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Complaint cannot be filed for this ride. It may not have been completed or started.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "Confirm", + "Confirm & Find a Ride": "Confirm & Find a Ride", + "Confirm Attachment": "Confirm Attachment", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "Confirm Selection", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "Confirm your Email", + "Confirmation": "Confirmation", + "Connected": "Connected", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "Contact Options", + "Contact Support": "Contact Support", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "Contact Us", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "Contact permission is required to pick contacts", + "Contact us for any questions on your order.": "Contact us for any questions on your order.", + "Contacts Loaded": "Contacts Loaded", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "Continue", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "Copy", + "Copy Code": "Copy Code", + "Copy this Promo to use it in your Ride!": "Copy this Promo to use it in your Ride!", + "Cost": "Cost", + "Cost Duration": "Cost Duration", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "Counts of Hours on days", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "Create Wallet to receive your money", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "Criminal Document Required", + "Criminal Record": "Criminal Record", + "Cropper": "Cropper", + "Current Balance": "Current Balance", + "Current Location": "Current Location", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Customer not found", + "Customer phone is not active": "Customer phone is not active", + "DISCOUNT": "DISCOUNT", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "Date", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "Date of Birth is", + "Date of Birth:": "Date of Birth:", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "Delete My Account", + "Delete Permanently": "Delete Permanently", + "Deleted": "Deleted", + "Delivery": "Delivery", + "Destination": "Destination", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "Detect Your Face ", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "Displacement", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "Do you have an invitation code from another driver?", + "Do you want to change Home location": "Do you want to change Home location", + "Do you want to change Work location": "Do you want to change Work location", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "Do you want to pay Tips for this Driver", + "Docs": "Docs", + "Doctoral Degree": "Doctoral Degree", + "Document Number:": "Document Number:", + "Documents check": "Documents check", + "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 Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Download the app now:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Driver", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "Driver Accepted the Ride for You", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "Driver Applied the Ride for You", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "Driver Cancelled Your Trip", + "Driver Car Plate": "Driver Car Plate", + "Driver Finish Trip": "Driver Finish Trip", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "Driver Is Going To Passenger", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "Driver Name", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "Driver Registration", + "Driver Registration & Requirements": "Driver Registration & Requirements", + "Driver Wallet": "Driver Wallet", + "Driver already has 2 trips within the specified period.": "Driver already has 2 trips within the specified period.", + "Driver is on the way": "Driver is on the way", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "Driver is waiting at pickup.", + "Driver joined the channel": "Driver joined the channel", + "Driver left the channel": "Driver left the channel", + "Driver phone": "Driver phone", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "Drivers License Class", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "Duration is", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "Edit Profile", + "Edit Your data": "Edit Your data", + "Education": "Education", + "Egypt": "Egypt", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "Electric", + "Email": "Email", + "Email Us": "Email Us", + "Email Wrong": "Email Wrong", + "Email is": "Email is", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "Email you inserted is Wrong.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "Employment Type", + "Enable Location": "Enable Location", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "End Ride", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "Enjoy a safe and comfortable ride.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Enjoy competitive prices across all trip options, making travel accessible.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "Enter Your First Name", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "Enter phone", + "Enter phone number": "Enter phone number", + "Enter promo code": "Enter promo code", + "Enter promo code here": "Enter promo code here", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "Enter the promo code and get", + "Enter your City": "Enter your City", + "Enter your Note": "Enter your Note", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Enter your complaint here...", + "Enter your email": "Enter your email", + "Enter your email address": "Enter your email address", + "Enter your feedback here": "Enter your feedback here", + "Enter your first name": "Enter your first name", + "Enter your last name": "Enter your last name", + "Enter your password": "Enter your password", + "Enter your phone number": "Enter your phone number", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "Error", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "Expiration Date", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "Expiry Date", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "Face Detection Result", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "Fastest Complaint Response", + "Favorite Places": "Favorite Places", + "Fee is": "Fee is", + "Feed Back": "Feed Back", + "Feedback": "Feedback", + "Feedback data saved successfully": "Feedback data saved successfully", + "Female": "Female", + "Find answers to common questions": "Find answers to common questions", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "Finish Monitor", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "First Name", + "First Trip": "First Trip", + "First name": "First name", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "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 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 Siro 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", + "Fri": "Fri", + "From": "From", + "From :": "From :", + "From : Current Location": "From : Current Location", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "Fuel", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "Full Name (Marital)", + "FullName": "FullName", + "GPS Required Allow !.": "GPS Required Allow !.", + "Gender": "Gender", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "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 Siro 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.", + "Getting Started": "Getting Started", + "Gift Already Claimed": "Gift Already Claimed", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "Go To Favorite Places", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "Go to passenger Location now", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "Go to this Target", + "Go to this location": "Go to this location", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "H and", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "Have a promo code?", + "Head": "Head", + "Heading your way now. Please be ready.": "Heading your way now. Please be ready.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "Hello this is Captain", + "Hello this is Driver": "Hello this is Driver", + "Help & Support": "Help & Support", + "Help Details": "Help Details", + "Helping Center": "Helping Center", + "Helping Page": "Helping Page", + "Here recorded trips audio": "Here recorded trips audio", + "Hi": "Hi", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Hi ,I will go now", + "Hi! This is": "Hi! This is", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "High School Diploma", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "History of Trip", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "How can I pay for my ride?", + "How can I register as a driver?": "How can I register as a driver?", + "How do I communicate with the other party (passenger/driver)?": "How do I communicate with the other party (passenger/driver)?", + "How do I request a ride?": "How do I request a ride?", + "How many hours would you like to wait?": "How many hours would you like to wait?", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "I Agree", + "I Arrive": "I Arrive", + "I Arrive your site": "I Arrive your site", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "I added the wrong pick-up/drop-off location", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "I arrive you", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "I cant register in your app in face detection ", + "I want to order for myself": "I want to order for myself", + "I want to order for someone else": "I want to order for someone else", + "I was just trying the application": "I was just trying the application", + "I will go now": "I will go now", + "I will slow down": "I will slow down", + "I've arrived.": "I've arrived.", + "ID Documents Back": "ID Documents Back", + "ID Documents Front": "ID Documents Front", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "If you in Car Now. Press Start The Ride", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "If you need assistance, contact us", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "If you want add stop click here", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "If you want to make Google Map App run directly when you apply order", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "Image detecting result is ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "In-App VOIP Calls", + "Including Tax": "Including Tax", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "Incorrect sms code", + "Increase Fare": "Increase Fare", + "Increase Fee": "Increase Fee", + "Increase Your Trip Fee (Optional)": "Increase Your Trip Fee (Optional)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Increasing the fare might attract more drivers. Would you like to increase the price?", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "Insert", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "Insert Emergincy Number", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Insert Your Promo Code", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "Inspection Date", + "InspectionResult": "InspectionResult", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "Invalid MPIN", + "Invalid OTP": "Invalid OTP", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "Invitation Used", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "Invite sent successfully", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "Is the Passenger in your Car ?", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "Issue Date", + "IssueDate": "IssueDate", + "JOD": "JOD", + "Join": "Join", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "Jordan", + "Just now": "Just now", + "KM": "KM", + "Keep it up!": "Keep it up!", + "Kuwait": "Kuwait", + "L.E": "L.E", + "L.S": "L.S", + "LE": "LE", + "Lady": "Lady", + "Lady Captain for girls": "Lady Captain for girls", + "Lady Captains Available": "Lady Captains Available", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "Language", + "Language Options": "Language Options", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "Last name", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "Latest Recent Trip", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Leave", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "Lets check Car license ", + "Lets check License Back Face": "Lets check License Back Face", + "License Categories": "License Categories", + "License Expiry Date": "License Expiry Date", + "License Type": "License Type", + "Link a phone number for transfers": "Link a phone number for transfers", + "Location Access Required": "Location Access Required", + "Location Link": "Location Link", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "Log Off", + "Log Out Page": "Log Out Page", + "Login": "Login", + "Login Captin": "Login Captin", + "Login Driver": "Login Driver", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "Lowest Price Achieved", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "Made :", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "Make", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "Male", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "Map Passenger", + "Marital Status": "Marital Status", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "Maximum fare", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Minimum fare", + "Minute": "Minute", + "Minutes": "Minutes", + "Mishwar Vip": "Mishwar Vip", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "Model", + "Model is": "Model is", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "Morning", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "Most Secure Methods", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "Move the map to adjust the pin", + "Mute": "Mute", + "My Balance": "My Balance", + "My Card": "My Card", + "My Cared": "My Cared", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "My Profile", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "My current location is:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "MyLocation", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "Name", + "Name (Arabic)": "Name (Arabic)", + "Name (English)": "Name (English)", + "Name :": "Name :", + "Name in arabic": "Name in arabic", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "National ID", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "National Number", + "NationalID": "NationalID", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "Next", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "Night", + "No": "No", + "No ,still Waiting.": "No ,still Waiting.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "No Car in your site. Sorry!", + "No Car or Driver Found in your area.": "No Car or Driver Found in your area.", + "No I want": "No I want", + "No Promo for today .": "No Promo for today .", + "No Response yet.": "No Response yet.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.", + "No accepted orders? Try raising your trip fee to attract riders.": "No accepted orders? Try raising your trip fee to attract riders.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "No audio files found.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "No contacts found", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "No contacts with phone numbers were found on your device.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "No driver accepted my request", + "No drivers accepted your request yet": "No drivers accepted your request yet", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "No face detected", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "No image selected yet", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "No invitation found yet!", + "No one accepted? Try increasing the fare.": "No one accepted? Try increasing the fare.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "No passenger found for the given phone number", + "No phone number": "No phone number", + "No promos available right now.": "No promos available right now.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "No ride found yet", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "No trip history found", + "No trip yet found": "No trip yet found", + "No user found for the given phone number": "No user found for the given phone number", + "No wallet record found": "No wallet record found", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "No, thanks", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "Not Connected", + "Not set": "Not set", + "Not updated": "Not updated", + "Notifications": "Notifications", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "Occupation", + "Offline": "Offline", + "Ok": "Ok", + "Ok , See you Tomorrow": "Ok , See you Tomorrow", + "Ok I will go now.": "Ok I will go now.", + "Old and affordable, perfect for budget rides.": "Old and affordable, perfect for budget rides.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "Open Settings", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "Or pay with Cash instead", + "Order": "Order", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "Order Applied", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Order Cancelled by Passenger", + "Order Details Siro": "Order Details Siro", + "Order History": "Order History", + "Order ID": "Order ID", + "Order Request Page": "Order Request Page", + "Order Under Review": "Order Under Review", + "Order for myself": "Order for myself", + "Order for someone else": "Order for someone else", + "OrderId": "OrderId", + "OrderVIP": "OrderVIP", + "Orders Page": "Orders Page", + "Origin": "Origin", + "Original Fare": "Original Fare", + "Other": "Other", + "Our dedicated customer service team ensures swift resolution of any issues.": "Our dedicated customer service team ensures swift resolution of any issues.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "Owner Name", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "Passenger Cancel Trip", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "Passenger come to you", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "Password must br at least 6 character.", + "Paste WhatsApp location link": "Paste WhatsApp location link", + "Paste location link here": "Paste location link here", + "Paste the code here": "Paste the code here", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Pay directly to the captain", + "Pay from my budget": "Pay from my budget", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "Pay with Credit Card", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "Pay with Wallet", + "Pay with Your": "Pay with Your", + "Pay with Your PayPal": "Pay with Your PayPal", + "Payment Failed": "Payment Failed", + "Payment History": "Payment History", + "Payment Method": "Payment Method", + "Payment Method:": "Payment Method:", + "Payment Options": "Payment Options", + "Payment Successful": "Payment Successful", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "Payments", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "Perfect for adventure seekers who want to experience something new and exciting", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire", + "Permission denied": "Permission denied", + "Personal Information": "Personal Information", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Phone Number is", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "Pick from map", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "Pick your destination from Map", + "Pick your ride location on the map - Tap to confirm": "Pick your ride location on the map - Tap to confirm", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "Plate", + "Plate Number": "Plate Number", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "Please Wait If passenger want To Cancel!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "Please enter", + "Please enter Your Email.": "Please enter Your Email.", + "Please enter Your Password.": "Please enter Your Password.", + "Please enter a correct phone": "Please enter a correct phone", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "Please enter a phone number", + "Please enter a valid 16-digit card number": "Please enter a valid 16-digit card number", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Please enter a valid promo code", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Please enter the CVV code", + "Please enter the cardholder name": "Please enter the cardholder name", + "Please enter the complete 6-digit code.": "Please enter the complete 6-digit code.", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "Please enter the expiry date", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Please enter your City.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "Please enter your Question.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Please enter your feedback.", + "Please enter your first name.": "Please enter your first name.", + "Please enter your last name.": "Please enter your last name.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Please enter your phone number.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "Please go to Car Driver", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "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 Siro 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", + "Please select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "Please verify your identity", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "Please wait for the passenger to enter the car before starting the trip.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "Point", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Privacy Policy", + "Profile": "Profile", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "Promo", + "Promo Already Used": "Promo Already Used", + "Promo Code": "Promo Code", + "Promo Code Accepted": "Promo Code Accepted", + "Promo Copied!": "Promo Copied!", + "Promo End !": "Promo End !", + "Promo Ended": "Promo Ended", + "Promo code copied to clipboard!": "Promo code copied to clipboard!", + "Promos": "Promos", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "Pyament Cancelled .", + "Qatar": "Qatar", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "Quick Actions", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "Quiet & Eco-Friendly", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "Rate Captain", + "Rate Driver": "Rate Driver", + "Rate Our App": "Rate Our App", + "Rate Passenger": "Rate Passenger", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "Rayeh Gai", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.", + "Reason": "Reason", + "Recent Places": "Recent Places", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "Recharge my Account", + "Record": "Record", + "Record saved": "Record saved", + "Recorded Trips (Voice & AI Analysis)": "Recorded Trips (Voice & AI Analysis)", + "Recorded Trips for Safety": "Recorded Trips for Safety", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "Refuse Order", + "Refused": "Refused", + "Register": "Register", + "Register Captin": "Register Captin", + "Register Driver": "Register Driver", + "Register as Driver": "Register as Driver", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Religion", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "Resend Code", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "Ride Management", + "Ride Status": "Ride Status", + "Ride Summaries": "Ride Summaries", + "Ride Summary": "Ride Summary", + "Ride Today :": "Ride Today :", + "Ride Wallet": "Ride Wallet", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "Rides", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "Rouats of Trip", + "Route Not Found": "Route Not Found", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "SOS Phone", + "SUBMIT": "SUBMIT", + "SYP": "SYP", + "Safety & Security": "Safety & Security", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "Saudi Arabia", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "Save Credit Card", + "Saved Sucssefully": "Saved Sucssefully", + "Scan Driver License": "Scan Driver License", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "Scan ID MklGoogle", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "Scan Id", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Scooter", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "Search for waypoint", + "Search for your Start point": "Search for your Start point", + "Search for your destination": "Search for your destination", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "Searching for the nearest captain...", + "Security Warning": "Security Warning", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "See you on the road!", + "Select Country": "Select Country", + "Select Date": "Select Date", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "Select Order Type", + "Select Payment Amount": "Select Payment Amount", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "Select Time", + "Select Waiting Hours": "Select Waiting Hours", + "Select Your Country": "Select Your Country", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "Select one message", + "Select recorded trip": "Select recorded trip", + "Select your destination": "Select your destination", + "Select your preferred language for the app interface.": "Select your preferred language for the app interface.", + "Selected Date": "Selected Date", + "Selected Date and Time": "Selected Date and Time", + "Selected Location": "Selected Location", + "Selected Time": "Selected Time", + "Selected driver": "Selected driver", + "Selected file:": "Selected file:", + "Send Email": "Send Email", + "Send Invite": "Send Invite", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Send Verfication Code", + "Send Verification Code": "Send Verification Code", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Send a custom message", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Session expired. Please log in again.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Set Wallet Phone Number", + "Set pickup location": "Set pickup location", + "Setting": "Setting", + "Settings": "Settings", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "Share App", + "Share Code": "Share Code", + "Share Trip Details": "Share Trip Details", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "Share this code with your friends and earn rewards when they use it!", + "Share via": "Share via", + "Share with friends and earn rewards": "Share with friends and earn rewards", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Show Invitations", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "Show Promos", + "Show Promos to Charge": "Show Promos to Charge", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "Show latest promo", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "Showing", + "Sign In by Apple": "Sign In by Apple", + "Sign In by Google": "Sign In by Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Sign Out", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "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": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "Start Record", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "Start the Ride", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "Statistics", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "Submit ", + "Submit Complaint": "Submit Complaint", + "Submit Question": "Submit Question", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "Submit a Complaint", + "Submit rating": "Submit rating", + "Success": "Success", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "Switch Rider", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "Syria", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "Take Image", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "Take Picture Of Driver License Card", + "Take Picture Of ID Card": "Take Picture Of ID Card", + "Tap on the promo code to copy it!": "Tap on the promo code to copy it!", + "Tap to upload": "Tap to upload", + "Target": "Target", + "Tariff": "Tariff", + "Tariffs": "Tariffs", + "Tax Expiry Date": "Tax Expiry Date", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "Thanks", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "The Driver Will be in your location soon .", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "The captain is responsible for the route.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "The distance less than 500 meter.", + "The driver accept your order for": "The driver accept your order for", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "The driver accepted your trip", + "The driver canceled your ride.": "The driver canceled your ride.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "The driver on your way", + "The driver waiting you in picked location .": "The driver waiting you in picked location .", + "The driver waitting you in picked location .": "The driver waitting you in picked location .", + "The drivers are reviewing your request": "The drivers are reviewing your request", + "The email or phone number is already registered.": "The email or phone number is already registered.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "The invitation was sent successfully", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "The order Accepted by another Driver", + "The order has been accepted by another driver.": "The order has been accepted by another driver.", + "The payment was approved.": "The payment was approved.", + "The payment was not approved. Please try again.": "The payment was not approved. Please try again.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "The price may increase if the route changes.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "The promotion period has ended.", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey", + "There is no data yet.": "There is no data yet.", + "There is no help Question here": "There is no help Question here", + "There is no notification yet": "There is no notification yet", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "This amount for all trip I get from Passengers", + "This amount for all trip I get from Passengers and Collected For me in": "This amount for all trip I get from Passengers and Collected For me in", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "This is a scheduled notification.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "This is for scooter or a motorcycle.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "This phone number has already been invited.", + "This price is": "This price is", + "This price is fixed even if the route changes for the driver.": "This price is fixed even if the route changes for the driver.", + "This price may be changed": "This price may be changed", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "This ride is already taken by another driver.", + "This ride type allows changes, but the price may increase": "This ride type allows changes, but the price may increase", + "This ride type does not allow changes to the destination or additional stops": "This ride type does not allow changes to the destination or additional stops", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route", + "This trip is for women only": "This trip is for women only", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "Time to arrive", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro 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.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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 Siro support directly.", + "To use Wallet charge it": "To use Wallet charge it", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Top up Wallet", + "Top up Wallet to continue": "Top up Wallet to continue", + "Total Amount:": "Total Amount:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "Total Connection Duration:", + "Total Cost": "Total Cost", + "Total Cost is": "Total Cost is", + "Total Duration:": "Total Duration:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "Total Hours on month", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "Total Points is", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "Total budgets on month", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "Trip Cancelled", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Trip Cancelled. The cost of the trip will be added to your wallet.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Trip Monitoring", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "Trip finished", + "Trip has Steps": "Trip has Steps", + "Trip is Begin": "Trip is Begin", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "Trips recorded", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "Turkey", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "Type here Place", + "Type something": "Type something", + "Type something...": "Type something...", + "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 Siro:", + "USA": "USA", + "Uncompromising Security": "Uncompromising Security", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Update", + "Update Available": "Update Available", + "Update Education": "Update Education", + "Update Gender": "Update Gender", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "Uploaded", + "Use Touch ID or Face ID to confirm payment": "Use Touch ID or Face ID to confirm payment", + "Use code:": "Use code:", + "Use my invitation code to get a special gift on your first ride!": "Use my invitation code to get a special gift on your first ride!", + "Use my referral code:": "Use my referral code:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "User does not exist.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "User with this phone number or email already exists.", + "Uses cellular network": "Uses cellular network", + "VIN": "VIN", + "VIN :": "VIN :", + "VIN is": "VIN is", + "VIP Order": "VIP Order", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "Valid Until:", + "Value": "Value", + "Van": "Van", + "Van / Bus": "Van / Bus", + "Van for familly": "Van for familly", + "Variety of Trip Choices": "Variety of Trip Choices", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "Vehicle Details Back", + "Vehicle Details Front": "Vehicle Details Front", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "Vehicle Options", + "Verification Code": "Verification Code", + "Verify": "Verify", + "Verify Email": "Verify Email", + "Verify Email For Driver": "Verify Email For Driver", + "Verify OTP": "Verify OTP", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Vibration feedback for all buttons", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "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 Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "Waiting for Captin ...", + "Waiting for Driver ...": "Waiting for Driver ...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Waiting for your location", + "Wallet": "Wallet", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "Wallet is blocked", + "Wallet!": "Wallet!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing 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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "We are process picture please wait ", + "We are search for nearst driver": "We are search for nearst driver", + "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 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 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 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:", + "We need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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 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 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", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "Welcome Back!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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 Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "What types of vehicles are available?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "WhatsApp Location Extractor", + "When": "When", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "Where are you going?", + "Where are you, sir?": "Where are you, sir?", + "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 Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "Work", + "Work & Contact": "Work & Contact", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "Write note", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "Year", + "Year is": "Year is", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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 !", + "You Can Cancel Trip And get Cost of Trip From": "You Can Cancel Trip And get Cost of Trip From", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "You Can cancel Ride After Captain did not come in the time", + "You Dont Have Any amount in": "You Dont Have Any amount in", + "You Dont Have Any places yet !": "You Dont Have Any places yet !", + "You Earn today is": "You Earn today is", + "You Have": "You Have", + "You Have Tips": "You Have Tips", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "You Should be select reason.", + "You Should choose rate figure": "You Should choose rate figure", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "You are Delete", + "You are Stopped": "You are Stopped", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "You are not in near to passenger location", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy points from your budget": "You can buy points from your budget", + "You can call or record audio during this trip.": "You can call or record audio during this trip.", + "You can call or record audio of this trip": "You can call or record audio of this trip", + "You can cancel Ride now": "You can cancel Ride now", + "You can cancel trip": "You can cancel trip", + "You can change the Country to get all features": "You can change the Country to get all features", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "You can change the language of the app", + "You can change the vibration feedback for all buttons": "You can change the vibration feedback for all buttons", + "You can claim your gift once they complete 2 trips.": "You can claim your gift once they complete 2 trips.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "You can contact us during working hours from 12:00 - 19:00.", + "You can decline a request without any cost": "You can decline a request without any cost", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.", + "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 Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "You deserve the gift", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "You dont Add Emergency Phone Yet!", + "You dont have Points": "You dont have Points", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "You have already received your gift for inviting", + "You have already used this promo code.": "You have already used this promo code.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "You have call from driver", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "You have copied the promo code.", + "You have earned 20": "You have earned 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "You have finished all times ", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "You have got a gift for invitation", + "You have in account": "You have in account", + "You have promo!": "You have promo!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "You must Verify email !.", + "You must be charge your Account": "You must be charge your Account", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "You must restart the app to change the language.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "You should have upload it .", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "You should select one", + "You should select your country": "You should select your country", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "You trip distance is", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "You will arrive to your destination after timer end.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "You will be pay the cost to driver or we will get it from you on next trip", + "You will be thier in": "You will be thier in", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "You will choose allow all the time to be ready receive orders", + "You will choose one of above !": "You will choose one of above !", + "You will get cost of your work for this trip": "You will get cost of your work for this trip", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "You will receive a code in SMS message", + "You will receive a code in WhatsApp Messenger": "You will receive a code in WhatsApp Messenger", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "You will recieve code in sms message", + "Your Account is Deleted": "Your Account is Deleted", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "Your Budget less than needed", + "Your Choice, Our Priority": "Your Choice, Our Priority", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "Your are far from passenger location", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "Your invite code was successfully applied!", + "Your journey starts here": "Your journey starts here", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "Your name", + "Your order is being prepared": "Your order is being prepared", + "Your order sent to drivers": "Your order sent to drivers", + "Your password": "Your password", + "Your past trips will appear here.": "Your past trips will appear here.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "Your personal invitation code is:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "Your trip cost is", + "Your trip distance is": "Your trip distance is", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "agreement subtitle", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "an error occurred", + "and I have a trip on": "and I have a trip on", + "and acknowledge our": "and acknowledge our", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "app_description", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "arrival time to reach your point", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "before", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "committed_to_safety", + "complete profile subtitle": "complete profile subtitle", + "complete registration button": "complete registration button", + "complete, you can claim your gift": "complete, you can claim your gift", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "created time", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "distance is", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "driver_license", + "duration is": "duration is", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "email optional label", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "enter otp validation", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "face detect", + "failed to send otp": "failed to send otp", + "false": "false", + "first name label": "first name label", + "first name required": "first name required", + "for": "for", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "for your first registration!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)", + "from 23:59 till 05:30": "from 23:59 till 05:30", + "from 3 times Take Attention": "from 3 times Take Attention", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "from your list", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "get_a_ride", + "get_to_destination": "get_to_destination", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "has completed", + "hi": "hi", + "hour": "hour", + "hours before trying again.": "hours before trying again.", + "i agree": "i agree", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "if you dont have account", + "if you want help you can email us here": "if you want help you can email us here", + "image verified": "image verified", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "insert amount", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "joined", + "kilometer": "kilometer", + "last name label": "last name label", + "last name required": "last name required", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "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 Siro.", + "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", + "message From passenger": "message From passenger", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "model :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "my location", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "not similar", + "of": "of", + "on": "on", + "one last step title": "one last step title", + "otp sent subtitle": "otp sent subtitle", + "otp sent success": "otp sent success", + "otp verification failed": "otp verification failed", + "passenger agreement": "passenger agreement", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "phone number label", + "phone number of driver": "phone number of driver", + "phone number required": "phone number required", + "please go to picker location exactly": "please go to picker location exactly", + "please order now": "please order now", + "please wait till driver accept your order": "please wait till driver accept your order", + "points": "points", + "price is": "price is", + "privacy policy": "privacy policy", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "registration failed", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "safe_and_comfortable", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "seconds", + "security_warning": "security_warning", + "send otp button": "send otp button", + "server error try again": "server error try again", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "similar", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "terms of use", + "the 300 points equal 300 L.E": "the 300 points equal 300 L.E", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "the 500 points equal 30 JOD", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "this will delete all files from your device", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "token change", + "token updated": "token updated", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "trips", + "true": "true", + "type here": "type here", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "verify and continue button", + "verify your number title": "verify your number title", + "vin": "vin", + "wait 1 minute to receive message": "wait 1 minute to receive message", + "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 siro", + "welcome user": "welcome user", + "welcome_message": "welcome_message", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "write Color for your car", + "write Expiration Date for your car": "write Expiration Date for your car", + "write Make for your car": "write Make for your car", + "write Model for your car": "write Model for your car", + "write Year for your car": "write Year for your car", + "write comment here": "write comment here", + "write vin for your car": "write vin for your car", + "year :": "year :", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "you gain", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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 Siro 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", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "ُExpire Date", + "⚠️ You need to choose an amount!": "⚠️ You need to choose an amount!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 Pay with Wallet", + "💳 Pay with Credit Card": "💳 Pay with Credit Card", +}; diff --git a/siro_driver/lib/controller/local/es.dart b/siro_driver/lib/controller/local/es.dart new file mode 100644 index 0000000..e50e1c3 --- /dev/null +++ b/siro_driver/lib/controller/local/es.dart @@ -0,0 +1,2662 @@ +final Map es = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " y reconozca nuestra política de privacidad.", + " is ON for this month": " está activo este mes", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". Tengo al menos 18 años.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. Describa su problema", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 y obtén un 4% de descuento", + "100 and get 11% discount": "100 y obtén un 11% de descuento", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. Adjuntar audio grabado", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 y obtén un 6% de descuento", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. Revisar detalles y respuesta", + "300 LE": "300 LE", + "3000 LE": "3000 LE", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 y obtén un 8% de descuento", + "5 digit": "5 dígitos", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "Hay una nueva versión de la aplicación disponible. Por favor, actualiza a la última versión.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Un viaje con reserva previa, que te permite elegir a los mejores capitanes y coches.", + "AI Page": "Página de IA", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "Sobre nosotros", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "Aceptar pedido", + "Accept Ride": "Accept Ride", + "Accepted Ride": "Viaje aceptado", + "Accepted your order": "Tu pedido ha sido aceptado", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "Duración activa:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "Añadir tarjeta", + "Add Credit Card": "Añadir tarjeta de crédito", + "Add Home": "Añadir casa", + "Add Location": "Añadir ubicación", + "Add Location 1": "Añadir ubicación 1", + "Add Location 2": "Añadir ubicación 2", + "Add Location 3": "Añadir ubicación 3", + "Add Location 4": "Añadir ubicación 4", + "Add Payment Method": "Añadir método de pago", + "Add Phone": "Añadir teléfono", + "Add Promo": "Añadir promoción", + "Add Question": "Add Question", + "Add SOS Phone": "Añadir teléfono SOS", + "Add Stops": "Añadir paradas", + "Add Work": "Añadir trabajo", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "Add funds using our secure methods", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Añade el teléfono de la billetera que usas", + "Address": "Dirección", + "Address:": "Address:", + "Admin DashBoard": "Panel de administración", + "Affordable for Everyone": "Asequible para todos", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "Alertas", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "Permitir acceso a la ubicación", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "Ocurrió un error durante el proceso de pago.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "Ocurrió un error al seleccionar los contactos:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "Ocurrió un error inesperado. Inténtalo de nuevo.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "Aplicación con pasajero", + "Applied": "Aplicado", + "Apply": "Aplicar", + "Apply Order": "Aplicar pedido", + "Apply Promo Code": "Aplicar código de promoción", + "Approaching your area. Should be there in 3 minutes.": "Acercándome a tu área. Debería estar allí en 3 minutos.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "¿Estás seguro de viajar a", + "Are you Sure to LogOut?": "¿Estás seguro de cerrar sesión?", + "Are you sure to cancel?": "¿Estás seguro de cancelar?", + "Are you sure to delete recorded files": "¿Estás seguro de eliminar los archivos grabados?", + "Are you sure to delete this location?": "¿Estás seguro de eliminar esta ubicación?", + "Are you sure to delete your account?": "¿Estás seguro de eliminar tu cuenta?", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "¿Estás seguro? Esta acción no se puede deshacer.", + "Are you want to change": "¿Quieres cambiar?", + "Are you want to go this site": "¿Quieres ir a este sitio?", + "Are you want to go to this site": "¿Quieres ir a este sitio?", + "Are you want to wait drivers to accept your order": "¿Quieres esperar a que los conductores acepten tu pedido?", + "Arrival time": "Hora de llegada", + "Associate Degree": "Título de asociado", + "Attach this audio file?": "¿Adjuntar este archivo de audio?", + "Attention": "Atención", + "Audio file not attached": "Archivo de audio no adjunto", + "Audio uploaded successfully.": "Audio subido con éxito.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "Disponible para viajes", + "Average of Hours of": "Promedio de horas de", + "Awaiting response...": "Esperando respuesta...", + "Awfar Car": "Coche Awfar", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Atrás", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "Baréin", + "Balance": "Saldo", + "Balance limit exceeded": "Balance limit exceeded", + "Balance not enough": "Balance not enough", + "Balance:": "Saldo:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "Ser lento", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "Por favor, asegúrate de tomar imágenes precisas\\nTienes", + "Be sure to use it quickly! This code expires at": "¡Asegúrate de usarlo rápido! Este código vence a las", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Porque estamos cerca, tienes la flexibilidad de elegir el viaje que mejor funcione para ti.", + "Before we start, please review our terms.": "Antes de comenzar, revise nuestros términos.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Mejor opción para un coche cómodo con una ruta flexible y puntos de parada. Este aeropuerto ofrece entrada con visa a este precio.", + "Best choice for cities": "Mejor opción para ciudades", + "Best choice for comfort car and flexible route and stops point": "Mejor opción para un coche cómodo y una ruta flexible con puntos de parada", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "Fecha de nacimiento", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Regalo de bonificación", + "BookingFee": "Tarifa de reserva", + "Bottom Bar Example": "Ejemplo de barra inferior", + "But you have a negative salary of": "Pero tienes un salario negativo de", + "CODE": "CÓDIGO", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "Fin de la llamada", + "Call Ended": "Call Ended", + "Call Income": "Llamada entrante", + "Call Income from Driver": "Llamada entrante del conductor", + "Call Income from Passenger": "Llamada entrante del pasajero", + "Call Left": "Llamada restante", + "Call Options": "Call Options", + "Call Page": "Página de llamada", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "Acceso a la cámara denegado.", + "Camera not initialized yet": "La cámara aún no se ha inicializado", + "Camera not initilaized yet": "La cámara aún no se ha inicializado", + "Can I cancel my ride?": "¿Puedo cancelar mi viaje?", + "Can we know why you want to cancel Ride ?": "¿Podemos saber por qué quieres cancelar el viaje?", + "Cancel": "Cancelar", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "Cancel Ride", + "Cancel Search": "Cancelar búsqueda", + "Cancel Trip": "Cancelar viaje", + "Cancel Trip from driver": "Cancelar viaje por el conductor", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "Cancelado", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "No se pueden aplicar más descuentos.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Captura una imagen de tu registro criminal", + "Capture an Image of Your Driver License": "Captura una imagen de tu licencia de conducir", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "Captura una imagen de la parte trasera de tu documento de identidad", + "Capture an Image of Your ID Document front": "Captura una imagen de la parte frontal de tu documento de identidad", + "Capture an Image of Your car license back": "Captura una imagen de la parte trasera de tu licencia de coche", + "Capture an Image of Your car license front": "Capturar una imagen del frente de su licencia de auto", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "Coche", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Color del coche:", + "Car Details": "Detalles del coche", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "Tarjeta de licencia de coche", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Marca del coche:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Modelo del coche:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Matrícula del coche:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "Número de tarjeta", + "Card Payment": "Card Payment", + "CardID": "ID de la tarjeta", + "Cash": "Efectivo", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "Cambiar país", + "Change Home location?": "Change Home location?", + "Change Ride": "Cambiar viaje", + "Change Route": "Cambiar ruta", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "Chasis", + "Check back later for new offers!": "¡Vuelve más tarde para ver nuevas ofertas!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "Elegir idioma", + "Choose a contact option": "Elige una opción de contacto", + "Choose between those Type Cars": "Elige entre esos tipos de coches", + "Choose from Map": "Elegir del mapa", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "Elige la opción de viaje que mejor se adapte a tus necesidades y preferencias.", + "Choose who this order is for": "Elige para quién es este pedido", + "Choose your ride": "Elige tu viaje", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "Ciudad", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "Reclama tu regalo de 20 LE por invitar", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Haz clic aquí", + "Click here to Show it in Map": "Haz clic aquí para mostrarlo en el mapa", + "Close": "Cerrar", + "Closest & Cheapest": "Más cercano y más barato", + "Closest to You": "Más cerca de ti", + "Code": "Código", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "Código no aprobado", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "Color", + "Color is": "Color is", + "Comfort": "Comfort", + "Comfort choice": "Opción Confort", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "Comunicación", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "Queja", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "No se puede presentar una queja por este viaje. Es posible que no se haya completado o iniciado.", + "Complaint data saved successfully": "Datos de la queja guardados con éxito", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "Confirmar", + "Confirm & Find a Ride": "Confirmar y encontrar un viaje", + "Confirm Attachment": "Confirmar archivo adjunto", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirmar ubicación de recogida", + "Confirm Selection": "Confirmar selección", + "Confirm Trip": "Confirmar viaje", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "Confirma tu correo electrónico", + "Confirmation": "Confirmation", + "Connected": "Conectado", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "Opciones de contacto", + "Contact Support": "Contactar con soporte", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "Contáctanos", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "Se requiere permiso de contactos para elegir contactos", + "Contact us for any questions on your order.": "Contáctanos si tienes preguntas sobre tu pedido.", + "Contacts Loaded": "Contacts Loaded", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "Continuar", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "Copiar", + "Copy Code": "Copiar código", + "Copy this Promo to use it in your Ride!": "¡Copia esta promoción para usarla en tu viaje!", + "Cost": "Cost", + "Cost Duration": "Duración del costo", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "Cantidad de horas por día", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "Crea una billetera para recibir tu dinero", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "Se requiere antecedente penal", + "Criminal Record": "Registro criminal", + "Cropper": "Recortador", + "Current Balance": "Current Balance", + "Current Location": "Ubicación actual", + "Customer MSISDN doesn’t have customer wallet": "El MSISDN del cliente no tiene billetera", + "Customer not found": "Customer not found", + "Customer phone is not active": "Customer phone is not active", + "DISCOUNT": "DESCUENTO", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "Fecha", + "Date and Time Picker": "Selector de fecha y hora", + "Date of Birth": "Date of Birth", + "Date of Birth is": "La fecha de nacimiento es", + "Date of Birth:": "Date of Birth:", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "Eliminar mi cuenta", + "Delete Permanently": "Eliminar permanentemente", + "Deleted": "Eliminado", + "Delivery": "Delivery", + "Destination": "Destino", + "Destination Location": "Destination Location", + "Destination selected": "Destino seleccionado", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "Detecta tu cara ", + "Device Change Detected": "Cambio de dispositivo detectado", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "Cilindrada", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "¿Tienes un código de invitación de otro conductor?", + "Do you want to change Home location": "¿Quieres cambiar la ubicación del hogar?", + "Do you want to change Work location": "¿Quieres cambiar la ubicación del trabajo?", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "¿Quieres pagar propinas a este conductor?", + "Docs": "Docs", + "Doctoral Degree": "Doctorado", + "Document Number:": "Document Number:", + "Documents check": "Verificación de documentos", + "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 Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro 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", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "El conductor aceptó el viaje por ti", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "El conductor aplicó el viaje por ti", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "El conductor canceló su viaje", + "Driver Car Plate": "Placa del coche del conductor", + "Driver Finish Trip": "El conductor finalizó el viaje", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "El conductor va hacia el pasajero", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Lista de conductores", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "Nombre del conductor", + "Driver Name:": "Nombre del conductor:", + "Driver Phone:": "Teléfono del conductor:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "Registro de conductores", + "Driver Registration & Requirements": "Registro y requisitos del conductor", + "Driver Wallet": "Billetera del conductor", + "Driver already has 2 trips within the specified period.": "El conductor ya tiene 2 viajes dentro del período especificado.", + "Driver is on the way": "El conductor está en camino", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "El conductor está esperando en el punto de recogida.", + "Driver joined the channel": "El conductor se unió al canal", + "Driver left the channel": "El conductor dejó el canal", + "Driver phone": "Teléfono del conductor", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "Clase de licencia de conducir", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "La duración es", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "Editar perfil", + "Edit Your data": "Edita tus datos", + "Education": "Educación", + "Egypt": "Egipto", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "Electric", + "Email": "Correo electrónico", + "Email Us": "Envíanos un correo electrónico", + "Email Wrong": "Correo electrónico incorrecto", + "Email is": "El correo electrónico es", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "El correo electrónico que ingresaste es incorrecto.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "Tipo de empleo", + "Enable Location": "Habilitar ubicación", + "Enable Location Access": "Habilitar acceso a la ubicación", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "Finalizar viaje", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "Disfruta de un viaje seguro y cómodo.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Disfruta de precios competitivos en todas las opciones de viaje, haciendo que los viajes sean accesibles.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "Ingresa tu nombre", + "Enter a valid email": "Ingresa un correo electrónico válido", + "Enter a valid year": "Enter a valid year", + "Enter phone": "Ingresar teléfono", + "Enter phone number": "Enter phone number", + "Enter promo code": "Ingresar código de promoción", + "Enter promo code here": "Ingresa el código de promoción aquí", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "Ingresa el código de promoción y obtén", + "Enter your City": "Enter your City", + "Enter your Note": "Ingresa tu nota", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Ingrese su código a continuación para aplicar el descuento.", + "Enter your complaint here": "Ingresa tu queja aquí", + "Enter your complaint here...": "Ingrese su queja aquí...", + "Enter your email": "Enter your email", + "Enter your email address": "Ingresa tu dirección de correo electrónico", + "Enter your feedback here": "Ingresa tu retroalimentación aquí", + "Enter your first name": "Ingresa tu nombre", + "Enter your last name": "Ingresa tu apellido", + "Enter your password": "Ingresa tu contraseña", + "Enter your phone number": "Ingresa tu número de teléfono", + "Enter your promo code": "Ingresa tu código de promoción", + "Enter your wallet number": "Enter your wallet number", + "Error": "Error", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "Fecha de vencimiento", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "Fecha de vencimiento", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "Resultado de detección facial", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "Respuesta más rápida a las quejas", + "Favorite Places": "Lugares favoritos", + "Fee is": "La tarifa es", + "Feed Back": "Retroalimentación", + "Feedback": "Retroalimentación", + "Feedback data saved successfully": "Datos de retroalimentación guardados con éxito", + "Female": "Mujer", + "Find answers to common questions": "Encuentra respuestas a preguntas comunes", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "Finalizar monitor", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "Nombre", + "First Trip": "First Trip", + "First name": "Nombre", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "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 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 Siro 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", + "Fri": "Fri", + "From": "Desde", + "From :": "Desde :", + "From : Current Location": "Desde : Ubicación actual", + "From Budget": "From Budget", + "From:": "Desde:", + "Fuel": "Combustible", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "Nombre completo (estado civil)", + "FullName": "Nombre completo", + "GPS Required Allow !.": "¡GPS requerido, permitir!.", + "Gender": "Género", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "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 Siro 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.", + "Getting Started": "Cómo empezar", + "Gift Already Claimed": "Regalo ya reclamado", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "Ir a lugares favoritos", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "Ve al siguiente paso\\nescanea la licencia del coche.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "Ir ahora a la ubicación del pasajero", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "Ir a este objetivo", + "Go to this location": "Ir a esta ubicación", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "Horas y", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "¿Tienes un código promocional?", + "Head": "Head", + "Heading your way now. Please be ready.": "En camino hacia ti ahora. Por favor, estate listo.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "Hola, este es el capitán", + "Hello this is Driver": "Hola, este es el conductor", + "Help & Support": "Help & Support", + "Help Details": "Detalles de ayuda", + "Helping Center": "Centro de ayuda", + "Helping Page": "Helping Page", + "Here recorded trips audio": "Aquí están los audios de los viajes grabados", + "Hi": "Hola", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Hola, iré ahora", + "Hi! This is": "¡Hola! Este es", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "Diploma de bachillerato", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "Historial de viajes", + "Home": "Home", + "Home Page": "Página de inicio", + "Home Saved": "Casa guardada", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "¿Cómo puedo pagar mi viaje?", + "How can I register as a driver?": "¿Cómo puedo registrarme como conductor?", + "How do I communicate with the other party (passenger/driver)?": "¿Cómo me comunico con la otra parte (pasajero/conductor)?", + "How do I request a ride?": "¿Cómo solicito un viaje?", + "How many hours would you like to wait?": "¿Cuántas horas te gustaría esperar?", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "Acepto", + "I Arrive": "I Arrive", + "I Arrive your site": "Llego a tu sitio", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "Agregué la ubicación de recogida/dejada incorrecta", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "Llego a ti", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "No puedo registrarme en tu aplicación con detección facial ", + "I want to order for myself": "Quiero pedir para mí", + "I want to order for someone else": "Quiero pedir para alguien más", + "I was just trying the application": "Solo estaba probando la aplicación", + "I will go now": "Iré ahora", + "I will slow down": "Reduciré la velocidad", + "I've arrived.": "I've arrived.", + "ID Documents Back": "Parte trasera de los documentos de identidad", + "ID Documents Front": "Parte frontal de los documentos de identidad", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "Si estás en el coche ahora. Presiona Iniciar el viaje", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "Si necesitas ayuda, contáctanos", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Si quieres añadir una parada, haz clic aquí", + "If you want order to another person": "Si quieres pedir para otra persona", + "If you want to make Google Map App run directly when you apply order": "Si quieres que la aplicación Google Map se ejecute directamente cuando aplicas un pedido", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "El resultado de la detección de imagen es ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "Llamadas VOIP en la aplicación", + "Including Tax": "Incluyendo impuesto", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "Incorrect sms code", + "Increase Fare": "Increase Fare", + "Increase Fee": "Aumentar tarifa", + "Increase Your Trip Fee (Optional)": "Aumenta la tarifa de tu viaje (Opcional)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Increasing the fare might attract more drivers. Would you like to increase the price?", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "Insertar", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "Insertar número de emergencia", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insertar teléfono SOS", + "Insert Wallet phone number": "Ingresa el número de teléfono de la billetera", + "Insert Your Promo Code": "Inserta tu código de promoción", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "Fecha de inspección", + "InspectionResult": "Resultado de la inspección", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "MPIN inválido", + "Invalid OTP": "OTP inválido", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "Invitación utilizada", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "Invitación enviada con éxito", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "¿El pasajero está en tu coche?", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "Fecha de emisión", + "IssueDate": "Fecha de emisión", + "JOD": "JOD", + "Join": "Unirse", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "Jordania", + "Just now": "Just now", + "KM": "KM", + "Keep it up!": "¡Sigue así!", + "Kuwait": "Kuwait", + "L.E": "L.E", + "L.S": "L.S", + "LE": "LE", + "Lady": "Lady", + "Lady Captain for girls": "Conductora para chicas", + "Lady Captains Available": "Capitanas disponibles", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "Idioma", + "Language Options": "Opciones de idioma", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "Apellido", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "Último viaje reciente", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Aprende más sobre nuestra aplicación y misión", + "Leave": "Salir", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "Vamos a verificar la licencia del coche ", + "Lets check License Back Face": "Vamos a verificar la parte trasera de la licencia", + "License Categories": "Categorías de licencia", + "License Expiry Date": "License Expiry Date", + "License Type": "Tipo de licencia", + "Link a phone number for transfers": "Link a phone number for transfers", + "Location Access Required": "Location Access Required", + "Location Link": "Enlace de ubicación", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "Cerrar sesión", + "Log Out Page": "Página de cierre de sesión", + "Login": "Iniciar sesión", + "Login Captin": "Iniciar sesión como capitán", + "Login Driver": "Iniciar sesión como conductor", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "Precio más bajo alcanzado", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "Hecho :", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "Marca", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "Hombre", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "Mapa del pasajero", + "Marital Status": "Estado civil", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "Tarifa máxima", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Tarifa mínima", + "Minute": "Minuto", + "Minutes": "Minutes", + "Mishwar Vip": "Mishwar Vip", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "Modelo", + "Model is": "El modelo es", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "Mañana", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "Métodos más seguros", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "Mueve el mapa para ajustar el pin", + "Mute": "Mute", + "My Balance": "Mi saldo", + "My Card": "Mi tarjeta", + "My Cared": "Mis tarjetas", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "Mi perfil", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "Mi ubicación actual es:", + "My location is correct. You can search for me using the navigation app": "Mi ubicación es correcta. Puedes buscarme usando la aplicación de navegación.", + "MyLocation": "Mi ubicación", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "Nombre", + "Name (Arabic)": "Nombre (árabe)", + "Name (English)": "Nombre (inglés)", + "Name :": "Nombre :", + "Name in arabic": "Nombre en árabe", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "Identificación nacional", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "Número nacional", + "NationalID": "Identificación nacional", + "Navigation": "Navigation", + "Nearest Car": "Coche más cercano", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Coche más cercano: ~", + "Need assistance? Contact us": "¿Necesitas ayuda? Contáctanos", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "Siguiente", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "Noche", + "No": "No", + "No ,still Waiting.": "No, aún esperando.", + "No Captain Accepted Your Order": "Ningún capitán aceptó tu pedido", + "No Car in your site. Sorry!": "No hay coche en tu sitio. ¡Lo siento!", + "No Car or Driver Found in your area.": "No se encontró ningún coche o conductor en tu área.", + "No I want": "No, quiero", + "No Promo for today .": "No hay promoción para hoy.", + "No Response yet.": "Aún no hay respuesta.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "¡Sin tarjeta SIM, no hay problema! Llama a tu conductor directamente a través de nuestra aplicación. Usamos tecnología avanzada para garantizar tu privacidad.", + "No accepted orders? Try raising your trip fee to attract riders.": "¿No hay pedidos aceptados? Intenta aumentar la tarifa de tu viaje para atraer a los conductores.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "No se encontraron archivos de audio.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No hay coches cerca", + "No contact selected": "No contact selected", + "No contacts found": "No se encontraron contactos", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "No se encontraron contactos con números de teléfono en su dispositivo.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "Ningún conductor aceptó mi solicitud", + "No drivers accepted your request yet": "No drivers accepted your request yet", + "No drivers available": "No hay conductores disponibles", + "No drivers available at the moment. Please try again later.": "No hay conductores disponibles en este momento. Por favor, inténtalo de nuevo más tarde.", + "No face detected": "No se detectó ninguna cara", + "No favorite places yet!": "¡Aún no tienes lugares favoritos!", + "No i want": "No i want", + "No image selected yet": "Aún no se ha seleccionado ninguna imagen", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "¡Aún no se ha encontrado ninguna invitación!", + "No one accepted? Try increasing the fare.": "¿Nadie aceptó? Intenta aumentar la tarifa.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "No se encontró ningún pasajero para el número de teléfono proporcionado", + "No phone number": "No phone number", + "No promos available right now.": "No hay promociones disponibles en este momento.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "Aún no se ha encontrado ningún viaje", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No hay datos de viaje disponibles", + "No trip history found": "No se encontró historial de viajes", + "No trip yet found": "Aún no se ha encontrado ningún viaje", + "No user found for the given phone number": "No se encontró ningún usuario para el número de teléfono proporcionado", + "No wallet record found": "No se encontró ningún registro de billetera", + "No, I want to cancel this trip": "No, quiero cancelar este viaje", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "No, gracias", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "No conectado", + "Not set": "No establecido", + "Not updated": "Not updated", + "Notifications": "Notificaciones", + "Now select start pick": "Ahora selecciona el punto de inicio", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "Ocupación", + "Offline": "Offline", + "Ok": "Ok", + "Ok , See you Tomorrow": "Ok, nos vemos mañana", + "Ok I will go now.": "Ok, iré ahora.", + "Old and affordable, perfect for budget rides.": "Viejo y asequible, perfecto para viajes económicos.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "Abrir configuración", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "O pague en efectivo en su lugar", + "Order": "Pedido", + "Order Accepted": "Pedido aceptado", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "Pedido aplicado", + "Order Cancelled": "Pedido cancelado", + "Order Cancelled by Passenger": "Pedido cancelado por el pasajero", + "Order Details Siro": "Order Details Siro", + "Order History": "Historial de pedidos", + "Order ID": "Order ID", + "Order Request Page": "Página de solicitud de pedido", + "Order Under Review": "Pedido en revisión", + "Order for myself": "Pedido para mí", + "Order for someone else": "Pedido para alguien más", + "OrderId": "ID del pedido", + "OrderVIP": "Pedido VIP", + "Orders Page": "Orders Page", + "Origin": "Origen", + "Original Fare": "Original Fare", + "Other": "Otro", + "Our dedicated customer service team ensures swift resolution of any issues.": "Nuestro dedicado equipo de servicio al cliente garantiza una resolución rápida de cualquier problema.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "Nombre del propietario", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "El pasajero canceló el viaje", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "El pasajero canceló el pedido", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "El pasajero viene a ti", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Contraseña", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "La contraseña debe tener al menos 6 caracteres.", + "Paste WhatsApp location link": "Pega el enlace de ubicación de WhatsApp", + "Paste location link here": "Pega el enlace de ubicación aquí", + "Paste the code here": "Pega el código aquí", + "Pay": "Pagar", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Pagar directamente al capitán", + "Pay from my budget": "Pagar de mi presupuesto", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "Pagar con tarjeta de crédito", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "Pagar con billetera", + "Pay with Your": "Paga con tu", + "Pay with Your PayPal": "Paga con tu PayPal", + "Payment Failed": "Pago fallido", + "Payment History": "Payment History", + "Payment Method": "Método de pago", + "Payment Method:": "Payment Method:", + "Payment Options": "Opciones de pago", + "Payment Successful": "Pago exitoso", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "Pagos", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "Perfecto para los buscadores de aventuras que quieren experimentar algo nuevo y emocionante", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfecto para pasajeros que buscan los últimos modelos de coches con la libertad de elegir cualquier ruta que deseen", + "Permission denied": "Permiso denegado", + "Personal Information": "Información personal", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "El número de teléfono es", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Billetera telefónica guardada con éxito", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "El número de teléfono ya ha sido verificado", + "Phone number must be exactly 11 digits long": "El número de teléfono debe tener exactamente 11 dígitos", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "Elegir del mapa", + "Pick from map destination": "Elige el destino en el mapa", + "Pick or Tap to confirm": "Elige o toca para confirmar", + "Pick your destination from Map": "Elige tu destino del mapa", + "Pick your ride location on the map - Tap to confirm": "Elige la ubicación de tu viaje en el mapa - Toca para confirmar", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "Placa", + "Plate Number": "Número de placa", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "¡Por favor, espera si el pasajero quiere cancelar!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "Por favor, ingresa", + "Please enter Your Email.": "Por favor, ingresa tu correo electrónico.", + "Please enter Your Password.": "Por favor, ingresa tu contraseña.", + "Please enter a correct phone": "Por favor, ingresa un teléfono correcto", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "Por favor, ingresa un número de teléfono", + "Please enter a valid 16-digit card number": "Por favor, ingresa un número de tarjeta válido de 16 dígitos", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Por favor, ingresa un código de promoción válido", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Por favor, ingresa el código CVV", + "Please enter the cardholder name": "Por favor, ingresa el nombre del titular de la tarjeta", + "Please enter the complete 6-digit code.": "Por favor, ingrese el código completo de 6 dígitos.", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "Por favor, ingresa la fecha de vencimiento", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Por favor, ingresa tu ciudad.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "Por favor, ingresa tu pregunta.", + "Please enter your complaint.": "Por favor, ingresa tu queja.", + "Please enter your feedback.": "Por favor, ingresa tu retroalimentación.", + "Please enter your first name.": "Por favor, ingresa tu nombre.", + "Please enter your last name.": "Por favor, ingresa tu apellido.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Por favor, ingresa tu número de teléfono.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "Por favor, ve al conductor del coche", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "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 Siro 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", + "Please select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "Por favor, verifique su identidad", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "Por favor, espera a que el pasajero entre al coche antes de iniciar el viaje.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "Punto", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "Se detectaron posibles riesgos de seguridad. Es posible que la aplicación no funcione correctamente.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Reserva anticipada", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Precio", + "Price is": "Price is", + "Price of trip": "Precio del viaje", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Aviso de privacidad", + "Privacy Policy": "Política de privacidad", + "Profile": "Perfil", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "Promo", + "Promo Already Used": "Promoción ya utilizada", + "Promo Code": "Código de promoción", + "Promo Code Accepted": "Código de promoción aceptado", + "Promo Copied!": "¡Promoción copiada!", + "Promo End !": "¡Promoción terminada!", + "Promo Ended": "Promoción terminada", + "Promo code copied to clipboard!": "¡Código de promoción copiado al portapapeles!", + "Promos": "Promociones", + "Promos For Today": "Promociones para hoy", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "Pago cancelado .", + "Qatar": "Catar", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "Acciones rápidas", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "Silencioso y ecológico", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "Calificar al capitán", + "Rate Driver": "Calificar al conductor", + "Rate Our App": "Rate Our App", + "Rate Passenger": "Calificar al pasajero", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "Rayeh Gai", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai: Servicio de viaje redondo para un viaje conveniente entre ciudades, fácil y confiable.", + "Reason": "Reason", + "Recent Places": "Lugares recientes", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "Recargar mi cuenta", + "Record": "Record", + "Record saved": "Grabación guardada", + "Recorded Trips (Voice & AI Analysis)": "Viajes grabados (análisis de voz e IA)", + "Recorded Trips for Safety": "Viajes grabados para seguridad", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "Rechazar pedido", + "Refused": "Refused", + "Register": "Registrarse", + "Register Captin": "Registrar capitán", + "Register Driver": "Registrar conductor", + "Register as Driver": "Registrarse como conductor", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Religión", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "Reenviar código", + "Resend code": "Reenviar código", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "Gestión de viajes", + "Ride Status": "Ride Status", + "Ride Summaries": "Resúmenes de viajes", + "Ride Summary": "Resumen del viaje", + "Ride Today :": "Ride Today :", + "Ride Wallet": "Billetera de viajes", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "Viajes", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "Rutas del viaje", + "Route Not Found": "Route Not Found", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "Teléfono SOS", + "SUBMIT": "SUBMIT", + "SYP": "SYP", + "Safety & Security": "Seguridad y protección", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "Arabia Saudita", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "Guardar tarjeta de crédito", + "Saved Sucssefully": "Guardado exitosamente", + "Scan Driver License": "Escanear licencia de conducir", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "Escanear ID MklGoogle", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "Escanear ID", + "Scheduled Time:": "Hora programada:", + "Scooter": "Scooter", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "Buscar punto de referencia", + "Search for your Start point": "Busca tu punto de inicio", + "Search for your destination": "Busca tu destino", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "Buscando al capitán más cercano...", + "Security Warning": "Advertencia de seguridad", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "¡Nos vemos en el camino!", + "Select Country": "Seleccionar país", + "Select Date": "Seleccionar fecha", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "Seleccionar tipo de pedido", + "Select Payment Amount": "Seleccionar monto de pago", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "Seleccionar hora", + "Select Waiting Hours": "Seleccionar horas de espera", + "Select Your Country": "Selecciona tu país", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Seleccionar fecha y hora del viaje", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "Selecciona un mensaje", + "Select recorded trip": "Seleccionar viaje grabado", + "Select your destination": "Selecciona tu destino", + "Select your preferred language for the app interface.": "Seleccione su idioma preferido para la interfaz de la aplicación.", + "Selected Date": "Fecha seleccionada", + "Selected Date and Time": "Fecha y hora seleccionadas", + "Selected Location": "Selected Location", + "Selected Time": "Hora seleccionada", + "Selected driver": "Conductor seleccionado", + "Selected file:": "Archivo seleccionado:", + "Send Email": "Send Email", + "Send Invite": "Enviar invitación", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro 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", + "Send a custom message": "Enviar un mensaje personalizado", + "Send to Driver Again": "Enviar al conductor nuevamente", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Sesión expirada. Por favor, inicie sesión de nuevo.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Establecer ubicación en el mapa", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Set Wallet Phone Number", + "Set pickup location": "Establecer lugar de recogida", + "Setting": "Configuración", + "Settings": "Configuración", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "Compartir aplicación", + "Share Code": "Share Code", + "Share Trip Details": "Compartir detalles del viaje", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "¡Comparte este código con tus amigos y gana recompensas cuando lo usen!", + "Share via": "Share via", + "Share with friends and earn rewards": "Comparte con amigos y gana recompensas", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Mostrar invitaciones", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "Mostrar promociones", + "Show Promos to Charge": "Mostrar promociones para cargar", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "Mostrar la última promoción", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "Showing", + "Sign In by Apple": "Iniciar sesión con Apple", + "Sign In by Google": "Iniciar sesión con Google", + "Sign In with Google": "Iniciar sesión con Google", + "Sign Out": "Cerrar sesión", + "Sign in for a seamless experience": "Inicia sesión para una experiencia sin interrupciones", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Iniciar sesión con Apple", + "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": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Servicio de furgoneta espaciosa ideal para familias y grupos. Viaje juntos de forma cómoda, segura y económica.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "Iniciar grabación", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "Iniciar el viaje", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "Estadísticas", + "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 Siro 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", + "Submit": "Enviar", + "Submit ": "Enviar ", + "Submit Complaint": "Enviar queja", + "Submit Question": "Enviar pregunta", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "Enviar una queja", + "Submit rating": "Enviar calificación", + "Success": "Éxito", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "Cambiar pasajero", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "Siria", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "Tomar imagen", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "Tomar foto de la tarjeta de licencia de conducir", + "Take Picture Of ID Card": "Tomar foto de la tarjeta de identificación", + "Tap on the promo code to copy it!": "¡Toca el código de promoción para copiarlo!", + "Tap to upload": "Tap to upload", + "Target": "Objetivo", + "Tariff": "Tarifa", + "Tariffs": "Tarifas", + "Tax Expiry Date": "Fecha de vencimiento del impuesto", + "Terms of Use": "Términos de uso", + "Terms of Use & Privacy Notice": "Términos de uso y aviso de privacidad", + "Thank You!": "Thank You!", + "Thanks": "Gracias", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "El conductor estará en tu ubicación pronto .", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "El archivo de audio aún no se ha subido.\\n¿Quiere enviarlo sin él?", + "The captain is responsible for the route.": "El capitán es responsable de la ruta.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "La distancia es menor a 500 metros.", + "The driver accept your order for": "El conductor aceptó tu pedido para", + "The driver accepted your order for": "El conductor aceptó tu pedido para", + "The driver accepted your trip": "El conductor aceptó su viaje", + "The driver canceled your ride.": "El conductor canceló tu viaje.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "El conductor está en camino", + "The driver waiting you in picked location .": "El conductor te espera en la ubicación seleccionada.", + "The driver waitting you in picked location .": "El conductor te está esperando en la ubicación seleccionada .", + "The drivers are reviewing your request": "Los conductores están revisando tu solicitud", + "The email or phone number is already registered.": "El correo electrónico o número de teléfono ya está registrado.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "La invitación fue enviada con éxito", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "El pedido fue aceptado por otro conductor", + "The order has been accepted by another driver.": "El pedido ha sido aceptado por otro conductor.", + "The payment was approved.": "El pago fue aprobado.", + "The payment was not approved. Please try again.": "El pago no fue aprobado. Por favor, inténtalo de nuevo.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "El precio puede aumentar si la ruta cambia.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "El período de promoción ha terminado.", + "The reason is": "La razón es", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "¡El viaje ha comenzado! No dudes en contactar números de emergencia, compartir tu viaje o activar la grabación de voz para el trayecto", + "There is no data yet.": "Aún no hay datos.", + "There is no help Question here": "No hay una pregunta de ayuda aquí", + "There is no notification yet": "Aún no hay notificaciones", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "Este monto por todos los viajes que obtengo de los pasajeros", + "This amount for all trip I get from Passengers and Collected For me in": "Este monto por todos los viajes que obtengo de los pasajeros y recaudado para mí en", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "Esta es una notificación programada.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Esto es para un scooter o una motocicleta.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "Este número de teléfono ya ha sido invitado.", + "This price is": "Este precio es", + "This price is fixed even if the route changes for the driver.": "Este precio es fijo incluso si la ruta cambia para el conductor.", + "This price may be changed": "Este precio puede cambiar", + "This ride is already applied by another driver.": "Este viaje ya ha sido aplicado por otro conductor.", + "This ride is already taken by another driver.": "Este viaje ya ha sido tomado por otro conductor.", + "This ride type allows changes, but the price may increase": "Este tipo de viaje permite cambios, pero el precio puede aumentar", + "This ride type does not allow changes to the destination or additional stops": "Este tipo de viaje no permite cambios en el destino o paradas adicionales", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Este viaje va directamente desde tu punto de inicio hasta tu destino por un precio fijo. El conductor debe seguir la ruta planificada.", + "This trip is for women only": "Este viaje es solo para mujeres", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "Hora de llegada", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "A casa", + "To Work": "Al trabajo", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro 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.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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 Siro support directly.", + "To use Wallet charge it": "Para usar la billetera, cárgala", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Top up Wallet", + "Top up Wallet to continue": "Recarga la billetera para continuar", + "Total Amount:": "Monto total:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "Duración total de la conexión:", + "Total Cost": "Costo total", + "Total Cost is": "Total Cost is", + "Total Duration:": "Duración total:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "Horas totales en el mes", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "El total de puntos es", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "Presupuestos totales del mes", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Viaja en un coche eléctrico moderno y silencioso. Una opción ecológica y de primera calidad para un viaje suave.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "Viaje cancelado", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Viaje cancelado. El costo del viaje se añadirá a tu billetera.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Viaje cancelado. El costo del viaje se deducirá de tu billetera.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Monitor de viaje", + "Trip Monitoring": "Monitoreo de viaje", + "Trip Started": "Trip Started", + "Trip Status:": "Estado del viaje:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "Viaje finalizado", + "Trip has Steps": "El viaje tiene pasos", + "Trip is Begin": "El viaje comienza", + "Trip taken": "Trip taken", + "Trip updated successfully": "Viaje actualizado con éxito", + "Trips": "Trips", + "Trips recorded": "Viajes grabados", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "Turquía", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "Escribe aquí el lugar", + "Type something": "Type something", + "Type something...": "Escribe algo...", + "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 Siro:", + "USA": "EE. UU.", + "Uncompromising Security": "Seguridad sin compromisos", + "Unknown": "Unknown", + "Unknown Driver": "Conductor desconocido", + "Unknown Location": "Unknown Location", + "Update": "Actualizar", + "Update Available": "Actualización disponible", + "Update Education": "Actualizar educación", + "Update Gender": "Actualizar género", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "Subido", + "Use Touch ID or Face ID to confirm payment": "Usa Touch ID o Face ID para confirmar el pago", + "Use code:": "Use code:", + "Use my invitation code to get a special gift on your first ride!": "¡Usa mi código de invitación para obtener un regalo especial en tu primer viaje!", + "Use my referral code:": "Use my referral code:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "El usuario no existe.", + "User does not have a wallet #1652": "El usuario no tiene una billetera #1652", + "User not found": "Usuario no encontrado", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "Ya existe un usuario con este número de teléfono o correo electrónico.", + "Uses cellular network": "Uses cellular network", + "VIN": "Número de chasis", + "VIN :": "Número de chasis :", + "VIN is": "El número de chasis es", + "VIP Order": "Pedido VIP", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "Válido hasta:", + "Value": "Value", + "Van": "Van", + "Van / Bus": "Van / Bus", + "Van for familly": "Furgoneta familiar", + "Variety of Trip Choices": "Variedad de opciones de viaje", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "Detalles del vehículo (parte trasera)", + "Vehicle Details Front": "Detalles del vehículo (frente)", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "Opciones de vehículos", + "Verification Code": "Código de verificación", + "Verify": "Verificar", + "Verify Email": "Verificar correo electrónico", + "Verify Email For Driver": "Verificar correo electrónico para el conductor", + "Verify OTP": "Verificar código", + "Vibration": "Vibración", + "Vibration feedback for all buttons": "Retroalimentación de vibración para todos los botones", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "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 Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Esperando VIP", + "Waiting for Captin ...": "Esperando al capitán ...", + "Waiting for Driver ...": "Esperando al conductor ...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Esperando tu ubicación", + "Wallet": "Billetera", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "Wallet is blocked", + "Wallet!": "¡Billetera!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing 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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "Estamos procesando la imagen, por favor espera ", + "We are search for nearst driver": "Estamos buscando al conductor más cercano", + "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 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 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 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:", + "We need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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 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 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", + "We use location to get accurate and nearest passengers for you": "Usamos la ubicación para obtener pasajeros precisos y cercanos para ti", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "Usamos tu ubicación precisa para encontrar el conductor disponible más cercano y proporcionar información precisa de recogida y dejada. Puedes gestionar esto en Configuración.", + "We will look for a new driver.\\nPlease wait.": "Buscaremos un nuevo conductor.\\nPor favor, espera.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "¡Bienvenido de nuevo!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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 Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro 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", + "When": "Cuándo", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "¿A dónde vas?", + "Where are you, sir?": "¿Dónde estás, señor?", + "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 Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "Trabajo", + "Work & Contact": "Trabajo y contacto", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Trabajo guardado", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "El horario de trabajo es de 12:00 - 19:00.\\nPuedes enviar un mensaje de WhatsApp o un correo electrónico.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "Escribir nota", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "Año", + "Year is": "El año es", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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!", + "You Can Cancel Trip And get Cost of Trip From": "Puedes cancelar el viaje y obtener el costo del viaje de", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "Puedes cancelar el viaje si el capitán no llegó a tiempo", + "You Dont Have Any amount in": "No tienes ningún monto en", + "You Dont Have Any places yet !": "¡Aún no tienes ningún lugar!", + "You Earn today is": "You Earn today is", + "You Have": "Tienes", + "You Have Tips": "Tienes propinas", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Rechazaste 3 viajes este día, esa es la razón \\n¡Nos vemos mañana!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "Debes seleccionar una razón.", + "You Should choose rate figure": "Debes elegir una figura de calificación", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "Estás eliminando", + "You are Stopped": "Estás detenido", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "No estás cerca de la ubicación del pasajero", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "Puedes comprar puntos para estar en línea\\ncon esta lista a continuación", + "You can buy points from your budget": "Puedes comprar puntos de tu presupuesto", + "You can call or record audio during this trip.": "You can call or record audio during this trip.", + "You can call or record audio of this trip": "Puedes llamar o grabar audio de este viaje", + "You can cancel Ride now": "Puedes cancelar el viaje ahora", + "You can cancel trip": "Puedes cancelar el viaje", + "You can change the Country to get all features": "Puedes cambiar el país para obtener todas las características", + "You can change the destination by long-pressing any point on the map": "Puedes cambiar el destino manteniendo presionado cualquier punto en el mapa", + "You can change the language of the app": "Puedes cambiar el idioma de la aplicación", + "You can change the vibration feedback for all buttons": "Puedes cambiar la retroalimentación de vibración para todos los botones", + "You can claim your gift once they complete 2 trips.": "Puedes reclamar tu regalo una vez que completen 2 viajes.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Puedes comunicarte con tu conductor o pasajero a través de la función de chat en la aplicación una vez que se confirme el viaje.", + "You can contact us during working hours from 10:00 - 16:00.": "Puede contactarnos durante el horario laboral de 10:00 a 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Puedes contactarnos durante el horario de trabajo de 12:00 - 19:00.", + "You can decline a request without any cost": "Puedes rechazar una solicitud sin ningún costo", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "Solo puedes usar un dispositivo a la vez. Este dispositivo se establecerá ahora como tu dispositivo activo.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Puedes pagar tu viaje en efectivo o con tarjeta de crédito/débito. Puedes seleccionar tu método de pago preferido antes de confirmar tu viaje.", + "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 Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "Te mereces el regalo", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "¡Aún no has añadido un teléfono de emergencia!", + "You dont have Points": "No tienes puntos", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "Ya has recibido tu regalo por invitar", + "You have already used this promo code.": "Ya has usado este código de promoción.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "Tienes una llamada del conductor", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "Has copiado el código de promoción.", + "You have earned 20": "Has ganado 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "Has terminado todas las veces ", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "Has recibido un regalo por invitación", + "You have in account": "Tienes en la cuenta", + "You have promo!": "¡Tienes una promoción!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "¡Debes verificar el correo electrónico!.", + "You must be charge your Account": "Debes cargar tu cuenta", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "Debes reiniciar la aplicación para cambiar el idioma.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "Deberías haberlo subido.", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "Debes reiniciar la aplicación para cambiar el idioma", + "You should select one": "Debes seleccionar uno", + "You should select your country": "Debes seleccionar tu país", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "La distancia de tu viaje es", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "Llegarás a tu destino después de que termine el temporizador.", + "You will be charged for the cost of the driver coming to your location.": "Se te cobrará el costo del conductor que viene a tu ubicación.", + "You will be pay the cost to driver or we will get it from you on next trip": "Pagarás el costo al conductor o lo obtendremos de ti en el próximo viaje", + "You will be thier in": "Estarás allí en", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "Elegirás permitir todo el tiempo para estar listo para recibir pedidos", + "You will choose one of above !": "¡Elegirás uno de los anteriores!", + "You will get cost of your work for this trip": "Obtendrás el costo de tu trabajo por este viaje", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "Recibirás un código en un mensaje SMS", + "You will receive a code in WhatsApp Messenger": "Recibirás un código en WhatsApp Messenger", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "Recibirás el código en un mensaje SMS", + "Your Account is Deleted": "Tu cuenta ha sido eliminada", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "Tu presupuesto es menor que lo necesario", + "Your Choice, Our Priority": "Tu elección, nuestra prioridad", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Tu viaje comienza aquí", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "Estás lejos de la ubicación del pasajero", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Tu dirección de correo electrónico", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "¡Tu código de invitación fue aplicado con éxito!", + "Your journey starts here": "Tu viaje comienza aquí", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "Tu nombre", + "Your order is being prepared": "Tu pedido está siendo preparado", + "Your order sent to drivers": "Tu pedido fue enviado a los conductores", + "Your password": "Tu contraseña", + "Your past trips will appear here.": "Tus viajes pasados aparecerán aquí.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "Tu código de invitación personal es:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "El costo de tu viaje es", + "Your trip distance is": "La distancia de tu viaje es", + "Your trip is scheduled": "Tu viaje está programado", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nTambién priorizamos la asequibilidad, ofreciendo precios competitivos para que tus viajes sean accesibles.", + "accepted": "aceptado", + "accepted your order": "accepted your order", + "accepted your order at price": "aceptó tu pedido al precio de", + "age": "age", + "agreement subtitle": "Aceptar los términos", + "airport": "aeropuerto", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "ocurrió un error", + "and I have a trip on": "y tengo un viaje el", + "and acknowledge our": "y reconozca nuestro", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "y reconozco el", + "app_description": "Intaleq es una aplicación de viajes compartidos segura, confiable y accesible.", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "hora de llegada para llegar a tu punto", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "antes", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "por", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "cambiar dispositivo", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "Intaleq se compromete con la seguridad, y todos nuestros capitanes son cuidadosamente seleccionados y verificados.", + "complete profile subtitle": "Completa tu perfil", + "complete registration button": "Completar registro", + "complete, you can claim your gift": "completo, puedes reclamar tu regalo", + "connection_failed": "connection_failed", + "copied to clipboard": "copiado al portapapeles", + "cost is": "cost is", + "created time": "hora de creación", + "de": "de", + "default_tone": "default_tone", + "deleted": "eliminado", + "detected": "detected", + "distance is": "la distancia es", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "licencia de conducir", + "duration is": "la duración es", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "correo electrónico (opcional)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "Por favor ingrese el código", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "detección facial", + "failed to send otp": "Error al enviar el código", + "false": "false", + "first name label": "Nombre", + "first name required": "Nombre requerido", + "for": "para", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "¡para tu primer registro!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "de 07:30 a 10:30 (jueves, viernes, sábado, lunes)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "de 12:00 a 15:00 (jueves, viernes, sábado, lunes)", + "from 23:59 till 05:30": "de 23:59 a 05:30", + "from 3 times Take Attention": "de 3 veces, presta atención", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "de tus favoritos", + "from your list": "de tu lista", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "Con Intaleq, puedes llegar a tu destino en minutos.", + "get_to_destination": "Llega a tu destino de manera rápida y sencilla.", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "ve a la ubicación del pasajero antes de que\\nel pasajero cancele el viaje", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "se ha completado", + "hi": "hi", + "hour": "hora", + "hours before trying again.": "hours before trying again.", + "i agree": "Estoy de acuerdo", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "si no tienes una cuenta", + "if you want help you can email us here": "si necesitas ayuda, puedes enviarnos un correo electrónico aquí", + "image verified": "imagen verificada", + "in your": "en tu", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "insertar monto", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "está revisando tu pedido. Pueden necesitar más información o un precio más alto.", + "it": "it", + "joined": "se unió", + "kilometer": "kilometer", + "last name label": "Apellido", + "last name required": "Apellido requerido", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "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 Siro.", + "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", + "message From passenger": "Mensaje del pasajero", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "modelo :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "mi ubicación", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "no es similar", + "of": "of", + "on": "on", + "one last step title": "Un último paso", + "otp sent subtitle": "Código de verificación enviado", + "otp sent success": "Código enviado con éxito", + "otp verification failed": "Fallo en la verificación del código", + "passenger agreement": "Acuerdo de pasajero", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pendiente", + "phone number label": "Número de teléfono", + "phone number of driver": "phone number of driver", + "phone number required": "Número de teléfono requerido", + "please go to picker location exactly": "por favor ve exactamente a la ubicación del recolector", + "please order now": "por favor ordene ahora", + "please wait till driver accept your order": "por favor espera hasta que el conductor acepte tu pedido", + "points": "points", + "price is": "el precio es", + "privacy policy": "Política de privacidad", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "Registro fallido", + "registration_date": "registration_date", + "reject your order.": "rechazó tu pedido.", + "rejected": "rechazado", + "remaining": "restante", + "reviews": "reviews", + "rides": "viajes", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "Disfruta de un viaje seguro y cómodo.", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "segundos", + "security_warning": "security_warning", + "send otp button": "Enviar código", + "server error try again": "error de servidor, intente de nuevo", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "similar", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "Términos de uso", + "the 300 points equal 300 L.E": "300 puntos equivalen a 300 L.E", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "500 puntos equivalen a 30 JOD", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "esto eliminará todos los archivos de tu dispositivo", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "cambio de token", + "token updated": "token actualizado", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "viajes", + "true": "true", + "type here": "escribe aquí", + "unknown_document": "unknown_document", + "upgrade price": "aumentar el precio", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "Verificar y continuar", + "verify your number title": "Verifica tu número", + "vin": "vin", + "wait 1 minute to receive message": "espera 1 minuto para recibir el mensaje", + "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 siro", + "welcome user": "Bienvenido", + "welcome_message": "Bienvenido a Intaleq!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "con tipo", + "witout zero": "witout zero", + "write Color for your car": "escribe el color de tu coche", + "write Expiration Date for your car": "escribe la fecha de vencimiento de tu coche", + "write Make for your car": "escribe la marca de tu coche", + "write Model for your car": "escribe el modelo de tu coche", + "write Year for your car": "escribe el año de tu coche", + "write comment here": "write comment here", + "write vin for your car": "escribe el número de chasis de tu coche", + "year :": "año :", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "cancelaste el pedido", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "ganas", + "you have a negative balance of": "tienes un saldo negativo de", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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 Siro 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", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "Fecha de vencimiento", + "⚠️ You need to choose an amount!": "⚠️ ¡Necesitas elegir un monto!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "Pagar con billetera", + "💳 Pay with Credit Card": "💳 Pagar con tarjeta de crédito", +}; diff --git a/siro_driver/lib/controller/local/fa.dart b/siro_driver/lib/controller/local/fa.dart new file mode 100644 index 0000000..83d6861 --- /dev/null +++ b/siro_driver/lib/controller/local/fa.dart @@ -0,0 +1,2662 @@ +final Map fa = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " و سیاست حریم خصوصی ما را تأیید کنید.", + " is ON for this month": " در این ماه روشن است", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "۱. مشکل خود را شرح دهید", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "۱۰ و ۴٪ تخفیف بگیرید", + "100 and get 11% discount": "۱۰۰ و ۱۱٪ تخفیف بگیرید", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "۲. ضمیمه کردن فایل صوتی", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "۲۰ و ۶٪ تخفیف بگیرید", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "۳. بررسی جزئیات و پاسخ", + "300 LE": "300 LE", + "3000 LE": "۳۰۰۰ تومان", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "۴۰ و ۸٪ تخفیف بگیرید", + "5 digit": "۵ رقم", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "سفری با رزرو قبلی، که به شما امکان انتخاب بهترین سفیران و خودروها را می‌دهد.", + "AI Page": "صفحه هوش مصنوعی", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "درباره ما", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "پذیرش سفارش", + "Accept Ride": "Accept Ride", + "Accepted Ride": "سفر پذیرفته شد", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "مدت فعال:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "افزودن کارت", + "Add Credit Card": "افزودن کارت اعتباری", + "Add Home": "افزودن خانه", + "Add Location": "افزودن مکان", + "Add Location 1": "افزودن مکان ۱", + "Add Location 2": "افزودن مکان ۲", + "Add Location 3": "افزودن مکان ۳", + "Add Location 4": "افزودن مکان ۴", + "Add Payment Method": "افزودن روش پرداخت", + "Add Phone": "افزودن تلفن", + "Add Promo": "افزودن کد تخفیف", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "افزودن توقف", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "افزایش اعتبار با روش‌های امن", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "آدرس", + "Address:": "Address:", + "Admin DashBoard": "داشبورد مدیریت", + "Affordable for Everyone": "مقرون‌به‌صرفه برای همه", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "هشدارها", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "اجازه دسترسی به موقعیت", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "خطایی در پرداخت رخ داد.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "هنگام انتخاب مخاطبین خطایی رخ داد:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "خطای غیرمنتظره‌ای رخ داد. لطفاً دوباره تلاش کنید.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "برنامه با مسافر", + "Applied": "ثبت شد", + "Apply": "Apply", + "Apply Order": "پذیرش درخواست", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "نزدیک منطقه شما هستم. ۳ دقیقه دیگر می‌رسم.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "مطمئنید می‌خواهید بروید به", + "Are you Sure to LogOut?": "آیا برای خروج مطمئنید؟", + "Are you sure to cancel?": "مطمئنید لغو می‌کنید؟", + "Are you sure to delete recorded files": "آیا از حذف فایل‌های ضبط شده مطمئنید", + "Are you sure to delete this location?": "آیا از حذف این مکان مطمئن هستید؟", + "Are you sure to delete your account?": "آیا مطمئنید؟", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "آیا مطمئن هستید؟ این عملیات قابل بازگشت نیست.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "آیا می‌خواهید به این مکان بروید", + "Are you want to go to this site": "می‌خواهید به این مکان بروید", + "Are you want to wait drivers to accept your order": "می‌خواهید منتظر پذیرش بمانید؟", + "Arrival time": "زمان رسیدن", + "Associate Degree": "کاردانی", + "Attach this audio file?": "آیا این فایل صوتی پیوست شود؟", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "فایل صوتی با موفقیت آپلود شد.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "آماده برای سفر", + "Average of Hours of": "میانگین ساعات", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "خودروی اقتصادی", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "بحرین", + "Balance": "موجودی", + "Balance limit exceeded": "موجودی بیش از حد مجاز است", + "Balance not enough": "موجودی کافی نیست", + "Balance:": "موجودی:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "آهسته باش", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "لطفاً عکس دقیق بگیرید\\nشما دارید", + "Be sure to use it quickly! This code expires at": "سریع استفاده کنید! این کد منقضی می‌شود در", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "چون ما نزدیکیم، حق انتخاب دارید.", + "Before we start, please review our terms.": "قبل از شروع، لطفاً شرایط ما را مرور کنید.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "بهترین انتخاب برای شهرها", + "Best choice for comfort car and flexible route and stops point": "بهترین انتخاب برای راحتی و مسیر منعطف", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "تاریخ تولد", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "هزینه رزرو", + "Bottom Bar Example": "مثال نوار پایین", + "But you have a negative salary of": "اما موجودی منفی دارید به مبلغ", + "CODE": "کد", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "پایان تماس", + "Call Ended": "Call Ended", + "Call Income": "تماس ورودی", + "Call Income from Driver": "تماس از راننده", + "Call Income from Passenger": "تماس ورودی از مسافر", + "Call Left": "تماس‌های باقی‌مانده", + "Call Options": "Call Options", + "Call Page": "صفحه تماس", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "دسترسی دوربین رد شد.", + "Camera not initialized yet": "دوربین آماده نیست", + "Camera not initilaized yet": "دوربین هنوز آماده نیست", + "Can I cancel my ride?": "آیا می‌توانم سفرم را لغو کنم؟", + "Can we know why you want to cancel Ride ?": "چرا می‌خواهید لغو کنید؟", + "Cancel": "لغو", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "لغو سفر", + "Cancel Search": "لغو جستجو", + "Cancel Trip": "لغو سفر", + "Cancel Trip from driver": "لغو سفر توسط راننده", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "لغو شد", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "تخفیف بیشتر ممکن نیست.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "از گواهی عدم سوءپیشینه عکس بگیرید", + "Capture an Image of Your Driver License": "عکس گواهینامه خود را بگیرید", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "عکس پشت کارت ملی", + "Capture an Image of Your ID Document front": "از روی کارت ملی عکس بگیرید", + "Capture an Image of Your car license back": "عکس پشت کارت ماشین", + "Capture an Image of Your car license front": "از روی کارت ماشین عکس بگیرید", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "خودرو", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "جزئیات خودرو", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "کارت ماشین", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "شماره کارت", + "Card Payment": "Card Payment", + "CardID": "شماره کارت", + "Cash": "نقدی", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "تغییر کشور", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "شماره شاسی", + "Check back later for new offers!": "بعداً برای پیشنهادات جدید سر بزنید!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "انتخاب زبان", + "Choose a contact option": "یک گزینه تماس انتخاب کنید", + "Choose between those Type Cars": "از بین این نوع خودروها انتخاب کنید", + "Choose from Map": "انتخاب از روی نقشه", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "گزینه مناسب خود را انتخاب کنید.", + "Choose who this order is for": "این درخواست برای چه کسی است", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "شهر", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "هدیه ۲۰ تومانی خود را برای دعوت دریافت کنید", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "برای نمایش روی نقشه کلیک کنید", + "Close": "بستن", + "Closest & Cheapest": "نزدیک‌ترین و ارزان‌ترین", + "Closest to You": "نزدیک‌ترین به شما", + "Code": "کد", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "کد تأیید نشد", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "رنگ", + "Color is": "Color is", + "Comfort": "آسایش (Comfort)", + "Comfort choice": "انتخاب راحت", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "ارتباطات", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "شکایت", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "برای این سفر نمی‌توان شکایت ثبت کرد. ممکن است تکمیل یا شروع نشده باشد.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "تأیید", + "Confirm & Find a Ride": "تأیید و یافتن خودرو", + "Confirm Attachment": "تأیید پیوست", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "تأیید انتخاب", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "ایمیل خود را تأیید کنید", + "Confirmation": "Confirmation", + "Connected": "متصل", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "گزینه‌های تماس", + "Contact Support": "تماس با پشتیبانی", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "تماس با ما", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "برای انتخاب مخاطبین دسترسی به دفترچه تلفن الزامی است.", + "Contact us for any questions on your order.": "برای هر سوالی تماس بگیرید.", + "Contacts Loaded": "مخاطبین بارگذاری شدند", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "ادامه", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "کپی", + "Copy Code": "کپی کد", + "Copy this Promo to use it in your Ride!": "این کد تخفیف را کپی و استفاده کنید!", + "Cost": "Cost", + "Cost Duration": "هزینه مدت زمان", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "تعداد ساعات در روزها", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "برای دریافت پول کیف پول بسازید", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "گواهی عدم سوءپیشینه الزامی است", + "Criminal Record": "گواهی عدم سوءپیشینه", + "Cropper": "برش دهنده", + "Current Balance": "موجودی فعلی", + "Current Location": "موقعیت فعلی", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "مشتری یافت نشد", + "Customer phone is not active": "تلفن مشتری فعال نیست", + "DISCOUNT": "تخفیف", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "تاریخ", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "تاریخ تولد:", + "Date of Birth:": "Date of Birth:", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "حذف حساب من", + "Delete Permanently": "حذف دائمی", + "Deleted": "حذف شد", + "Delivery": "Delivery", + "Destination": "مقصد", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "تشخیص چهره ", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "حجم موتور", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "آیا کد دعوت از راننده دیگری دارید؟", + "Do you want to change Home location": "می‌خواهید خانه را تغییر دهید", + "Do you want to change Work location": "می‌خواهید محل کار را تغییر دهید", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "می‌خواهید انعام دهید؟", + "Docs": "Docs", + "Doctoral Degree": "دکترا", + "Document Number:": "Document Number:", + "Documents check": "بررسی مدارک", + "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 Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "اپلیکیشن را دانلود کنید:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "راننده", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "راننده سفر را برای شما پذیرفت", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "راننده درخواست سفر را برای شما ثبت کرد", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "راننده سفر شما را لغو کرد", + "Driver Car Plate": "پلاک راننده", + "Driver Finish Trip": "راننده سفر را تمام کرد", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "راننده در حال حرکت به سمت مسافر است", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "نام راننده", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "ثبت نام راننده", + "Driver Registration & Requirements": "ثبت نام راننده و الزامات", + "Driver Wallet": "کیف پول راننده", + "Driver already has 2 trips within the specified period.": "راننده در حال حاضر ۲ سفر در بازه زمانی مشخص دارد.", + "Driver is on the way": "راننده در راه است", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "راننده در مبدأ منتظر است.", + "Driver joined the channel": "راننده به کانال پیوست", + "Driver left the channel": "راننده کانال را ترک کرد", + "Driver phone": "تلفن راننده", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "کلاس گواهینامه", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "مدت زمان:", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "ویرایش پروفایل", + "Edit Your data": "ویرایش اطلاعات", + "Education": "تحصیلات", + "Egypt": "مصر", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "الکتریکی", + "Email": "Email", + "Email Us": "به ما ایمیل بزنید", + "Email Wrong": "ایمیل اشتباه", + "Email is": "ایمیل:", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "ایمیل وارد شده اشتباه است.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "نوع شغل", + "Enable Location": "فعال‌سازی موقعیت", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "پایان سفر", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "از سفری امن و راحت لذت ببرید.", + "Enjoy competitive prices across all trip options, making travel accessible.": "از قیمت‌های رقابتی لذت ببرید.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "نام خود را وارد کنید", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "وارد کردن تلفن", + "Enter phone number": "Enter phone number", + "Enter promo code": "کد تخفیف را وارد کنید", + "Enter promo code here": "کد تخفیف اینجا", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "کد تخفیف را وارد کنید و بگیرید", + "Enter your City": "Enter your City", + "Enter your Note": "یادداشت خود را وارد کنید", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "شکایت خود را اینجا بنویسید...", + "Enter your email": "Enter your email", + "Enter your email address": "آدرس ایمیل خود را وارد کنید", + "Enter your feedback here": "بازخورد خود را اینجا وارد کنید", + "Enter your first name": "نام خود را وارد کنید", + "Enter your last name": "نام خانوادگی خود را وارد کنید", + "Enter your password": "Enter your password", + "Enter your phone number": "شماره تلفن خود را وارد کنید", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "خطا", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "تاریخ انقضا", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "تاریخ انقضا", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "نتیجه تشخیص چهره", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "سریع‌ترین پاسخ به شکایات", + "Favorite Places": "Favorite Places", + "Fee is": "هزینه:", + "Feed Back": "بازخورد", + "Feedback": "بازخورد", + "Feedback data saved successfully": "با موفقیت ذخیره شد", + "Female": "زن", + "Find answers to common questions": "پاسخ سوالات متداول", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "پایان نظارت", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "نام", + "First Trip": "First Trip", + "First name": "نام", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "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 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 Siro 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": "سوالات متداول", + "Fri": "Fri", + "From": "از", + "From :": "از:", + "From : Current Location": "از: موقعیت فعلی", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "سوخت", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "نام کامل", + "FullName": "نام کامل", + "GPS Required Allow !.": "GPS لازم است!", + "Gender": "جنسیت", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "Get": "Get", + "Get Details of Trip": "دریافت جزئیات سفر", + "Get Direction": "مسیریابی", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get features for your country": "Get features for your country", + "Get it Now!": "همین الان بگیر!", + "Get to your destination quickly and easily.": "سریع و آسان به مقصد برسید.", + "Getting Started": "شروع کار", + "Gift Already Claimed": "هدیه قبلاً دریافت شده است", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "رفتن به مکان‌های مورد علاقه", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "مرحله بعد\\nاسکن کارت ماشین.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "الان به موقعیت مسافر بروید", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "رفتن به این مقصد", + "Go to this location": "برو به این موقعیت", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "س و", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "کد تخفیف دارید؟", + "Head": "Head", + "Heading your way now. Please be ready.": "دارم می‌آیم. لطفاً آماده باشید.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "سلام، من سفیر هستم", + "Hello this is Driver": "سلام من راننده هستم", + "Help & Support": "Help & Support", + "Help Details": "جزئیات راهنما", + "Helping Center": "مرکز راهنما", + "Helping Page": "Helping Page", + "Here recorded trips audio": "صدای ضبط شده سفرها", + "Hi": "سلام", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "سلام، من الان حرکت می‌کنم", + "Hi! This is": "سلام! این", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "دیپلم", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "تاریخچه سفر", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "چگونه هزینه سفر را پرداخت کنم؟", + "How can I register as a driver?": "چگونه به عنوان راننده ثبت نام کنم؟", + "How do I communicate with the other party (passenger/driver)?": "چگونه ارتباط برقرار کنم؟", + "How do I request a ride?": "چگونه درخواست سفر دهم؟", + "How many hours would you like to wait?": "چند ساعت می‌خواهید منتظر بمانید؟", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "موافقم", + "I Arrive": "I Arrive", + "I Arrive your site": "به موقعیت شما رسیدم", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "مبدأ/مقصد را اشتباه وارد کردم", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "رسیدم", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "نمی‌توانم با تشخیص چهره ثبت نام کنم", + "I want to order for myself": "برای خودم درخواست می‌دهم", + "I want to order for someone else": "برای شخص دیگری درخواست می‌دهم", + "I was just trying the application": "فقط داشتم برنامه را تست می‌کردم", + "I will go now": "من الان می‌روم", + "I will slow down": "من سرعتم را کم می‌کنم", + "I've arrived.": "I've arrived.", + "ID Documents Back": "پشت کارت ملی", + "ID Documents Front": "روی کارت ملی", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "اگر در ماشین هستید، شروع سفر را بزنید", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "اگر کمک نیاز دارید تماس بگیرید", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "برای افزودن توقف اینجا کلیک کنید", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "اگر می‌خواهید گوگل مپ مستقیماً اجرا شود", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "نتیجه تشخیص تصویر: ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "تماس اینترنتی درون‌برنامه‌ای", + "Including Tax": "شامل مالیات", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "⚠️ کد پیامک اشتباه است. لطفاً دوباره تلاش کنید.", + "Increase Fare": "افزایش کرایه", + "Increase Fee": "افزایش کرایه", + "Increase Your Trip Fee (Optional)": "افزایش هزینه سفر (اختیاری)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "افزایش کرایه ممکن است رانندگان بیشتری را جذب کند. آیا مایل به افزایش قیمت هستید؟", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "درج", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "درج شماره اضطراری", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "کد تخفیف را وارد کنید", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "تاریخ معاینه فنی", + "InspectionResult": "نتیجه معاینه", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "MPIN نامعتبر", + "Invalid OTP": "کد تأیید نامعتبر", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "دعوت استفاده شده", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "دعوت‌نامه با موفقیت ارسال شد", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "آیا مسافر در خودرو است؟", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "تاریخ صدور", + "IssueDate": "تاریخ صدور", + "JOD": "تومان", + "Join": "پیوستن", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "اردن", + "Just now": "Just now", + "KM": "کیلومتر", + "Keep it up!": "ادامه بده!", + "Kuwait": "کویت", + "L.E": "L.E", + "L.S": "L.S", + "LE": "تومان", + "Lady": "بانوان", + "Lady Captain for girls": "راننده خانم برای بانوان", + "Lady Captains Available": "رانندگان خانم موجود است", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "زبان", + "Language Options": "گزینه‌های زبان", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "نام خانوادگی", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "آخرین سفر اخیر", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "ترک کردن", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "بررسی کارت ماشین ", + "Lets check License Back Face": "بررسی پشت گواهینامه", + "License Categories": "دسته‌های گواهینامه", + "License Expiry Date": "License Expiry Date", + "License Type": "نوع گواهینامه", + "Link a phone number for transfers": "اتصال شماره تلفن برای انتقال", + "Location Access Required": "Location Access Required", + "Location Link": "لینک موقعیت", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "خروج", + "Log Out Page": "صفحه خروج", + "Login": "Login", + "Login Captin": "ورود سفیر", + "Login Driver": "ورود راننده", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "کمترین قیمت حاصل شد", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "سازنده:", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "سازنده", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "مرد", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "نقشه مسافر", + "Marital Status": "وضعیت تاهل", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "حداکثر کرایه", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "حداقل کرایه", + "Minute": "دقیقه", + "Minutes": "Minutes", + "Mishwar Vip": "مشوار VIP", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "مدل", + "Model is": "مدل:", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "صبح", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "امن‌ترین روش‌ها", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "نقشه را برای تنظیم پین جابجا کنید", + "Mute": "Mute", + "My Balance": "موجودی من", + "My Card": "کارت من", + "My Cared": "کارت‌های من", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "پروفایل من", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "موقعیت فعلی من:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "موقعیت من", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "نام", + "Name (Arabic)": "نام (فارسی/عربی)", + "Name (English)": "نام (انگلیسی)", + "Name :": "نام:", + "Name in arabic": "نام به فارسی", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "کارت ملی", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "کد ملی", + "NationalID": "کد ملی", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "بعدی", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "شب", + "No": "خیر", + "No ,still Waiting.": "نه، هنوز منتظرم.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "خودرویی در محل شما نیست. متاسفیم!", + "No Car or Driver Found in your area.": "خودرو یا راننده‌ای یافت نشد.", + "No I want": "نه من می‌خواهم", + "No Promo for today .": "امروز تخفیفی نیست.", + "No Response yet.": "هنوز پاسخی نیست.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "سیم‌کارت ندارید؟ مشکلی نیست! از طریق برنامه تماس بگیرید.", + "No accepted orders? Try raising your trip fee to attract riders.": "سفارشی پذیرفته نشد؟ مبلغ را افزایش دهید.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "فایل صوتی یافت نشد.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "مخاطبی یافت نشد", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "هیچ مخاطبی با شماره تلفن در دستگاه شما یافت نشد.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "هیچ راننده‌ای قبول نکرد", + "No drivers accepted your request yet": "هنوز هیچ راننده‌ای درخواست شما را نپذیرفته است", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "چهره‌ای تشخیص داده نشد", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "عکسی انتخاب نشده", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "هنوز دعوتی پیدا نشد!", + "No one accepted? Try increasing the fare.": "کسی قبول نکرد؟ افزایش کرایه را امتحان کنید.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "مسافری با این شماره تلفن یافت نشد", + "No phone number": "No phone number", + "No promos available right now.": "در حال حاضر تخفیفی موجود نیست.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "هنوز سفری یافت نشد", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "تاریخچه سفری یافت نشد", + "No trip yet found": "سفری یافت نشد", + "No user found for the given phone number": "کاربری با این شماره تلفن یافت نشد", + "No wallet record found": "رکورد کیف پول یافت نشد", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "نه، ممنون", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "متصل نیست", + "Not set": "تنظیم نشده", + "Not updated": "Not updated", + "Notifications": "اعلان‌ها", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "شغل", + "Offline": "Offline", + "Ok": "باشه", + "Ok , See you Tomorrow": "باشه، تا فردا", + "Ok I will go now.": "باشه، الان می‌روم.", + "Old and affordable, perfect for budget rides.": "قدیمی و مقرون‌به‌صرفه.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "باز کردن تنظیمات", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "یا به صورت نقدی پرداخت کنید", + "Order": "درخواست", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "درخواست ثبت شد", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "لغو توسط مسافر", + "Order Details Siro": "Order Details Siro", + "Order History": "تاریخچه سفارش‌ها", + "Order ID": "Order ID", + "Order Request Page": "صفحه درخواست سفر", + "Order Under Review": "Order Under Review", + "Order for myself": "درخواست برای خودم", + "Order for someone else": "درخواست برای دیگری", + "OrderId": "شناسه سفارش", + "OrderVIP": "درخواست VIP", + "Orders Page": "Orders Page", + "Origin": "مبدأ", + "Original Fare": "Original Fare", + "Other": "سایر", + "Our dedicated customer service team ensures swift resolution of any issues.": "تیم پشتیبانی ما مشکلات را سریع حل می‌کند.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "نام مالک", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "مسافر سفر را لغو کرد", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "مسافر به سمت شما می‌آید", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "رمز باید حداقل ۶ کاراکتر باشد.", + "Paste WhatsApp location link": "لینک موقعیت واتس‌اپ را پیست کنید", + "Paste location link here": "لینک موقعیت را اینجا پیست کنید", + "Paste the code here": "کد را اینجا پیست کنید", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "پرداخت مستقیم به سفیر (راننده)", + "Pay from my budget": "پرداخت از اعتبار من", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "پرداخت با کارت اعتباری", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "پرداخت با کیف پول", + "Pay with Your": "پرداخت با", + "Pay with Your PayPal": "پرداخت با PayPal", + "Payment Failed": "پرداخت ناموفق", + "Payment History": "تاریخچه پرداخت", + "Payment Method": "روش پرداخت", + "Payment Method:": "Payment Method:", + "Payment Options": "گزینه‌های پرداخت", + "Payment Successful": "پرداخت موفق", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "پرداخت‌ها", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "عالی برای ماجراجویان", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "عالی برای مسافرانی که دنبال خودروهای جدید و آزادی انتخاب مسیر هستند", + "Permission denied": "دسترسی رد شد", + "Personal Information": "اطلاعات شخصی", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "شماره تلفن:", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "انتخاب از نقشه", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "مقصد را از نقشه انتخاب کنید", + "Pick your ride location on the map - Tap to confirm": "محل سفر را روی نقشه انتخاب کنید - برای تأیید ضربه بزنید", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "پلاک", + "Plate Number": "شماره پلاک", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "لطفاً صبر کنید شاید مسافر لغو کند!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "لطفاً وارد کنید", + "Please enter Your Email.": "لطفاً ایمیل خود را وارد کنید.", + "Please enter Your Password.": "لطفاً رمز عبور خود را وارد کنید.", + "Please enter a correct phone": "لطفاً یک شماره تلفن صحیح وارد کنید", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "لطفاً شماره تلفن وارد کنید", + "Please enter a valid 16-digit card number": "لطفاً شماره کارت ۱۶ رقمی معتبر وارد کنید", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "لطفاً کد معتبر وارد کنید", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "کد CVV", + "Please enter the cardholder name": "نام دارنده کارت", + "Please enter the complete 6-digit code.": "لطفاً کد کامل ۶ رقمی را وارد کنید.", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "تاریخ انقضا", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "لطفاً شهر خود را وارد کنید.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "لطفاً سوال خود را وارد کنید.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "لطفاً بازخورد خود را وارد کنید.", + "Please enter your first name.": "لطفاً نام خود را وارد کنید.", + "Please enter your last name.": "لطفاً نام خانوادگی خود را وارد کنید.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "لطفاً شماره تلفن خود را وارد کنید.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "لطفاً به سمت خودروی راننده بروید", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "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 Siro 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 select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "لطفاً هویت خود را تأیید کنید", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "لطفاً صبر کنید تا مسافر سوار شود.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "امتیاز", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "خطرات امنیتی احتمالی شناسایی شد. ممکن است برنامه به درستی کار نکند.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "سیاست حریم خصوصی", + "Profile": "پروفایل", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "کد تخفیف", + "Promo Already Used": "تخفیف قبلاً استفاده شده", + "Promo Code": "کد تخفیف", + "Promo Code Accepted": "کد تخفیف پذیرفته شد", + "Promo Copied!": "کد تخفیف کپی شد!", + "Promo End !": "تخفیف تمام شد!", + "Promo Ended": "تخفیف تمام شد", + "Promo code copied to clipboard!": "کد تخفیف کپی شد!", + "Promos": "تخفیف‌ها", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "پرداخت لغو شد.", + "Qatar": "قطر", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "دسترسی سریع", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "بی‌صدا و دوستدار محیط زیست", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "امتیاز به سفیر", + "Rate Driver": "امتیاز به راننده", + "Rate Our App": "Rate Our App", + "Rate Passenger": "امتیاز به مسافر", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "رفت و برگشت", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رفت و برگشت: سرویس سفر دوطرفه برای راحتی سفر بین شهری.", + "Reason": "Reason", + "Recent Places": "مکان‌های اخیر", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "شارژ حساب من", + "Record": "Record", + "Record saved": "ضبط ذخیره شد", + "Recorded Trips (Voice & AI Analysis)": "سفرهای ضبط شده (صدا و تحلیل هوش مصنوعی)", + "Recorded Trips for Safety": "سفرهای ضبط شده برای امنیت", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "رد درخواست", + "Refused": "Refused", + "Register": "ثبت نام", + "Register Captin": "ثبت نام سفیر", + "Register Driver": "ثبت نام راننده", + "Register as Driver": "ثبت نام به عنوان راننده", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "مذهب", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "ارسال مجدد کد", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "مدیریت سفر", + "Ride Status": "Ride Status", + "Ride Summaries": "خلاصه سفرها", + "Ride Summary": "خلاصه سفر", + "Ride Today :": "Ride Today :", + "Ride Wallet": "کیف پول سفر", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "سفرها", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "مسیرهای سفر", + "Route Not Found": "مسیر یافت نشد", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "تلفن اضطراری", + "SUBMIT": "SUBMIT", + "SYP": "لیره سوریه", + "Safety & Security": "ایمنی و امنیت", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "عربستان سعودی", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "ذخیره کارت اعتباری", + "Saved Sucssefully": "با موفقیت ذخیره شد", + "Scan Driver License": "اسکن گواهینامه", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "اسکن ID MklGoogle", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "اسکن کارت ملی", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "اسکوتر", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "جستجوی نقطه توقف", + "Search for your Start point": "جستجوی نقطه شروع", + "Search for your destination": "جستجوی مقصد", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "در حال جستجوی نزدیک‌ترین سفیر...", + "Security Warning": "⚠️ هشدار امنیتی", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "به امید دیدار در جاده!", + "Select Country": "انتخاب کشور", + "Select Date": "انتخاب تاریخ", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "انتخاب نوع درخواست", + "Select Payment Amount": "انتخاب مبلغ پرداخت", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "انتخاب زمان", + "Select Waiting Hours": "انتخاب ساعات انتظار", + "Select Your Country": "کشور خود را انتخاب کنید", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "یک پیام انتخاب کنید", + "Select recorded trip": "انتخاب سفر ضبط شده", + "Select your destination": "انتخاب مقصد", + "Select your preferred language for the app interface.": "زبان مورد نظر خود را برای برنامه انتخاب کنید.", + "Selected Date": "تاریخ انتخاب شده", + "Selected Date and Time": "تاریخ و زمان انتخاب شده", + "Selected Location": "Selected Location", + "Selected Time": "زمان انتخاب شده", + "Selected driver": "راننده انتخاب شده", + "Selected file:": "فایل انتخاب شده:", + "Send Email": "Send Email", + "Send Invite": "ارسال دعوت‌نامه", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "ارسال کد تأیید", + "Send Verification Code": "ارسال کد تأیید", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "ارسال پیام سفارشی", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "نشست منقضی شد. لطفاً دوباره وارد شوید.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "تنظیم شماره تلفن کیف پول", + "Set pickup location": "تنظیم محل سوار شدن", + "Setting": "تنظیمات", + "Settings": "تنظیمات", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "اشتراک‌گذاری برنامه", + "Share Code": "Share Code", + "Share Trip Details": "اشتراک جزئیات سفر", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "این کد را به اشتراک بگذارید و پاداش بگیرید!", + "Share via": "Share via", + "Share with friends and earn rewards": "با دوستان به اشتراک بگذارید و پاداش بگیرید", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "نمایش دعوت‌ها", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "نمایش تخفیف‌ها", + "Show Promos to Charge": "نمایش تخفیف‌ها برای شارژ", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "نمایش آخرین تخفیف‌ها", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "نمایش", + "Sign In by Apple": "ورود با اپل", + "Sign In by Google": "ورود با گوگل", + "Sign In with Google": "Sign In with Google", + "Sign Out": "خروج از حساب", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "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": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "سرویس ون جادار، ایده‌آل برای خانواده‌ها و گروه‌ها. سفر راحت، امن و مقرون‌به‌صرفه.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "شروع ضبط", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "شروع سفر", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "آمار", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "ارسال ", + "Submit Complaint": "ارسال شکایت", + "Submit Question": "ارسال سوال", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "ثبت شکایت", + "Submit rating": "ثبت امتیاز", + "Success": "موفقیت", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "تغییر مسافر", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "سوریه", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "عکس گرفتن", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "عکس از گواهینامه", + "Take Picture Of ID Card": "عکس از کارت ملی", + "Tap on the promo code to copy it!": "برای کپی ضربه بزنید!", + "Tap to upload": "Tap to upload", + "Target": "هدف", + "Tariff": "تعرفه", + "Tariffs": "تعرفه‌ها", + "Tax Expiry Date": "تاریخ انقضای مالیات", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "ممنون", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "راننده به‌زودی می‌رسد.", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "مسئولیت مسیر با سفیر است.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "فاصله کمتر از ۵۰۰ متر.", + "The driver accept your order for": "راننده سفارش شما را پذیرفت برای", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "راننده سفر شما را پذیرفت", + "The driver canceled your ride.": "راننده سفر شما را لغو کرد.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "راننده در راه است", + "The driver waiting you in picked location .": "راننده در محل انتخاب شده منتظر شماست.", + "The driver waitting you in picked location .": "راننده در محل انتخاب شده منتظر شماست.", + "The drivers are reviewing your request": "رانندگان در حال بررسی", + "The email or phone number is already registered.": "ایمیل یا شماره تلفن قبلاً ثبت شده است.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "دعوت‌نامه با موفقیت ارسال شد", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "درخواست توسط راننده دیگری پذیرفته شد", + "The order has been accepted by another driver.": "درخواست توسط راننده دیگری پذیرفته شد.", + "The payment was approved.": "پرداخت تأیید شد.", + "The payment was not approved. Please try again.": "پرداخت تأیید نشد. دوباره تلاش کنید.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "قیمت ممکن است تغییر کند.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "دوره تخفیف تمام شده.", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "سفر شروع شد! می‌توانید تماس اضطراری بگیرید یا سفر را اشتراک بگذارید.", + "There is no data yet.": "هنوز داده‌ای نیست.", + "There is no help Question here": "سوال کمکی اینجا نیست", + "There is no notification yet": "اعلانی وجود ندارد", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "این مبلغ برای تمام سفرهایی که از مسافران گرفتم", + "This amount for all trip I get from Passengers and Collected For me in": "این مبلغ جمع‌آوری شده برای من در", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "این یک اعلان زمان‌بندی شده است.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "این برای اسکوتر یا موتورسیکلت است.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "این شماره قبلاً دعوت شده است.", + "This price is": "این قیمت است", + "This price is fixed even if the route changes for the driver.": "قیمت ثابت است.", + "This price may be changed": "این قیمت ممکن است تغییر کند", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "این سفر توسط راننده دیگری گرفته شد.", + "This ride type allows changes, but the price may increase": "امکان تغییر دارد اما قیمت ممکن است افزایش یابد", + "This ride type does not allow changes to the destination or additional stops": "امکان تغییر مقصد یا توقف وجود ندارد", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "سفر مستقیم با قیمت ثابت.", + "This trip is for women only": "این سفر فقط برای بانوان است", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "زمان رسیدن", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro 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.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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 Siro support directly.", + "To use Wallet charge it": "برای استفاده از کیف پول آن را شارژ کنید", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "شارژ کیف پول", + "Top up Wallet to continue": "برای ادامه کیف پول را شارژ کنید", + "Total Amount:": "مبلغ کل:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "مجموع مدت اتصال:", + "Total Cost": "هزینه کل", + "Total Cost is": "Total Cost is", + "Total Duration:": "مدت کل:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "مجموع ساعات در ماه", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "مجموع امتیازات:", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "مجموع بودجه در ماه", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "با خودروی الکتریکی مدرن و بی‌صدا سفر کنید. انتخابی ممتاز و دوستدار محیط زیست.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "سفر لغو شد", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "سفر لغو شد. هزینه سفر به کیف پول شما اضافه خواهد شد.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "نظارت بر سفر", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "سفر پایان یافت", + "Trip has Steps": "سفر مراحلی دارد", + "Trip is Begin": "سفر آغاز شد", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "سفرهای ضبط شده", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "ترکیه", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "مکان را اینجا بنویسید", + "Type something": "Type something", + "Type something...": "چیزی بنویسید...", + "Type your Email": "ایمیل خود را وارد کنید", + "Type your message": "پیام خود را بنویسید", + "Type your message...": "Type your message...", + "Types of Trips in Siro:": "Types of Trips in Siro:", + "USA": "آمریکا", + "Uncompromising Security": "امنیت بی چون و چرا", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "بروزرسانی", + "Update Available": "Update Available", + "Update Education": "بروزرسانی تحصیلات", + "Update Gender": "بروزرسانی جنسیت", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "آپلود شد", + "Use Touch ID or Face ID to confirm payment": "از اثر انگشت یا چهره استفاده کنید", + "Use code:": "استفاده از کد:", + "Use my invitation code to get a special gift on your first ride!": "از کد دعوت من استفاده کنید تا در اولین سفر هدیه ویژه بگیرید!", + "Use my referral code:": "از کد معرف من استفاده کنید:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "کاربر وجود ندارد.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "کاربری با این شماره تلفن یا ایمیل قبلاً ثبت نام کرده است.", + "Uses cellular network": "Uses cellular network", + "VIN": "شماره شاسی", + "VIN :": "شماره شاسی:", + "VIN is": "شماره شاسی:", + "VIP Order": "سفارش VIP", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "معتبر تا:", + "Value": "Value", + "Van": "ون", + "Van / Bus": "Van / Bus", + "Van for familly": "ون برای خانواده", + "Variety of Trip Choices": "تنوع انتخاب سفر", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "جزئیات خودرو (پشت)", + "Vehicle Details Front": "جزئیات خودرو (جلو)", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "گزینه‌های خودرو", + "Verification Code": "کد تأیید", + "Verify": "تأیید", + "Verify Email": "تأیید ایمیل", + "Verify Email For Driver": "تأیید ایمیل برای راننده", + "Verify OTP": "تأیید کد", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "بازخورد لرزشی برای همه دکمه‌ها", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "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 Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "در انتظار سفیر...", + "Waiting for Driver ...": "در انتظار راننده...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "در انتظار موقعیت شما", + "Wallet": "کیف پول", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "کیف پول مسدود شده است", + "Wallet!": "کیف پول!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing 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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "در حال پردازش عکس، صبر کنید ", + "We are search for nearst driver": "جستجوی نزدیک‌ترین راننده", + "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 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 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 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 need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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 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 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": "کد ۵ رقمی به ایمیل شما ارسال شد", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "ما به دنبال راننده جدید می‌گردیم.\\nلطفاً صبر کنید.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "خوش آمدید!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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 Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "چه نوع خودروهایی موجود است؟", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "استخراج موقعیت واتس‌اپ", + "When": "وقتی", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "به کجا می‌روید؟", + "Where are you, sir?": "Where are you, sir?", + "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 Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "محل کار", + "Work & Contact": "کار و تماس", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "ساعات کاری ۱۲ تا ۱۹.\\nواتس‌اپ یا ایمیل بزنید.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "نوشتن یادداشت", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "سال", + "Year is": "سال:", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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 !": "برای امروز متوقف شدید!", + "You Can Cancel Trip And get Cost of Trip From": "می‌توانید لغو کنید و هزینه را دریافت کنید از", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "اگر سفیر به موقع نیامد می‌توانید لغو کنید", + "You Dont Have Any amount in": "موجودی ندارید در", + "You Dont Have Any places yet !": "هنوز مکانی ندارید!", + "You Earn today is": "You Earn today is", + "You Have": "شما دارید", + "You Have Tips": "انعام دارید", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "۳ سفر را رد کردید.\\nفردا می‌بینیمتان!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "باید دلیلی را انتخاب کنید.", + "You Should choose rate figure": "باید امتیاز انتخاب کنید", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "شما در حال حذف هستید", + "You are Stopped": "متوقف شدید", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "نزدیک مسافر نیستید", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "می‌توانید امتیاز بخرید تا آنلاین شوید\\nاز لیست زیر", + "You can buy points from your budget": "می‌توانید از اعتبار خود امتیاز بخرید", + "You can call or record audio during this trip.": "شما می‌توانید در طول این سفر تماس بگیرید یا صدا ضبط کنید.", + "You can call or record audio of this trip": "می‌توانید تماس بگیرید یا ضبط کنید", + "You can cancel Ride now": "الان می‌توانید سفر را لغو کنید", + "You can cancel trip": "می‌توانید سفر را لغو کنید", + "You can change the Country to get all features": "برای دسترسی به تمام ویژگی‌ها کشور را تغییر دهید", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "می‌توانید زبان برنامه را تغییر دهید", + "You can change the vibration feedback for all buttons": "می‌توانید بازخورد لرزشی دکمه‌ها را تغییر دهید", + "You can claim your gift once they complete 2 trips.": "پس از انجام ۲ سفر توسط آنها، می‌توانید هدیه خود را دریافت کنید.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "از طریق چت درون برنامه‌ای.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "تماس در ساعات ۱۲ تا ۱۹.", + "You can decline a request without any cost": "می‌توانید بدون هزینه رد کنید", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "می‌توانید نقدی یا با کارت پرداخت کنید.", + "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 Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "شما شایسته این هدیه هستید", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "هنوز تلفن اضطراری اضافه نکرده‌اید!", + "You dont have Points": "امتیاز ندارید", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "شما قبلاً هدیه خود را برای این دعوت دریافت کرده‌اید", + "You have already used this promo code.": "شما قبلاً از این کد استفاده کرده‌اید.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "شما تماس از راننده دارید", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "کد تخفیف را کپی کردید.", + "You have earned 20": "شما ۲۰ امتیاز کسب کردید", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "تمام دفعات را استفاده کردید", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "شما یک هدیه برای دعوت دریافت کردید", + "You have in account": "در حساب دارید", + "You have promo!": "تخفیف دارید!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "باید ایمیل را تأیید کنید!", + "You must be charge your Account": "باید حساب را شارژ کنید", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "برای تغییر زبان باید برنامه را دوباره راه‌اندازی کنید.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "شما باید آن را آپلود کنید.", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "باید یکی را انتخاب کنید", + "You should select your country": "باید کشور خود را انتخاب کنید", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "مسافت سفر شما:", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "پس از پایان تایمر به مقصد خواهید رسید.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "هزینه را به راننده پرداخت می‌کنید یا در سفر بعد از شما می‌گیریم", + "You will be thier in": "شما در ... آنجا خواهید بود", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "گزینه 'همیشه اجازه داده شود' را انتخاب کنید", + "You will choose one of above !": "یکی از موارد بالا را انتخاب کنید!", + "You will get cost of your work for this trip": "هزینه این سفر را دریافت خواهید کرد", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "کدی در پیامک دریافت خواهید کرد", + "You will receive a code in WhatsApp Messenger": "کد را در واتس‌اپ دریافت خواهید کرد", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "کد را در پیامک دریافت خواهید کرد", + "Your Account is Deleted": "حساب شما حذف شد", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "بودجه شما کمتر از حد نیاز است", + "Your Choice, Our Priority": "انتخاب شما، اولویت ما", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "از مسافر دور هستید", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "کد دعوت اعمال شد!", + "Your journey starts here": "سفر شما از اینجا شروع می‌شود", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "نام شما", + "Your order is being prepared": "سفارش در حال آماده‌سازی", + "Your order sent to drivers": "به رانندگان ارسال شد", + "Your password": "Your password", + "Your past trips will appear here.": "سفرهای قبلی شما در اینجا نمایش داده می‌شود.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "کد دعوت شخصی شما:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "هزینه سفر شما", + "Your trip distance is": "مسافت سفر شما:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nما همچنین اولویت را بر مقرون‌به‌صرفه بودن می‌گذاریم.", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "برای ادامه، باید شرایط استفاده و سیاست حریم خصوصی را بپذیرید.", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "خطایی رخ داد: @error", + "and I have a trip on": "و سفری دارم در", + "and acknowledge our": "و تأیید کنید", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq امن و قابل اعتماد است.", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "زمان رسیدن به نقطه شما", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "قبل از", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "متعهد به ایمنی.", + "complete profile subtitle": "برای شروع پروفایل خود را تکمیل کنید", + "complete registration button": "تکمیل ثبت نام", + "complete, you can claim your gift": "تکمیل شد، می‌توانید هدیه را دریافت کنید", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "زمان ایجاد", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "مسافت:", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "گواهینامه", + "duration is": "مدت زمان:", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "ایمیل (اختیاری)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "لطفاً کد تأیید ۵ رقمی را وارد کنید", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "تشخیص چهره", + "failed to send otp": "ارسال کد تأیید ناموفق بود.", + "false": "false", + "first name label": "نام", + "first name required": "نام الزامی است", + "for": "برای", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "برای اولین ثبت نام شما!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "از ۰۷:۳۰ تا ۱۰:۳۰", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "از ۱۲:۰۰ تا ۱۵:۰۰", + "from 23:59 till 05:30": "از ۲۳:۵۹ تا ۰۵:۳۰", + "from 3 times Take Attention": "از ۳ بار، دقت کنید", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "از لیست شما", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "در چند دقیقه خودرو بگیرید.", + "get_to_destination": "سریع به مقصد برسید.", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "قبل از لغو مسافر به موقعیت او بروید", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "تکمیل کرد", + "hi": "hi", + "hour": "ساعت", + "hours before trying again.": "hours before trying again.", + "i agree": "موافقم", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "اگر حساب کاربری ندارید", + "if you want help you can email us here": "برای کمک ایمیل بزنید", + "image verified": "تصویر تأیید شد", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "مبلغ را وارد کنید", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "پیوست", + "kilometer": "kilometer", + "last name label": "نام خانوادگی", + "last name required": "نام خانوادگی الزامی است", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "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 Siro.", + "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 passenger": "پیام از مسافر", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "مدل:", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "موقعیت من", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "غیر مشابه", + "of": "از", + "on": "on", + "one last step title": "یک قدم دیگر", + "otp sent subtitle": "یک کد ۵ رقمی به شماره\\n@phoneNumber ارسال شد", + "otp sent success": "کد تأیید به واتس‌اپ ارسال شد.", + "otp verification failed": "تأیید کد ناموفق بود.", + "passenger agreement": "توافق‌نامه مسافر", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "شماره تلفن", + "phone number of driver": "phone number of driver", + "phone number required": "شماره تلفن الزامی است", + "please go to picker location exactly": "لطفاً دقیقاً به محل سوار شدن بروید", + "please order now": "اکنون سفارش دهید", + "please wait till driver accept your order": "لطفاً منتظر پذیرش راننده بمانید", + "points": "points", + "price is": "قیمت:", + "privacy policy": "سیاست حریم خصوصی.", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "ثبت نام ناموفق بود.", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "از سفری امن و راحت لذت ببرید.", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "ثانیه", + "security_warning": "security_warning", + "send otp button": "ارسال کد تأیید", + "server error try again": "خطای سرور، لطفاً دوباره تلاش کنید.", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "مشابه", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "شرایط استفاده", + "the 300 points equal 300 L.E": "۳۰۰ امتیاز برابر ۳۰۰ تومان", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "۵۰۰ امتیاز برابر ۳۰ تومان", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "این کار تمام فایل‌ها را حذف می‌کند", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "تغییر توکن", + "token updated": "توکن بروز شد", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "سفرها", + "true": "true", + "type here": "اینجا بنویسید", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "تأیید و ادامه", + "verify your number title": "تأیید شماره", + "vin": "vin", + "wait 1 minute to receive message": "۱ دقیقه صبر کنید", + "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 siro", + "welcome user": "خوش آمدید، @firstName!", + "welcome_message": "به Intaleq خوش آمدید!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "رنگ خودرو را بنویسید", + "write Expiration Date for your car": "تاریخ انقضای خودرو را بنویسید", + "write Make for your car": "سازنده خودرو را بنویسید", + "write Model for your car": "مدل خودرو را بنویسید", + "write Year for your car": "سال خودرو را بنویسید", + "write comment here": "write comment here", + "write vin for your car": "شماره شاسی خودرو را بنویسید", + "year :": "سال:", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "کسب کردید", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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 Siro Wallet", + "you will use this device?": "you will use this device?", + "your ride is Accepted": "سفر شما پذیرفته شد", + "your ride is applied": "سفر شما ثبت شد", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "تاریخ انقضا", + "⚠️ You need to choose an amount!": "⚠️ باید مبلغی را انتخاب کنید!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 پرداخت با کیف پول", + "💳 Pay with Credit Card": "💳 پرداخت با کارت اعتباری", +}; diff --git a/siro_driver/lib/controller/local/fr.dart b/siro_driver/lib/controller/local/fr.dart new file mode 100644 index 0000000..32f927d --- /dev/null +++ b/siro_driver/lib/controller/local/fr.dart @@ -0,0 +1,2662 @@ +final Map fr = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " et reconnaître notre Politique de Confidentialité.", + " is ON for this month": " est ON pour ce mois", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. Décrivez votre problème", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 et obtenez 4% de réduction", + "100 and get 11% discount": "100 et obtenez 11% de réduction", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. Joindre l'audio enregistré", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 et obtenez 6% de réduction", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. Revoir les détails et la réponse", + "300 LE": "300 LE", + "3000 LE": "30 €", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 et obtenez 8% de réduction", + "5 digit": "5 chiffres", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Un trajet avec réservation préalable, vous permettant de choisir les meilleurs chauffeurs et voitures.", + "AI Page": "Page IA", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "À propos de nous", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "Accepter la commande", + "Accept Ride": "Accept Ride", + "Accepted Ride": "Trajet accepté", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "Durée active :", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "Ajouter une carte", + "Add Credit Card": "Ajouter une carte de crédit", + "Add Home": "Ajouter Maison", + "Add Location": "Ajouter un lieu", + "Add Location 1": "Ajouter Lieu 1", + "Add Location 2": "Ajouter Lieu 2", + "Add Location 3": "Ajouter Lieu 3", + "Add Location 4": "Ajouter Lieu 4", + "Add Payment Method": "Ajouter une méthode de paiement", + "Add Phone": "Ajouter téléphone", + "Add Promo": "Ajouter Promo", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Ajouter des arrêts", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "Ajouter des fonds via nos méthodes sécurisées", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Adresse", + "Address:": "Address:", + "Admin DashBoard": "Tableau de bord Admin", + "Affordable for Everyone": "Abordable pour tous", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "Alertes", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "Autoriser l'accès à la localisation", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "Une erreur est survenue durant le paiement.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "Une erreur est survenue lors de la sélection des contacts :", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "Une erreur inattendue s'est produite. Réessayez.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "Appli avec Passager", + "Applied": "Demandé", + "Apply": "Apply", + "Apply Order": "Accepter la commande", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "J'approche. Là dans 3 minutes.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "Êtes-vous sûr d'aller à", + "Are you Sure to LogOut?": "Êtes-vous sûr de vous déconnecter ?", + "Are you sure to cancel?": "Êtes-vous sûr d'annuler ?", + "Are you sure to delete recorded files": "Êtes-vous sûr de supprimer les fichiers ?", + "Are you sure to delete this location?": "Voulez-vous vraiment supprimer ce lieu ?", + "Are you sure to delete your account?": "Êtes-vous sûr de supprimer votre compte ?", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "Êtes-vous sûr ? Cette action est irréversible.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Voulez-vous aller à cet endroit ?", + "Are you want to go to this site": "Voulez-vous aller à ce site", + "Are you want to wait drivers to accept your order": "Voulez-vous attendre que les chauffeurs acceptent ?", + "Arrival time": "Heure d'arrivée", + "Associate Degree": "BTS / DUT", + "Attach this audio file?": "Joindre ce fichier audio ?", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Audio téléchargé avec succès.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "Disponible pour des trajets", + "Average of Hours of": "Moyenne des heures de", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Voiture Éco", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "Bahreïn", + "Balance": "Solde", + "Balance limit exceeded": "Limite de solde dépassée", + "Balance not enough": "Solde insuffisant", + "Balance:": "Solde :", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "Doucement", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "Assurez-vous de prendre des images précises svp\\nVous avez", + "Be sure to use it quickly! This code expires at": "Utilisez-le vite ! Ce code expire le", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Parce que nous sommes proches, vous avez la flexibilité de choisir le meilleur trajet.", + "Before we start, please review our terms.": "Avant de commencer, veuillez consulter nos conditions.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Meilleur choix pour la ville", + "Best choice for comfort car and flexible route and stops point": "Meilleur choix pour voiture confort et itinéraire flexible", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "Date de naissance", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "Frais de réservation", + "Bottom Bar Example": "Exemple de barre inférieure", + "But you have a negative salary of": "Mais vous avez un salaire négatif de", + "CODE": "CODE", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "Fin de l'appel", + "Call Ended": "Call Ended", + "Call Income": "Appel entrant", + "Call Income from Driver": "Appel entrant du chauffeur", + "Call Income from Passenger": "Appel entrant du passager", + "Call Left": "Appels restants", + "Call Options": "Call Options", + "Call Page": "Page d'appel", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "Accès caméra refusé.", + "Camera not initialized yet": "Caméra non initialisée", + "Camera not initilaized yet": "Caméra non initialisée", + "Can I cancel my ride?": "Puis-je annuler mon trajet ?", + "Can we know why you want to cancel Ride ?": "Pouvons-nous savoir pourquoi vous voulez annuler ?", + "Cancel": "Annuler", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "Annuler la course", + "Cancel Search": "Annuler la recherche", + "Cancel Trip": "Annuler le trajet", + "Cancel Trip from driver": "Annuler le trajet (Chauffeur)", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "Annulé", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "Impossible d'appliquer plus de remises.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Prendre une photo de votre casier judiciaire", + "Capture an Image of Your Driver License": "Prendre une photo de votre permis", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "Photo verso de la pièce d'identité", + "Capture an Image of Your ID Document front": "Photo recto de la pièce d'identité", + "Capture an Image of Your car license back": "Photo verso de la carte grise", + "Capture an Image of Your car license front": "Photo recto de la carte grise", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "Voiture", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "Détails de la voiture", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "Carte Grise", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "Numéro de carte", + "Card Payment": "Card Payment", + "CardID": "Numéro de Carte", + "Cash": "Espèces", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "Changer de pays", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "Châssis", + "Check back later for new offers!": "Revenez plus tard pour de nouvelles offres !", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "Choisir la langue", + "Choose a contact option": "Choisissez une option de contact", + "Choose between those Type Cars": "Choisissez parmi ces types de voitures", + "Choose from Map": "Choisir sur la carte", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "Choisissez l'option de trajet qui vous convient parfaitement.", + "Choose who this order is for": "Pour qui est cette commande ?", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "Ville", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "Réclamez votre cadeau de 20 € pour l'invitation", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "Cliquez ici pour voir sur la carte", + "Close": "Fermer", + "Closest & Cheapest": "Le plus proche et le moins cher", + "Closest to You": "Le plus proche de vous", + "Code": "Code", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "Code non approuvé", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "Couleur", + "Color is": "Color is", + "Comfort": "Confort", + "Comfort choice": "Choix confort", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "Communication", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "Réclamation", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Impossible de déposer une plainte pour ce trajet. Il n'a peut-être pas été terminé ou commencé.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "Confirmer", + "Confirm & Find a Ride": "Confirmer et trouver un trajet", + "Confirm Attachment": "Confirmer la pièce jointe", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "Confirmer la sélection", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "Confirmez votre email", + "Confirmation": "Confirmation", + "Connected": "Connecté", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "Options de contact", + "Contact Support": "Contacter le support", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "Nous contacter", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "La permission d'accès aux contacts est requise.", + "Contact us for any questions on your order.": "Contactez-nous pour toute question.", + "Contacts Loaded": "Contacts chargés", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "Continuer", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "Copier", + "Copy Code": "Copier le code", + "Copy this Promo to use it in your Ride!": "Copiez cette promo pour l'utiliser !", + "Cost": "Cost", + "Cost Duration": "Coût Durée", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "Comptes des heures sur les jours", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "Créer un portefeuille pour recevoir votre argent", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "Extrait de casier judiciaire requis", + "Criminal Record": "Casier judiciaire", + "Cropper": "Recadrer", + "Current Balance": "Solde actuel", + "Current Location": "Position actuelle", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Client introuvable", + "Customer phone is not active": "Le téléphone du client n'est pas actif", + "DISCOUNT": "REMISE", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "Date", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "Date de naissance :", + "Date of Birth:": "Date of Birth:", + "Day Off": "Day Off", + "Day Streak": "Day Streak", + "Days": "Jours", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "Supprimer mon compte", + "Delete Permanently": "Supprimer définitivement", + "Deleted": "Supprimé", + "Delivery": "Delivery", + "Destination": "Destination", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "Détecter votre visage ", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "Cylindrée", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "Avez-vous un code d'invitation d'un autre chauffeur ?", + "Do you want to change Home location": "Voulez-vous changer le domicile", + "Do you want to change Work location": "Voulez-vous changer le lieu de travail", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "Voulez-vous donner un pourboire ?", + "Docs": "Docs", + "Doctoral Degree": "Doctorat", + "Document Number:": "Document Number:", + "Documents check": "Vérification des documents", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "Fait", + "Don’t forget your personal belongings.": "N'oubliez pas vos effets personnels.", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Téléchargez l'application :", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Chauffeur", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "Le chauffeur a accepté le trajet pour vous", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "Le chauffeur a demandé le trajet pour vous", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "Le chauffeur a annulé votre trajet", + "Driver Car Plate": "Plaque du chauffeur", + "Driver Finish Trip": "Le chauffeur a terminé la course", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "Le chauffeur se rend vers le passager", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "Nom du chauffeur", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "Inscription Chauffeur", + "Driver Registration & Requirements": "Inscription Chauffeur & Requis", + "Driver Wallet": "Portefeuille Chauffeur", + "Driver already has 2 trips within the specified period.": "Le chauffeur a déjà 2 trajets dans la période spécifiée.", + "Driver is on the way": "Le chauffeur est en route", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "Le chauffeur attend au point de rendez-vous.", + "Driver joined the channel": "Le chauffeur a rejoint le canal", + "Driver left the channel": "Le chauffeur a quitté le canal", + "Driver phone": "Tél. du chauffeur", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "Classe de permis", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "La durée est", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "Modifier le profil", + "Edit Your data": "Modifier vos données", + "Education": "Éducation", + "Egypt": "Égypte", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "Électrique", + "Email": "Email", + "Email Us": "Envoyez-nous un email", + "Email Wrong": "Email incorrect", + "Email is": "L'email est :", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "L'email inséré est incorrect.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "Type d'emploi", + "Enable Location": "Activer la localisation", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "Fin du trajet", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "Profitez d'un trajet sûr et confortable.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Profitez de prix compétitifs sur tous les trajets.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "Entrez votre prénom", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "Entrer téléphone", + "Enter phone number": "Enter phone number", + "Enter promo code": "Entrer code promo", + "Enter promo code here": "Entrez le code promo ici", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "Entrez le code promo et obtenez", + "Enter your City": "Enter your City", + "Enter your Note": "Entrez votre note", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Entrez votre réclamation ici...", + "Enter your email": "Enter your email", + "Enter your email address": "Entrez votre adresse email", + "Enter your feedback here": "Entrez votre avis ici", + "Enter your first name": "Entrez votre prénom", + "Enter your last name": "Entrez votre nom", + "Enter your password": "Enter your password", + "Enter your phone number": "Entrez votre numéro de téléphone", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "Erreur", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Evening": "Soir", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "Date d'expiration", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "Date d'expiration", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "Résultat de la détection de visage", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "Réponse rapide aux plaintes", + "Favorite Places": "Favorite Places", + "Fee is": "Les frais sont", + "Feed Back": "Avis", + "Feedback": "Avis", + "Feedback data saved successfully": "Données d'avis enregistrées avec succès", + "Female": "Femme", + "Find answers to common questions": "Trouver des réponses aux questions courantes", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "Terminer la surveillance", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "Prénom", + "First Trip": "First Trip", + "First name": "Prénom", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Prise en charge", + "For Drivers": "Pour les chauffeurs", + "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 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 Siro 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": "Questions Fréquemment Posées", + "Frequently Questions": "Questions Fréquentes", + "Fri": "Fri", + "From": "De", + "From :": "De :", + "From : Current Location": "De : Position actuelle", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "Carburant", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "Nom complet", + "FullName": "Nom complet", + "GPS Required Allow !.": "GPS requis, autorisez-le !", + "Gender": "Sexe", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "Get": "Get", + "Get Details of Trip": "Obtenir les détails du trajet", + "Get Direction": "Obtenir l'itinéraire", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get features for your country": "Get features for your country", + "Get it Now!": "Obtenez-le maintenant !", + "Get to your destination quickly and easily.": "Arrivez à destination rapidement et facilement.", + "Getting Started": "Commencer", + "Gift Already Claimed": "Cadeau déjà réclamé", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "Aller aux lieux favoris", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "Étape suivante\\nscanner la carte grise.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "Allez à la position du passager maintenant", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "Aller à cette destination", + "Go to this location": "Aller à cet endroit", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "H et", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "Avez-vous un code promo ?", + "Head": "Head", + "Heading your way now. Please be ready.": "J'arrive. Soyez prêt svp.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "Bonjour c'est le Chauffeur", + "Hello this is Driver": "Bonjour c'est le chauffeur", + "Help & Support": "Help & Support", + "Help Details": "Détails de l'aide", + "Helping Center": "Centre d'aide", + "Helping Page": "Helping Page", + "Here recorded trips audio": "Ici l'audio des trajets enregistrés", + "Hi": "Bonjour", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Bonjour, je pars maintenant", + "Hi! This is": "Salut ! C'est", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "Baccalauréat", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "Historique du trajet", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "Comment payer mon trajet ?", + "How can I register as a driver?": "Comment s'inscrire comme chauffeur ?", + "How do I communicate with the other party (passenger/driver)?": "Comment communiquer avec l'autre partie ?", + "How do I request a ride?": "Comment demander un trajet ?", + "How many hours would you like to wait?": "Combien d'heures voulez-vous attendre ?", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "J'accepte", + "I Arrive": "I Arrive", + "I Arrive your site": "Je suis arrivé à votre emplacement", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "J'ai mis le mauvais lieu de prise en charge/dépose", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "Je suis arrivé", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "Je ne peux pas m'inscrire à cause de la détection faciale ", + "I want to order for myself": "Je commande pour moi-même", + "I want to order for someone else": "Je commande pour quelqu'un d'autre", + "I was just trying the application": "J'essayais juste l'application", + "I will go now": "J'y vais maintenant", + "I will slow down": "Je vais ralentir", + "I've arrived.": "I've arrived.", + "ID Documents Back": "Verso de la pièce d'identité", + "ID Documents Front": "Recto de la pièce d'identité", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "Si vous êtes en voiture, appuyez sur Démarrer", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "Si vous avez besoin d'aide, contactez-nous", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Si vous voulez ajouter un arrêt cliquez ici", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Si vous voulez lancer Google Maps directement", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "Le résultat de détection d'image est ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "Appels VOIP intégrés", + "Including Tax": "Taxes incluses", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "⚠️ Code SMS incorrect. Veuillez réessayer.", + "Increase Fare": "Augmenter le tarif", + "Increase Fee": "Augmenter le tarif", + "Increase Your Trip Fee (Optional)": "Augmentez le prix de votre trajet (Optionnel)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Augmenter le tarif pourrait attirer plus de chauffeurs. Voulez-vous augmenter le prix ?", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "Insérer", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "Insérer numéro d'urgence", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Insérez votre code promo", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "Date d'inspection", + "InspectionResult": "Résultat de l'inspection", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "MPIN invalide", + "Invalid OTP": "OTP invalide", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "Invitation utilisée", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "Invitation envoyée avec succès", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "Le passager est-il dans votre voiture ?", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "Date de délivrance", + "IssueDate": "Date d'émission", + "JOD": "€", + "Join": "Rejoindre", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "Jordanie", + "Just now": "Just now", + "KM": "KM", + "Keep it up!": "Continuez comme ça !", + "Kuwait": "Koweït", + "L.E": "L.E", + "L.S": "L.S", + "LE": "€", + "Lady": "Dame", + "Lady Captain for girls": "Chauffeur femme pour dames", + "Lady Captains Available": "Chauffeurs femmes disponibles", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "Langue", + "Language Options": "Options de langue", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "Nom", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "Dernier trajet récent", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Quitter", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "Vérifions la carte grise ", + "Lets check License Back Face": "Vérifions le verso du permis", + "License Categories": "Catégories de permis", + "License Expiry Date": "License Expiry Date", + "License Type": "Type de permis", + "Link a phone number for transfers": "Lier un numéro pour les transferts", + "Location Access Required": "Location Access Required", + "Location Link": "Lien de localisation", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "Déconnexion", + "Log Out Page": "Page de déconnexion", + "Login": "Login", + "Login Captin": "Connexion Chauffeur", + "Login Driver": "Connexion Chauffeur", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "Prix le plus bas atteint", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "Marque :", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "Marque", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "Homme", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "Carte Passager", + "Marital Status": "État civil", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "Tarif maximum", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Tarif minimum", + "Minute": "Minute", + "Minutes": "Minutes", + "Mishwar Vip": "Trajet VIP", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "Modèle", + "Model is": "Le modèle est :", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "Matin", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "Méthodes les plus sécurisées", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "Déplacez la carte pour ajuster l'épingle", + "Mute": "Mute", + "My Balance": "Mon solde", + "My Card": "Ma Carte", + "My Cared": "Mes Cartes", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "Mon Profil", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "Ma position actuelle est :", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "MaPosition", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "Nom", + "Name (Arabic)": "Nom (Arabe)", + "Name (English)": "Nom (Français/Anglais)", + "Name :": "Nom :", + "Name in arabic": "Nom en arabe", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "CNI / Numéro National", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "Numéro National", + "NationalID": "Numéro National / CNI", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "Suivant", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "Nuit", + "No": "Non", + "No ,still Waiting.": "Non, j'attends toujours.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Pas de voiture à votre emplacement. Désolé !", + "No Car or Driver Found in your area.": "Aucune voiture ou chauffeur trouvé dans votre zone.", + "No I want": "Non je veux", + "No Promo for today .": "Pas de promo pour aujourd'hui.", + "No Response yet.": "Pas encore de réponse.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Pas de SIM ? Appelez votre chauffeur via l'appli.", + "No accepted orders? Try raising your trip fee to attract riders.": "Pas de commande acceptée ? Essayez d'augmenter votre tarif.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "Aucun fichier audio trouvé.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "Aucun contact trouvé", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "Aucun contact avec numéro de téléphone trouvé sur votre appareil.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "Aucun chauffeur n'a accepté ma demande", + "No drivers accepted your request yet": "Aucun chauffeur n'a encore accepté votre demande", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "Aucun visage détecté", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Aucune image sélectionnée", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "Aucune invitation trouvée !", + "No one accepted? Try increasing the fare.": "Personne n'a accepté ? Essayez d'augmenter le tarif.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "Aucun passager trouvé pour ce numéro", + "No phone number": "No phone number", + "No promos available right now.": "Aucune promo disponible pour le moment.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "Aucun trajet trouvé", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "Aucun historique de trajet", + "No trip yet found": "Aucun trajet trouvé", + "No user found for the given phone number": "Aucun utilisateur trouvé pour ce numéro", + "No wallet record found": "Aucun enregistrement de portefeuille trouvé", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "Non, merci", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "Non connecté", + "Not set": "Non défini", + "Not updated": "Not updated", + "Notifications": "Notifications", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "Profession", + "Offline": "Offline", + "Ok": "Ok", + "Ok , See you Tomorrow": "Ok, à demain", + "Ok I will go now.": "D'accord, j'y vais maintenant.", + "Old and affordable, perfect for budget rides.": "Abordable, parfait pour les petits budgets.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "Ouvrir les paramètres", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "Ou payez en espèces", + "Order": "Commande", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "Commande passée", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Commande annulée par le passager", + "Order Details Siro": "Order Details Siro", + "Order History": "Historique des commandes", + "Order ID": "Order ID", + "Order Request Page": "Page de demande de commande", + "Order Under Review": "Order Under Review", + "Order for myself": "Commander pour moi", + "Order for someone else": "Commander pour autrui", + "OrderId": "ID Commande", + "OrderVIP": "Commande VIP", + "Orders Page": "Orders Page", + "Origin": "Origine", + "Original Fare": "Original Fare", + "Other": "Autre", + "Our dedicated customer service team ensures swift resolution of any issues.": "Notre service client assure une résolution rapide des problèmes.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "Nom du propriétaire", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "Le passager a annulé le trajet", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "Le passager vient vers vous", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "Le mot de passe doit avoir au moins 6 caractères.", + "Paste WhatsApp location link": "Coller le lien de localisation WhatsApp", + "Paste location link here": "Collez le lien de localisation ici", + "Paste the code here": "Collez le code ici", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Payer directement au chauffeur", + "Pay from my budget": "Payer de mon budget", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "Payer par carte de crédit", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "Payer avec le portefeuille", + "Pay with Your": "Payer avec votre", + "Pay with Your PayPal": "Payer avec PayPal", + "Payment Failed": "Paiement échoué", + "Payment History": "Historique des paiements", + "Payment Method": "Méthode de paiement", + "Payment Method:": "Payment Method:", + "Payment Options": "Options de paiement", + "Payment Successful": "Paiement réussi", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "Paiements", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "Parfait pour les amateurs d'aventure", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Parfait pour les passagers cherchant des voitures récentes avec liberté d'itinéraire", + "Permission denied": "Permission refusée", + "Personal Information": "Informations personnelles", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Le numéro est :", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "Choisir sur la carte", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "Choisissez votre destination sur la carte", + "Pick your ride location on the map - Tap to confirm": "Choisissez votre lieu sur la carte - Appuyez pour confirmer", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "Plaque", + "Plate Number": "Numéro d'immatriculation", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "Veuillez patienter si le passager veut annuler !", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "Veuillez entrer", + "Please enter Your Email.": "Veuillez entrer votre email.", + "Please enter Your Password.": "Veuillez entrer votre mot de passe.", + "Please enter a correct phone": "Veuillez entrer un numéro valide", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "Veuillez entrer un numéro de téléphone", + "Please enter a valid 16-digit card number": "Veuillez entrer un numéro de carte valide à 16 chiffres", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Veuillez entrer un code promo valide", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Veuillez entrer le code CVV", + "Please enter the cardholder name": "Veuillez entrer le nom du titulaire", + "Please enter the complete 6-digit code.": "Veuillez entrer le code complet à 6 chiffres.", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "Veuillez entrer la date d'expiration", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Veuillez entrer votre ville.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "Veuillez entrer votre question.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Veuillez entrer votre avis.", + "Please enter your first name.": "Veuillez entrer votre prénom.", + "Please enter your last name.": "Veuillez entrer votre nom.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Veuillez entrer votre numéro de téléphone.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "Veuillez rejoindre le chauffeur", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "Please help! Contact me as soon as possible.": "Aidez-moi ! Contactez-moi dès que possible.", + "Please make sure not to leave any personal belongings in the car.": "Veuillez vous assurer de ne rien laisser dans la voiture.", + "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 Siro 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": "Veuillez mettre votre permis dans ce cadre", + "Please select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "Please select a ride before submitting.": "Please select a ride before submitting.", + "Please stay on the picked point.": "Veuillez rester au point de prise en charge.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "Veuillez vérifier votre identité", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "Veuillez attendre que le passager monte avant de démarrer.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "Point", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "Risques de sécurité potentiels détectés. L'application peut ne pas fonctionner correctement.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Politique de confidentialité", + "Profile": "Profil", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "Promo", + "Promo Already Used": "Promo déjà utilisée", + "Promo Code": "Code Promo", + "Promo Code Accepted": "Code promo accepté", + "Promo Copied!": "Promo copiée !", + "Promo End !": "Fin de la promo !", + "Promo Ended": "Promo terminée", + "Promo code copied to clipboard!": "Code promo copié !", + "Promos": "Promos", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "Paiement annulé.", + "Qatar": "Qatar", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "Actions rapides", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "Calme et Écologique", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "Noter le chauffeur", + "Rate Driver": "Noter le chauffeur", + "Rate Our App": "Rate Our App", + "Rate Passenger": "Noter le passager", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "Aller-Retour", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai : Service aller-retour pratique pour voyager entre les villes.", + "Reason": "Reason", + "Recent Places": "Lieux récents", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "Recharger mon compte", + "Record": "Record", + "Record saved": "Enregistrement sauvegardé", + "Recorded Trips (Voice & AI Analysis)": "Trajets enregistrés (Analyse vocale & IA)", + "Recorded Trips for Safety": "Trajets enregistrés pour la sécurité", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "Refuser la commande", + "Refused": "Refused", + "Register": "S'inscrire", + "Register Captin": "Inscription Chauffeur", + "Register Driver": "Inscrire Chauffeur", + "Register as Driver": "S'inscrire comme chauffeur", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Religion", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "Renvoyer le code", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "Gestion des trajets", + "Ride Status": "Ride Status", + "Ride Summaries": "Résumés des trajets", + "Ride Summary": "Résumé du trajet", + "Ride Today :": "Ride Today :", + "Ride Wallet": "Portefeuille Trajet", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "Trajets", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "Itinéraires du trajet", + "Route Not Found": "Itinéraire introuvable", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "Téléphone SOS", + "SUBMIT": "SUBMIT", + "SYP": "SYP", + "Safety & Security": "Sûreté et Sécurité", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "Arabie Saoudite", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "Enregistrer la carte", + "Saved Sucssefully": "Enregistré avec succès", + "Scan Driver License": "Scanner le permis", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "Scan ID MklGoogle", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "Scanner ID", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Scooter", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "Recherchez un point de passage", + "Search for your Start point": "Recherchez votre point de départ", + "Search for your destination": "Recherchez votre destination", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "Recherche du chauffeur le plus proche...", + "Security Warning": "⚠️ Avertissement de sécurité", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "À bientôt sur la route !", + "Select Country": "Sélectionner le pays", + "Select Date": "Sélectionner la date", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "Sélectionner le type de commande", + "Select Payment Amount": "Sélectionner le montant du paiement", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "Sélectionner l'heure", + "Select Waiting Hours": "Sélectionner les heures d'attente", + "Select Your Country": "Sélectionnez votre pays", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "Sélectionnez un message", + "Select recorded trip": "Sélectionner le trajet enregistré", + "Select your destination": "Sélectionnez votre destination", + "Select your preferred language for the app interface.": "Sélectionnez votre langue préférée pour l'interface.", + "Selected Date": "Date sélectionnée", + "Selected Date and Time": "Date et heure sélectionnées", + "Selected Location": "Selected Location", + "Selected Time": "Heure sélectionnée", + "Selected driver": "Chauffeur sélectionné", + "Selected file:": "Fichier sélectionné :", + "Send Email": "Send Email", + "Send Invite": "Envoyer l'invitation", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Envoyer le code de vérification", + "Send Verification Code": "Envoyer le code de vérification", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Envoyer un message personnalisé", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Session expirée. Veuillez vous reconnecter.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Définir le numéro du portefeuille", + "Set pickup location": "Définir le lieu de prise en charge", + "Setting": "Paramètre", + "Settings": "Paramètres", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "Partager l'application", + "Share Code": "Share Code", + "Share Trip Details": "Partager les détails du trajet", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "Partagez ce code et gagnez des récompenses !", + "Share via": "Share via", + "Share with friends and earn rewards": "Partagez avec des amis et gagnez des récompenses", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Afficher les invitations", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "Voir les Promos", + "Show Promos to Charge": "Afficher les promos pour recharger", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "Voir les dernières promos", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "Affichage de", + "Sign In by Apple": "Connexion via Apple", + "Sign In by Google": "Connexion via Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Se déconnecter", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "Connectez-vous avec Google pour faciliter la saisie", + "Sign in with a provider for easy access": "Sign in with a provider for easy access", + "Silver badge": "Silver badge", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Service de van spacieux idéal pour les familles et groupes. Confortable, sûr et économique.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "Démarrer l'enregistrement", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "Démarrer la course", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "Statistiques", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "Envoyer ", + "Submit Complaint": "Envoyer la réclamation", + "Submit Question": "Soumettre une question", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "Déposer une réclamation", + "Submit rating": "Envoyer la note", + "Success": "Succès", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "Changer de passager", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "Syrie", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "Prendre une photo", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "Photo du permis de conduire", + "Take Picture Of ID Card": "Photo de la pièce d'identité", + "Tap on the promo code to copy it!": "Appuyez sur le code promo pour le copier !", + "Tap to upload": "Tap to upload", + "Target": "Destination", + "Tariff": "Tarif", + "Tariffs": "Tarifs", + "Tax Expiry Date": "Date d'expiration de la taxe", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "Merci", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "Le chauffeur sera bientôt là.", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "Le chauffeur est responsable de l'itinéraire.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "La distance est inférieure à 500 mètres.", + "The driver accept your order for": "Le chauffeur accepte votre commande pour", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "Le chauffeur a accepté votre trajet", + "The driver canceled your ride.": "Le chauffeur a annulé votre course.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "Le chauffeur est en route", + "The driver waiting you in picked location .": "Le chauffeur vous attend au lieu de prise en charge.", + "The driver waitting you in picked location .": "Le chauffeur vous attend au lieu choisi.", + "The drivers are reviewing your request": "Les chauffeurs examinent votre demande", + "The email or phone number is already registered.": "L'email ou le numéro de téléphone est déjà enregistré.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "L'invitation a été envoyée avec succès", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "Commande acceptée par un autre chauffeur", + "The order has been accepted by another driver.": "La commande a été acceptée par un autre chauffeur.", + "The payment was approved.": "Le paiement a été approuvé.", + "The payment was not approved. Please try again.": "Le paiement n'a pas été approuvé. Réessayez.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "Le prix peut augmenter si l'itinéraire change.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "La période de promotion est terminée.", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Le trajet a commencé ! N'hésitez pas à contacter les urgences ou partager votre trajet.", + "There is no data yet.": "Il n'y a pas encore de données.", + "There is no help Question here": "Il n'y a pas de question d'aide ici", + "There is no notification yet": "Il n'y a pas encore de notification", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "Ce montant pour tous les trajets des passagers", + "This amount for all trip I get from Passengers and Collected For me in": "Ce montant collecté pour moi dans", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "Ceci est une notification programmée.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Ceci est pour un scooter ou une moto.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "Ce numéro a déjà été invité.", + "This price is": "Ce prix est", + "This price is fixed even if the route changes for the driver.": "Ce prix est fixe même si l'itinéraire change.", + "This price may be changed": "Ce prix peut changer", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Ce trajet est déjà pris.", + "This ride type allows changes, but the price may increase": "Ce type permet des changements, mais le prix peut augmenter", + "This ride type does not allow changes to the destination or additional stops": "Ce type de trajet ne permet pas de changements", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Trajet direct à prix fixe. Le chauffeur doit suivre l'itinéraire.", + "This trip is for women only": "Ce trajet est réservé aux femmes", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "Heure d'arrivée", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro app...", + "To change Language the App": "To change Language the App", + "To change some Settings": "Pour changer certains paramètres", + "To display orders instantly, please grant permission to draw over other apps.": "To display orders instantly, please grant permission to draw over other apps.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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.": "Pour assurer des infos précises, sélectionnez votre pays.", + "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.": "Pour vous offrir la meilleure expérience, nous devons savoir où vous êtes. Votre position est utilisée pour trouver des chauffeurs à proximité.", + "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 Siro support directly.", + "To use Wallet charge it": "Pour utiliser le portefeuille, rechargez-le", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Recharger le portefeuille", + "Top up Wallet to continue": "Rechargez votre portefeuille pour continuer", + "Total Amount:": "Montant total :", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "Durée totale de connexion :", + "Total Cost": "Coût Total", + "Total Cost is": "Total Cost is", + "Total Duration:": "Durée totale :", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "Heures totales sur le mois", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "Total des points est", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "Budgets totaux du mois", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Voyagez dans une voiture électrique moderne et silencieuse. Un choix premium et écologique.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "Trajet annulé", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Trajet annulé. Les frais seront crédités sur votre portefeuille.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Suivi du trajet", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "Trajet terminé", + "Trip has Steps": "Le trajet a des étapes", + "Trip is Begin": "Le trajet commence", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "Trajets enregistrés", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "Turquie", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "Tapez le lieu ici", + "Type something": "Type something", + "Type something...": "Tapez quelque chose...", + "Type your Email": "Tapez votre email", + "Type your message": "Tapez votre message", + "Type your message...": "Type your message...", + "Types of Trips in Siro:": "Types of Trips in Siro:", + "USA": "USA", + "Uncompromising Security": "Sécurité sans compromis", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Mettre à jour", + "Update Available": "Update Available", + "Update Education": "Mettre à jour l'éducation", + "Update Gender": "Mettre à jour le sexe", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "Téléchargé", + "Use Touch ID or Face ID to confirm payment": "Utilisez Touch ID ou Face ID pour confirmer", + "Use code:": "Utilisez le code :", + "Use my invitation code to get a special gift on your first ride!": "Utilisez mon code pour un cadeau spécial lors de votre premier trajet !", + "Use my referral code:": "Utilisez mon code de parrainage :", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "L'utilisateur n'existe pas.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "Un utilisateur avec ce numéro ou cet email existe déjà.", + "Uses cellular network": "Uses cellular network", + "VIN": "VIN", + "VIN :": "VIN :", + "VIN is": "VIN est :", + "VIP Order": "Commande VIP", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "Valable jusqu'au :", + "Value": "Value", + "Van": "Van", + "Van / Bus": "Van / Bus", + "Van for familly": "Van pour la famille", + "Variety of Trip Choices": "Variété de choix de trajets", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "Détails du véhicule (Arrière)", + "Vehicle Details Front": "Détails du véhicule (Avant)", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "Options de véhicule", + "Verification Code": "Code de vérification", + "Verify": "Vérifier", + "Verify Email": "Vérifier l'email", + "Verify Email For Driver": "Vérifier l'email pour le chauffeur", + "Verify OTP": "Vérifier l'OTP", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Vibration pour tous les boutons", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "View your past transactions": "Voir vos transactions passées", + "Visa": "Visa", + "Visit Website/Contact Support": "Visiter le site / Contacter le support", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "En attente du chauffeur...", + "Waiting for Driver ...": "En attente du chauffeur...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "En attente de votre position", + "Wallet": "Portefeuille", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "Portefeuille bloqué", + "Wallet!": "Portefeuille !", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Attention : Excès de vitesse détecté !", + "We Are Sorry That we dont have cars in your Location!": "Désolé, pas de voitures dans votre zone !", + "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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "Traitement de l'image en cours, veuillez patienter ", + "We are search for nearst driver": "Nous cherchons le chauffeur le plus proche", + "We are searching for the nearest driver": "Nous cherchons le chauffeur le plus proche", + "We are searching for the nearest driver to you": "Nous cherchons le chauffeur le plus proche", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Nous vous connectons aux chauffeurs les plus proches pour des trajets plus rapides.", + "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 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 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 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:": "Nous avons envoyé un code de vérification à votre numéro de mobile :", + "We need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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.": "Nous avons besoin de votre numéro pour vous aider à recevoir des commandes.", + "We need your phone number to contact you and to help you.": "Nous avons besoin de votre numéro pour vous contacter et vous aider.", + "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 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 regret to inform you that another driver has accepted this order.": "Nous regrettons de vous informer qu'un autre chauffeur a accepté cette commande.", + "We search nearst Driver to you": "Nous cherchons le chauffeur le plus proche", + "We sent 5 digit to your Email provided": "Nous avons envoyé 5 chiffres à votre email", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "Nous cherchons un nouveau chauffeur.\\nVeuillez patienter.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "Bon retour !", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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?": "Quelles sont les conditions pour devenir chauffeur ?", + "What is Types of Trips in Siro?": "What is Types of Trips in Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Quels types de véhicules sont disponibles ?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "Extracteur de localisation WhatsApp", + "When": "Quand", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "Où allez-vous ?", + "Where are you, sir?": "Where are you, sir?", + "Where to": "Où allez-vous ?", + "Where you want go": "Where you want go", + "Which method you will pay": "Which method you will pay", + "Why Choose Siro?": "Why Choose Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "Travail", + "Work & Contact": "Travail et Contact", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Heures de travail de 12h00 à 19h00.\\nVous pouvez envoyer un WhatsApp ou email.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "Écrire une note", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "Année", + "Year is": "L'année est :", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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.": "Oui, vous pouvez annuler, mais des frais peuvent s'appliquer.", + "You": "You", + "You Are Stopped For this Day !": "Vous êtes arrêté pour aujourd'hui !", + "You Can Cancel Trip And get Cost of Trip From": "Vous pouvez annuler et obtenir le coût de", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "Vous pouvez annuler si le chauffeur ne vient pas à temps", + "You Dont Have Any amount in": "Vous n'avez aucun montant dans", + "You Dont Have Any places yet !": "Vous n'avez pas encore de lieux !", + "You Earn today is": "You Earn today is", + "You Have": "Vous avez", + "You Have Tips": "Vous avez des pourboires", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Vous avez refusé 3 trajets aujourd'hui \\nÀ demain !", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "Vous devez sélectionner une raison.", + "You Should choose rate figure": "Vous devez choisir une note", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "Vous supprimez", + "You are Stopped": "Vous êtes arrêté", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "Vous n'êtes pas proche du passager", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "Vous pouvez acheter des points pour rester en ligne\\nvia cette liste", + "You can buy points from your budget": "Vous pouvez acheter des points de votre budget", + "You can call or record audio during this trip.": "Vous pouvez appeler ou enregistrer l'audio pendant ce trajet.", + "You can call or record audio of this trip": "Vous pouvez appeler ou enregistrer l'audio", + "You can cancel Ride now": "Vous pouvez annuler le trajet maintenant", + "You can cancel trip": "Vous pouvez annuler le trajet", + "You can change the Country to get all features": "Changez de pays pour toutes les fonctionnalités", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Vous pouvez changer la langue de l'appli", + "You can change the vibration feedback for all buttons": "Vous pouvez changer le retour de vibration pour tous les boutons", + "You can claim your gift once they complete 2 trips.": "Vous pourrez réclamer votre cadeau après qu'ils aient terminé 2 trajets.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Vous pouvez communiquer via le chat intégré une fois le trajet confirmé.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Vous pouvez nous contacter de 12h00 à 19h00.", + "You can decline a request without any cost": "Vous pouvez refuser une demande sans frais", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Vous pouvez payer en espèces ou par carte. Sélectionnez votre méthode préférée avant de confirmer.", + "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": "Vous pouvez renvoyer dans", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "Vous méritez le cadeau", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "Vous n'avez pas encore ajouté de téléphone d'urgence !", + "You dont have Points": "Vous n'avez pas de points", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "Vous avez déjà reçu votre cadeau pour cette invitation", + "You have already used this promo code.": "Vous avez déjà utilisé ce code promo.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "Vous avez un appel du chauffeur", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "Vous avez copié le code promo.", + "You have earned 20": "Vous avez gagné 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "Vous avez épuisé toutes les tentatives ", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "Vous avez reçu un cadeau pour l'invitation", + "You have in account": "Vous avez sur le compte", + "You have promo!": "Vous avez une promo !", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "Vous devez vérifier l'email !", + "You must be charge your Account": "Vous devez recharger votre compte", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "Vous devez redémarrer l'application pour changer la langue.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "Vous devez le télécharger.", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Vous devez en sélectionner un", + "You should select your country": "Vous devez sélectionner votre pays", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "La distance de votre trajet est", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "Vous arriverez après la fin du minuteur.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Vous paierez le chauffeur ou nous le récupérerons au prochain trajet", + "You will be thier in": "Vous y serez dans", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "Choisissez 'Toujours autoriser' pour recevoir des commandes", + "You will choose one of above !": "Vous devez choisir l'un des choix ci-dessus !", + "You will get cost of your work for this trip": "Vous serez payé pour ce trajet", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "Vous recevrez un code par SMS", + "You will receive a code in WhatsApp Messenger": "Vous recevrez un code sur WhatsApp", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "Vous recevrez un code par SMS", + "Your Account is Deleted": "Votre compte est supprimé", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "Votre budget est insuffisant", + "Your Choice, Our Priority": "Votre Choix, Notre Priorité", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "Vous êtes loin du passager", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "Votre code d'invitation a été appliqué !", + "Your journey starts here": "Votre voyage commence ici", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "Votre nom", + "Your order is being prepared": "Votre commande est en préparation", + "Your order sent to drivers": "Votre commande a été envoyée aux chauffeurs", + "Your password": "Your password", + "Your past trips will appear here.": "Vos trajets passés apparaîtront ici.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "Votre code d'invitation personnel est :", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "Le coût de votre trajet est", + "Your trip distance is": "Votre distance de trajet est", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nNous privilégions aussi l'accessibilité, offrant des prix compétitifs.", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "Pour continuer, vous devez accepter les conditions d'utilisation et la politique de confidentialité.", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "Une erreur s'est produite : @error", + "and I have a trip on": "et j'ai un trajet sur", + "and acknowledge our": "et reconnaître notre", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq est une appli de covoiturage fiable et sûre.", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "heure d'arrivée pour atteindre votre point", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "avant", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "Intaleq s'engage pour la sécurité.", + "complete profile subtitle": "Complétez votre profil pour commencer", + "complete registration button": "Terminer l'inscription", + "complete, you can claim your gift": "terminé, vous pouvez réclamer votre cadeau", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "heure de création", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "la distance est", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "permis_de_conduire", + "duration is": "la durée est", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "Email (Optionnel)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "Veuillez entrer le code OTP à 5 chiffres", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "Détection de visage", + "failed to send otp": "Échec de l'envoi du code OTP.", + "false": "false", + "first name label": "Prénom", + "first name required": "Prénom requis", + "for": "pour", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "pour votre première inscription !", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "de 07:30 à 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "de 12:00 à 15:00", + "from 23:59 till 05:30": "de 23:59 à 05:30", + "from 3 times Take Attention": "sur 3 fois, faites attention", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "de votre liste", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "Avec Intaleq, obtenez un trajet en quelques minutes.", + "get_to_destination": "Arrivez à destination rapidement.", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "allez vers le passager avant qu'il n'annule", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "a terminé", + "hi": "hi", + "hour": "heure", + "hours before trying again.": "hours before trying again.", + "i agree": "j'accepte", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "si vous n'avez pas de compte", + "if you want help you can email us here": "si vous voulez de l'aide, écrivez-nous ici", + "image verified": "image vérifiée", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "insérer le montant", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "a rejoint", + "kilometer": "kilometer", + "last name label": "Nom", + "last name required": "Nom requis", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "login or register subtitle": "Entrez votre numéro de mobile pour vous connecter ou vous inscrire", + "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 Siro.", + "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 du chauffeur", + "message From passenger": "Message du passager", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "Modèle :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "ma position", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "Non similaire", + "of": "sur", + "on": "on", + "one last step title": "Une dernière étape", + "otp sent subtitle": "Un code à 5 chiffres a été envoyé au\\n@phoneNumber", + "otp sent success": "Code OTP envoyé avec succès.", + "otp verification failed": "Échec de la vérification OTP.", + "passenger agreement": "accord passager", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "Numéro de téléphone", + "phone number of driver": "phone number of driver", + "phone number required": "Numéro de téléphone requis", + "please go to picker location exactly": "veuillez aller exactement au lieu de prise en charge", + "please order now": "Commandez maintenant", + "please wait till driver accept your order": "veuillez attendre que le chauffeur accepte", + "points": "points", + "price is": "le prix est", + "privacy policy": "politique de confidentialité.", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "Échec de l'inscription.", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "Profitez d'un trajet sûr et confortable.", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "secondes", + "security_warning": "security_warning", + "send otp button": "Envoyer le code OTP", + "server error try again": "Erreur serveur, veuillez réessayer.", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "Similaire", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "conditions d'utilisation", + "the 300 points equal 300 L.E": "les 300 points égalent 300 €", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "les 500 points égalent 30 €", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "cela supprimera tous les fichiers de votre appareil", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "Changement de jeton", + "token updated": "jeton mis à jour", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "trajets", + "true": "true", + "type here": "tapez ici", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "Vérifier et continuer", + "verify your number title": "Vérifiez votre numéro", + "vin": "vin", + "wait 1 minute to receive message": "attendez 1 minute pour recevoir le message", + "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 siro", + "welcome user": "Bienvenue, @firstName !", + "welcome_message": "Bienvenue sur Intaleq !", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "écrire la couleur de votre voiture", + "write Expiration Date for your car": "écrire la date d'expiration", + "write Make for your car": "écrire la marque de votre voiture", + "write Model for your car": "écrire le modèle de votre voiture", + "write Year for your car": "écrire l'année de votre voiture", + "write comment here": "write comment here", + "write vin for your car": "écrire le VIN de votre voiture", + "year :": "Année :", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "vous gagnez", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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": "Vous paierez au chauffeur", + "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 Siro Wallet", + "you will use this device?": "you will use this device?", + "your ride is Accepted": "votre trajet est Accepté", + "your ride is applied": "votre trajet est demandé", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "Date d'expiration", + "⚠️ You need to choose an amount!": "⚠️ Vous devez choisir un montant !", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 Payer avec le portefeuille", + "💳 Pay with Credit Card": "💳 Payer par carte de crédit", +}; diff --git a/siro_driver/lib/controller/local/hi.dart b/siro_driver/lib/controller/local/hi.dart new file mode 100644 index 0000000..868c0a0 --- /dev/null +++ b/siro_driver/lib/controller/local/hi.dart @@ -0,0 +1,2662 @@ +final Map hi = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " और हमारी गोपनीयता नीति को स्वीकार करें।", + " is ON for this month": " इस महीने के लिए ऑन है", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. अपनी समस्या का वर्णन करें", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 और 4% छूट पाएं", + "100 and get 11% discount": "100 और 11% छूट पाएं", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. रिकॉर्ड किया गया ऑडियो जोड़ें", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 और 6% छूट पाएं", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. विवरण और प्रतिक्रिया की समीक्षा करें", + "300 LE": "300 LE", + "3000 LE": "₹3000", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 और 8% छूट पाएं", + "5 digit": "5 अंक", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "पूर्व आरक्षण के साथ यात्रा, जो आपको सर्वश्रेष्ठ कैप्टन और कारों को चुनने की अनुमति देती है।", + "AI Page": "AI पेज", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "हमारे बारे में", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "ऑर्डर स्वीकार करें", + "Accept Ride": "Accept Ride", + "Accepted Ride": "स्वीकृत राइड", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "सक्रिय अवधि:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "कार्ड जोड़ें", + "Add Credit Card": "क्रेडिट कार्ड जोड़ें", + "Add Home": "घर जोड़ें", + "Add Location": "लोकेशन जोड़ें", + "Add Location 1": "लोकेशन 1 जोड़ें", + "Add Location 2": "लोकेशन 2 जोड़ें", + "Add Location 3": "लोकेशन 3 जोड़ें", + "Add Location 4": "लोकेशन 4 जोड़ें", + "Add Payment Method": "भुगतान विधि जोड़ें", + "Add Phone": "फ़ोन जोड़ें", + "Add Promo": "प्रोमो जोड़ें", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "स्टॉप्स जोड़ें", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "हमारी सुरक्षित विधियों से पैसे जोड़ें", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "पता", + "Address:": "Address:", + "Admin DashBoard": "एडमिन डैशबोर्ड", + "Affordable for Everyone": "सभी के लिए किफायती", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "अलर्ट", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "लोकेशन एक्सेस की अनुमति दें", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "भुगतान प्रक्रिया के दौरान एक त्रुटि हुई।", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "संपर्क चुनते समय एक त्रुटि हुई:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "एक अप्रत्याशित त्रुटि हुई। कृपया पुन: प्रयास करें।", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "यात्री के साथ ऐप", + "Applied": "अप्लाई किया गया", + "Apply": "Apply", + "Apply Order": "ऑर्डर लागू करें", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "आपके क्षेत्र के करीब पहुँच रहा हूँ। 3 मिनट में वहां होना चाहिए।", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "क्या आप वाकई जाना चाहते हैं", + "Are you Sure to LogOut?": "क्या आप वाकई लॉग आउट करना चाहते हैं?", + "Are you sure to cancel?": "क्या आप रद्द करने के लिए निश्चित हैं?", + "Are you sure to delete recorded files": "क्या आप वाकई रिकॉर्ड की गई फ़ाइलें हटाना चाहते हैं", + "Are you sure to delete this location?": "क्या आप वाकई इस स्थान को हटाना चाहते हैं?", + "Are you sure to delete your account?": "क्या आप वाकई अपना खाता हटाना चाहते हैं?", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "क्या आप सुनिश्चित हैं? यह कार्रवाई पूर्ववत नहीं की जा सकती।", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "क्या आप इस जगह जाना चाहते हैं", + "Are you want to go to this site": "क्या आप इस साइट पर जाना चाहते हैं", + "Are you want to wait drivers to accept your order": "क्या आप चाहते हैं कि ड्राइवर आपका ऑर्डर स्वीकार करने का इंतज़ार करें", + "Arrival time": "पहुंचने का समय", + "Associate Degree": "एसोसिएट डिग्री", + "Attach this audio file?": "क्या यह ऑडियो फ़ाइल अटैच करें?", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "ऑडियो सफलतापूर्वक अपलोड हो गया।", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "सवारियों के लिए उपलब्ध", + "Average of Hours of": "घंटों का औसत", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "किफायती कार", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "बहरीन", + "Balance": "बैलेंस", + "Balance limit exceeded": "बैलेंस सीमा पार हो गई", + "Balance not enough": "बैलेंस पर्याप्त नहीं है", + "Balance:": "बैलेंस:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "धीरे रहें", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "कृपया सटीक चित्र लेने का ध्यान रखें\\nआपके पास है", + "Be sure to use it quickly! This code expires at": "जल्दी इस्तेमाल करें! यह कोड समाप्त हो जाएगा", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "चूंकि हम पास हैं, आपके पास चुनने की सुविधा है।", + "Before we start, please review our terms.": "शुरू करने से पहले, कृपया हमारी शर्तों की समीक्षा करें।", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "शहरों के लिए सबसे अच्छा विकल्प", + "Best choice for comfort car and flexible route and stops point": "आरामदायक कार और लचीले रास्ते और स्टॉप पॉइंट के लिए सबसे अच्छा विकल्प", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "जन्म तिथि", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "बुकिंग फीस", + "Bottom Bar Example": "बॉटम बार उदाहरण", + "But you have a negative salary of": "लेकिन आपकी नकारात्मक आय है", + "CODE": "कोड", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "कॉल समाप्त", + "Call Ended": "Call Ended", + "Call Income": "आने वाली कॉल", + "Call Income from Driver": "ड्राइवर से कॉल", + "Call Income from Passenger": "यात्री की कॉल", + "Call Left": "बची हुई कॉल्स", + "Call Options": "Call Options", + "Call Page": "कॉल पेज", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "कैमरा एक्सेस अस्वीकार कर दिया गया।", + "Camera not initialized yet": "कैमरा अभी तक शुरू नहीं हुआ", + "Camera not initilaized yet": "कैमरा अभी तक शुरू नहीं हुआ", + "Can I cancel my ride?": "क्या मैं अपनी राइड रद्द कर सकता हूँ?", + "Can we know why you want to cancel Ride ?": "क्या हम जान सकते हैं कि आप क्यों रद्द करना चाहते हैं?", + "Cancel": "रद्द करें", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "राइड रद्द करें", + "Cancel Search": "खोज रद्द करें", + "Cancel Trip": "ट्रिप रद्द करें", + "Cancel Trip from driver": "ड्राइवर द्वारा ट्रिप रद्द", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "रद्द", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "अधिक छूट लागू नहीं की जा सकती।", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "अपने पुलिस वेरिफिकेशन की तस्वीर लें", + "Capture an Image of Your Driver License": "अपने ड्राइविंग लाइसेंस की तस्वीर लें", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "अपने आईडी कार्ड के पीछे की तस्वीर लें", + "Capture an Image of Your ID Document front": "अपने पहचान पत्र (Aadhaar) के सामने की तस्वीर लें", + "Capture an Image of Your car license back": "अपने आरसी (RC) के पीछे की तस्वीर लें", + "Capture an Image of Your car license front": "अपनी गाड़ी के कागज (RC) के सामने की तस्वीर लें", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "कार", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "कार विवरण", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "कार लाइसेंस कार्ड (RC)", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "कार्ड नंबर", + "Card Payment": "Card Payment", + "CardID": "कार्ड आईडी", + "Cash": "नकद", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "देश बदलें", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "चेसिस", + "Check back later for new offers!": "नए ऑफ़र के लिए बाद में दोबारा चेक करें!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "भाषा चुनें", + "Choose a contact option": "संपर्क विकल्प चुनें", + "Choose between those Type Cars": "उन प्रकार की कारों के बीच चुनें", + "Choose from Map": "मैप से चुनें", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "वह विकल्प चुनें जो आपकी आवश्यकताओं के अनुरूप हो।", + "Choose who this order is for": "यह ऑर्डर किसके लिए है चुनें", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "शहर", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "आमंत्रित करने के लिए अपना ₹20 का उपहार प्राप्त करें", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "इसे मैप में दिखाने के लिए यहां क्लिक करें", + "Close": "बंद करें", + "Closest & Cheapest": "सबसे नज़दीकी और सस्ता", + "Closest to You": "आपके सबसे करीब", + "Code": "कोड", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "कोड स्वीकृत नहीं हुआ", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "रंग", + "Color is": "Color is", + "Comfort": "आराम (Comfort)", + "Comfort choice": "आरामदायक विकल्प", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "संचार", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "शिकायत", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "इस राइड के लिए शिकायत दर्ज नहीं की जा सकती। हो सकता है यह पूरी या शुरू न हुई हो।", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "पुष्टि करें", + "Confirm & Find a Ride": "पुष्टि करें और राइड खोजें", + "Confirm Attachment": "अटैचमेंट की पुष्टि करें", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "चयन की पुष्टि करें", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "अपना ईमेल सत्यापित करें", + "Confirmation": "Confirmation", + "Connected": "जुड़ा हुआ", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "संपर्क विकल्प", + "Contact Support": "सपोर्ट से संपर्क करें", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "संपर्क करें", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "संपर्क चुनने के लिए संपर्क अनुमति आवश्यक है।", + "Contact us for any questions on your order.": "अपने ऑर्डर पर किसी भी प्रश्न के लिए हमसे संपर्क करें।", + "Contacts Loaded": "संपर्क लोड हो गए", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "जारी रखें", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "कॉपी", + "Copy Code": "कोड कॉपी करें", + "Copy this Promo to use it in your Ride!": "अपनी राइड में उपयोग करने के लिए इस प्रोमो को कॉपी करें!", + "Cost": "Cost", + "Cost Duration": "लागत अवधि", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "दिनों में घंटों की गिनती", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "अपना पैसा प्राप्त करने के लिए वॉलेट बनाएं", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "पुलिस वेरिफिकेशन दस्तावेज़ आवश्यक है", + "Criminal Record": "पुलिस वेरिफिकेशन", + "Cropper": "क्रॉपर", + "Current Balance": "वर्तमान बैलेंस", + "Current Location": "वर्तमान लोकेशन", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "ग्राहक नहीं मिला", + "Customer phone is not active": "ग्राहक का फोन सक्रिय नहीं है", + "DISCOUNT": "छूट", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "तारीख", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "जन्म तिथि है:", + "Date of Birth:": "Date of Birth:", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "मेरा खाता हटाएं", + "Delete Permanently": "स्थायी रूप से हटाएं", + "Deleted": "हटा दिया गया", + "Delivery": "Delivery", + "Destination": "गंतव्य", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "अपना चेहरा पहचानें ", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "डिस्प्लेसमेंट", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "क्या आपके पास किसी अन्य ड्राइवर का आमंत्रण कोड है?", + "Do you want to change Home location": "क्या आप घर की लोकेशन बदलना चाहते हैं", + "Do you want to change Work location": "क्या आप काम की लोकेशन बदलना चाहते हैं", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "क्या आप इस ड्राइवर के लिए टिप देना चाहते हैं", + "Docs": "Docs", + "Doctoral Degree": "डॉ डॉक्टरेट डिग्री", + "Document Number:": "Document Number:", + "Documents check": "दस्तावेज़ जाँच", + "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 Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "अभी ऐप डाउनलोड करें:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "ड्राइवर", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "ड्राइवर ने आपके लिए राइड स्वीकार कर ली", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "ड्राइवर ने आपके लिए राइड अप्लाई की", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "ड्राइवर ने आपकी ट्रिप रद्द कर दी", + "Driver Car Plate": "ड्राइवर कार प्लेट", + "Driver Finish Trip": "ड्राइवर ने ट्रिप समाप्त की", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "ड्राइवर यात्री के पास जा रहा है", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "ड्राइवर का नाम", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "ड्राइवर पंजीकरण", + "Driver Registration & Requirements": "ड्राइवर पंजीकरण और आवश्यकताएं", + "Driver Wallet": "ड्राइवर वॉलेट", + "Driver already has 2 trips within the specified period.": "निर्दिष्ट अवधि में ड्राइवर के पास पहले से ही 2 ट्रिप हैं।", + "Driver is on the way": "ड्राइवर रास्ते में है", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "ड्राइवर पिकअप पर इंतज़ार कर रहा है।", + "Driver joined the channel": "ड्राइवर चैनल में शामिल हो गया", + "Driver left the channel": "ड्राइवर ने चैनल छोड़ दिया", + "Driver phone": "ड्राइवर का फ़ोन", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "ड्राइविंग लाइसेंस क्लास", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "अवधि है", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "प्रोफ़ाइल संपादित करें", + "Edit Your data": "अपना डेटा संपादित करें", + "Education": "शिक्षा", + "Egypt": "मिस्र", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "इलेक्ट्रिक", + "Email": "Email", + "Email Us": "हमें ईमेल करें", + "Email Wrong": "ईमेल गलत है", + "Email is": "ईमेल है:", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "आपके द्वारा दर्ज किया गया ईमेल गलत है।", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "रोज़गार का प्रकार", + "Enable Location": "लोकेशन चालू करें", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "राइड समाप्त करें", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "सुरक्षित और आरामदायक सवारी का आनंद लें।", + "Enjoy competitive prices across all trip options, making travel accessible.": "प्रतिस्पर्धी कीमतों का आनंद लें।", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "अपना पहला नाम दर्ज करें", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "फ़ोन दर्ज करें", + "Enter phone number": "Enter phone number", + "Enter promo code": "प्रोमो कोड दर्ज करें", + "Enter promo code here": "प्रोमो कोड यहाँ डालें", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "प्रोमो कोड दर्ज करें और प्राप्त करें", + "Enter your City": "Enter your City", + "Enter your Note": "अपना नोट दर्ज करें", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "अपनी शिकायत यहाँ लिखें...", + "Enter your email": "Enter your email", + "Enter your email address": "अपना ईमेल पता दर्ज करें", + "Enter your feedback here": "अपना फीडबैक यहाँ दर्ज करें", + "Enter your first name": "अपना पहला नाम दर्ज करें", + "Enter your last name": "अपना अंतिम नाम दर्ज करें", + "Enter your password": "Enter your password", + "Enter your phone number": "अपना फ़ोन नंबर दर्ज करें", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "त्रुटि", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "समाप्ति तिथि", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "समाप्ति तिथि", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "चेहरा पहचान का परिणाम", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "सबसे तेज़ शिकायत प्रतिक्रिया", + "Favorite Places": "Favorite Places", + "Fee is": "फीस है", + "Feed Back": "प्रतिक्रिया", + "Feedback": "फीडबैक", + "Feedback data saved successfully": "फीडबैक डेटा सफलतापूर्वक सहेजा गया", + "Female": "महिला", + "Find answers to common questions": "सामान्य प्रश्नों के उत्तर खोजें", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "निगरानी समाप्त करें", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "पहला नाम", + "First Trip": "First Trip", + "First name": "पहला नाम", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "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 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 Siro 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": "अक्सर पूछे जाने वाले प्रश्न", + "Fri": "Fri", + "From": "से", + "From :": "से :", + "From : Current Location": "से: वर्तमान स्थान", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "ईंधन", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "पूरा नाम", + "FullName": "पूरा नाम", + "GPS Required Allow !.": "GPS की अनुमति आवश्यक है!", + "Gender": "लिंग", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "Get": "Get", + "Get Details of Trip": "ट्रिप का विवरण प्राप्त करें", + "Get Direction": "दिशा प्राप्त करें", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get features for your country": "Get features for your country", + "Get it Now!": "अभी प्राप्त करें!", + "Get to your destination quickly and easily.": "अपनी मंजिल पर जल्दी और आसानी से पहुंचें।", + "Getting Started": "शुरुआत करना", + "Gift Already Claimed": "उपहार पहले ही लिया जा चुका है", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "पसंदीदा स्थानों पर जाएं", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "अगले कदम पर जाएं\\nकार लाइसेंस स्कैन करें।", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "अब यात्री की लोकेशन पर जाएं", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "इस लक्ष्य पर जाएं", + "Go to this location": "इस लोकेशन पर जाएं", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "H और", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "क्या आपके पास प्रोमो कोड है?", + "Head": "Head", + "Heading your way now. Please be ready.": "अब आपके रास्ते की ओर बढ़ रहा हूँ। कृपया तैयार रहें।", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "नमस्ते यह कैप्टन है", + "Hello this is Driver": "नमस्ते यह ड्राइवर है", + "Help & Support": "Help & Support", + "Help Details": "मदद विवरण", + "Helping Center": "सहायता केंद्र", + "Helping Page": "Helping Page", + "Here recorded trips audio": "यहाँ रिकॉर्ड किए गए ट्रिप्स का ऑडियो", + "Hi": "नमस्ते", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "नमस्ते, मैं अब निकल रहा हूँ", + "Hi! This is": "नमस्ते! यह है", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "हाई स्कूल डिप्लोमा", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "ट्रिप का इतिहास", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "मैं अपनी राइड के लिए भुगतान कैसे कर सकता हूँ?", + "How can I register as a driver?": "मैं ड्राइवर के रूप में कैसे पंजीकरण कर सकता हूँ?", + "How do I communicate with the other party (passenger/driver)?": "मैं दूसरे पक्ष से कैसे संवाद करूँ?", + "How do I request a ride?": "मैं राइड का अनुरोध कैसे करूँ?", + "How many hours would you like to wait?": "आप कितने घंटे इंतज़ार करना चाहेंगे?", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "मैं सहमत हूँ", + "I Arrive": "I Arrive", + "I Arrive your site": "मैं आपकी लोकेशन पर पहुंच गया", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "मैंने गलत स्थान जोड़ा", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "मैं आपके पास पहुंच गया", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "मैं चेहरा पहचान में आपके ऐप में रजिस्टर नहीं हो सकता ", + "I want to order for myself": "मैं अपने लिए ऑर्डर करना चाहता हूँ", + "I want to order for someone else": "मैं किसी और के लिए ऑर्डर करना चाहता हूँ", + "I was just trying the application": "मैं बस एप्लिकेशन आज़मा रहा था", + "I will go now": "मैं अब जाऊंगा", + "I will slow down": "मैं धीमा हो जाऊंगा", + "I've arrived.": "I've arrived.", + "ID Documents Back": "आईडी दस्तावेज़ का पिछला हिस्सा", + "ID Documents Front": "आईडी दस्तावेज़ का सामने का हिस्सा", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "यदि आप कार में हैं तो राइड शुरू करें दबाएं", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "यदि आपको सहायता की आवश्यकता हो, तो हमसे संपर्क करें", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "यदि आप स्टॉप जोड़ना चाहते हैं तो यहां क्लिक करें", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "यदि आप चाहते हैं कि जब आप ऑर्डर लागू करें तो गूगल मैप ऐप सीधे चले", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "छवि पहचान का परिणाम है ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "इन-ऐप VOIP कॉल्स", + "Including Tax": "टैक्स सहित", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "⚠️ गलत SMS कोड। कृपया पुनः प्रयास करें।", + "Increase Fare": "किराया बढ़ाएं", + "Increase Fee": "फीस बढ़ाएं", + "Increase Your Trip Fee (Optional)": "अपनी ट्रिप फीस बढ़ाएं (वैकल्पिक)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "किराया बढ़ाने से अधिक ड्राइवर आकर्षित हो सकते हैं। क्या आप कीमत बढ़ाना चाहेंगे?", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "दर्ज करें", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "आपातकालीन नंबर दर्ज करें", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "अपना प्रोमो कोड डालें", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "निरीक्षण तिथि", + "InspectionResult": "निरीक्षण परिणाम", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "अमान्य MPIN", + "Invalid OTP": "अमान्य OTP", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "आमंत्रण इस्तेमाल हो चुका है", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "निमंत्रण सफलतापूर्वक भेजा गया", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "क्या यात्री आपकी कार में है?", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "जारी करने की तिथि", + "IssueDate": "जारी करने की तिथि", + "JOD": "₹", + "Join": "शामिल हों", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "जॉर्डन", + "Just now": "Just now", + "KM": "किमी", + "Keep it up!": "लगे रहो!", + "Kuwait": "कुवैत", + "L.E": "L.E", + "L.S": "L.S", + "LE": "₹", + "Lady": "महिला", + "Lady Captain for girls": "महिलाओं के लिए लेडी कैप्टन", + "Lady Captains Available": "लेडी कैप्टन उपलब्ध हैं", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "भाषा", + "Language Options": "भाषा विकल्प", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "अंतिम नाम", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "नवीनतम हाल की ट्रिप", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "छोड़ें", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "आइए कार लाइसेंस (RC) चेक करें ", + "Lets check License Back Face": "आइए लाइसेंस के पिछले हिस्से को चेक करें", + "License Categories": "लाइसेंस श्रेणियाँ", + "License Expiry Date": "License Expiry Date", + "License Type": "लाइसेंस का प्रकार", + "Link a phone number for transfers": "ट्रांसफर के लिए फ़ोन नंबर लिंक करें", + "Location Access Required": "Location Access Required", + "Location Link": "लोकेशन लिंक", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "लॉग ऑफ", + "Log Out Page": "लॉग आउट पेज", + "Login": "Login", + "Login Captin": "कैप्टन लॉगिन", + "Login Driver": "लॉगिन ड्राइवर", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "सबसे कम कीमत हासिल की गई", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "बनाया गया :", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "मेक", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "पुरुष", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "मानचित्र यात्री", + "Marital Status": "वैवाहिक स्थिति", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "अधिकतम किराया", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "न्यूनतम किराया", + "Minute": "मिनट", + "Minutes": "Minutes", + "Mishwar Vip": "Mishwar VIP", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "मॉडल", + "Model is": "मॉडल है:", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "सुबह", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "सबसे सुरक्षित तरीके", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "पिन को समायोजित करने के लिए मैप को खिसकाएं", + "Mute": "Mute", + "My Balance": "मेरा बैलेंस", + "My Card": "मेरा कार्ड", + "My Cared": "मेरे कार्ड", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "मेरी प्रोफ़ाइल", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "मेरी वर्तमान लोकेशन है:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "मेरी लोकेशन", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "नाम", + "Name (Arabic)": "नाम (स्थानीय)", + "Name (English)": "नाम (अंग्रेज़ी)", + "Name :": "नाम :", + "Name in arabic": "स्थानीय नाम", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "आधार कार्ड", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "आधार नंबर", + "NationalID": "आधार नंबर", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "अगला", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "रात", + "No": "नहीं", + "No ,still Waiting.": "नहीं, अभी भी इंतज़ार कर रहा हूँ।", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "आपकी जगह पर कोई कार नहीं। क्षमा करें!", + "No Car or Driver Found in your area.": "आपके क्षेत्र में कोई कार या ड्राइवर नहीं मिला।", + "No I want": "नहीं मैं चाहता हूँ", + "No Promo for today .": "आज के लिए कोई प्रोमो नहीं है।", + "No Response yet.": "अभी तक कोई जवाब नहीं मिला।", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "कोई सिम कार्ड नहीं, कोई समस्या नहीं! हमारे ऐप के माध्यम से सीधे अपने ड्राइवर को कॉल करें।", + "No accepted orders? Try raising your trip fee to attract riders.": "कोई स्वीकृत ऑर्डर नहीं? सवारों को आकर्षित करने के लिए अपनी ट्रिप फीस बढ़ाने की कोशिश करें।", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "कोई ऑडियो फ़ाइल नहीं मिली।", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "कोई संपर्क नहीं मिला", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "आपके डिवाइस पर फ़ोन नंबर वाले कोई संपर्क नहीं मिले।", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "किसी ड्राइवर ने मेरा अनुरोध स्वीकार नहीं किया", + "No drivers accepted your request yet": "अभी तक किसी ड्राइवर ने आपका अनुरोध स्वीकार नहीं किया", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "कोई चेहरा पता नहीं चला", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "अभी तक कोई छवि नहीं चुनी गई", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "अभी तक कोई आमंत्रण नहीं मिला!", + "No one accepted? Try increasing the fare.": "किसी ने स्वीकार नहीं किया? किराया बढ़ाने का प्रयास करें।", + "No orders available": "No orders available", + "No passenger found for the given phone number": "दिए गए फ़ोन नंबर के लिए कोई यात्री नहीं मिला", + "No phone number": "No phone number", + "No promos available right now.": "अभी कोई प्रोमो उपलब्ध नहीं है।", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "अभी तक कोई सवारी नहीं मिली", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "कोई ट्रिप इतिहास नहीं मिला", + "No trip yet found": "अभी तक कोई ट्रिप नहीं मिला", + "No user found for the given phone number": "दिए गए फ़ोन नंबर के लिए कोई उपयोगकर्ता नहीं मिला", + "No wallet record found": "कोई वॉलेट रिकॉर्ड नहीं मिला", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "नहीं, धन्यवाद", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "जुड़ा हुआ नहीं", + "Not set": "सेट नहीं", + "Not updated": "Not updated", + "Notifications": "सूचनाएं", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "पेशा", + "Offline": "Offline", + "Ok": "ठीक है", + "Ok , See you Tomorrow": "ठीक है, कल मिलते हैं", + "Ok I will go now.": "ठीक है, मैं अब जा रहा हूँ।", + "Old and affordable, perfect for budget rides.": "पुरानी और सस्ती, बजट सवारी के लिए उत्तम।", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "सेटिंग्स खोलें", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "या नकद भुगतान करें", + "Order": "ऑर्डर", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "ऑर्डर लागू किया गया", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "यात्री द्वारा ऑर्डर रद्द कर दिया गया", + "Order Details Siro": "Order Details Siro", + "Order History": "ऑर्डर इतिहास", + "Order ID": "Order ID", + "Order Request Page": "ऑर्डर अनुरोध पृष्ठ", + "Order Under Review": "Order Under Review", + "Order for myself": "स्वयं के लिए ऑर्डर", + "Order for someone else": "किसी और के लिए ऑर्डर", + "OrderId": "ऑर्डर आईडी", + "OrderVIP": "VIP ऑर्डर", + "Orders Page": "Orders Page", + "Origin": "मूल", + "Original Fare": "Original Fare", + "Other": "अन्य", + "Our dedicated customer service team ensures swift resolution of any issues.": "हमारी समर्पित ग्राहक सेवा टीम मुद्दों का त्वरित समाधान सुनिश्चित करती है।", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "मालिक का नाम", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "यात्री ने ट्रिप रद्द कर दी", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "यात्री आपके पास आ रहा है", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "पासवर्ड कम से कम 6 अक्षरों का होना चाहिए।", + "Paste WhatsApp location link": "व्हाट्सएप लोकेशन लिंक पेस्ट करें", + "Paste location link here": "लोकेशन लिंक यहाँ पेस्ट करें", + "Paste the code here": "कोड यहाँ पेस्ट करें", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "सीधे कैप्टन को भुगतान करें", + "Pay from my budget": "मेरे बजट से भुगतान करें", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "क्रेडिट कार्ड से भुगतान करें", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "वॉलेट से भुगतान करें", + "Pay with Your": "अपने साथ भुगतान करें", + "Pay with Your PayPal": "अपने PayPal से भुगतान करें", + "Payment Failed": "भुगतान विफल हो गया", + "Payment History": "भुगतान इतिहास", + "Payment Method": "भुगतान विधि", + "Payment Method:": "Payment Method:", + "Payment Options": "भुगतान विकल्प", + "Payment Successful": "भुगतान सफल", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "भुगतान", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "उन साहसी लोगों के लिए उत्तम जो कुछ नया अनुभव करना चाहते हैं", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "नवीनतम कार मॉडल चाहने वाले यात्रियों के लिए उत्तम", + "Permission denied": "अनुमति अस्वीकृत", + "Personal Information": "व्यक्तिगत जानकारी", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "फ़ोन नंबर है:", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "मैप से चुनें", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "मैप से अपनी मंजिल चुनें", + "Pick your ride location on the map - Tap to confirm": "मैप पर अपनी सवारी की लोकेशन चुनें - पुष्टि के लिए टैप करें", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "प्लेट", + "Plate Number": "प्लेट नंबर", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "कृपया प्रतीक्षा करें यदि यात्री रद्द करना चाहे!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "कृपया दर्ज करें", + "Please enter Your Email.": "कृपया अपना ईमेल दर्ज करें।", + "Please enter Your Password.": "कृपया अपना पासवर्ड दर्ज करें।", + "Please enter a correct phone": "कृपया सही फ़ोन नंबर दर्ज करें", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "कृपया एक फ़ोन नंबर दर्ज करें", + "Please enter a valid 16-digit card number": "कृपया एक वैध 16 अंकों का कार्ड नंबर दर्ज करें", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "कृपया एक मान्य प्रोमो कोड डालें", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "कृपया CVV कोड दर्ज करें", + "Please enter the cardholder name": "कृपया कार्डधारक का नाम दर्ज करें", + "Please enter the complete 6-digit code.": "कृपया पूरा 6 अंकों का कोड दर्ज करें।", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "कृपया समाप्ति तिथि दर्ज करें", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "कृपया अपना शहर दर्ज करें।", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "कृपया अपना प्रश्न दर्ज करें।", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "कृपया अपना फीडबैक दर्ज करें।", + "Please enter your first name.": "कृपया अपना पहला नाम दर्ज करें।", + "Please enter your last name.": "कृपया अपना अंतिम नाम दर्ज करें।", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "कृपया अपना फ़ोन नंबर दर्ज करें।", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "कृपया ड्राइवर के पास जाएं", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "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 Siro 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 select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "कृपया अपनी पहचान सत्यापित करें", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "कृपया ट्रिप शुरू करने से पहले यात्री के कार में प्रवेश करने का इंतज़ार करें।", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "अंक", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "संभावित सुरक्षा जोखिमों का पता चला। एप्लिकेशन सही ढंग से काम नहीं कर सकता है।", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "गोपनीयता नीति", + "Profile": "प्रोफ़ाइल", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "प्रोमो", + "Promo Already Used": "प्रोमो पहले ही इस्तेमाल हो चुका है", + "Promo Code": "प्रोमो कोड", + "Promo Code Accepted": "प्रोमो कोड स्वीकार कर लिया गया", + "Promo Copied!": "प्रोमो कॉपी हो गया!", + "Promo End !": "प्रोमो समाप्त!", + "Promo Ended": "प्रोमो समाप्त", + "Promo code copied to clipboard!": "प्रोमो कोड क्लिपबोर्ड पर कॉपी हो गया!", + "Promos": "प्रोमो", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "भुगतान रद्द हो गया।", + "Qatar": "कतर", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "त्वरित क्रियाएं", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "शांत और पर्यावरण अनुकूल", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "कैप्टन को रेट करें", + "Rate Driver": "ड्राइवर को रेट करें", + "Rate Our App": "Rate Our App", + "Rate Passenger": "यात्री को रेट करें", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "आना-जाना (Round Trip)", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "आना-जाना: शहरों के बीच आसान यात्रा के लिए राउंड ट्रिप सेवा।", + "Reason": "Reason", + "Recent Places": "हाल के स्थान", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "मेरा खाता रिचार्ज करें", + "Record": "Record", + "Record saved": "रिकॉर्ड सहेजा गया", + "Recorded Trips (Voice & AI Analysis)": "रिकॉर्ड की गई यात्राएं (वॉयस और AI विश्लेषण)", + "Recorded Trips for Safety": "सुरक्षा के लिए रिकॉर्ड की गई ट्रिप्स", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "ऑर्डर अस्वीकार करें", + "Refused": "Refused", + "Register": "रजिस्टर करें", + "Register Captin": "कैप्टन रजिस्टर", + "Register Driver": "ड्राइवर रजिस्टर करें", + "Register as Driver": "बतौर ड्राइवर रजिस्टर करें", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "धर्म", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "कोड पुनः भेजें", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "राइड प्रबंधन", + "Ride Status": "Ride Status", + "Ride Summaries": "सवारी के सारांश", + "Ride Summary": "राइड सारांश", + "Ride Today :": "Ride Today :", + "Ride Wallet": "राइड वॉलेट", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "सवारियां", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "ट्रिप के रास्ते", + "Route Not Found": "रूट नहीं मिला", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "SOS फ़ोन", + "SUBMIT": "SUBMIT", + "SYP": "₹", + "Safety & Security": "सुरक्षा", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "सऊदी अरब", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "क्रेडिट कार्ड सहेजें", + "Saved Sucssefully": "सफलतापूर्वक सहेजा गया", + "Scan Driver License": "ड्राइविंग लाइसेंस स्कैन करें", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "आईडी MklGoogle स्कैन करें", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "आईडी स्कैन करें", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "स्कूटर", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "वेपॉइंट खोजें", + "Search for your Start point": "अपना प्रारंभिक बिंदु खोजें", + "Search for your destination": "अपनी मंजिल खोजें", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "निकटतम कैप्टन की खोज की जा रही है...", + "Security Warning": "⚠️ सुरक्षा चेतावनी", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "रास्ते में मिलते हैं!", + "Select Country": "देश चुनें", + "Select Date": "तारीख चुनें", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "ऑर्डर प्रकार चुनें", + "Select Payment Amount": "भुगतान राशि चुनें", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "समय चुनें", + "Select Waiting Hours": "प्रतीक्षा के घंटे चुनें", + "Select Your Country": "अपना देश चुनें", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "एक संदेश चुनें", + "Select recorded trip": "रिकॉर्ड की गई ट्रिप चुनें", + "Select your destination": "अपनी मंजिल चुनें", + "Select your preferred language for the app interface.": "ऐप इंटरफेस के लिए अपनी पसंदीदा भाषा चुनें।", + "Selected Date": "चयनित तिथि", + "Selected Date and Time": "चयनित तिथि और समय", + "Selected Location": "Selected Location", + "Selected Time": "चयनित समय", + "Selected driver": "चयनित ड्राइवर", + "Selected file:": "चयनित फ़ाइल:", + "Send Email": "Send Email", + "Send Invite": "आमंत्रण भेजें", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "सत्यापन कोड भेजें", + "Send Verification Code": "सत्यापन कोड भेजें", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "कस्टम संदेश भेजें", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "सत्र समाप्त हो गया। कृपया पुन: लॉगिन करें।", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "वॉलेट फ़ोन नंबर सेट करें", + "Set pickup location": "पिकअप लोकेशन सेट करें", + "Setting": "सेटिंग", + "Settings": "सेटिंग्स", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "ऐप शेयर करें", + "Share Code": "Share Code", + "Share Trip Details": "ट्रिप विवरण साझा करें", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "इस कोड को अपने दोस्तों के साथ साझा करें और पुरस्कार अर्जित करें!", + "Share via": "Share via", + "Share with friends and earn rewards": "दोस्तों के साथ साझा करें और पुरस्कार अर्जित करें", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "आमंत्रण दिखाएं", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "प्रोमो दिखाएं", + "Show Promos to Charge": "चार्ज करने के लिए प्रोमो दिखाएं", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "नवीनतम प्रोमो दिखाएं", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "दिखा रहा है", + "Sign In by Apple": "Apple द्वारा साइन इन करें", + "Sign In by Google": "Google द्वारा साइन इन करें", + "Sign In with Google": "Sign In with Google", + "Sign Out": "साइन आउट", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "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": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "परिवारों और समूहों के लिए विशाल वैन सेवा। आरामदायक, सुरक्षित और किफायती।", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "रिकॉर्ड शुरू करें", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "राइड शुरू करें", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "सांख्यिकी", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "जमा करें ", + "Submit Complaint": "शिकायत जमा करें", + "Submit Question": "प्रश्न जमा करें", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "शिकायत दर्ज करें", + "Submit rating": "रेटिंग सबमिट करें", + "Success": "सफलता", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "राइडर बदलें", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "भारत", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "तस्वीर लें", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "ड्राइविंग लाइसेंस कार्ड की तस्वीर लें", + "Take Picture Of ID Card": "आईडी कार्ड की तस्वीर लें", + "Tap on the promo code to copy it!": "इसे कॉपी करने के लिए प्रोमो कोड पर टैप करें!", + "Tap to upload": "Tap to upload", + "Target": "लक्ष्य", + "Tariff": "टैरिफ", + "Tariffs": "टैरिफ", + "Tax Expiry Date": "टैक्स समाप्ति तिथि", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "धन्यवाद", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "ड्राइवर जल्द ही आपकी लोकेशन पर होगा।", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "कैप्टन रास्ते के लिए जिम्मेदार है।", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "दूरी 500 मीटर से कम है।", + "The driver accept your order for": "ड्राइवर आपका ऑर्डर स्वीकार करता है के लिए", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "ड्राइवर ने आपकी ट्रिप स्वीकार कर ली है", + "The driver canceled your ride.": "ड्राइवर ने आपकी राइड रद्द कर दी।", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "ड्राइवर आपके रास्ते में है", + "The driver waiting you in picked location .": "ड्राइवर पिक लोकेशन पर आपका इंतज़ार कर रहा है।", + "The driver waitting you in picked location .": "ड्राइवर पिक की गई लोकेशन पर आपका इंतज़ार कर रहा है।", + "The drivers are reviewing your request": "ड्राइवर आपके अनुरोध की समीक्षा कर रहे हैं", + "The email or phone number is already registered.": "ईमेल या फ़ोन नंबर पहले से पंजीकृत है।", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "निमंत्रण सफलतापूर्वक भेजा गया", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "ऑर्डर दूसरे ड्राइवर ने स्वीकार कर लिया", + "The order has been accepted by another driver.": "ऑर्डर किसी अन्य ड्राइवर द्वारा स्वीकार कर लिया गया है।", + "The payment was approved.": "भुगतान स्वीकृत हो गया।", + "The payment was not approved. Please try again.": "भुगतान स्वीकृत नहीं हुआ। कृपया पुनः प्रयास करें।", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "अगर रास्ता बदल गया तो कीमत बढ़ सकती है।", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "प्रचार अवधि समाप्त हो गई है।", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "ट्रिप शुरू हो गई है! आपातकालीन नंबरों से संपर्क करें, अपनी ट्रिप साझा करें।", + "There is no data yet.": "अभी तक कोई डेटा नहीं है।", + "There is no help Question here": "यहाँ कोई मदद प्रश्न नहीं है", + "There is no notification yet": "अभी तक कोई सूचना नहीं है", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "यह राशि सभी ट्रिप के लिए जो मुझे यात्रियों से मिलती है", + "This amount for all trip I get from Passengers and Collected For me in": "यह राशि सभी ट्रिप के लिए जो मुझे यात्रियों से मिलती है और मेरे लिए एकत्र की गई है", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "यह एक निर्धारित सूचना है।", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "यह स्कूटर या मोटरसाइकिल के लिए है।", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "इस फ़ोन नंबर को पहले ही आमंत्रित किया जा चुका है।", + "This price is": "यह कीमत है", + "This price is fixed even if the route changes for the driver.": "यह कीमत तय है चाहे ड्राइवर का रास्ता बदल जाए।", + "This price may be changed": "यह कीमत बदल सकती है", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "यह सवारी पहले ही किसी अन्य ड्राइवर ने ले ली है।", + "This ride type allows changes, but the price may increase": "इस प्रकार की सवारी परिवर्तनों की अनुमति देती है, लेकिन कीमत बढ़ सकती है", + "This ride type does not allow changes to the destination or additional stops": "इस प्रकार की सवारी गंतव्य में परिवर्तन या अतिरिक्त स्टॉप की अनुमति नहीं देती", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "यह ट्रिप आपके शुरुआती बिंदु से सीधे आपकी मंजिल तक एक निश्चित कीमत पर जाती है।", + "This trip is for women only": "यह ट्रिप केवल महिलाओं के लिए है", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "पहुंचने का समय", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro 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.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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 Siro support directly.", + "To use Wallet charge it": "वॉलेट का उपयोग करने के लिए इसे रिचार्ज करें", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "वॉलेट रिचार्ज करें", + "Top up Wallet to continue": "जारी रखने के लिए वॉलेट रिचार्ज करें", + "Total Amount:": "कुल राशि:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "कुल कनेक्शन अवधि:", + "Total Cost": "कुल कीमत", + "Total Cost is": "Total Cost is", + "Total Duration:": "कुल अवधि:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "महीने में कुल घंटे", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "कुल अंक हैं", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "महीने का कुल बजट", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "आधुनिक, शांत इलेक्ट्रिक कार में यात्रा करें। एक प्रीमियम, पर्यावरण के अनुकूल विकल्प।", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "ट्रिप रद्द हो गई", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "ट्रिप रद्द हो गई। ट्रिप की लागत आपके वॉलेट में जोड़ दी जाएगी।", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "ट्रिप की निगरानी", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "ट्रिप समाप्त", + "Trip has Steps": "ट्रिप के चरण हैं", + "Trip is Begin": "ट्रिप शुरू हो गई", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "ट्रिप्स रिकॉर्ड की गईं", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "तुर्की", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "यहाँ स्थान टाइप करें", + "Type something": "Type something", + "Type something...": "कुछ लिखें...", + "Type your Email": "अपना ईमेल टाइप करें", + "Type your message": "अपना संदेश टाइप करें", + "Type your message...": "Type your message...", + "Types of Trips in Siro:": "Types of Trips in Siro:", + "USA": "अमेरीका", + "Uncompromising Security": "अटल सुरक्षा", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "अपडेट", + "Update Available": "Update Available", + "Update Education": "शिक्षा अपडेट करें", + "Update Gender": "लिंग अपडेट करें", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "अपलोड हो गया", + "Use Touch ID or Face ID to confirm payment": "भुगतान की पुष्टि के लिए टच आईडी या फेस आईडी का उपयोग करें", + "Use code:": "कोड का उपयोग करें:", + "Use my invitation code to get a special gift on your first ride!": "अपनी पहली राइड पर विशेष उपहार पाने के लिए मेरा आमंत्रण कोड उपयोग करें!", + "Use my referral code:": "मेरा रेफरल कोड उपयोग करें:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "उपयोगकर्ता मौजूद नहीं है।", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "इस फ़ोन नंबर या ईमेल वाला उपयोगकर्ता पहले से मौजूद है।", + "Uses cellular network": "Uses cellular network", + "VIN": "VIN", + "VIN :": "VIN :", + "VIN is": "VIN है:", + "VIP Order": "VIP ऑर्डर", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "तक वैध:", + "Value": "Value", + "Van": "वैन", + "Van / Bus": "Van / Bus", + "Van for familly": "परिवार के लिए वैन", + "Variety of Trip Choices": "ट्रिप विकल्पों की विविधता", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "वाहन विवरण पीछे", + "Vehicle Details Front": "वाहन विवरण सामने", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "वाहन विकल्प", + "Verification Code": "सत्यापन कोड", + "Verify": "सत्यापित करें", + "Verify Email": "ईमेल सत्यापित करें", + "Verify Email For Driver": "ड्राइवर के लिए ईमेल सत्यापित करें", + "Verify OTP": "OTP सत्यापित करें", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "सभी बटनों के लिए वाइब्रेशन फीडबैक", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "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 Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "कैप्टन का इंतज़ार...", + "Waiting for Driver ...": "ड्राइवर का इंतज़ार...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "आपकी लोकेशन का इंतज़ार है", + "Wallet": "वॉलेट", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "वॉलेट ब्लॉक है", + "Wallet!": "वॉलेट!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing 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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "हम तस्वीर प्रोसेस कर रहे हैं कृपया प्रतीक्षा करें ", + "We are search for nearst driver": "हम निकटतम ड्राइवर खोज रहे हैं", + "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 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 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 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 need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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 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 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 अंक भेजे हैं", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "हम नए ड्राइवर की तलाश करेंगे।\\nकृपया प्रतीक्षा करें।", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "वापसी पर स्वागत है!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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 Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "किस प्रकार के वाहन उपलब्ध हैं?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "व्हाट्सएप लोकेशन एक्सट्रैक्टर", + "When": "जब", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "आप कहाँ जा रहे हैं?", + "Where are you, sir?": "Where are you, sir?", + "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 Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "काम", + "Work & Contact": "काम और संपर्क", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "काम का समय 12:00 - 19:00 है।\\nआप व्हाट्सएप संदेश या ईमेल भेज सकते हैं।", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "नोट लिखें", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "वर्ष", + "Year is": "वर्ष है:", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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 !": "आप इस दिन के लिए रोक दिए गए हैं!", + "You Can Cancel Trip And get Cost of Trip From": "आप ट्रिप रद्द कर सकते हैं और ट्रिप की कीमत प्राप्त कर सकते हैं से", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "यदि कैप्टन समय पर नहीं आया तो आप राइड रद्द कर सकते हैं", + "You Dont Have Any amount in": "आपके पास कोई राशि नहीं है में", + "You Dont Have Any places yet !": "आपके पास अभी तक कोई स्थान नहीं है!", + "You Earn today is": "You Earn today is", + "You Have": "आपके पास है", + "You Have Tips": "आपके पास टिप्स हैं", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "आपने इस दिन 3 राइड्स को अस्वीकार कर दिया यही कारण है \\nकल मिलते हैं!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "आपको कारण चुनना चाहिए।", + "You Should choose rate figure": "आपको रेटिंग चुननी चाहिए", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "आप हटा रहे हैं", + "You are Stopped": "आप रुके हुए हैं", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "आप यात्री की लोकेशन के करीब नहीं हैं", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "आप ऑनलाइन रहने के लिए अंक खरीद सकते हैं\\nनीचे दी गई इस सूची द्वारा", + "You can buy points from your budget": "आप अपने बजट से अंक खरीद सकते हैं", + "You can call or record audio during this trip.": "आप इस ट्रिप के दौरान कॉल या ऑडियो रिकॉर्ड कर सकते हैं।", + "You can call or record audio of this trip": "आप इस ट्रिप की कॉल या ऑडियो रिकॉर्ड कर सकते हैं", + "You can cancel Ride now": "आप अब राइड रद्द कर सकते हैं", + "You can cancel trip": "आप ट्रिप रद्द कर सकते हैं", + "You can change the Country to get all features": "आप सभी सुविधाएँ प्राप्त करने के लिए देश बदल सकते हैं", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "आप ऐप की भाषा बदल सकते हैं", + "You can change the vibration feedback for all buttons": "आप सभी बटनों के लिए वाइब्रेशन फीडबैक बदल सकते हैं", + "You can claim your gift once they complete 2 trips.": "जब वे 2 ट्रिप पूरे कर लें तो आप अपना उपहार प्राप्त कर सकते हैं।", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "राइड की पुष्टि होने पर आप ऐप में चैट कर सकते हैं।", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "आप हमसे कार्यालय समय 12:00 - 19:00 के दौरान संपर्क कर सकते हैं।", + "You can decline a request without any cost": "आप बिना किसी लागत के अनुरोध अस्वीकार कर सकते हैं", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "आप नकद या कार्ड का उपयोग करके भुगतान कर सकते हैं।", + "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 Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "आप उपहार के हकदार हैं", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "आपने अभी तक आपातकालीन फ़ोन नहीं जोड़ा है!", + "You dont have Points": "आपके पास अंक नहीं हैं", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "आप आमंत्रित करने के लिए अपना उपहार पहले ही प्राप्त कर चुके हैं", + "You have already used this promo code.": "आप पहले ही यह प्रोमो कोड इस्तेमाल कर चुके हैं।", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "ड्राइवर की कॉल है", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "आपने प्रोमो कोड कॉपी कर लिया है।", + "You have earned 20": "आपने 20 अर्जित किए हैं", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "आपने सभी बार समाप्त कर दिए हैं ", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "आपको आमंत्रण के लिए एक उपहार मिला है", + "You have in account": "आपके खाते में है", + "You have promo!": "आपके पास प्रोमो है!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "आपको ईमेल सत्यापित करना होगा!", + "You must be charge your Account": "आपको अपना खाता चार्ज करना होगा", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "भाषा बदलने के लिए आपको ऐप को रीस्टार्ट करना होगा।", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "आपको इसे अपलोड करना होगा।", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "आपको एक चुनना चाहिए", + "You should select your country": "आपको अपना देश चुनना चाहिए", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "आपकी यात्रा की दूरी है", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "टाइमर समाप्त होने के बाद आप अपनी मंजिल पर पहुंच जाएंगे।", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "आप ड्राइवर को कीमत चुकाएंगे या हम अगली ट्रिप पर आपसे ले लेंगे", + "You will be thier in": "आप वहां होंगे", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "आप ऑर्डर प्राप्त करने के लिए हर समय अनुमति चुनें", + "You will choose one of above !": "आपको ऊपर वालों में से एक को चुनना होगा!", + "You will get cost of your work for this trip": "आपको इस ट्रिप के लिए अपने काम की कीमत मिलेगी", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "आपको SMS संदेश में एक कोड प्राप्त होगा", + "You will receive a code in WhatsApp Messenger": "आपको व्हाट्सएप मैसेंजर में एक कोड प्राप्त होगा", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "आपको SMS संदेश में कोड प्राप्त होगा", + "Your Account is Deleted": "आपका खाता हटा दिया गया है", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "आपका बजट आवश्यकता से कम है", + "Your Choice, Our Priority": "आपकी पसंद, हमारी प्राथमिकता", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "आप यात्री की लोकेशन से दूर हैं", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "आपका आमंत्रण कोड सफलतापूर्वक लागू हो गया!", + "Your journey starts here": "आपकी यात्रा यहाँ से शुरू होती है", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "आपका नाम", + "Your order is being prepared": "आपका ऑर्डर तैयार हो रहा है", + "Your order sent to drivers": "आपका ऑर्डर ड्राइवरों को भेज दिया गया", + "Your password": "Your password", + "Your past trips will appear here.": "आपकी पिछली ट्रिप्स यहाँ दिखाई देंगी।", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "आपका व्यक्तिगत आमंत्रण कोड है:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "आपकी ट्रिप की कीमत है", + "Your trip distance is": "आपकी ट्रिप की दूरी है", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nहम किफायत को भी प्राथमिकता देते हैं, प्रतिस्पर्धी मूल्य निर्धारण की पेशकश करते हैं।", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "जारी रखने के लिए, आपको उपयोग की शर्तों और गोपनीयता नीति की समीक्षा करनी चाहिए और सहमत होना चाहिए।", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "एक त्रुटि हुई: @error", + "and I have a trip on": "और मेरे पास एक ट्रिप है पर", + "and acknowledge our": "और स्वीकार करें हमारी", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq एक सुरक्षित, विश्वसनीय और सुलभ राइड-हेलिंग ऐप है।", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "आपके पॉइंट तक पहुंचने का समय", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "पहले", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "Intaleq सुरक्षा के लिए प्रतिबद्ध है।", + "complete profile subtitle": "शुरू करने के लिए प्रोफाइल पूरा करें", + "complete registration button": "पंजीकरण पूरा करें", + "complete, you can claim your gift": "पूरा, आप अपना उपहार प्राप्त कर सकते हैं", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "बनाने का समय", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "दूरी है", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "ड्राइविंग लाइसेंस", + "duration is": "अवधि है", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "ईमेल (वैकल्पिक)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "कृपया 5 अंकों का OTP दर्ज करें", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "चेहरा पहचान (Face Detect)", + "failed to send otp": "OTP भेजने में विफल।", + "false": "false", + "first name label": "पहला नाम", + "first name required": "पहला नाम आवश्यक है", + "for": "के लिए", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "आपके पहले पंजीकरण के लिए!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 से 10:30 तक", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 से 15:00 तक", + "from 23:59 till 05:30": "23:59 से 05:30 तक", + "from 3 times Take Attention": "3 बार से ध्यान दें", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "आपकी सूची से", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "Intaleq के साथ, आप मिनटों में राइड प्राप्त कर सकते हैं।", + "get_to_destination": "जल्दी और आसानी से अपनी मंजिल पर पहुंचें।", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "यात्री के ट्रिप रद्द करने से पहले\\nअपनी यात्री की लोकेशन पर जाएं", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "पूरा कर लिया है", + "hi": "hi", + "hour": "घंटा", + "hours before trying again.": "hours before trying again.", + "i agree": "मैं सहमत हूँ", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "यदि आपके पास खाता नहीं है", + "if you want help you can email us here": "यदि आप मदद चाहते हैं तो आप हमें यहां ईमेल कर सकते हैं", + "image verified": "छवि सत्यापित", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "राशि डालें", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "शामिल हुआ", + "kilometer": "kilometer", + "last name label": "अंतिम नाम", + "last name required": "अंतिम नाम आवश्यक है", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "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 Siro.", + "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 passenger": "यात्री का संदेश", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "मॉडल :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "मेरी लोकेशन", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "समान नहीं", + "of": "में से", + "on": "on", + "one last step title": "एक आखिरी कदम", + "otp sent subtitle": "एक 5 अंकों का कोड भेजा गया\\n@phoneNumber", + "otp sent success": "OTP व्हाट्सएप पर सफलतापूर्वक भेजा गया।", + "otp verification failed": "OTP सत्यापन विफल रहा।", + "passenger agreement": "यात्री समझौता", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "फ़ोन नंबर", + "phone number of driver": "phone number of driver", + "phone number required": "फ़ोन नंबर आवश्यक है", + "please go to picker location exactly": "कृपया बिल्कुल उसी लोकेशन पर जाएं जहां से उठाना है", + "please order now": "अभी ऑर्डर करें", + "please wait till driver accept your order": "कृपया प्रतीक्षा करें जब तक ड्राइवर आपका ऑर्डर स्वीकार न करे", + "points": "points", + "price is": "कीमत है", + "privacy policy": "गोपनीयता नीति।", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "पंजीकरण विफल रहा।", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "एक सुरक्षित और आरामदायक राइड का आनंद लें।", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "सेकंड", + "security_warning": "security_warning", + "send otp button": "OTP भेजें", + "server error try again": "सर्वर त्रुटि, पुनः प्रयास करें।", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "ملتا جلتا (Similar)", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "उपयोग की शर्तें", + "the 300 points equal 300 L.E": "300 अंक 300 रुपये के बराबर हैं", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "500 पॉइंट 30 रुपये के बराबर हैं", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "यह आपके डिवाइस से सभी फ़ाइलें हटा देगा", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "टोकन परिवर्तन", + "token updated": "टोकन अपडेट हो गया", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "ट्रिप्स", + "true": "true", + "type here": "यहाँ टाइप करें", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "सत्यापित करें और जारी रखें", + "verify your number title": "अपना नंबर सत्यापित करें", + "vin": "vin", + "wait 1 minute to receive message": "संदेश प्राप्त करने के लिए 1 मिनट प्रतीक्षा करें", + "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 siro", + "welcome user": "स्वागत है, @firstName!", + "welcome_message": "Intaleq में आपका स्वागत है!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "अपनी कार के लिए रंग लिखें", + "write Expiration Date for your car": "अपनी कार के लिए समाप्ति तिथि लिखें", + "write Make for your car": "अपनी कार के लिए मेक लिखें", + "write Model for your car": "अपनी कार के लिए मॉडल लिखें", + "write Year for your car": "अपनी कार के लिए वर्ष लिखें", + "write comment here": "write comment here", + "write vin for your car": "अपनी कार के लिए vin लिखें", + "year :": "वर्ष :", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "आपने प्राप्त किया", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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 Siro Wallet", + "you will use this device?": "you will use this device?", + "your ride is Accepted": "आपकी राइड स्वीकार कर ली गई है", + "your ride is applied": "आपकी राइड लागू हो गई है", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "समाप्ति तिथि", + "⚠️ You need to choose an amount!": "⚠️ आपको एक राशि चुनने की आवश्यकता है!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 वॉलेट से भुगतान करें", + "💳 Pay with Credit Card": "💳 क्रेडिट कार्ड से भुगतान करें", +}; diff --git a/siro_driver/lib/controller/local/it.dart b/siro_driver/lib/controller/local/it.dart new file mode 100644 index 0000000..6727cae --- /dev/null +++ b/siro_driver/lib/controller/local/it.dart @@ -0,0 +1,2662 @@ +final Map it = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " e l'Informativa sulla Privacy.", + " is ON for this month": " è ON questo mese", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. Descrivi il problema", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 e ottieni 4% sconto", + "100 and get 11% discount": "100 e ottieni 11% sconto", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. Allega audio registrato", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 e ottieni 6% sconto", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. Rivedi dettagli e risposta", + "300 LE": "300 LE", + "3000 LE": "30 €", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 e ottieni 8% sconto", + "5 digit": "5 cifre", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Viaggio con prenotazione, scegli i migliori autisti e auto.", + "AI Page": "Pagina AI", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "Chi siamo", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "Accetta Ordine", + "Accept Ride": "Accept Ride", + "Accepted Ride": "Corsa accettata", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "Durata attiva:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "Aggiungi carta", + "Add Credit Card": "Aggiungi carta credito", + "Add Home": "Aggiungi Casa", + "Add Location": "Aggiungi Posizione", + "Add Location 1": "Aggiungi Posizione 1", + "Add Location 2": "Aggiungi Posizione 2", + "Add Location 3": "Aggiungi Posizione 3", + "Add Location 4": "Aggiungi Posizione 4", + "Add Payment Method": "Aggiungi metodo pagamento", + "Add Phone": "Aggiungi telefono", + "Add Promo": "Aggiungi Promo", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Aggiungi Fermate", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "Aggiungi fondi con i nostri metodi sicuri", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Indirizzo", + "Address:": "Address:", + "Admin DashBoard": "Dashboard Admin", + "Affordable for Everyone": "Conveniente per tutti", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "Avvisi", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "Consenti accesso posizione", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "Errore pagamento.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "Errore durante la selezione dei contatti:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "Si è verificato un errore imprevisto. Riprova.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "App con Passeggero", + "Applied": "Richiesto", + "Apply": "Apply", + "Apply Order": "Accetta ordine", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "Vicino. Lì in 3 minuti.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "Sicuro di andare a", + "Are you Sure to LogOut?": "Sicuro di uscire?", + "Are you sure to cancel?": "Sicuro di annullare?", + "Are you sure to delete recorded files": "Eliminare file?", + "Are you sure to delete this location?": "Sei sicuro di voler eliminare questa posizione?", + "Are you sure to delete your account?": "Sicuro di eliminare?", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "Sei sicuro? Questa azione non può essere annullata.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Vuoi andare in questo luogo?", + "Are you want to go to this site": "Vuoi andare qui?", + "Are you want to wait drivers to accept your order": "Vuoi attendere accettazione?", + "Arrival time": "Ora arrivo", + "Associate Degree": "Laurea breve", + "Attach this audio file?": "Allegare questo file audio?", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Audio caricato con successo.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "Disponibile", + "Average of Hours of": "Media ore", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Auto Economica", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "Bahrain", + "Balance": "Saldo", + "Balance limit exceeded": "Limite saldo superato", + "Balance not enough": "Saldo insufficiente", + "Balance:": "Saldo:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "Vai piano", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "Fai foto accurate\\nHai", + "Be sure to use it quickly! This code expires at": "Usalo presto! Questo codice scade il", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Flessibilità di scelta.", + "Before we start, please review our terms.": "Prima di iniziare, rivedi i nostri termini.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Migliore scelta per città", + "Best choice for comfort car and flexible route and stops point": "Auto comfort e percorso flessibile", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "Data di nascita", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "Costo Prenotazione", + "Bottom Bar Example": "Esempio", + "But you have a negative salary of": "Saldo negativo:", + "CODE": "CODICE", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "Chiamata terminata", + "Call Ended": "Call Ended", + "Call Income": "Chiamata in arrivo", + "Call Income from Driver": "Chiamata dall'autista", + "Call Income from Passenger": "Chiamata dal passeggero", + "Call Left": "Chiamate rimaste", + "Call Options": "Call Options", + "Call Page": "Pagina chiamata", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "Accesso camera negato.", + "Camera not initialized yet": "Camera non pronta", + "Camera not initilaized yet": "Camera non pronta", + "Can I cancel my ride?": "Posso annullare la corsa?", + "Can we know why you want to cancel Ride ?": "Perché vuoi annullare?", + "Cancel": "Annulla", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "Annulla corsa", + "Cancel Search": "Annulla ricerca", + "Cancel Trip": "Annulla corsa", + "Cancel Trip from driver": "Corsa annullata dall'autista", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "Annullato", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "Niente più sconti.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Cattura immagine del Casellario Giudiziale", + "Capture an Image of Your Driver License": "Cattura immagine della patente", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "Foto retro documento identità", + "Capture an Image of Your ID Document front": "Foto fronte documento identità", + "Capture an Image of Your car license back": "Foto retro libretto circolazione", + "Capture an Image of Your car license front": "Foto fronte libretto circolazione", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "Auto", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "Dettagli Auto", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "Libretto Circolazione", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "Numero Carta", + "Card Payment": "Card Payment", + "CardID": "ID Carta", + "Cash": "Contanti", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "Cambia Paese", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "Telaio", + "Check back later for new offers!": "Controlla più tardi per nuove offerte!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "Scegli lingua", + "Choose a contact option": "Scegli contatto", + "Choose between those Type Cars": "Scegli tipo auto", + "Choose from Map": "Scegli da Mappa", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "Scegli l'opzione adatta a te.", + "Choose who this order is for": "Per chi è questo ordine", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "Città", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "Richiedi il tuo regalo di 20 € per l'invito", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "Mostra su Mappa", + "Close": "Chiudi", + "Closest & Cheapest": "Più vicino ed economico", + "Closest to You": "Più vicino a te", + "Code": "Codice", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "Codice non approvato", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "Colore", + "Color is": "Color is", + "Comfort": "Comfort", + "Comfort choice": "Scelta comfort", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "Comunicazione", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "Reclamo", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Impossibile presentare reclamo per questa corsa. Potrebbe non essere stata completata o iniziata.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "Conferma", + "Confirm & Find a Ride": "Conferma e trova corsa", + "Confirm Attachment": "Conferma allegato", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "Conferma selezione", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "Conferma la tua email", + "Confirmation": "Confirmation", + "Connected": "Connesso", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "Opzioni contatto", + "Contact Support": "Contatta supporto", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "Contattaci", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "È richiesto il permesso ai contatti per selezionarli.", + "Contact us for any questions on your order.": "Contattaci per domande.", + "Contacts Loaded": "Contatti caricati", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "Continua", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "Copia", + "Copy Code": "Copia codice", + "Copy this Promo to use it in your Ride!": "Copia questa promo!", + "Cost": "Cost", + "Cost Duration": "Costo Durata", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "Ore per giorni", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "Crea Portafoglio", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "Casellario Giudiziale richiesto", + "Criminal Record": "Casellario Giudiziale", + "Cropper": "Ritaglia", + "Current Balance": "Saldo attuale", + "Current Location": "Posizione attuale", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Cliente non trovato", + "Customer phone is not active": "Il telefono del cliente non è attivo", + "DISCOUNT": "SCONTO", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "Data", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "Data Nascita:", + "Date of Birth:": "Date of Birth:", + "Day Off": "Day Off", + "Day Streak": "Day Streak", + "Days": "Giorni", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "Elimina il mio account", + "Delete Permanently": "Elimina definitivamente", + "Deleted": "Eliminato", + "Delivery": "Delivery", + "Destination": "Destinazione", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "Rileva Volto ", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "Cilindrata", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "Hai un codice invito?", + "Do you want to change Home location": "Cambiare Casa", + "Do you want to change Work location": "Cambiare Lavoro", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "Vuoi dare la mancia?", + "Docs": "Docs", + "Doctoral Degree": "Dottorato", + "Document Number:": "Document Number:", + "Documents check": "Controllo documenti", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "Fatto", + "Don’t forget your personal belongings.": "Non dimenticare i tuoi effetti personali.", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Scarica l'app ora:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Autista", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "L'autista ha accettato la corsa per te", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "L'autista ha richiesto la corsa per te", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "L'autista ha annullato la tua corsa", + "Driver Car Plate": "Targa Autista", + "Driver Finish Trip": "L'autista ha terminato la corsa", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "L'autista sta andando dal passeggero", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "Nome Autista", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "Registrazione Autista", + "Driver Registration & Requirements": "Registrazione Autista e Requisiti", + "Driver Wallet": "Portafoglio Autista", + "Driver already has 2 trips within the specified period.": "L'autista ha già 2 viaggi nel periodo specificato.", + "Driver is on the way": "Autista in arrivo", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "Autista in attesa.", + "Driver joined the channel": "L'autista si è unito al canale", + "Driver left the channel": "L'autista ha lasciato il canale", + "Driver phone": "Telefono Autista", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "Classe Patente", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "Durata:", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "Modifica profilo", + "Edit Your data": "Modifica dati", + "Education": "Istruzione", + "Egypt": "Egitto", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "Elettrica", + "Email": "Email", + "Email Us": "Scrivici", + "Email Wrong": "Email errata", + "Email is": "Email:", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "L'email è sbagliata.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "Tipo di impiego", + "Enable Location": "Attiva posizione", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "Fine corsa", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "Goditi una corsa sicura e comoda.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Prezzi competitivi.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "Inserisci Nome", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "Inserisci telefono", + "Enter phone number": "Enter phone number", + "Enter promo code": "Inserisci codice", + "Enter promo code here": "Codice qui", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "Inserisci codice e ottieni", + "Enter your City": "Enter your City", + "Enter your Note": "Inserisci nota", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Inserisci qui il tuo reclamo...", + "Enter your email": "Enter your email", + "Enter your email address": "Inserisci la tua email", + "Enter your feedback here": "Inserisci feedback", + "Enter your first name": "Inserisci il tuo nome", + "Enter your last name": "Inserisci il tuo cognome", + "Enter your password": "Enter your password", + "Enter your phone number": "Inserisci il tuo numero", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "Errore", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Evening": "Sera", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "Data scadenza", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "Data scadenza", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "Risultato rilevamento volto", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "Risposta reclami veloce", + "Favorite Places": "Favorite Places", + "Fee is": "Tariffa:", + "Feed Back": "Feedback", + "Feedback": "Feedback", + "Feedback data saved successfully": "Feedback salvato", + "Female": "Femmina", + "Find answers to common questions": "Trova risposte", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "Termina monitoraggio", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "Nome", + "First Trip": "First Trip", + "First name": "Nome", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Tariffa base", + "For Drivers": "Per Autisti", + "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 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 Siro 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": "Domande Frequenti", + "Frequently Questions": "Domande Frequenti", + "Fri": "Fri", + "From": "Da", + "From :": "Da:", + "From : Current Location": "Da: Posizione attuale", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "Carburante", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "Nome completo", + "FullName": "Nome completo", + "GPS Required Allow !.": "GPS richiesto!", + "Gender": "Genere", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "Get": "Get", + "Get Details of Trip": "Dettagli", + "Get Direction": "Indicazioni", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get features for your country": "Get features for your country", + "Get it Now!": "Ottienilo ora!", + "Get to your destination quickly and easily.": "Arriva a destinazione velocemente.", + "Getting Started": "Iniziare", + "Gift Already Claimed": "Regalo già richiesto", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "Vai ai preferiti", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "Avanti\\nscansiona Libretto.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "Vai dal passeggero ora", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "Vai a destinazione", + "Go to this location": "Vai a questa posizione", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "O e", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "Hai un codice promozionale?", + "Head": "Head", + "Heading your way now. Please be ready.": "Arrivo. Fatti trovare pronto.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "Ciao, sono il conducente", + "Hello this is Driver": "Ciao sono l'Autista", + "Help & Support": "Help & Support", + "Help Details": "Dettagli aiuto", + "Helping Center": "Centro assistenza", + "Helping Page": "Helping Page", + "Here recorded trips audio": "Audio viaggi", + "Hi": "Ciao", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Ciao, sto partendo ora", + "Hi! This is": "Ciao! Questo è", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "Diploma di scuola superiore", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "Cronologia", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "Come posso pagare?", + "How can I register as a driver?": "Come mi registro come autista?", + "How do I communicate with the other party (passenger/driver)?": "Come comunico?", + "How do I request a ride?": "Come richiedo una corsa?", + "How many hours would you like to wait?": "Quante ore di attesa?", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "Accetto", + "I Arrive": "I Arrive", + "I Arrive your site": "Arrivato al sito", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "Posizione errata", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "Arrivato", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "Non riesco a registrarmi con face detection", + "I want to order for myself": "Voglio ordinare per me", + "I want to order for someone else": "Voglio ordinare per qualcun altro", + "I was just trying the application": "Stavo solo provando", + "I will go now": "Vado ora", + "I will slow down": "Rallenterò", + "I've arrived.": "I've arrived.", + "ID Documents Back": "Retro documento identità", + "ID Documents Front": "Fronte documento identità", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "Se sei in auto, premi Inizia", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "Se serve aiuto, contattaci", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Per aggiungere fermata clicca qui", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Apri Google Maps direttamente", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "Risultato: ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "Chiamate VOIP in-app", + "Including Tax": "IVA inclusa", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "⚠️ Codice SMS errato. Riprova.", + "Increase Fare": "Aumenta tariffa", + "Increase Fee": "Aumenta tariffa", + "Increase Your Trip Fee (Optional)": "Aumenta la tariffa (Opzionale)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Aumentare la tariffa potrebbe attrarre più autisti. Vuoi aumentare il prezzo?", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "Inserisci", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "Inserisci Numero SOS", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Inserisci codice", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "Data revisione", + "InspectionResult": "Risultato ispezione", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "MPIN non valido", + "Invalid OTP": "OTP non valido", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "Invito usato", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "Invito inviato con successo", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "Passeggero in auto?", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "Data rilascio", + "IssueDate": "Data rilascio", + "JOD": "€", + "Join": "Unisci", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "Giordania", + "Just now": "Just now", + "KM": "KM", + "Keep it up!": "Continua così!", + "Kuwait": "Kuwait", + "L.E": "L.E", + "L.S": "L.S", + "LE": "€", + "Lady": "Donna", + "Lady Captain for girls": "Autista donna per ragazze", + "Lady Captains Available": "Autiste donne disponibili", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "Lingua", + "Language Options": "Opzioni lingua", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "Cognome", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "Ultimo Viaggio", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Lascia", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "Controlliamo Libretto ", + "Lets check License Back Face": "Controlliamo Retro", + "License Categories": "Categorie patente", + "License Expiry Date": "License Expiry Date", + "License Type": "Tipo patente", + "Link a phone number for transfers": "Collega un numero per i trasferimenti", + "Location Access Required": "Location Access Required", + "Location Link": "Link posizione", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "Esci", + "Log Out Page": "Pagina uscita", + "Login": "Login", + "Login Captin": "Accesso Autista", + "Login Driver": "Accesso Autista", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "Prezzo più basso", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "Marca :", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "Marca", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "Maschio", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "Mappa Passeggero", + "Marital Status": "Stato civile", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "Tariffa massima", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Tariffa minima", + "Minute": "Minuto", + "Minutes": "Minutes", + "Mishwar Vip": "Viaggio VIP", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "Modello", + "Model is": "Modello:", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "Mattina", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "Metodi più sicuri", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "Sposta la mappa per regolare il segnaposto", + "Mute": "Mute", + "My Balance": "Il mio saldo", + "My Card": "La mia carta", + "My Cared": "Le mie carte", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "Il mio profilo", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "Mia posizione:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "MiaPosizione", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "Nome", + "Name (Arabic)": "Nome (Locale)", + "Name (English)": "Nome (Inglese)", + "Name :": "Nome :", + "Name in arabic": "Nome (Locale)", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "Carta d'Identità", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "Numero Carta d'Identità", + "NationalID": "Numero Carta d'Identità", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "Avanti", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "Notte", + "No": "No", + "No ,still Waiting.": "No, attendo.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Nessuna auto. Spiacenti!", + "No Car or Driver Found in your area.": "Nessuna auto o autista in zona.", + "No I want": "No voglio", + "No Promo for today .": "Nessuna promo oggi.", + "No Response yet.": "Nessuna risposta.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Niente SIM? Chiama tramite app.", + "No accepted orders? Try raising your trip fee to attract riders.": "Aumenta la tariffa.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "Nessun file audio trovato.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "Nessun contatto trovato", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "Nessun contatto con numero di telefono trovato sul dispositivo.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "Nessuno ha accettato", + "No drivers accepted your request yet": "Nessun autista ha ancora accettato la tua richiesta", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "Nessun volto rilevato", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Nessuna immagine", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "Nessun invito trovato!", + "No one accepted? Try increasing the fare.": "Nessuno ha accettato? Prova ad aumentare la tariffa.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "Nessun passeggero trovato per questo numero", + "No phone number": "No phone number", + "No promos available right now.": "Nessuna promozione disponibile ora.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "Nessuna corsa trovata", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "Nessuna cronologia viaggi", + "No trip yet found": "Nessun viaggio", + "No user found for the given phone number": "Nessun utente trovato per questo numero", + "No wallet record found": "Nessun record portafoglio", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "No, grazie", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "Non connesso", + "Not set": "Non impostato", + "Not updated": "Not updated", + "Notifications": "Notifiche", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "Occupazione", + "Offline": "Offline", + "Ok": "Ok", + "Ok , See you Tomorrow": "Ok, a domani", + "Ok I will go now.": "Ok, vado ora.", + "Old and affordable, perfect for budget rides.": "Economica e accessibile.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "Impostazioni", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "O paga in contanti", + "Order": "Ordine", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "Ordine applicato", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Annullato dal passeggero", + "Order Details Siro": "Order Details Siro", + "Order History": "Cronologia ordini", + "Order ID": "Order ID", + "Order Request Page": "Pagina richiesta", + "Order Under Review": "Order Under Review", + "Order for myself": "Ordina per me", + "Order for someone else": "Ordina per altri", + "OrderId": "ID Ordine", + "OrderVIP": "Ordine VIP", + "Orders Page": "Orders Page", + "Origin": "Origine", + "Original Fare": "Original Fare", + "Other": "Altro", + "Our dedicated customer service team ensures swift resolution of any issues.": "Il nostro team risolve i problemi velocemente.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "Proprietario", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "Il passeggero ha annullato la corsa", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "Il passeggero sta venendo da te", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "Password min 6 caratteri.", + "Paste WhatsApp location link": "Incolla link posizione WhatsApp", + "Paste location link here": "Incolla il link della posizione qui", + "Paste the code here": "Incolla il codice qui", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Paga direttamente al conducente", + "Pay from my budget": "Paga dal budget", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "Paga con Carta", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "Paga con Portafoglio", + "Pay with Your": "Paga con", + "Pay with Your PayPal": "Paga con PayPal", + "Payment Failed": "Pagamento Fallito", + "Payment History": "Cronologia pagamenti", + "Payment Method": "Metodo pagamento", + "Payment Method:": "Payment Method:", + "Payment Options": "Opzioni pagamento", + "Payment Successful": "Pagamento Riuscito", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "Pagamenti", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "Per chi cerca avventura", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfetto per chi cerca auto nuove e libertà di percorso", + "Permission denied": "Permesso negato", + "Personal Information": "Informazioni personali", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Telefono:", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "Scegli da mappa", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "Destinazione da Mappa", + "Pick your ride location on the map - Tap to confirm": "Scegli punto sulla mappa - Tocca per confermare", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "Targa", + "Plate Number": "Targa", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "Attendi se il passeggero vuole annullare!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "Inserisci", + "Please enter Your Email.": "Inserisci la tua email.", + "Please enter Your Password.": "Inserisci la password.", + "Please enter a correct phone": "Inserisci un numero corretto", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "Inserisci numero telefono", + "Please enter a valid 16-digit card number": "Inserisci numero carta valido", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Inserisci codice valido", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Codice CVV", + "Please enter the cardholder name": "Nome titolare", + "Please enter the complete 6-digit code.": "Inserisci il codice completo a 6 cifre.", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "Data scadenza", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Inserisci la città.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "Inserisci domanda.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Inserisci feedback.", + "Please enter your first name.": "Inserisci il nome.", + "Please enter your last name.": "Inserisci il cognome.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Inserisci il numero di telefono.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "Per favore, vai dall'autista", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "Please help! Contact me as soon as possible.": "Aiuto! Contattami subito.", + "Please make sure not to leave any personal belongings in the car.": "Assicurati di non lasciare effetti personali in auto.", + "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 Siro 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": "Metti la patente nel bordo", + "Please select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "Please select a ride before submitting.": "Please select a ride before submitting.", + "Please stay on the picked point.": "Per favore, resta al punto di raccolta.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "Verifica identità", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "Attendi passeggero.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "Punto", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "Rilevati potenziali rischi di sicurezza. L'app potrebbe non funzionare correttamente.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Informativa sulla privacy", + "Profile": "Profilo", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "Promo", + "Promo Already Used": "Già usato", + "Promo Code": "Codice Promo", + "Promo Code Accepted": "Codice accettato", + "Promo Copied!": "Promo copiata!", + "Promo End !": "Promo Finita!", + "Promo Ended": "Promo Terminata", + "Promo code copied to clipboard!": "Copiato!", + "Promos": "Promozioni", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "Pagamento Annullato.", + "Qatar": "Qatar", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "Azioni rapide", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "Silenzioso ed Ecologico", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "Vota Autista", + "Rate Driver": "Vota Autista", + "Rate Our App": "Rate Our App", + "Rate Passenger": "Vota Passeggero", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "Andata e Ritorno", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Andata e Ritorno: Servizio comodo per viaggiare tra città.", + "Reason": "Reason", + "Recent Places": "Luoghi recenti", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "Ricarica conto", + "Record": "Record", + "Record saved": "Salvato", + "Recorded Trips (Voice & AI Analysis)": "Viaggi registrati (Voce & AI)", + "Recorded Trips for Safety": "Viaggi registrati per sicurezza", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "Rifiuta ordine", + "Refused": "Refused", + "Register": "Registrati", + "Register Captin": "Registrazione Autista", + "Register Driver": "Registra Autista", + "Register as Driver": "Registrati come Autista", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Religione", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "Invia di nuovo", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "Gestione corse", + "Ride Status": "Ride Status", + "Ride Summaries": "Riepiloghi", + "Ride Summary": "Riepilogo corsa", + "Ride Today :": "Ride Today :", + "Ride Wallet": "Portafoglio Corsa", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "Corse", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "Percorsi", + "Route Not Found": "Percorso non trovato", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "Telefono SOS", + "SUBMIT": "SUBMIT", + "SYP": "SYP", + "Safety & Security": "Sicurezza", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "Arabia Saudita", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "Salva carta", + "Saved Sucssefully": "Salvato con successo", + "Scan Driver License": "Scansiona Patente", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "Scansiona ID", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "Scansiona ID", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Scooter", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "Punto intermedio", + "Search for your Start point": "Punto di partenza", + "Search for your destination": "Cerca destinazione", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "Ricerca del conducente più vicino...", + "Security Warning": "⚠️ Avviso di sicurezza", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "Ci vediamo in strada!", + "Select Country": "Seleziona Paese", + "Select Date": "Seleziona Data", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "Seleziona tipo ordine", + "Select Payment Amount": "Seleziona importo", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "Seleziona Ora", + "Select Waiting Hours": "Ore Attesa", + "Select Your Country": "Seleziona Paese", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "Scegli messaggio", + "Select recorded trip": "Seleziona viaggio", + "Select your destination": "Seleziona destinazione", + "Select your preferred language for the app interface.": "Seleziona la lingua preferita per l'app.", + "Selected Date": "Data Selezionata", + "Selected Date and Time": "Data e Ora", + "Selected Location": "Selected Location", + "Selected Time": "Ora Selezionata", + "Selected driver": "Autista selezionato", + "Selected file:": "File selezionato:", + "Send Email": "Send Email", + "Send Invite": "Invia invito", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Invia codice verifica", + "Send Verification Code": "Invia codice verifica", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Invia messaggio personalizzato", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Sessione scaduta. Accedi di nuovo.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Imposta numero portafoglio", + "Set pickup location": "Imposta punto di raccolta", + "Setting": "Impostazione", + "Settings": "Impostazioni", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "Condividi app", + "Share Code": "Share Code", + "Share Trip Details": "Condividi Dettagli", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "Condividi questo codice e guadagna premi!", + "Share via": "Share via", + "Share with friends and earn rewards": "Condividi con amici e guadagna premi", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Mostra inviti", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "Mostra promo", + "Show Promos to Charge": "Promo Ricarica", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "Mostra ultime promozioni", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "Visualizzazione", + "Sign In by Apple": "Accedi con Apple", + "Sign In by Google": "Accedi con Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Esci", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "Accedi con Google per facilità", + "Sign in with a provider for easy access": "Sign in with a provider for easy access", + "Silver badge": "Silver badge", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Servizio van spazioso ideale per famiglie e gruppi. Comodo, sicuro ed economico.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "Avvia registrazione", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "Inizia corsa", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "Statistiche", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "Invia ", + "Submit Complaint": "Invia reclamo", + "Submit Question": "Invia domanda", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "Invia un reclamo", + "Submit rating": "Invia voto", + "Success": "Successo", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "Cambia Passeggero", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "Siria", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "Scatta foto", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "Foto Patente", + "Take Picture Of ID Card": "Foto Carta d'Identità", + "Tap on the promo code to copy it!": "Tocca per copiare!", + "Tap to upload": "Tap to upload", + "Target": "Destinazione", + "Tariff": "Tariffa", + "Tariffs": "Tariffe", + "Tax Expiry Date": "Scadenza bollo", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "Grazie", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "L'autista arriverà presto.", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "L'autista è responsabile del percorso.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "Distanza < 500m.", + "The driver accept your order for": "Accettato per", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "L'autista ha accettato la tua corsa", + "The driver canceled your ride.": "L'autista ha annullato la tua corsa.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "Autista in arrivo", + "The driver waiting you in picked location .": "L'autista ti aspetta al punto di raccolta.", + "The driver waitting you in picked location .": "L'autista ti aspetta.", + "The drivers are reviewing your request": "Autisti stanno valutando", + "The email or phone number is already registered.": "Email o numero già registrati.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "Invito inviato con successo", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "Ordine accettato da un altro autista", + "The order has been accepted by another driver.": "L'ordine è stato accettato da un altro autista.", + "The payment was approved.": "Approvato.", + "The payment was not approved. Please try again.": "Pagamento non approvato. Riprova.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "Il prezzo può aumentare.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "Promozione finita.", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Viaggio iniziato! Condividi o registra.", + "There is no data yet.": "Nessun dato.", + "There is no help Question here": "Nessuna domanda aiuto", + "There is no notification yet": "Nessuna notifica", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "Importo dai Passeggeri", + "This amount for all trip I get from Passengers and Collected For me in": "Importo raccolto", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "Notifica programmata.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Per scooter o moto.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "Questo numero è già stato invitato.", + "This price is": "Questo prezzo è", + "This price is fixed even if the route changes for the driver.": "Prezzo fisso.", + "This price may be changed": "Prezzo variabile", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Corsa già presa.", + "This ride type allows changes, but the price may increase": "Cambi permessi, prezzo può salire", + "This ride type does not allow changes to the destination or additional stops": "Nessun cambio/fermata", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Viaggio diretto, prezzo fisso.", + "This trip is for women only": "Questa corsa è solo per donne", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "Ora arrivo", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro app...", + "To change Language the App": "To change Language the App", + "To change some Settings": "Per cambiare impostazioni", + "To display orders instantly, please grant permission to draw over other apps.": "To display orders instantly, please grant permission to draw over other apps.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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.": "Seleziona il paese per informazioni accurate.", + "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.": "Per offrirti la migliore esperienza, dobbiamo sapere dove sei. La tua posizione serve per trovare autisti vicini.", + "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 Siro support directly.", + "To use Wallet charge it": "Per usare il portafoglio, ricaricalo", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Ricarica portafoglio", + "Top up Wallet to continue": "Ricarica il portafoglio per continuare", + "Total Amount:": "Importo Totale:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "Durata connessione:", + "Total Cost": "Costo Totale", + "Total Cost is": "Total Cost is", + "Total Duration:": "Durata totale:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "Ore Totali mese", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "Punti Totali", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "Budget totali nel mese", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Viaggia in un'auto elettrica moderna e silenziosa. Una scelta premium ed ecologica.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "Corsa Annullata", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Corsa annullata. Il costo sarà accreditato sul tuo portafoglio.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Monitoraggio viaggio", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "Corsa finita", + "Trip has Steps": "Viaggio a tappe", + "Trip is Begin": "Il viaggio è iniziato", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "Viaggi registrati", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "Turchia", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "Scrivi qui luogo", + "Type something": "Type something", + "Type something...": "Scrivi qualcosa...", + "Type your Email": "Scrivi la tua email", + "Type your message": "Scrivi messaggio", + "Type your message...": "Type your message...", + "Types of Trips in Siro:": "Types of Trips in Siro:", + "USA": "USA", + "Uncompromising Security": "Sicurezza senza compromessi", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Aggiorna", + "Update Available": "Update Available", + "Update Education": "Aggiorna istruzione", + "Update Gender": "Aggiorna genere", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "Caricato", + "Use Touch ID or Face ID to confirm payment": "Usa Touch ID o Face ID", + "Use code:": "Usa codice:", + "Use my invitation code to get a special gift on your first ride!": "Usa il mio codice invito per un regalo speciale sulla prima corsa!", + "Use my referral code:": "Usa il mio codice invito:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "L'utente non esiste.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "Utente con questo numero o email già esistente.", + "Uses cellular network": "Uses cellular network", + "VIN": "Telaio", + "VIN :": "Telaio :", + "VIN is": "Telaio:", + "VIP Order": "Ordine VIP", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "Valido fino a:", + "Value": "Value", + "Van": "Furgone", + "Van / Bus": "Van / Bus", + "Van for familly": "Furgone per famiglia", + "Variety of Trip Choices": "Varietà di scelte", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "Dettagli veicolo Retro", + "Vehicle Details Front": "Dettagli veicolo Fronte", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "Opzioni veicolo", + "Verification Code": "Codice di verifica", + "Verify": "Verifica", + "Verify Email": "Verifica Email", + "Verify Email For Driver": "Verifica Email Autista", + "Verify OTP": "Verifica OTP", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Feedback vibrazione per tutti i pulsanti", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "View your past transactions": "Visualizza le transazioni passate", + "Visa": "Visa", + "Visit Website/Contact Support": "Sito/Supporto", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "Attesa autista...", + "Waiting for Driver ...": "Attesa Autista...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "In attesa posizione", + "Wallet": "Portafoglio", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "Il portafoglio è bloccato", + "Wallet!": "Portafoglio!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Attenzione: Rilevato eccesso di velocità!", + "We Are Sorry That we dont have cars in your Location!": "Spiacenti, niente auto in zona!", + "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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "Elaborazione foto, attendi ", + "We are search for nearst driver": "Cerchiamo autista", + "We are searching for the nearest driver": "Cerchiamo l'autista più vicino", + "We are searching for the nearest driver to you": "Cerchiamo l'autista più vicino a te", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Ti connettiamo agli autisti più vicini.", + "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 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 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 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:": "Abbiamo inviato un codice di verifica al tuo numero:", + "We need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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.": "Ci serve il tuo numero per ricevere ordini.", + "We need your phone number to contact you and to help you.": "Ci serve il tuo numero per contattarti.", + "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 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 regret to inform you that another driver has accepted this order.": "Ci dispiace informarti che un altro autista ha accettato questo ordine.", + "We search nearst Driver to you": "Cerchiamo autista vicino", + "We sent 5 digit to your Email provided": "Inviate 5 cifre alla tua email", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "Cercheremo un nuovo autista.\\nAttendere prego.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "Bentornato!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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?": "Quali sono i requisiti?", + "What is Types of Trips in Siro?": "What is Types of Trips in Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Quali veicoli sono disponibili?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "Estrattore posizione WhatsApp", + "When": "Quando", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "Dove stai andando?", + "Where are you, sir?": "Where are you, sir?", + "Where to": "Dove vuoi andare?", + "Where you want go": "Where you want go", + "Which method you will pay": "Which method you will pay", + "Why Choose Siro?": "Why Choose Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "Lavoro", + "Work & Contact": "Lavoro e Contatti", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Orario 12:00 - 19:00.\\nInvia WhatsApp o email.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "Scrivi nota", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "Anno", + "Year is": "Anno:", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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ì, puoi annullare, potrebbero esserci costi.", + "You": "You", + "You Are Stopped For this Day !": "Fermato per oggi!", + "You Can Cancel Trip And get Cost of Trip From": "Annulla e ottieni costo da", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "Puoi annullare se l'autista tarda", + "You Dont Have Any amount in": "Non hai credito in", + "You Dont Have Any places yet !": "Nessun luogo ancora!", + "You Earn today is": "You Earn today is", + "You Have": "Hai", + "You Have Tips": "Hai mance", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Rifiutate 3 corse.\\nA domani!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "Seleziona motivo.", + "You Should choose rate figure": "Devi scegliere un voto", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "Stai eliminando", + "You are Stopped": "Sei fermo", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "Sei lontano", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "Compra Punti per andare online", + "You can buy points from your budget": "Compra punti dal budget", + "You can call or record audio during this trip.": "Puoi chiamare o registrare audio durante questo viaggio.", + "You can call or record audio of this trip": "Puoi chiamare o registrare", + "You can cancel Ride now": "Puoi annullare ora", + "You can cancel trip": "Puoi annullare", + "You can change the Country to get all features": "Cambia Paese per tutte le funzioni", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Cambia lingua app", + "You can change the vibration feedback for all buttons": "Puoi cambiare la vibrazione per tutti i pulsanti", + "You can claim your gift once they complete 2 trips.": "Puoi richiedere il regalo una volta che completano 2 corse.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Tramite chat in-app.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Contattaci 12:00 - 19:00.", + "You can decline a request without any cost": "Rifiuta senza costi", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Contanti o carta.", + "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": "Puoi inviare di nuovo tra", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "Ti meriti il regalo", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "Non hai aggiunto telefono emergenza!", + "You dont have Points": "Non hai Punti", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "Hai già ricevuto il tuo regalo per questo invito", + "You have already used this promo code.": "Codice già usato.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "Hai una chiamata dall'autista", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "Hai copiato il codice.", + "You have earned 20": "Hai guadagnato 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "Tentativi finiti", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "Hai ricevuto un regalo per l'invito", + "You have in account": "Hai nel conto", + "You have promo!": "Hai promo!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "Verifica email!", + "You must be charge your Account": "Devi ricaricare", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "Devi riavviare l'app per cambiare lingua.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "Devi caricarlo.", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Selezionane uno", + "You should select your country": "Dovresti selezionare il tuo paese", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "Distanza viaggio:", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "Arrivo al termine del timer.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Pagherai all'autista o al prossimo viaggio", + "You will be thier in": "Sarai lì in", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "Scegli 'Consenti sempre' per ricevere ordini", + "You will choose one of above !": "Scegline uno sopra!", + "You will get cost of your work for this trip": "Sarai pagato per il lavoro", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "Riceverai SMS", + "You will receive a code in WhatsApp Messenger": "Riceverai codice su WhatsApp", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "Riceverai un codice via SMS", + "Your Account is Deleted": "Account eliminato", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "Budget insufficiente", + "Your Choice, Our Priority": "Tua scelta, nostra priorità", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "Sei lontano dal passeggero", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "Codice applicato!", + "Your journey starts here": "Il tuo viaggio inizia qui", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "Il tuo nome", + "Your order is being prepared": "Ordine in preparazione", + "Your order sent to drivers": "Inviato agli autisti", + "Your password": "Your password", + "Your past trips will appear here.": "I tuoi viaggi passati appariranno qui.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "Il tuo codice invito personale è:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "Costo viaggio", + "Your trip distance is": "Distanza viaggio:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nOffriamo prezzi competitivi.", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "Per continuare, devi accettare i Termini d'uso e l'Informativa sulla privacy.", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "Si è verificato un errore: @error", + "and I have a trip on": "e ho un viaggio su", + "and acknowledge our": "e accetta la nostra", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "App di ride-sharing sicura.", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "ora arrivo al punto", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "prima", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "Impegnati per la sicurezza.", + "complete profile subtitle": "Completa il profilo per iniziare", + "complete registration button": "Completa registrazione", + "complete, you can claim your gift": "completato, puoi richiedere il regalo", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "ora creazione", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "distanza è", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "patente_guida", + "duration is": "durata è", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "Email (Opzionale)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "Inserisci l'OTP a 5 cifre", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "Rilevamento volto", + "failed to send otp": "Invio OTP fallito.", + "false": "false", + "first name label": "Nome", + "first name required": "Nome richiesto", + "for": "per", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "per la tua prima registrazione!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 - 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 - 15:00", + "from 23:59 till 05:30": "23:59 - 05:30", + "from 3 times Take Attention": "su 3 volte, Attenzione", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "dalla lista", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "Ottieni una corsa in minuti.", + "get_to_destination": "Arriva a destinazione.", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "Vai dal passeggero prima che annulli", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "ha completato", + "hi": "hi", + "hour": "ora", + "hours before trying again.": "hours before trying again.", + "i agree": "accetto", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "se non hai un account", + "if you want help you can email us here": "Scrivici per aiuto", + "image verified": "immagine verificata", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "inserisci importo", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "unito", + "kilometer": "kilometer", + "last name label": "Cognome", + "last name required": "Cognome richiesto", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "login or register subtitle": "Inserisci il tuo numero di cellulare per accedere o registrarti", + "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 Siro.", + "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": "Messaggio dall'autista", + "message From passenger": "Messaggio dal passeggero", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "Modello :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "mia posizione", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "Non simile", + "of": "di", + "on": "on", + "one last step title": "Un ultimo passo", + "otp sent subtitle": "Un codice a 5 cifre è stato inviato a\\n@phoneNumber", + "otp sent success": "OTP inviato con successo su WhatsApp.", + "otp verification failed": "Verifica OTP fallita.", + "passenger agreement": "accordo passeggero", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "Numero di telefono", + "phone number of driver": "phone number of driver", + "phone number required": "Numero di telefono richiesto", + "please go to picker location exactly": "vai al punto esatto", + "please order now": "Ordina ora", + "please wait till driver accept your order": "attendi accettazione", + "points": "points", + "price is": "prezzo è", + "privacy policy": "politica sulla privacy.", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "Registrazione fallita.", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "Sicura e comoda.", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "secondi", + "security_warning": "security_warning", + "send otp button": "Invia OTP", + "server error try again": "Errore del server, riprova.", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "Simile", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "termini d'uso", + "the 300 points equal 300 L.E": "300 punti = 300 €", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "500 punti equivalgono a 30 €", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "eliminerà tutti i file", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "Cambio token", + "token updated": "token aggiornato", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "viaggi", + "true": "true", + "type here": "scrivi qui", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "Verifica e continua", + "verify your number title": "Verifica il tuo numero", + "vin": "vin", + "wait 1 minute to receive message": "attendi 1 minuto", + "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 siro", + "welcome user": "Benvenuto, @firstName!", + "welcome_message": "Benvenuto in Intaleq!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "scrivi colore", + "write Expiration Date for your car": "scrivi scadenza", + "write Make for your car": "scrivi marca", + "write Model for your car": "scrivi modello", + "write Year for your car": "scrivi anno", + "write comment here": "write comment here", + "write vin for your car": "scrivi telaio", + "year :": "Anno :", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "hai guadagnato", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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": "Pagherai all'autista", + "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 Siro Wallet", + "you will use this device?": "you will use this device?", + "your ride is Accepted": "Corsa accettata", + "your ride is applied": "corsa richiesta", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "Data Scadenza", + "⚠️ You need to choose an amount!": "⚠️ Devi scegliere un importo!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 Paga con portafoglio", + "💳 Pay with Credit Card": "💳 Paga con carta di credito", +}; diff --git a/siro_driver/lib/controller/local/ru.dart b/siro_driver/lib/controller/local/ru.dart new file mode 100644 index 0000000..5100bb0 --- /dev/null +++ b/siro_driver/lib/controller/local/ru.dart @@ -0,0 +1,2662 @@ +final Map ru = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " и Политику конфиденциальности.", + " is ON for this month": " онлайн в этом месяце", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. Опишите проблему", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 и скидка 4%", + "100 and get 11% discount": "100 и скидка 11%", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. Прикрепить аудио", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 и скидка 6%", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. Просмотр деталей", + "300 LE": "300 LE", + "3000 LE": "3000 ₽", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 и скидка 8%", + "5 digit": "5 цифр", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Поездка по предзаказу, выбор лучших водителей и авто.", + "AI Page": "AI Страница", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "О нас", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "Принять заказ", + "Accept Ride": "Accept Ride", + "Accepted Ride": "Принятая поездка", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "Активное время:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "Добавить карту", + "Add Credit Card": "Добавить кредитку", + "Add Home": "Добавить Дом", + "Add Location": "Добавить место", + "Add Location 1": "Добавить место 1", + "Add Location 2": "Добавить место 2", + "Add Location 3": "Добавить место 3", + "Add Location 4": "Добавить место 4", + "Add Payment Method": "Добавить метод оплаты", + "Add Phone": "Добавить телефон", + "Add Promo": "Добавить промо", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Остановки", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "Пополнить безопасным способом", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Адрес", + "Address:": "Address:", + "Admin DashBoard": "Панель админа", + "Affordable for Everyone": "Доступно всем", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "Уведомления", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "Разрешить доступ", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "Ошибка оплаты.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "Ошибка при выборе контактов:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "Неожиданная ошибка. Попробуйте снова.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "Приложение с Пассажиром", + "Applied": "Создан", + "Apply": "Apply", + "Apply Order": "Принять", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "Подъезжаю. Буду через 3 мин.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "Едем сюда?", + "Are you Sure to LogOut?": "Выйти?", + "Are you sure to cancel?": "Отменить?", + "Are you sure to delete recorded files": "Удалить записи?", + "Are you sure to delete this location?": "Удалить это местоположение?", + "Are you sure to delete your account?": "Удалить аккаунт?", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "Вы уверены? Это действие необратимо.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Вы хотите поехать сюда?", + "Are you want to go to this site": "Хотите поехать сюда?", + "Are you want to wait drivers to accept your order": "Ждать принятия заказа?", + "Arrival time": "Время прибытия", + "Associate Degree": "Среднее специальное", + "Attach this audio file?": "Прикрепить этот файл?", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Аудио загружено.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "Доступен", + "Average of Hours of": "Среднее часов", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Эконом", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "Бахрейн", + "Balance": "Баланс", + "Balance limit exceeded": "Лимит баланса превышен", + "Balance not enough": "Недостаточно средств", + "Balance:": "Баланс:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "Помедленнее", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "Делайте четкие фото\\nУ вас есть", + "Be sure to use it quickly! This code expires at": "Используй быстрее! Код истекает", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Гибкий выбор.", + "Before we start, please review our terms.": "Пожалуйста, ознакомьтесь с условиями.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Лучший выбор для города", + "Best choice for comfort car and flexible route and stops point": "Комфорт и гибкий маршрут", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "Дата рождения", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "Сбор", + "Bottom Bar Example": "Пример", + "But you have a negative salary of": "Отрицательный баланс:", + "CODE": "КОД", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "Вызов завершен", + "Call Ended": "Call Ended", + "Call Income": "Входящий вызов", + "Call Income from Driver": "Звонок от водителя", + "Call Income from Passenger": "Вызов от пассажира", + "Call Left": "Осталось звонков", + "Call Options": "Call Options", + "Call Page": "Звонок", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "Нет доступа к камере.", + "Camera not initialized yet": "Камера не готова", + "Camera not initilaized yet": "Камера не готова", + "Can I cancel my ride?": "Могу я отменить?", + "Can we know why you want to cancel Ride ?": "Почему отменяете?", + "Cancel": "Отмена", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "Отмена", + "Cancel Search": "Отменить поиск", + "Cancel Trip": "Отменить поездку", + "Cancel Trip from driver": "Отмена поездки водителем", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "Отменено", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "Скидок больше нет.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Сфотографируйте справку о несудимости", + "Capture an Image of Your Driver License": "Сфотографируйте права", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "Сфотографируйте оборот паспорта", + "Capture an Image of Your ID Document front": "Сфотографируйте паспорт (лицевая)", + "Capture an Image of Your car license back": "Сфотографируйте СТС (оборот)", + "Capture an Image of Your car license front": "Сфотографируйте СТС (лицевая)", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "Авто", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "Детали авто", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "СТС", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "Номер карты", + "Card Payment": "Card Payment", + "CardID": "ID карты", + "Cash": "Наличные", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "Сменить страну", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "VIN/Шасси", + "Check back later for new offers!": "Заходите позже!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "Язык", + "Choose a contact option": "Выберите способ связи", + "Choose between those Type Cars": "Выберите тип авто", + "Choose from Map": "Выбрать на карте", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "Выберите подходящий вариант.", + "Choose who this order is for": "Для кого этот заказ", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "Город", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "Заберите 20 ₽ за приглашение", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "Показать на карте", + "Close": "Закрыть", + "Closest & Cheapest": "Ближайший и Дешевый", + "Closest to You": "Ближе всего", + "Code": "Код", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "Код не принят", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "Цвет", + "Color is": "Color is", + "Comfort": "Комфорт", + "Comfort choice": "Комфорт", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "Связь", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "Жалоба", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Нельзя подать жалобу на эту поездку. Возможно, она не завершена или не начата.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "Подтвердить", + "Confirm & Find a Ride": "Подтвердить и найти", + "Confirm Attachment": "Подтвердить вложение", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "Подтвердить", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "Подтвердите Email", + "Confirmation": "Confirmation", + "Connected": "Подключено", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "Контакты", + "Contact Support": "Поддержка", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "Связаться с нами", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "Нужен доступ к контактам.", + "Contact us for any questions on your order.": "Свяжитесь с нами по вопросам заказа.", + "Contacts Loaded": "Контакты загружены", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "Продолжить", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "Копировать", + "Copy Code": "Копировать код", + "Copy this Promo to use it in your Ride!": "Скопируйте промокод!", + "Cost": "Cost", + "Cost Duration": "Стоимость времени", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "Часов по дням", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "Создать кошелек", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "Требуется справка о несудимости", + "Criminal Record": "Справка о несудимости", + "Cropper": "Обрезка", + "Current Balance": "Текущий баланс", + "Current Location": "Текущее место", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Клиент не найден", + "Customer phone is not active": "Телефон клиента не активен", + "DISCOUNT": "СКИДКА", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "Дата", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "Дата рождения:", + "Date of Birth:": "Date of Birth:", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "Удалить аккаунт", + "Delete Permanently": "Удалить навсегда", + "Deleted": "Удалено", + "Delivery": "Delivery", + "Destination": "Финиш", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "Проверка лица ", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "Объем", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "У вас есть код приглашения?", + "Do you want to change Home location": "Изменить Дом", + "Do you want to change Work location": "Изменить Работу", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "Оставить чаевые?", + "Docs": "Docs", + "Doctoral Degree": "Доктор наук", + "Document Number:": "Document Number:", + "Documents check": "Проверка документов", + "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 Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Скачай приложение:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Водитель", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "Водитель принял поездку для вас", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "Водитель создал поездку для вас", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "Водитель отменил вашу поездку", + "Driver Car Plate": "Номер авто", + "Driver Finish Trip": "Водитель завершил поездку", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "Водитель едет к пассажиру", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "Имя водителя", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "Регистрация", + "Driver Registration & Requirements": "Регистрация водителя", + "Driver Wallet": "Кошелек водителя", + "Driver already has 2 trips within the specified period.": "У водителя уже 2 поездки в этот период.", + "Driver is on the way": "Водитель в пути", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "Водитель ждет.", + "Driver joined the channel": "Водитель в чате", + "Driver left the channel": "Водитель покинул чат", + "Driver phone": "Телефон водителя", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "Категория", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "Длительность:", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "Редактировать", + "Edit Your data": "Редактировать", + "Education": "Образование", + "Egypt": "Египет", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "Электро", + "Email": "Email", + "Email Us": "Написать нам", + "Email Wrong": "Неверный Email", + "Email is": "Email:", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "Email введен неверно.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "Тип занятости", + "Enable Location": "Включить геолокацию", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "Завершить", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "Наслаждайтесь безопасностью.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Выгодные цены.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "Введите имя", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "Введите телефон", + "Enter phone number": "Enter phone number", + "Enter promo code": "Введите промокод", + "Enter promo code here": "Введите код здесь", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "Введи промокод и получи", + "Enter your City": "Enter your City", + "Enter your Note": "Заметка", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Введите текст жалобы...", + "Enter your email": "Enter your email", + "Enter your email address": "Введите email", + "Enter your feedback here": "Ваш отзыв", + "Enter your first name": "Введите имя", + "Enter your last name": "Введите фамилию", + "Enter your password": "Enter your password", + "Enter your phone number": "Введите номер", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "Ошибка", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "Дата окончания", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "Действует до", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "Результат распознавания", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "Быстрая поддержка", + "Favorite Places": "Favorite Places", + "Fee is": "Сбор:", + "Feed Back": "Отзыв", + "Feedback": "Отзыв", + "Feedback data saved successfully": "Сохранено", + "Female": "Женский", + "Find answers to common questions": "Ответы на вопросы", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "Завершить", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "Имя", + "First Trip": "First Trip", + "First name": "Имя", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "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 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 Siro 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": "Частые вопросы", + "Fri": "Fri", + "From": "Откуда", + "From :": "От:", + "From : Current Location": "От: Текущее место", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "Топливо", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "ФИО", + "FullName": "ФИО", + "GPS Required Allow !.": "Включите GPS!", + "Gender": "Пол", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "Get": "Get", + "Get Details of Trip": "Детали поездки", + "Get Direction": "Маршрут", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get features for your country": "Get features for your country", + "Get it Now!": "Получить!", + "Get to your destination quickly and easily.": "Доберитесь быстро и легко.", + "Getting Started": "Начало", + "Gift Already Claimed": "Подарок уже получен", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "В избранное", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "Далее\\nскан СТС.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "К пассажиру", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "К этой цели", + "Go to this location": "Перейти к локации", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "Ч и", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "Есть промокод?", + "Head": "Head", + "Heading your way now. Please be ready.": "Еду к вам. Будьте готовы.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "Привет, это водитель", + "Hello this is Driver": "Привет, я водитель", + "Help & Support": "Help & Support", + "Help Details": "Помощь", + "Helping Center": "Помощь", + "Helping Page": "Helping Page", + "Here recorded trips audio": "Аудио поездок", + "Hi": "Привет", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Здравствуйте, я выезжаю", + "Hi! This is": "Привет! Это", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "Среднее образование", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "История", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "Как платить?", + "How can I register as a driver?": "Как стать водителем?", + "How do I communicate with the other party (passenger/driver)?": "Как связаться?", + "How do I request a ride?": "Как заказать поездку?", + "How many hours would you like to wait?": "Сколько часов ждать?", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "Согласен", + "I Arrive": "I Arrive", + "I Arrive your site": "Я на месте", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "Неверный адрес", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "Я на месте", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "Не могу пройти проверку лица", + "I want to order for myself": "Заказать для себя", + "I want to order for someone else": "Заказать другому человеку", + "I was just trying the application": "Я просто пробовал", + "I will go now": "Выезжаю", + "I will slow down": "Снижаю скорость", + "I've arrived.": "I've arrived.", + "ID Documents Back": "Оборотная сторона паспорта", + "ID Documents Front": "Лицевая сторона паспорта", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "Если вы в машине, нажмите Начать", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "Свяжитесь для помощи", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Добавить остановку", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Открыть Google Карты", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "Результат: ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "Звонки в приложении", + "Including Tax": "Вкл. налог", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "⚠️ Неверный СМС код.", + "Increase Fare": "Повысить цену", + "Increase Fee": "Повысить цену", + "Increase Your Trip Fee (Optional)": "Повысить стоимость (Опционально)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Повышение цены привлечет водителей. Повысить?", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "Вставить", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "Ввести SOS номер", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Вставьте промокод", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "Техосмотр", + "InspectionResult": "Результат осмотра", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "Неверный MPIN", + "Invalid OTP": "Неверный код", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "Приглашение использовано", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "Приглашение отправлено", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "Пассажир в машине?", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "Дата выдачи", + "IssueDate": "Дата выдачи", + "JOD": "₽", + "Join": "Войти", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "Иордания", + "Just now": "Just now", + "KM": "КМ", + "Keep it up!": "Так держать!", + "Kuwait": "Кувейт", + "L.E": "L.E", + "L.S": "L.S", + "LE": "₽", + "Lady": "Женский", + "Lady Captain for girls": "Женский тариф для девушек", + "Lady Captains Available": "Женщины-водители", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "Язык", + "Language Options": "Языки", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "Фамилия", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "Последняя поездка", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Выйти", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "Проверим СТС ", + "Lets check License Back Face": "Проверим оборот", + "License Categories": "Категории", + "License Expiry Date": "License Expiry Date", + "License Type": "Тип прав", + "Link a phone number for transfers": "Привязать номер для переводов", + "Location Access Required": "Location Access Required", + "Location Link": "Ссылка на локацию", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "Выйти", + "Log Out Page": "Страница выхода", + "Login": "Login", + "Login Captin": "Вход для водителя", + "Login Driver": "Вход водителя", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "Минимальная цена", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "Марка :", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "Марка", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "Мужской", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "Карта", + "Marital Status": "Семейное положение", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "Макс. стоимость", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Мин. стоимость", + "Minute": "Мин", + "Minutes": "Minutes", + "Mishwar Vip": "Mishwar VIP", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "Модель", + "Model is": "Модель:", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "Утро", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "Безопасные методы", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "Двигайте карту, чтобы установить метку", + "Mute": "Mute", + "My Balance": "Мой баланс", + "My Card": "Моя карта", + "My Cared": "Мои карты", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "Профиль", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "Я здесь:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "Моя локация", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "Имя", + "Name (Arabic)": "Имя (Местное)", + "Name (English)": "Имя (Англ)", + "Name :": "Имя:", + "Name in arabic": "Имя (местное)", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "Паспорт", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "Номер паспорта", + "NationalID": "Серия и номер паспорта", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "Далее", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "Ночь", + "No": "Нет", + "No ,still Waiting.": "Нет, жду.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Нет машин. Извините!", + "No Car or Driver Found in your area.": "Нет машин в вашем районе.", + "No I want": "Нет, хочу", + "No Promo for today .": "Нет промокодов.", + "No Response yet.": "Нет ответа.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Звоните через приложение без SIM.", + "No accepted orders? Try raising your trip fee to attract riders.": "Поднимите цену для привлечения.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "Аудиофайлы не найдены.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "Контакты не найдены", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "На устройстве нет контактов с номерами.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "Никто не принял заказ", + "No drivers accepted your request yet": "Никто еще не принял заказ", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "Лицо не найдено", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Нет изображения", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "Приглашения не найдены!", + "No one accepted? Try increasing the fare.": "Никто не принял? Попробуйте повысить цену.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "Пассажир не найден", + "No phone number": "No phone number", + "No promos available right now.": "Нет доступных акций.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "Поездка не найдена", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "История пуста", + "No trip yet found": "Нет поездок", + "No user found for the given phone number": "Пользователь не найден", + "No wallet record found": "Кошелек не найден", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "Нет, спасибо", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "Не подключено", + "Not set": "Не задано", + "Not updated": "Not updated", + "Notifications": "Уведомления", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "Профессия", + "Offline": "Offline", + "Ok": "Ок", + "Ok , See you Tomorrow": "Ок, до завтра", + "Ok I will go now.": "Хорошо, иду.", + "Old and affordable, perfect for budget rides.": "Недорогой и доступный.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "Настройки", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "Или оплатите наличными", + "Order": "Заказ", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "Заказ принят", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Отмена пассажиром", + "Order Details Siro": "Order Details Siro", + "Order History": "История заказов", + "Order ID": "Order ID", + "Order Request Page": "Страница заказа", + "Order Under Review": "Order Under Review", + "Order for myself": "Заказ себе", + "Order for someone else": "Заказ другому", + "OrderId": "ID заказа", + "OrderVIP": "VIP Заказ", + "Orders Page": "Orders Page", + "Origin": "Старт", + "Original Fare": "Original Fare", + "Other": "Другой", + "Our dedicated customer service team ensures swift resolution of any issues.": "Быстрое решение проблем.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "Владелец", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "Пассажир отменил поездку", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "Пассажир идет к вам", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "Пароль мин. 6 символов.", + "Paste WhatsApp location link": "Вставьте ссылку WhatsApp", + "Paste location link here": "Вставьте ссылку здесь", + "Paste the code here": "Вставьте код", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Оплата водителю напрямую", + "Pay from my budget": "Оплата с баланса", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "Кредитная карта", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "Кошельком", + "Pay with Your": "Оплата", + "Pay with Your PayPal": "Оплата PayPal", + "Payment Failed": "Ошибка оплаты", + "Payment History": "История платежей", + "Payment Method": "Метод оплаты", + "Payment Method:": "Payment Method:", + "Payment Options": "Оплата", + "Payment Successful": "Успешно", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "Оплата", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "Для искателей приключений", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Идеально для новых авто и свободы маршрута", + "Permission denied": "Доступ запрещен", + "Personal Information": "Личная информация", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Телефон:", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "Указать на карте", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "Указать назначение", + "Pick your ride location on the map - Tap to confirm": "Укажите место на карте", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "Номер", + "Plate Number": "Госномер", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "Ждите, вдруг отмена!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "Введите", + "Please enter Your Email.": "Пожалуйста, введите email.", + "Please enter Your Password.": "Введите пароль.", + "Please enter a correct phone": "Введите корректный номер", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "Введите номер", + "Please enter a valid 16-digit card number": "Введите 16 цифр карты", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Введите верный код", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "CVV код", + "Please enter the cardholder name": "Имя владельца", + "Please enter the complete 6-digit code.": "Введите полный 6-значный код.", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "Срок действия", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Введите город.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "Введите вопрос.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Введите отзыв.", + "Please enter your first name.": "Введите имя.", + "Please enter your last name.": "Введите фамилию.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Пожалуйста, введите номер.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "Пожалуйста, пройдите к водителю", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "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 Siro 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 select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "Подтвердите личность", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "Ждите пассажира.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "Балл", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "Обнаружены риски безопасности. Приложение может работать некорректно.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Политика конфиденциальности", + "Profile": "Профиль", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "Промокод", + "Promo Already Used": "Уже использован", + "Promo Code": "Промокод", + "Promo Code Accepted": "Код принят", + "Promo Copied!": "Промокод скопирован!", + "Promo End !": "Промо всё!", + "Promo Ended": "Промо завершено", + "Promo code copied to clipboard!": "Скопировано!", + "Promos": "Промоакции", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "Оплата отменена.", + "Qatar": "Катар", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "Быстрые действия", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "Тихий и Экологичный", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "Оценить водителя", + "Rate Driver": "Оценка водителя", + "Rate Our App": "Rate Our App", + "Rate Passenger": "Оценить пассажира", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "Туда-обратно", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Туда-обратно: Удобные поездки между городами.", + "Reason": "Reason", + "Recent Places": "Недавние места", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "Пополнить", + "Record": "Record", + "Record saved": "Запись сохранена", + "Recorded Trips (Voice & AI Analysis)": "Запись поездок", + "Recorded Trips for Safety": "Запись поездок для безопасности", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "Отклонить", + "Refused": "Refused", + "Register": "Регистрация", + "Register Captin": "Регистрация водителя", + "Register Driver": "Регистрация водителя", + "Register as Driver": "Стать водителем", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Религия", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "Отправить снова", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "Управление", + "Ride Status": "Ride Status", + "Ride Summaries": "Сводка", + "Ride Summary": "Итог", + "Ride Today :": "Ride Today :", + "Ride Wallet": "Кошелек", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "Поездки", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "Маршруты", + "Route Not Found": "Маршрут не найден", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "SOS номер", + "SUBMIT": "SUBMIT", + "SYP": "SYP", + "Safety & Security": "Безопасность", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "Саудовская Аравия", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "Сохранить карту", + "Saved Sucssefully": "Успешно сохранено", + "Scan Driver License": "Скан прав", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "Скан ID", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "Скан паспорта", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Самокат", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "Точка маршрута", + "Search for your Start point": "Точка старта", + "Search for your destination": "Поиск назначения", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "Поиск ближайшего водителя...", + "Security Warning": "⚠️ Угроза безопасности", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "До встречи в пути!", + "Select Country": "Страна", + "Select Date": "Выбрать дату", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "Тип заказа", + "Select Payment Amount": "Сумма оплаты", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "Выбрать время", + "Select Waiting Hours": "Часы ожидания", + "Select Your Country": "Выберите страну", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "Выберите сообщение", + "Select recorded trip": "Выбрать запись", + "Select your destination": "Выберите назначение", + "Select your preferred language for the app interface.": "Выберите язык интерфейса.", + "Selected Date": "Выбрана дата", + "Selected Date and Time": "Дата и Время", + "Selected Location": "Selected Location", + "Selected Time": "Выбрано время", + "Selected driver": "Выбранный водитель", + "Selected file:": "Файл:", + "Send Email": "Send Email", + "Send Invite": "Отправить", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Отправить код", + "Send Verification Code": "Отправить код", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Свое сообщение", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Сессия истекла. Войдите снова.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Номер для кошелька", + "Set pickup location": "Указать место посадки", + "Setting": "Настройка", + "Settings": "Настройки", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "Поделиться приложением", + "Share Code": "Share Code", + "Share Trip Details": "Поделиться деталями", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "Поделись кодом и заработай!", + "Share via": "Share via", + "Share with friends and earn rewards": "Делись с друзьями и получай бонусы", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Показать приглашения", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "Показать промо", + "Show Promos to Charge": "Промо для пополнения", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "Показать промокоды", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "Показано", + "Sign In by Apple": "Войти через Apple", + "Sign In by Google": "Войти через Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Выйти", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "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": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Просторный минивэн для семей и групп. Комфортно, безопасно и выгодно.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "Начать запись", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "Начать", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "Статистика", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "Отправить ", + "Submit Complaint": "Отправить жалобу", + "Submit Question": "Задать вопрос", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "Подать жалобу", + "Submit rating": "Отправить", + "Success": "Успешно", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "Сменить пассажира", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "Сирия", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "Сделать фото", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "Фото прав", + "Take Picture Of ID Card": "Фото паспорта", + "Tap on the promo code to copy it!": "Нажми для копирования!", + "Tap to upload": "Tap to upload", + "Target": "Цель", + "Tariff": "Тариф", + "Tariffs": "Тарифы", + "Tax Expiry Date": "Окончание налога", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "Спасибо", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "Водитель скоро будет.", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "Водитель отвечает за маршрут.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "Дистанция < 500 м.", + "The driver accept your order for": "Водитель принял заказ за", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "Водитель принял ваш заказ", + "The driver canceled your ride.": "Водитель отменил поездку.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "Водитель едет", + "The driver waiting you in picked location .": "Водитель ждет вас.", + "The driver waitting you in picked location .": "Водитель ждет.", + "The drivers are reviewing your request": "Водители смотрят заказ", + "The email or phone number is already registered.": "Email или телефон уже зарегистрирован.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "Приглашение отправлено", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "Заказ принят другим водителем", + "The order has been accepted by another driver.": "Заказ принят другим водителем.", + "The payment was approved.": "Оплата одобрена.", + "The payment was not approved. Please try again.": "Оплата не прошла.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "Цена может измениться.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "Акция закончилась.", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Поездка началась! Делитесь маршрутом, пишите аудио.", + "There is no data yet.": "Нет данных.", + "There is no help Question here": "Нет вопроса", + "There is no notification yet": "Нет уведомлений", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "Сумма от пассажиров", + "This amount for all trip I get from Passengers and Collected For me in": "Собранная сумма", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "Запланированное уведомление.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Для скутера или мотоцикла.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "Этот номер уже приглашен.", + "This price is": "Цена:", + "This price is fixed even if the route changes for the driver.": "Фиксированная цена.", + "This price may be changed": "Цена может измениться", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Заказ уже занят.", + "This ride type allows changes, but the price may increase": "Изменения возможны, цена может вырасти", + "This ride type does not allow changes to the destination or additional stops": "Без изменений маршрута", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Прямая поездка, фикс. цена.", + "This trip is for women only": "Только для женщин", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "Время прибытия", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro 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.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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 Siro support directly.", + "To use Wallet charge it": "Пополните кошелек", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Пополнить кошелек", + "Top up Wallet to continue": "Пополните кошелек для продолжения", + "Total Amount:": "Всего:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "Время соединения:", + "Total Cost": "Всего", + "Total Cost is": "Total Cost is", + "Total Duration:": "Всего времени:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "Часов в месяц", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "Всего баллов", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "Бюджет за месяц", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Современный, тихий электромобиль. Премиальный и экологичный выбор.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "Поездка отменена", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Поездка отменена. Стоимость возвращена на ваш кошелек.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Мониторинг поездки", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "Поездка завершена", + "Trip has Steps": "Поездка с этапами", + "Trip is Begin": "Поездка началась", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "Записанные поездки", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "Турция", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "Введите место", + "Type something": "Type something", + "Type something...": "Напишите...", + "Type your Email": "Введите Email", + "Type your message": "Введите сообщение", + "Type your message...": "Type your message...", + "Types of Trips in Siro:": "Types of Trips in Siro:", + "USA": "США", + "Uncompromising Security": "Безопасность", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Обновить", + "Update Available": "Update Available", + "Update Education": "Обновить образование", + "Update Gender": "Обновить пол", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "Загружено", + "Use Touch ID or Face ID to confirm payment": "Используйте Touch ID или Face ID", + "Use code:": "Код:", + "Use my invitation code to get a special gift on your first ride!": "Используй мой код для подарка на первую поездку!", + "Use my referral code:": "Используй мой код:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "Пользователь не существует.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "Пользователь с таким номером или email уже существует.", + "Uses cellular network": "Uses cellular network", + "VIN": "VIN", + "VIN :": "VIN :", + "VIN is": "VIN:", + "VIP Order": "VIP Заказ", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "Действует до:", + "Value": "Value", + "Van": "Минивэн", + "Van / Bus": "Van / Bus", + "Van for familly": "Минивэн для семьи", + "Variety of Trip Choices": "Выбор поездок", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "Авто сзади", + "Vehicle Details Front": "Авто спереди", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "Автомобили", + "Verification Code": "Код подтверждения", + "Verify": "Подтвердить", + "Verify Email": "Подтвердить Email", + "Verify Email For Driver": "Email водителя", + "Verify OTP": "Проверка кода", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Вибрация кнопок", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "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 Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "Ждем водителя...", + "Waiting for Driver ...": "Ждем водителя...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Ожидание локации", + "Wallet": "Кошелек", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "Кошелек заблокирован", + "Wallet!": "Кошелек!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing 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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "Обработка фото... ", + "We are search for nearst driver": "Ищем водителя", + "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 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 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 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 need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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 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 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 цифр на email", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "Ищем нового водителя.\\nПодождите.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "С возвращением!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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 Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Какие авто доступны?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "Локация из WhatsApp", + "When": "Когда", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "Куда вы направляетесь?", + "Where are you, sir?": "Where are you, sir?", + "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 Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "Работа", + "Work & Contact": "Работа и Контакты", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Время 12:00 - 19:00.\\nWhatsApp или email.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "Заметка", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "Год", + "Year is": "Год:", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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 !": "Блокировка на сегодня!", + "You Can Cancel Trip And get Cost of Trip From": "Можно отменить и получить стоимость с", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "Можно отменить при опоздании водителя", + "You Dont Have Any amount in": "Нет средств в", + "You Dont Have Any places yet !": "Нет сохраненных мест!", + "You Earn today is": "You Earn today is", + "You Have": "У вас есть", + "You Have Tips": "Есть чаевые", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Вы отказались от 3 поездок.\\nДо завтра!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "Выберите причину.", + "You Should choose rate figure": "Поставьте оценку", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "Удаление", + "You are Stopped": "Вы заблокированы", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "Вы далеко", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "Купите баллы для работы", + "You can buy points from your budget": "Купить баллы", + "You can call or record audio during this trip.": "Вы можете звонить или вести запись во время поездки.", + "You can call or record audio of this trip": "Звонок или запись", + "You can cancel Ride now": "Можно отменить", + "You can cancel trip": "Можно отменить", + "You can change the Country to get all features": "Смените страну для всех функций", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Сменить язык", + "You can change the vibration feedback for all buttons": "Настройка вибрации кнопок", + "You can claim your gift once they complete 2 trips.": "Вы получите подарок, когда они совершат 2 поездки.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Через чат.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Связь с 12:00 до 19:00.", + "You can decline a request without any cost": "Отказ бесплатный", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Наличные или карта.", + "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 Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "Вы заслужили подарок", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "Нет экстренного номера!", + "You dont have Points": "Нет баллов", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "Вы уже получили подарок за это приглашение", + "You have already used this promo code.": "Вы уже использовали этот код.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "Звонок от водителя", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "Код скопирован.", + "You have earned 20": "Вы заработали 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "Попытки исчерпаны", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "Вы получили подарок за приглашение", + "You have in account": "На счету", + "You have promo!": "У вас есть промо!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "Подтвердите email!", + "You must be charge your Account": "Пополните счет", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "Перезапустите приложение для смены языка.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "Вы должны загрузить её.", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Выберите одно", + "You should select your country": "Выберите страну", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "Дистанция:", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "Прибытие по таймеру.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Оплата водителю или в след. раз", + "You will be thier in": "Прибытие через", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "Выберите 'Всегда разрешать' для приема заказов", + "You will choose one of above !": "Выберите вариант!", + "You will get cost of your work for this trip": "Вы получите оплату", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "Код придет в СМС", + "You will receive a code in WhatsApp Messenger": "Код придет в WhatsApp", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "Вы получите код по СМС", + "Your Account is Deleted": "Аккаунт удален", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "Мало средств", + "Your Choice, Our Priority": "Ваш выбор - приоритет", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "Вы далеко от пассажира", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "Код применен!", + "Your journey starts here": "Ваша поездка начинается здесь", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "Ваше имя", + "Your order is being prepared": "Подготовка заказа", + "Your order sent to drivers": "Отправлено водителям", + "Your password": "Your password", + "Your past trips will appear here.": "Здесь будут ваши прошлые поездки.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "Твой код приглашения:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "Стоимость:", + "Your trip distance is": "Дистанция:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nМы предлагаем доступные цены.", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "Для продолжения примите Условия и Политику.", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "Произошла ошибка: @error", + "and I have a trip on": "и у меня поездка на", + "and acknowledge our": "и принять", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Безопасное такси.", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "время прибытия в точку", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "до", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "Мы за безопасность.", + "complete profile subtitle": "Заполните профиль для начала", + "complete registration button": "Завершить регистрацию", + "complete, you can claim your gift": "готово, заберите подарок", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "создано", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "дистанция", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "права", + "duration is": "длительность", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "Email (необязательно)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "Введите 5-значный код", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "Распознавание лица", + "failed to send otp": "Не удалось отправить код.", + "false": "false", + "first name label": "Имя", + "first name required": "Имя обязательно", + "for": "для", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "за первую регистрацию!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 - 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 - 15:00", + "from 23:59 till 05:30": "23:59 - 05:30", + "from 3 times Take Attention": "из 3 раз, Внимание", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "из списка", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "Машина за минуты.", + "get_to_destination": "Быстро добраться.", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "Едьте к пассажиру, пока не отменил", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "завершил", + "hi": "hi", + "hour": "час", + "hours before trying again.": "hours before trying again.", + "i agree": "согласен", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "нет аккаунта?", + "if you want help you can email us here": "Напишите нам для помощи", + "image verified": "подтверждено", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "сумма", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "присоединился", + "kilometer": "kilometer", + "last name label": "Фамилия", + "last name required": "Фамилия обязательна", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "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 Siro.", + "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 passenger": "Сообщение от пассажира", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "Модель :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "моя локация", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "Не похож", + "of": "из", + "on": "on", + "one last step title": "Последний шаг", + "otp sent subtitle": "5-значный код отправлен на\\n@phoneNumber", + "otp sent success": "Код отправлен в WhatsApp.", + "otp verification failed": "Неверный код.", + "passenger agreement": "соглашение пассажира", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "Номер телефона", + "phone number of driver": "phone number of driver", + "phone number required": "Требуется номер телефона", + "please go to picker location exactly": "езжайте точно к точке", + "please order now": "Заказать сейчас", + "please wait till driver accept your order": "ждите принятия заказа", + "points": "points", + "price is": "цена", + "privacy policy": "политику конфиденциальности.", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "Ошибка регистрации.", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "Безопасно и комфортно.", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "сек", + "security_warning": "security_warning", + "send otp button": "Отправить код", + "server error try again": "Ошибка сервера, попробуйте снова.", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "Похож", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "условия использования", + "the 300 points equal 300 L.E": "300 баллов = 300 ₽", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "500 баллов = 30 ₽", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "удалит все файлы", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "Смена токена", + "token updated": "токен обновлен", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "поездок", + "true": "true", + "type here": "введите здесь", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "Подтвердить и продолжить", + "verify your number title": "Подтверждение номера", + "vin": "vin", + "wait 1 minute to receive message": "подождите 1 минуту", + "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 siro", + "welcome user": "Добро пожаловать, @firstName!", + "welcome_message": "Добро пожаловать в Intaleq!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "введите цвет", + "write Expiration Date for your car": "введите дату окончания", + "write Make for your car": "введите марку", + "write Model for your car": "введите модель", + "write Year for your car": "введите год", + "write comment here": "write comment here", + "write vin for your car": "введите VIN", + "year :": "Год :", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "вы получили", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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 Siro Wallet", + "you will use this device?": "you will use this device?", + "your ride is Accepted": "Заказ принят", + "your ride is applied": "поездка оформлена", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "Дата окончания", + "⚠️ You need to choose an amount!": "⚠️ Выберите сумму!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 Оплата кошельком", + "💳 Pay with Credit Card": "💳 Оплата картой", +}; diff --git a/siro_driver/lib/controller/local/tr.dart b/siro_driver/lib/controller/local/tr.dart new file mode 100644 index 0000000..a41891d --- /dev/null +++ b/siro_driver/lib/controller/local/tr.dart @@ -0,0 +1,2662 @@ +final Map tr = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " ve Gizlilik Politikamızı kabul edin.", + " is ON for this month": " bu ay için AÇIK", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. Sorununuzu Açıklayın", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 ve %4 indirim al", + "100 and get 11% discount": "100 ve %11 indirim al", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. Kayıtlı Ses Dosyası Ekle", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 ve %6 indirim al", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. Detayları ve Yanıtı İncele", + "300 LE": "300 LE", + "3000 LE": "3000 TL", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 ve %8 indirim al", + "5 digit": "5 haneli", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Ön rezervasyonlu yolculuk, en iyi kaptanları ve araçları seçmenize olanak tanır.", + "AI Page": "YZ Sayfası", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "Hakkımızda", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "Siparişi Kabul Et", + "Accept Ride": "Accept Ride", + "Accepted Ride": "Kabul Edilen Yolculuk", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "Aktif Süre:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "Kart Ekle", + "Add Credit Card": "Kredi Kartı Ekle", + "Add Home": "Ev Ekle", + "Add Location": "Konum Ekle", + "Add Location 1": "Konum 1 Ekle", + "Add Location 2": "Konum 2 Ekle", + "Add Location 3": "Konum 3 Ekle", + "Add Location 4": "Konum 4 Ekle", + "Add Payment Method": "Ödeme Yöntemi Ekle", + "Add Phone": "Telefon Ekle", + "Add Promo": "Promosyon Ekle", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Durak Ekle", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "Güvenli yöntemlerle bakiye ekle", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Adres", + "Address:": "Address:", + "Admin DashBoard": "Yönetici Paneli", + "Affordable for Everyone": "Herkes İçin Uygun Fiyatlı", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "Uyarılar", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "Konum Erişimine İzin Ver", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "Ödeme işlemi sırasında bir hata oluştu.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "Kişi seçilirken hata oluştu:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "Beklenmedik bir hata oluştu. Lütfen tekrar deneyin.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "Yolcu ile Uygulama", + "Applied": "Başvuruldu", + "Apply": "Apply", + "Apply Order": "Siparişi Kabul Et", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "Bölgene yaklaşıyorum. 3 dakika içinde orada olmalıyım.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "Şuraya gitmek istediğinize emin misiniz:", + "Are you Sure to LogOut?": "Çıkış Yapmak İstediğinize Emin misiniz?", + "Are you sure to cancel?": "İptal etmek istediğinize emin misiniz?", + "Are you sure to delete recorded files": "Kayıtlı dosyaları silmek istediğinize emin misiniz?", + "Are you sure to delete this location?": "Bu konumu silmek istediğinize emin misiniz?", + "Are you sure to delete your account?": "Hesabınızı silmek istediğinize emin misiniz?", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "Emin misiniz? Bu işlem geri alınamaz.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Bu konuma gitmek istiyor musunuz?", + "Are you want to go to this site": "Bu konuma gitmek istiyor musunuz?", + "Are you want to wait drivers to accept your order": "Sürücülerin siparişinizi kabul etmesini beklemek ister misiniz?", + "Arrival time": "Varış zamanı", + "Associate Degree": "Önlisans", + "Attach this audio file?": "Bu ses dosyasını ekle?", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Ses başarıyla yüklendi.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "Yolculuklar için müsait", + "Average of Hours of": "Şu saatlerin ortalaması:", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Ekonomik Araç", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "Bahreyn", + "Balance": "Bakiye", + "Balance limit exceeded": "Bakiye limiti aşıldı", + "Balance not enough": "Bakiye yetersiz", + "Balance:": "Bakiye:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "Yavaş Ol", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "Lütfen net fotoğraflar çekin\\nKalan hakkınız:", + "Be sure to use it quickly! This code expires at": "Hızlı kullan! Kodun son kullanma tarihi:", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Size yakın olduğumuz için en uygun yolculuğu seçme esnekliğine sahipsiniz.", + "Before we start, please review our terms.": "Başlamadan önce lütfen şartlarımızı inceleyin.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Şehirler için en iyi seçim", + "Best choice for comfort car and flexible route and stops point": "Konforlu araç ve esnek rota için en iyi seçim", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "Doğum Tarihi", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "Rezervasyon Ücreti", + "Bottom Bar Example": "Alt Çubuk Örneği", + "But you have a negative salary of": "Ancak negatif maaşınız var:", + "CODE": "KOD", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "Arama Sonlandı", + "Call Ended": "Call Ended", + "Call Income": "Gelen Arama", + "Call Income from Driver": "Sürücüden Gelen Arama", + "Call Income from Passenger": "Yolcumuzdan Gelen Arama", + "Call Left": "Kalan Arama", + "Call Options": "Call Options", + "Call Page": "Arama Sayfası", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "Kamera Erişimi Reddedildi.", + "Camera not initialized yet": "Kamera henüz başlatılmadı", + "Camera not initilaized yet": "Kamera henüz başlatılmadı", + "Can I cancel my ride?": "Yolculuğumu iptal edebilir miyim?", + "Can we know why you want to cancel Ride ?": "Neden iptal etmek istediğinizi öğrenebilir miyiz?", + "Cancel": "İptal", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "Yolculuğu İptal Et", + "Cancel Search": "Aramayı İptal Et", + "Cancel Trip": "Yolculuğu İptal Et", + "Cancel Trip from driver": "Sürücü tarafından iptal", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "İptal Edildi", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "Daha fazla indirim uygulanamaz.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Adli Sicil Kaydınızın Fotoğrafını Çekin", + "Capture an Image of Your Driver License": "Ehliyetinizin Fotoğrafını Çekin", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "Kimliğinizin Arka Yüzünün Fotoğrafını Çekin", + "Capture an Image of Your ID Document front": "Kimliğinizin Ön Yüzünün Fotoğrafını Çekin", + "Capture an Image of Your car license back": "Ruhsatınızın Arka Yüzünün Fotoğrafını Çekin", + "Capture an Image of Your car license front": "Ruhsatınızın Ön Yüzünün Fotoğrafını Çekin", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "Araç", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "Araç Detayları", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "Ruhsat Kartı", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "Kart Numarası", + "Card Payment": "Card Payment", + "CardID": "Kart No", + "Cash": "Nakit", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "Ülke Değiştir", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "Şasi No", + "Check back later for new offers!": "Yeni teklifler için sonra tekrar kontrol et!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "Dil Seçin", + "Choose a contact option": "İletişim seçeneği belirleyin", + "Choose between those Type Cars": "Bu Araç Tipleri Arasından Seçin", + "Choose from Map": "Haritadan Seç", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "İhtiyaçlarınıza mükemmel uyan seçeneği tercih edin.", + "Choose who this order is for": "Bu sipariş kimin için?", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "Şehir", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "Davet için 20 TL hediyeni al", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "Haritada Göstermek için Tıkla", + "Close": "Kapat", + "Closest & Cheapest": "En Yakın & En Ucuz", + "Closest to You": "Size En Yakın", + "Code": "Kod", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "Kod onaylanmadı", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "Renk", + "Color is": "Color is", + "Comfort": "Konfor", + "Comfort choice": "Konfor seçimi", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "İletişim", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "Şikayet", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Bu yolculuk için şikayet oluşturulamaz. Tamamlanmamış veya başlamamış olabilir.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "Onayla", + "Confirm & Find a Ride": "Onayla & Araç Bul", + "Confirm Attachment": "Eki Onayla", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "Seçimi Onayla", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "E-postanızı Onaylayın", + "Confirmation": "Confirmation", + "Connected": "Bağlı", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "İletişim Seçenekleri", + "Contact Support": "Destekle İletişime Geç", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "Bize Ulaşın", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "Kişileri seçmek için rehber izni gerekli.", + "Contact us for any questions on your order.": "Siparişinizle ilgili sorular için bize ulaşın.", + "Contacts Loaded": "Kişiler Yüklendi", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "Devam Et", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "Kopyala", + "Copy Code": "Kodu Kopyala", + "Copy this Promo to use it in your Ride!": "Bu Promosyonu kopyalayıp kullanın!", + "Cost": "Cost", + "Cost Duration": "Maliyet Süresi", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "Günlerdeki Saat Sayısı", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "Paranızı almak için Cüzdan oluşturun", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "Adli Sicil Kaydı Gerekli", + "Criminal Record": "Adli Sicil Kaydı", + "Cropper": "Kırpıcı", + "Current Balance": "Güncel Bakiye", + "Current Location": "Mevcut Konum", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Müşteri bulunamadı", + "Customer phone is not active": "Müşteri telefonu aktif değil", + "DISCOUNT": "İNDİRİM", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "Tarih", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "Doğum Tarihi:", + "Date of Birth:": "Date of Birth:", + "Day Off": "Day Off", + "Day Streak": "Day Streak", + "Days": "Günler", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "Hesabımı Sil", + "Delete Permanently": "Kalıcı Olarak Sil", + "Deleted": "Silindi", + "Delivery": "Delivery", + "Destination": "Varış", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "Yüzünüzü Algılayın ", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "Motor Hacmi", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "Başka bir sürücüden davet kodunuz var mı?", + "Do you want to change Home location": "Ev konumunu değiştirmek istiyor musunuz?", + "Do you want to change Work location": "İş konumunu değiştirmek istiyor musunuz?", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "Bu Sürücüye Bahşiş vermek ister misiniz?", + "Docs": "Docs", + "Doctoral Degree": "Doktora", + "Document Number:": "Document Number:", + "Documents check": "Belge Kontrolü", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "Bitti", + "Don’t forget your personal belongings.": "Eşyalarınızı unutmayın.", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Uygulamayı hemen indir:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Sürücü", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "Sürücü Sizin İçin Yolculuğu Kabul Etti", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "Sürücü Sizin İçin Yolculuk Başlattı", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "Sürücü Yolculuğunuzu İptal Etti", + "Driver Car Plate": "Sürücü Plakası", + "Driver Finish Trip": "Sürücü Yolculuğu Bitirdi", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "Sürücü Yolcuya Gidiyor", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "Sürücü Adı", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "Sürücü Kaydı", + "Driver Registration & Requirements": "Sürücü Kaydı & Gereksinimler", + "Driver Wallet": "Sürücü Cüzdanı", + "Driver already has 2 trips within the specified period.": "Sürücünün belirtilen sürede zaten 2 yolculuğu var.", + "Driver is on the way": "Sürücü yolda", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "Sürücü alım noktasında bekliyor.", + "Driver joined the channel": "Sürücü kanala katıldı", + "Driver left the channel": "Sürücü kanaldan ayrıldı", + "Driver phone": "Sürücü telefonu", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "Ehliyet Sınıfı", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "Süre:", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "Profili Düzenle", + "Edit Your data": "Verilerini Düzenle", + "Education": "Eğitim", + "Egypt": "Mısır", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "Elektrikli", + "Email": "Email", + "Email Us": "Bize E-posta Gönder", + "Email Wrong": "E-posta Yanlış", + "Email is": "E-posta:", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "Girdiğiniz e-posta yanlış.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "İstihdam Türü", + "Enable Location": "Konumu Etkinleştir", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "Yolculuğu Bitir", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "Güvenli ve konforlu bir yolculuğun tadını çıkarın.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Tüm seçeneklerde rekabetçi fiyatların tadını çıkarın.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "Adınızı Girin", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "Telefon gir", + "Enter phone number": "Enter phone number", + "Enter promo code": "Promosyon kodu gir", + "Enter promo code here": "Promosyon kodunu buraya girin", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "Promosyon kodunu gir ve kazan:", + "Enter your City": "Enter your City", + "Enter your Note": "Notunu gir", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Şikayetinizi buraya girin...", + "Enter your email": "Enter your email", + "Enter your email address": "E-posta adresinizi girin", + "Enter your feedback here": "Geri bildiriminizi buraya girin", + "Enter your first name": "Adınızı girin", + "Enter your last name": "Soyadınızı girin", + "Enter your password": "Enter your password", + "Enter your phone number": "Telefon numaranızı girin", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "Hata", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Evening": "Akşam", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "Son Kullanma Tarihi", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "Geçerlilik Tarihi", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "Yüz Algılama Sonucu", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "En Hızlı Şikayet Yanıtı", + "Favorite Places": "Favorite Places", + "Fee is": "Ücret:", + "Feed Back": "Geri Bildirim", + "Feedback": "Geri Bildirim", + "Feedback data saved successfully": "Geri bildirim başarıyla kaydedildi", + "Female": "Kadın", + "Find answers to common questions": "Sık sorulan soruların cevaplarını bul", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "İzlemeyi Bitir", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "Ad", + "First Trip": "First Trip", + "First name": "Ad", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Açılış ücreti", + "For Drivers": "Sürücüler İçin", + "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 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 Siro 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": "Sıkça Sorulan Sorular", + "Frequently Questions": "Sıkça Sorulan Sorular", + "Fri": "Fri", + "From": "Nereden", + "From :": "Nereden:", + "From : Current Location": "Nereden: Mevcut Konum", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "Yakıt", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "Tam Ad", + "FullName": "Tam Ad", + "GPS Required Allow !.": "GPS Gerekli, İzin Ver!", + "Gender": "Cinsiyet", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "Get": "Get", + "Get Details of Trip": "Yolculuk Detaylarını Al", + "Get Direction": "Yol Tarifi Al", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get features for your country": "Get features for your country", + "Get it Now!": "Hemen Al!", + "Get to your destination quickly and easily.": "Hedefinize hızlı ve kolayca ulaşın.", + "Getting Started": "Başlarken", + "Gift Already Claimed": "Hediye Zaten Alındı", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "Favori Yerlere Git", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "Sonraki adıma git\\nRuhsatı tara.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "Yolcu Konumuna Git", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "Bu Hedefe Git", + "Go to this location": "Bu konuma git", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "S ve", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "Promosyon kodunuz var mı?", + "Head": "Head", + "Heading your way now. Please be ready.": "Sana doğru geliyorum. Lütfen hazır ol.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "Merhaba, ben Kaptan", + "Hello this is Driver": "Merhaba ben Sürücü", + "Help & Support": "Help & Support", + "Help Details": "Yardım Detayları", + "Helping Center": "Yardım Merkezi", + "Helping Page": "Helping Page", + "Here recorded trips audio": "Burada kaydedilen yolculuk sesleri", + "Hi": "Selam", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Selam, şimdi yola çıkıyorum", + "Hi! This is": "Merhaba! Bu", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "Lise Diploması", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "Yolculuk Geçmişi", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "Yolculuğumu nasıl öderim?", + "How can I register as a driver?": "Sürücü olarak nasıl kayıt olurum?", + "How do I communicate with the other party (passenger/driver)?": "Diğer taraf (yolcu/sürücü) ile nasıl iletişim kurarım?", + "How do I request a ride?": "Nasıl yolculuk isterim?", + "How many hours would you like to wait?": "Kaç saat beklemek istersiniz?", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "Kabul Ediyorum", + "I Arrive": "I Arrive", + "I Arrive your site": "Konumunuza ulaştım", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "Yanlış konum ekledim", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "Sana ulaştım", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "Yüz algılamada sorun yaşıyorum, kayıt olamıyorum", + "I want to order for myself": "Kendim için", + "I want to order for someone else": "Başka biri için", + "I was just trying the application": "Sadece uygulamayı deniyordum", + "I will go now": "Şimdi gidiyorum", + "I will slow down": "Yavaşlayacağım", + "I've arrived.": "I've arrived.", + "ID Documents Back": "Kimlik Arka Yüzü", + "ID Documents Front": "Kimlik Ön Yüzü", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "Şu an araçtaysanız, Yolculuğu Başlat'a basın", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "Yardıma ihtiyacınız varsa bize ulaşın", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Durak eklemek istiyorsanız buraya tıklayın", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Siparişi uyguladığınızda Google Haritalar'ın direkt açılmasını istiyorsanız", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "Görüntü algılama sonucu: ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "Uygulama İçi VOIP Aramalar", + "Including Tax": "Vergi Dahil", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "⚠️ Hatalı SMS kodu. Lütfen tekrar deneyin.", + "Increase Fare": "Ücreti Artır", + "Increase Fee": "Ücreti Artır", + "Increase Your Trip Fee (Optional)": "Yolculuk Ücretini Artır (İsteğe Bağlı)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Ücreti artırmak daha fazla sürücü çekebilir. Fiyatı artırmak ister misiniz?", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "Ekle", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "Acil Durum Numarası Gir", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Promosyon Kodunu Gir", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "Muayene Tarihi", + "InspectionResult": "Muayene Sonucu", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "Geçersiz MPIN", + "Invalid OTP": "Geçersiz Kod", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "Davet Kullanıldı", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "Davet başarıyla gönderildi", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "Yolcu Aracınızda mı?", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "Veriliş Tarihi", + "IssueDate": "Veriliş Tarihi", + "JOD": "TL", + "Join": "Katıl", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "Ürdün", + "Just now": "Just now", + "KM": "KM", + "Keep it up!": "Böyle devam et!", + "Kuwait": "Kuveyt", + "L.E": "L.E", + "L.S": "L.S", + "LE": "TL", + "Lady": "Kadın", + "Lady Captain for girls": "Kadınlar için Kadın Sürücü", + "Lady Captains Available": "Kadın Kaptanlar Mevcut", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "Dil", + "Language Options": "Dil Seçenekleri", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "Soyad", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "En Son Yolculuk", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Ayrıl", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "Hadi Ruhsatı kontrol edelim ", + "Lets check License Back Face": "Hadi Ehliyet Arka Yüzünü kontrol edelim", + "License Categories": "Ehliyet Kategorileri", + "License Expiry Date": "License Expiry Date", + "License Type": "Ehliyet Sınıfı", + "Link a phone number for transfers": "Transferler için numara bağla", + "Location Access Required": "Location Access Required", + "Location Link": "Konum Linki", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "Oturumu Kapat", + "Log Out Page": "Çıkış Sayfası", + "Login": "Login", + "Login Captin": "Kaptan Girişi", + "Login Driver": "Sürücü Girişi", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "En Düşük Fiyata Ulaşıldı", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "Marka:", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "Marka", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "Erkek", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "Yolcu Haritası", + "Marital Status": "Medeni Durum", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "Maksimum ücret", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Minimum ücret", + "Minute": "Dakika", + "Minutes": "Minutes", + "Mishwar Vip": "Mishwar VIP", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "Model", + "Model is": "Model:", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "Sabah", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "En Güvenli Yöntemler", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "İğneyi ayarlamak için haritayı kaydırın", + "Mute": "Mute", + "My Balance": "Bakiyem", + "My Card": "Kartım", + "My Cared": "Kartlarım", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "Profilim", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "Mevcut konumum:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "Konumum", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "Ad", + "Name (Arabic)": "Ad (Arapça)", + "Name (English)": "Ad (İngilizce)", + "Name :": "Ad:", + "Name in arabic": "Arapça Ad", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "T.C. Kimlik", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "T.C. Kimlik No", + "NationalID": "T.C. Kimlik No", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "İleri", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "Gece", + "No": "Hayır", + "No ,still Waiting.": "Hayır, hâlâ bekliyorum.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Konumunuzda araç yok. Üzgünüz!", + "No Car or Driver Found in your area.": "Bölgenizde Araç veya Sürücü Bulunamadı.", + "No I want": "Hayır istiyorum", + "No Promo for today .": "Bugün için Promosyon yok.", + "No Response yet.": "Henüz Yanıt yok.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "SIM kart yok mu, sorun değil! Uygulamamız üzerinden sürücünüzü doğrudan arayın.", + "No accepted orders? Try raising your trip fee to attract riders.": "Kabul eden yok mu? Ücreti artırmayı deneyin.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "Ses dosyası bulunamadı.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "Kişi bulunamadı", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "Cihazınızda telefon numarası olan kişi bulunamadı.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "Hiçbir sürücü isteğimi kabul etmedi", + "No drivers accepted your request yet": "Henüz hiçbir sürücü isteğinizi kabul etmedi", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "Yüz algılanmadı", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Henüz resim seçilmedi", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "Henüz davet bulunamadı!", + "No one accepted? Try increasing the fare.": "Kimse kabul etmedi mi? Ücreti artırmayı deneyin.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "Verilen numara için yolcu bulunamadı", + "No phone number": "No phone number", + "No promos available right now.": "Şu an uygun promosyon yok.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "Henüz araç bulunamadı", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "Yolculuk geçmişi bulunamadı", + "No trip yet found": "Henüz yolculuk bulunamadı", + "No user found for the given phone number": "Verilen numara için kullanıcı bulunamadı", + "No wallet record found": "Cüzdan kaydı bulunamadı", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "Hayır, teşekkürler", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "Bağlı Değil", + "Not set": "Ayarlanmadı", + "Not updated": "Not updated", + "Notifications": "Bildirimler", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "Meslek", + "Offline": "Offline", + "Ok": "Tamam", + "Ok , See you Tomorrow": "Tamam, Yarın Görüşürüz", + "Ok I will go now.": "Tamam, şimdi gidiyorum.", + "Old and affordable, perfect for budget rides.": "Eski ve uygun fiyatlı, bütçe dostu yolculuklar için mükemmel.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "Ayarları Aç", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "Veya Nakit öde", + "Order": "Sipariş", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "Sipariş Alındı", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Sipariş Yolcu Tarafından İptal Edildi", + "Order Details Siro": "Order Details Siro", + "Order History": "Sipariş Geçmişi", + "Order ID": "Order ID", + "Order Request Page": "Sipariş İstek Sayfası", + "Order Under Review": "Order Under Review", + "Order for myself": "Kendim için sipariş ver", + "Order for someone else": "Başkası için sipariş ver", + "OrderId": "Sipariş No", + "OrderVIP": "VIP Sipariş", + "Orders Page": "Orders Page", + "Origin": "Başlangıç", + "Original Fare": "Original Fare", + "Other": "Diğer", + "Our dedicated customer service team ensures swift resolution of any issues.": "Müşteri hizmetleri ekibimiz sorunları hızla çözer.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "Ruhsat Sahibi", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "Yolcu Yolculuğu İptal Etti", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "Yolcu size geliyor", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "Şifre en az 6 karakter olmalıdır.", + "Paste WhatsApp location link": "WhatsApp konum linkini yapıştır", + "Paste location link here": "Konum linkini buraya yapıştırın", + "Paste the code here": "Kodu buraya yapıştır", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Doğrudan Kaptana öde", + "Pay from my budget": "Bütçemden öde", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "Kredi Kartı ile Öde", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "Cüzdan ile Öde", + "Pay with Your": "Şununla Öde:", + "Pay with Your PayPal": "PayPal ile Öde", + "Payment Failed": "Ödeme Başarısız", + "Payment History": "Ödeme Geçmişi", + "Payment Method": "Ödeme Yöntemi", + "Payment Method:": "Payment Method:", + "Payment Options": "Ödeme Seçenekleri", + "Payment Successful": "Ödeme Başarılı", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "Ödemeler", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "Yeni ve heyecanlı bir şey denemek isteyen maceraperestler için mükemmel", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "En yeni model araçlar ve rota özgürlüğü isteyen yolcular için mükemmel", + "Permission denied": "İzin reddedildi", + "Personal Information": "Kişisel Bilgiler", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Telefon:", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "Haritadan seç", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "Haritadan varış yerini seç", + "Pick your ride location on the map - Tap to confirm": "Haritada konumunu seç - Onaylamak için dokun", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "Plaka", + "Plate Number": "Plaka No", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "Lütfen Bekleyin, yolcu iptal etmek isteyebilir!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "Lütfen girin", + "Please enter Your Email.": "Lütfen e-postanızı girin.", + "Please enter Your Password.": "Lütfen şifrenizi girin.", + "Please enter a correct phone": "Lütfen geçerli bir telefon girin", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "Lütfen bir telefon numarası girin", + "Please enter a valid 16-digit card number": "Lütfen geçerli 16 haneli kart numarasını girin", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Lütfen geçerli bir promosyon kodu girin", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "CVV kodunu girin", + "Please enter the cardholder name": "Kart sahibinin adını girin", + "Please enter the complete 6-digit code.": "Lütfen 6 haneli kodu eksiksiz girin.", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "Son kullanma tarihini girin", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Lütfen Şehrinizi girin.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "Lütfen Sorunuzu girin.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Lütfen geri bildiriminizi girin.", + "Please enter your first name.": "Lütfen adınızı girin.", + "Please enter your last name.": "Lütfen soyadınızı girin.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Lütfen telefon numaranızı girin.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "Lütfen Sürücüye Gidin", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "Please help! Contact me as soon as possible.": "Lütfen yardım edin! Bana hemen ulaşın.", + "Please make sure not to leave any personal belongings in the car.": "Lütfen araçta kişisel eşya bırakmadığınızdan emin olun.", + "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 Siro 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": "Lütfen ehliyetinizi bu çerçeveye yerleştirin", + "Please select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "Please select a ride before submitting.": "Please select a ride before submitting.", + "Please stay on the picked point.": "Lütfen seçilen noktada bekleyin.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "Lütfen kimliğinizi doğrulayın", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "Lütfen yolculuğu başlatmadan önce yolcunun araca binmesini bekleyin.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "Puan", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "Potansiyel güvenlik riski algılandı. Uygulama düzgün çalışmayabilir.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Gizlilik Politikası", + "Profile": "Profil", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "Promosyon", + "Promo Already Used": "Promosyon Zaten Kullanıldı", + "Promo Code": "Promosyon Kodu", + "Promo Code Accepted": "Promosyon Kodu Kabul Edildi", + "Promo Copied!": "Promosyon Kopyalandı!", + "Promo End !": "Promosyon Bitti!", + "Promo Ended": "Promosyon Sona Erdi", + "Promo code copied to clipboard!": "Promosyon kodu panoya kopyalandı!", + "Promos": "Promosyonlar", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "Ödeme İptal Edildi.", + "Qatar": "Katar", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "Hızlı İşlemler", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "Sessiz & Çevre Dostu", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "Kaptanı Puanla", + "Rate Driver": "Sürücüyü Puanla", + "Rate Our App": "Rate Our App", + "Rate Passenger": "Yolcuyu Puanla", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "Gidiş-Dönüş", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Gidiş-Dönüş: Şehirler arası rahat seyahat için kolay ve güvenilir hizmet.", + "Reason": "Reason", + "Recent Places": "Son Gidilen Yerler", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "Hesabımı Doldur", + "Record": "Record", + "Record saved": "Kayıt kaydedildi", + "Recorded Trips (Voice & AI Analysis)": "Kaydedilen Yolculuklar (Ses & YZ Analizi)", + "Recorded Trips for Safety": "Güvenlik İçin Kaydedilen Yolculuklar", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "Siparişi Reddet", + "Refused": "Refused", + "Register": "Kayıt Ol", + "Register Captin": "Kaptan Kaydı", + "Register Driver": "Sürücü Kaydı", + "Register as Driver": "Sürücü olarak Kayıt Ol", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Din", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "Kodu Tekrar Gönder", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "Yolculuk Yönetimi", + "Ride Status": "Ride Status", + "Ride Summaries": "Yolculuk Özetleri", + "Ride Summary": "Yolculuk Özeti", + "Ride Today :": "Ride Today :", + "Ride Wallet": "Yolculuk Cüzdanı", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "Yolculuklar", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "Yolculuk Rotaları", + "Route Not Found": "Rota Bulunamadı", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "Acil Durum Telefonu", + "SUBMIT": "SUBMIT", + "SYP": "SYP", + "Safety & Security": "Güvenlik & Emniyet", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "Suudi Arabistan", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "Kredi Kartını Kaydet", + "Saved Sucssefully": "Başarıyla Kaydedildi", + "Scan Driver License": "Ehliyeti Tara", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "Kimlik Tara MklGoogle", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "Kimlik Tara", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Scooter", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "Ara nokta ara", + "Search for your Start point": "Başlangıç noktasını ara", + "Search for your destination": "Varış yerini ara", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "En yakın kaptan aranıyor...", + "Security Warning": "⚠️ Güvenlik Uyarısı", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "Yollarda görüşmek üzere!", + "Select Country": "Ülke Seç", + "Select Date": "Tarih Seç", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "Sipariş Türünü Seç", + "Select Payment Amount": "Ödeme Tutarını Seç", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "Zaman Seç", + "Select Waiting Hours": "Bekleme Süresini Seç", + "Select Your Country": "Ülkenizi Seçin", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "Bir mesaj seç", + "Select recorded trip": "Kaydedilen yolculuğu seç", + "Select your destination": "Varış noktasını seç", + "Select your preferred language for the app interface.": "Uygulama arayüzü için dil seçin.", + "Selected Date": "Seçilen Tarih", + "Selected Date and Time": "Seçilen Tarih ve Saat", + "Selected Location": "Selected Location", + "Selected Time": "Seçilen Zaman", + "Selected driver": "Seçilen sürücü", + "Selected file:": "Seçilen dosya:", + "Send Email": "Send Email", + "Send Invite": "Davet Gönder", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Doğrulama Kodu Gönder", + "Send Verification Code": "Doğrulama Kodu Gönder", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Özel mesaj gönder", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Oturum süresi doldu. Lütfen tekrar giriş yapın.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Cüzdan Numarası Ayarla", + "Set pickup location": "Alım noktasını ayarla", + "Setting": "Ayar", + "Settings": "Ayarlar", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "Uygulamayı Paylaş", + "Share Code": "Share Code", + "Share Trip Details": "Yolculuk Detaylarını Paylaş", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "Bu kodu arkadaşlarınla paylaş ve kullandıklarında ödül kazan!", + "Share via": "Share via", + "Share with friends and earn rewards": "Arkadaşlarınla paylaş ve ödül kazan", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Davetleri Göster", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "Promosyonları Göster", + "Show Promos to Charge": "Yükleme için Promosyonları Göster", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "Son promosyonları göster", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "Gösteriliyor", + "Sign In by Apple": "Apple ile Giriş Yap", + "Sign In by Google": "Google ile Giriş Yap", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Çıkış Yap", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "Daha kolay giriş için Google ile bağlanın", + "Sign in with a provider for easy access": "Sign in with a provider for easy access", + "Silver badge": "Silver badge", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Aileler ve gruplar için ideal geniş araç hizmeti. Rahat, güvenli ve ekonomik.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "Kaydı Başlat", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "Yolculuğu Başlat", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "İstatistikler", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "Gönder ", + "Submit Complaint": "Şikayeti Gönder", + "Submit Question": "Soru Gönder", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "Şikayet Gönder", + "Submit rating": "Puanı gönder", + "Success": "Başarılı", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "Yolcuyu Değiştir", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "Suriye", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "Fotoğraf Çek", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "Ehliyet Fotoğrafı Çek", + "Take Picture Of ID Card": "Kimlik Kartı Fotoğrafı Çek", + "Tap on the promo code to copy it!": "Kopyalamak için koda dokunun!", + "Tap to upload": "Tap to upload", + "Target": "Hedef", + "Tariff": "Tarife", + "Tariffs": "Tarifeler", + "Tax Expiry Date": "Vergi Bitiş Tarihi", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "Teşekkürler", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "Sürücü yakında konumunuzda olacak.", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "Rota sorumluluğu kaptandadır.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "Mesafe 500 metreden az.", + "The driver accept your order for": "Sürücü siparişinizi şu fiyata kabul etti:", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "Sürücü yolculuğunu kabul etti", + "The driver canceled your ride.": "Sürücü yolculuğunuzu iptal etti.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "Sürücü yolda", + "The driver waiting you in picked location .": "Sürücü sizi seçilen konumda bekliyor.", + "The driver waitting you in picked location .": "Sürücü sizi seçilen konumda bekliyor.", + "The drivers are reviewing your request": "Sürücüler isteğinizi inceliyor", + "The email or phone number is already registered.": "E-posta veya telefon numarası zaten kayıtlı.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "Davet başarıyla gönderildi", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "Sipariş Başka Sürücü Tarafından Kabul Edildi", + "The order has been accepted by another driver.": "Sipariş başka bir sürücü tarafından kabul edildi.", + "The payment was approved.": "Ödeme onaylandı.", + "The payment was not approved. Please try again.": "Ödeme onaylanmadı. Lütfen tekrar deneyin.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "Rota değişirse fiyat artabilir.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "Promosyon süresi doldu.", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Yolculuk başladı! Acil numaraları aramaktan, yolculuğu paylaşmaktan veya ses kaydı almaktan çekinmeyin.", + "There is no data yet.": "Henüz veri yok.", + "There is no help Question here": "Burada yardım sorusu yok", + "There is no notification yet": "Henüz bildirim yok", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "Yolculardan aldığım tüm yolculuk tutarı", + "This amount for all trip I get from Passengers and Collected For me in": "Bu tutar yolculardan aldığım ve benim için toplanan", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "Bu planlanmış bir bildirimdir.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Bu scooter veya motosiklet içindir.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "Bu numara zaten davet edilmiş.", + "This price is": "Bu fiyat:", + "This price is fixed even if the route changes for the driver.": "Bu fiyat rota değişse bile sabittir.", + "This price may be changed": "Bu fiyat değişebilir", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Bu yolculuk başka bir sürücü tarafından alınmış.", + "This ride type allows changes, but the price may increase": "Bu tür değişikliklere izin verir ancak fiyat artabilir", + "This ride type does not allow changes to the destination or additional stops": "Bu yolculuk türü hedef değişikliğine veya ek duraklara izin vermez", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Sabit fiyatlı doğrudan yolculuk. Sürücü planlanan rotayı izlemelidir.", + "This trip is for women only": "Bu yolculuk sadece kadınlar içindir", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "Varış zamanı", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro app...", + "To change Language the App": "To change Language the App", + "To change some Settings": "Bazı Ayarları değiştirmek için", + "To display orders instantly, please grant permission to draw over other apps.": "To display orders instantly, please grant permission to draw over other apps.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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.": "En doğru bilgiyi almak için lütfen ülkenizi seçin.", + "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.": "Size en iyi deneyimi sunmak için nerede olduğunuzu bilmemiz gerek. Konumunuz yakın sürücüleri bulmak için kullanılır.", + "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 Siro support directly.", + "To use Wallet charge it": "Cüzdanı kullanmak için yükleme yapın", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Cüzdanı Doldur", + "Top up Wallet to continue": "Devam etmek için Cüzdanı doldur", + "Total Amount:": "Toplam Tutar:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "Toplam Bağlantı Süresi:", + "Total Cost": "Toplam Maliyet", + "Total Cost is": "Total Cost is", + "Total Duration:": "Toplam Süre:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "Aydaki Toplam Saat", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "Toplam Puan:", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "Aylık toplam bütçe", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Modern, sessiz elektrikli araçla seyahat edin. Pürüzsüz bir yolculuk için premium, çevre dostu seçim.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "Yolculuk İptal Edildi", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Yolculuk iptal edildi. Ücret cüzdanınıza eklenecektir.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Yolculuk Takibi", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "Yolculuk bitti", + "Trip has Steps": "Yolculuğun Adımları Var", + "Trip is Begin": "Yolculuk Başlıyor", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "Kaydedilen Yolculuklar", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "Türkiye", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "Yeri buraya yaz", + "Type something": "Type something", + "Type something...": "Bir şeyler yaz...", + "Type your Email": "E-postanızı Yazın", + "Type your message": "Mesajını yaz", + "Type your message...": "Type your message...", + "Types of Trips in Siro:": "Types of Trips in Siro:", + "USA": "ABD", + "Uncompromising Security": "Tavizsiz Güvenlik", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Güncelle", + "Update Available": "Update Available", + "Update Education": "Eğitimi Güncelle", + "Update Gender": "Cinsiyeti Güncelle", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "Yüklendi", + "Use Touch ID or Face ID to confirm payment": "Ödemeyi onaylamak için Touch ID veya Face ID kullanın", + "Use code:": "Kodu kullan:", + "Use my invitation code to get a special gift on your first ride!": "İlk yolculuğunda özel hediye için davet kodumu kullan!", + "Use my referral code:": "Referans kodumu kullan:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "Kullanıcı mevcut değil.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "Bu telefon veya e-posta ile kayıtlı bir kullanıcı zaten var.", + "Uses cellular network": "Uses cellular network", + "VIN": "Şasi No", + "VIN :": "Şasi No:", + "VIN is": "Şasi No:", + "VIP Order": "VIP Sipariş", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "Son Geçerlilik:", + "Value": "Value", + "Van": "Geniş Araç", + "Van / Bus": "Van / Bus", + "Van for familly": "Aile için Geniş Araç", + "Variety of Trip Choices": "Yolculuk Seçeneği Çeşitliliği", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "Araç Detayları Arka", + "Vehicle Details Front": "Araç Detayları Ön", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "Araç Seçenekleri", + "Verification Code": "Doğrulama Kodu", + "Verify": "Doğrula", + "Verify Email": "E-postayı Doğrula", + "Verify Email For Driver": "Sürücü İçin E-postayı Doğrula", + "Verify OTP": "Kodu Doğrula", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Tüm butonlar için titreşim geri bildirimi", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "View your past transactions": "Geçmiş işlemleri görüntüle", + "Visa": "Visa", + "Visit Website/Contact Support": "Web Sitesini Ziyaret Et/Desteğe Ulaş", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "Kaptan Bekleniyor...", + "Waiting for Driver ...": "Sürücü Bekleniyor...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Konumunuz bekleniyor", + "Wallet": "Cüzdan", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "Cüzdan bloke edildi", + "Wallet!": "Cüzdan!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Uyarı: Hız sınırı aşıldı!", + "We Are Sorry That we dont have cars in your Location!": "Üzgünüz, konumunuzda aracımız yok!", + "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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "Fotoğrafı işliyoruz lütfen bekleyin ", + "We are search for nearst driver": "En yakın sürücüyü arıyoruz", + "We are searching for the nearest driver": "En yakın sürücüyü arıyoruz", + "We are searching for the nearest driver to you": "Size en yakın sürücüyü arıyoruz", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Daha hızlı alım ve yolculuk için sizi en yakın sürücülere bağlıyoruz.", + "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 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 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 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:": "Cep telefonu numaranıza bir doğrulama kodu gönderdik:", + "We need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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.": "Sipariş alabilmeniz ve iletişim için numaranıza ihtiyacımız var.", + "We need your phone number to contact you and to help you.": "Size ulaşmak ve yardım etmek için numaranıza ihtiyacımız var.", + "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 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 regret to inform you that another driver has accepted this order.": "Üzgünüz, bu siparişi başka bir sürücü kabul etti.", + "We search nearst Driver to you": "Size en yakın sürücüyü arıyoruz", + "We sent 5 digit to your Email provided": "E-postanıza 5 haneli kod gönderdik", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "Yeni bir sürücü arıyoruz.\\nLütfen bekleyin.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "Tekrar Hoş Geldiniz!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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?": "Sürücü olma şartları nelerdir?", + "What is Types of Trips in Siro?": "What is Types of Trips in Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Hangi araç türleri mevcut?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "WhatsApp Konum Çıkarıcı", + "When": "Ne zaman", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "Nereye gidiyorsunuz?", + "Where are you, sir?": "Where are you, sir?", + "Where to": "Nereye?", + "Where you want go": "Where you want go", + "Which method you will pay": "Which method you will pay", + "Why Choose Siro?": "Why Choose Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "İş", + "Work & Contact": "İş & İletişim", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Çalışma saatleri 12:00 - 19:00.\\nWhatsApp mesajı veya e-posta gönderebilirsiniz.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "Not yaz", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "Yıl", + "Year is": "Yıl:", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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.": "Evet, iptal edebilirsiniz ancak iptal ücreti uygulanabilir.", + "You": "You", + "You Are Stopped For this Day !": "Bugünlük durduruldunuz!", + "You Can Cancel Trip And get Cost of Trip From": "Yolculuğu İptal Edip Ücretini Şuradan Alabilirsiniz:", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "Kaptan zamanında gelmezse iptal edebilirsiniz", + "You Dont Have Any amount in": "Hiç bakiyeniz yok:", + "You Dont Have Any places yet !": "Henüz kayıtlı yeriniz yok!", + "You Earn today is": "You Earn today is", + "You Have": "Bakiyeniz:", + "You Have Tips": "Bahşişiniz var", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "Bugün 3 yolculuğu reddettiniz, sebep bu \\nYarın görüşürüz!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "Bir sebep seçmelisiniz.", + "You Should choose rate figure": "Puan seçmelisiniz", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "Siliyorsunuz", + "You are Stopped": "Durduruldunuz", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "Yolcu konumuna yakın değilsiniz", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "Çevrimiçi kalmak için Puan satın alabilirsiniz\\naşağıdaki listeden", + "You can buy points from your budget": "Bütçenizden puan satın alabilirsiniz", + "You can call or record audio during this trip.": "Bu yolculuk sırasında arama yapabilir veya ses kaydedebilirsiniz.", + "You can call or record audio of this trip": "Arama yapabilir veya ses kaydedebilirsiniz", + "You can cancel Ride now": "Yolculuğu şimdi iptal edebilirsiniz", + "You can cancel trip": "Yolculuğu iptal edebilirsiniz", + "You can change the Country to get all features": "Tüm özellikleri almak için Ülkeyi değiştirebilirsiniz", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Uygulamanın dilini değiştirebilirsiniz", + "You can change the vibration feedback for all buttons": "Tüm butonlar için titreşimi değiştirebilirsiniz", + "You can claim your gift once they complete 2 trips.": "Onlar 2 yolculuk tamamlayınca hediyeni alabilirsin.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Yolculuk onaylandığında uygulama içi sohbeti kullanabilirsiniz.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Bize 12:00 - 19:00 saatleri arasında ulaşabilirsiniz.", + "You can decline a request without any cost": "Bir isteği ücretsiz reddedebilirsiniz", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Nakit veya kartla ödeyebilirsiniz. Onaylamadan önce yöntemi seçin.", + "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": "Tekrar gönderim süresi:", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "Hediyeyi hak ettiniz", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "Henüz Acil Durum Telefonu Eklemediniz!", + "You dont have Points": "Puanınız yok", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "Davet hediyenizi zaten aldınız", + "You have already used this promo code.": "Bu promosyon kodunu zaten kullandınız.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "Sürücüden aramanız var", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "Promosyon kodunu kopyaladınız.", + "You have earned 20": "20 kazandınız", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "Tüm haklarınızı doldurdunuz ", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "Davet için hediye kazandınız", + "You have in account": "Hesabınızda var", + "You have promo!": "Promosyonun var!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "E-postayı doğrulamalısınız!", + "You must be charge your Account": "Hesabınıza yükleme yapmalısınız", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "Dili değiştirmek için uygulamayı yeniden başlatmalısınız.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "Bunu yüklemeniz gerekiyor.", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Birini seçmelisiniz", + "You should select your country": "Ülkenizi seçmelisiniz", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "Yolculuk mesafesi:", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "Süre bittikten sonra hedefe varacaksınız.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Sürücüye ödeme yapacaksınız veya bir sonraki yolculukta sizden alacağız", + "You will be thier in": "Şu sürede orada olacaksınız:", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "Sipariş almak için 'Her zaman izin ver'i seçmelisiniz", + "You will choose one of above !": "Yukarıdakilerden birini seçmelisiniz!", + "You will get cost of your work for this trip": "Bu yolculuk için emeğinizin karşılığını alacaksınız", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "SMS ile bir kod alacaksınız", + "You will receive a code in WhatsApp Messenger": "WhatsApp üzerinden bir kod alacaksınız", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "Kodu SMS ile alacaksınız", + "Your Account is Deleted": "Hesabınız Silindi", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "Bütçeniz gerekenden az", + "Your Choice, Our Priority": "Sizin Seçiminiz, Bizim Önceliğimiz", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "Yolcu konumundan uzaksınız", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "Davet kodunuz başarıyla uygulandı!", + "Your journey starts here": "Yolculuğunuz burada başlıyor", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "Adınız", + "Your order is being prepared": "Siparişiniz hazırlanıyor", + "Your order sent to drivers": "Siparişiniz sürücülere gönderildi", + "Your password": "Your password", + "Your past trips will appear here.": "Geçmiş yolculuklarınız burada görünecek.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "Kişisel davet kodun:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "Yolculuk maliyetiniz:", + "Your trip distance is": "Yolculuk mesafeniz:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nAyrıca uygun fiyat önceliğimizdir, rekabetçi fiyatlarla yolculuğu erişilebilir kılıyoruz.", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "Devam etmek için Kullanım Şartları ve Gizlilik Politikasını kabul etmelisiniz.", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "Bir hata oluştu: @error", + "and I have a trip on": "ve şurada bir yolculuğum var:", + "and acknowledge our": "ve şunu kabul edin:", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq güvenli, güvenilir ve erişilebilir bir araç çağırma uygulamasıdır.", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "noktanıza varış zamanı", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "önce", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "Güvenliğe önem veriyoruz, tüm kaptanlarımız kontrolden geçer.", + "complete profile subtitle": "Başlamak için profilinizi tamamlayın", + "complete registration button": "Kaydı Tamamla", + "complete, you can claim your gift": "tamamlandı, hediyeni alabilirsin", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "oluşturulma zamanı", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "mesafe:", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "ehliyet", + "duration is": "süre:", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "E-posta (İsteğe Bağlı)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "Lütfen 5 haneli doğrulama kodunu girin", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "Yüz Algılama", + "failed to send otp": "Kod gönderilemedi.", + "false": "false", + "first name label": "Ad", + "first name required": "Ad gerekli", + "for": "için", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "ilk kaydınız için!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30'dan 10:30'a kadar", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00'den 15:00'e kadar", + "from 23:59 till 05:30": "23:59'dan 05:30'a kadar", + "from 3 times Take Attention": "3 denemeden, Dikkat Edin", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "listenden", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "Intaleq ile dakikalar içinde araç bulun.", + "get_to_destination": "Hedefinize hızlı ve kolay ulaşın.", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "yolcu iptal etmeden konumuna gidin", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "tamamladı", + "hi": "hi", + "hour": "saat", + "hours before trying again.": "hours before trying again.", + "i agree": "kabul ediyorum", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "hesabınız yoksa", + "if you want help you can email us here": "yardım isterseniz bize e-posta atabilirsiniz", + "image verified": "görüntü doğrulandı", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "tutar girin", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "katıldı", + "kilometer": "kilometer", + "last name label": "Soyad", + "last name required": "Soyad gerekli", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "login or register subtitle": "Giriş yapmak veya kayıt olmak için numaranızı girin", + "m": "dk", + "m at the agreed-upon location": "m at the agreed-upon location", + "m inviting you to try Siro.": "m inviting you to try Siro.", + "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": "Sürücüden Mesaj", + "message From passenger": "Yolcumuzdan mesaj", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "Model:", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "konumum", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "Benzer Değil", + "of": "/", + "on": "on", + "one last step title": "Son bir adım", + "otp sent subtitle": "5 haneli kod şuraya gönderildi:\\n@phoneNumber", + "otp sent success": "Kod WhatsApp'a başarıyla gönderildi.", + "otp verification failed": "Kod doğrulaması başarısız.", + "passenger agreement": "yolcu sözleşmesi", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "Telefon Numarası", + "phone number of driver": "phone number of driver", + "phone number required": "Telefon numarası gerekli", + "please go to picker location exactly": "lütfen tam olarak alım noktasına gidin", + "please order now": "Şimdi sipariş ver", + "please wait till driver accept your order": "sürücü siparişinizi kabul edene kadar bekleyin", + "points": "points", + "price is": "fiyat:", + "privacy policy": "gizlilik politikası.", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "Kayıt başarısız.", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "Güvenli ve konforlu yolculuğun tadını çıkarın.", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "saniye", + "security_warning": "security_warning", + "send otp button": "Doğrulama Kodu Gönder", + "server error try again": "Sunucu hatası, tekrar deneyin.", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "Benzer", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "kullanım şartları", + "the 300 points equal 300 L.E": "300 puan 300 TL eder", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "500 puan 30 TL eder", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "bu işlem cihazınızdaki tüm dosyaları silecek", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "Token değişikliği", + "token updated": "token güncellendi", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "yolculuk", + "true": "true", + "type here": "buraya yazın", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "Doğrula ve Devam Et", + "verify your number title": "Numaranızı Doğrulayın", + "vin": "vin", + "wait 1 minute to receive message": "mesajı almak için 1 dakika bekleyin", + "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 siro", + "welcome user": "Hoş geldin, @firstName!", + "welcome_message": "Intaleq'e Hoş Geldiniz!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "aracın rengini yaz", + "write Expiration Date for your car": "aracın son kullanma tarihini yaz", + "write Make for your car": "aracın markasını yaz", + "write Model for your car": "aracın modelini yaz", + "write Year for your car": "aracın yılını yaz", + "write comment here": "write comment here", + "write vin for your car": "aracın şasi numarasını yaz", + "year :": "Yıl:", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "kazandınız", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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": "Sürücüye ödeyeceksiniz", + "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 Siro Wallet", + "you will use this device?": "you will use this device?", + "your ride is Accepted": "yolculuğunuz Kabul Edildi", + "your ride is applied": "yolculuğunuz başvuruldu", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "Son Kullanma Tarihi", + "⚠️ You need to choose an amount!": "⚠️ Bir tutar seçmelisiniz!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 Cüzdan ile Öde", + "💳 Pay with Credit Card": "💳 Kredi Kartı ile Öde", +}; diff --git a/siro_driver/lib/controller/local/translations.dart b/siro_driver/lib/controller/local/translations.dart index 8fd100b..1e8d8ff 100755 --- a/siro_driver/lib/controller/local/translations.dart +++ b/siro_driver/lib/controller/local/translations.dart @@ -2,6 +2,18 @@ import 'package:get/get.dart'; import 'ar_sy.dart'; import 'ar_eg.dart'; import 'ar_jo.dart'; +import 'en.dart'; +import 'de.dart'; +import 'el.dart'; +import 'es.dart'; +import 'fa.dart'; +import 'fr.dart'; +import 'hi.dart'; +import 'it.dart'; +import 'ru.dart'; +import 'tr.dart'; +import 'ur.dart'; +import 'zh.dart'; class MyTranslation extends Translations { @override @@ -10,5 +22,17 @@ class MyTranslation extends Translations { "ar-SY": ar_sy, "ar-EG": ar_eg, "ar-JO": ar_jo, + "en": en, + "de": de, + "el": el, + "es": es, + "fa": fa, + "fr": fr, + "hi": hi, + "it": it, + "ru": ru, + "tr": tr, + "ur": ur, + "zh": zh, }; } diff --git a/siro_driver/lib/controller/local/ur.dart b/siro_driver/lib/controller/local/ur.dart new file mode 100644 index 0000000..70ab6c4 --- /dev/null +++ b/siro_driver/lib/controller/local/ur.dart @@ -0,0 +1,2662 @@ +final Map ur = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " اور ہماری رازداری کی پالیسی کو تسلیم کریں۔", + " is ON for this month": " اس مہینے کے لیے آن ہے", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "1. اپنا مسئلہ بیان کریں", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 اور 4% ڈسکاؤنٹ حاصل کریں", + "100 and get 11% discount": "100 اور 11% ڈسکاؤنٹ حاصل کریں", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "2. ریکارڈ شدہ آڈیو منسلک کریں", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 اور 6% ڈسکاؤنٹ حاصل کریں", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "3. تفصیلات اور جواب کا جائزہ لیں", + "300 LE": "300 LE", + "3000 LE": "3000 روپیہ", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 اور 8% ڈسکاؤنٹ حاصل کریں", + "5 digit": "5 ہندسے", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "پیشگی ریزرویشن کے ساتھ سفر، جو آپ کو بہترین کپتانوں اور کاروں کا انتخاب کرنے کی اجازت دیتا ہے۔", + "AI Page": "AI صفحہ", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "ہمارے بارے میں", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "آرڈر قبول کریں", + "Accept Ride": "Accept Ride", + "Accepted Ride": "قبول شدہ سفر", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "فعال دورانیہ:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "کارڈ شامل کریں", + "Add Credit Card": "کریڈٹ کارڈ شامل کریں", + "Add Home": "گھر شامل کریں", + "Add Location": "لوکیشن شامل کریں", + "Add Location 1": "لوکیشن 1 شامل کریں", + "Add Location 2": "لوکیشن 2 شامل کریں", + "Add Location 3": "لوکیشن 3 شامل کریں", + "Add Location 4": "لوکیشن 4 شامل کریں", + "Add Payment Method": "ادائیگی کا طریقہ شامل کریں", + "Add Phone": "فون شامل کریں", + "Add Promo": "پرومو شامل کریں", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "اسٹاپس شامل کریں", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "ہمارے محفوظ طریقوں سے فنڈز شامل کریں", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "پتہ", + "Address:": "Address:", + "Admin DashBoard": "ایڈمن ڈیش بورڈ", + "Affordable for Everyone": "ہر ایک کے لیے سستا", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "الرٹس", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "لوکیشن تک رسائی کی اجازت دیں", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "ادائیگی کے عمل کے دوران ایک خرابی پیش آ گئی۔", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "رابطے منتخب کرتے وقت ایک خرابی پیش آ گئی:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "ایک غیر متوقع خرابی پیش آ گئی۔ براہ کرم دوبارہ کوشش کریں۔", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "مسافر کے ساتھ ایپ", + "Applied": "درخواست دی گئی", + "Apply": "Apply", + "Apply Order": "آرڈر لاگو کریں", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "آپ کے علاقے کے قریب پہنچ رہا ہوں۔ 3 منٹ میں وہاں ہونا چاہیے۔", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "کیا آپ واقعی جانا چاہتے ہیں", + "Are you Sure to LogOut?": "کیا آپ واقعی لاگ آؤٹ کرنا چاہتے ہیں؟", + "Are you sure to cancel?": "کیا آپ منسوخ کرنے کے لیے یقینی ہیں؟", + "Are you sure to delete recorded files": "کیا آپ واقعی ریکارڈ شدہ فائلیں حذف کرنا چاہتے ہیں", + "Are you sure to delete this location?": "کیا آپ واقعی اس لوکیشن کو ڈیلیٹ کرنا چاہتے ہیں؟", + "Are you sure to delete your account?": "کیا آپ واقعی اپنا اکاؤنٹ حذف کرنا چاہتے ہیں؟", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "کیا آپ کو یقین ہے؟ یہ عمل واپس نہیں کیا جا سکتا۔", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "کیا آپ اس جگہ جانا چاہتے ہیں", + "Are you want to go to this site": "کیا آپ اس جگہ جانا چاہتے ہیں", + "Are you want to wait drivers to accept your order": "کیا آپ چاہتے ہیں کہ ڈرائیورز آپ کا آرڈر قبول کرنے کا انتظار کریں", + "Arrival time": "پہنچنے کا وقت", + "Associate Degree": "ایسوسی ایٹ ڈگری", + "Attach this audio file?": "کیا یہ آڈیو فائل منسلک کریں؟", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "آڈیو کامیابی سے اپ لوڈ ہو گئی۔", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "سواریوں کے لیے دستیاب", + "Average of Hours of": "گھنٹوں کی اوسط", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "سستی کار", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "بحرین", + "Balance": "بیلنس", + "Balance limit exceeded": "بیلنس کی حد سے تجاوز", + "Balance not enough": "بیلنس کافی نہیں ہے", + "Balance:": "بیلنس:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "آہستہ رہیں", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "براہ کرم درست تصاویر لینے کا یقین کریں\\nآپ کے پاس ہے", + "Be sure to use it quickly! This code expires at": "اسے جلدی استعمال کرنا یقینی بنائیں! یہ کوڈ ختم ہو جائے گا", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "چونکہ ہم قریب ہیں، آپ کے پاس انتخاب کی لچک ہے۔", + "Before we start, please review our terms.": "شروع کرنے سے پہلے، براہ کرم ہماری شرائط کا جائزہ لیں۔", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "شہروں کے لیے بہترین انتخاب", + "Best choice for comfort car and flexible route and stops point": "آرام دہ کار اور لچکدار راستے اور اسٹاپس پوائنٹ کے لیے بہترین انتخاب", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "پیدائش کی تاریخ", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "بکنگ فیس", + "Bottom Bar Example": "باٹم بار مثال", + "But you have a negative salary of": "لیکن آپ کی منفی تنخواہ ہے", + "CODE": "کوڈ", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "کال ختم", + "Call Ended": "Call Ended", + "Call Income": "آنے والی کال", + "Call Income from Driver": "ڈرائیور کی طرف سے کال", + "Call Income from Passenger": "مسافر کی طرف سے کال", + "Call Left": "بقیہ کالز", + "Call Options": "Call Options", + "Call Page": "کال پیج", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "کیمرے تک رسائی مسترد کر دی گئی۔", + "Camera not initialized yet": "کیمرہ ابھی تک شروع نہیں ہوا", + "Camera not initilaized yet": "کیمرہ ابھی تک شروع نہیں ہوا", + "Can I cancel my ride?": "کیا میں اپنی سواری منسوخ کر سکتا ہوں؟", + "Can we know why you want to cancel Ride ?": "کیا ہم جان سکتے ہیں کہ آپ کیوں منسوخ کرنا چاہتے ہیں؟", + "Cancel": "منسوخ کریں", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "سفر منسوخ کریں", + "Cancel Search": "تلاش منسوخ کریں", + "Cancel Trip": "سفر منسوخ کریں", + "Cancel Trip from driver": "ڈرائیور کی طرف سے سفر منسوخ", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "منسوخ", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "مزید چھوٹ لاگو نہیں کی جا سکتی۔", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "اپنے پولیس کلیئرنس کی تصویر لیں", + "Capture an Image of Your Driver License": "اپنے ڈرائیونگ لائسنس کی تصویر لیں", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "اپنے شناختی کارڈ کی پشت کی تصویر لیں", + "Capture an Image of Your ID Document front": "اپنے شناختی کارڈ کے سامنے کی تصویر لیں", + "Capture an Image of Your car license back": "اپنی گاڑی کے لائسنس کی پشت کی تصویر لیں", + "Capture an Image of Your car license front": "اپنی گاڑی کی رجسٹریشن کے سامنے کی تصویر لیں", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "کار", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "کار کی تفصیلات", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "کار لائسنس کارڈ", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "کارڈ نمبر", + "Card Payment": "Card Payment", + "CardID": "کارڈ آئی ڈی", + "Cash": "نقد", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "ملک تبدیل کریں", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "چیسس", + "Check back later for new offers!": "نئی پیشکشوں کے لیے بعد میں دوبارہ چیک کریں!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "زبان منتخب کریں", + "Choose a contact option": "رابطے کا اختیار منتخب کریں", + "Choose between those Type Cars": "ان قسم کی کاروں کے درمیان انتخاب کریں", + "Choose from Map": "نقشے سے منتخب کریں", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "وہ آپشن منتخب کریں جو آپ کے لیے موزوں ہو۔", + "Choose who this order is for": "منتخب کریں کہ یہ آرڈر کس کے لیے ہے", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "شہر", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "دعوت دینے پر اپنا 20 روپے کا تحفہ حاصل کریں", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "اسے نقشے میں دکھانے کے لیے یہاں کلک کریں", + "Close": "بند کریں", + "Closest & Cheapest": "سب سے قریب اور سستا", + "Closest to You": "آپ کے قریب ترین", + "Code": "کوڈ", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "کوڈ منظور نہیں ہوا", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "رنگ", + "Color is": "Color is", + "Comfort": "آرام دہ (Comfort)", + "Comfort choice": "آرام دہ انتخاب", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "مواصلات", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "شکایت", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "اس سفر کے لیے شکایت درج نہیں کی جا سکتی۔ ہو سکتا ہے یہ مکمل یا شروع نہ ہوا ہو۔", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "تصدیق کریں", + "Confirm & Find a Ride": "تصدیق کریں اور سواری تلاش کریں", + "Confirm Attachment": "منسلک کرنے کی تصدیق کریں", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "انتخاب کی تصدیق کریں", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "اپنے ای میل کی تصدیق کریں", + "Confirmation": "Confirmation", + "Connected": "منسلک", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "رابطے کے اختیارات", + "Contact Support": "سپورٹ سے رابطہ کریں", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "ہم سے رابطہ کریں", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "رابطے منتخب کرنے کے لیے رابطے کی اجازت درکار ہے۔", + "Contact us for any questions on your order.": "اپنے آرڈر پر کسی بھی سوال کے لیے ہم سے رابطہ کریں۔", + "Contacts Loaded": "رابطے لوڈ ہو گئے", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "جاری رکھیں", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "کاپی", + "Copy Code": "کوڈ کاپی کریں", + "Copy this Promo to use it in your Ride!": "اپنی سواری میں استعمال کرنے کے لیے اس پرومو کو کاپی کریں!", + "Cost": "Cost", + "Cost Duration": "لاگت کا دورانیہ", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "دنوں میں گھنٹوں کی گنتی", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "اپنے پیسے وصول کرنے کے لیے والٹ بنائیں", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "پولیس کلیئرنس درکار ہے", + "Criminal Record": "پولیس کلیئرنس", + "Cropper": "کروپر", + "Current Balance": "موجودہ بیلنس", + "Current Location": "موجودہ لوکیشن", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "کسٹمر نہیں ملا", + "Customer phone is not active": "کسٹمر کا فون ایکٹو نہیں ہے", + "DISCOUNT": "ڈسکاؤنٹ", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "تاریخ", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "پیدائش کی تاریخ ہے:", + "Date of Birth:": "Date of Birth:", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "میرا اکاؤنٹ ڈیلیٹ کریں", + "Delete Permanently": "مستقل طور پر ڈیلیٹ کریں", + "Deleted": "حذف کر دیا گیا", + "Delivery": "Delivery", + "Destination": "منزل", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "اپنا چہرہ شناخت کریں ", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "ڈسپلیسمنٹ", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "کیا آپ کے پاس کسی دوسرے ڈرائیور کا دعوتی کوڈ ہے؟", + "Do you want to change Home location": "کیا آپ گھر کی لوکیشن تبدیل کرنا چاہتے ہیں", + "Do you want to change Work location": "کیا آپ کام کی جگہ تبدیل کرنا چاہتے ہیں", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "کیا آپ اس ڈرائیور کے لیے ٹپ ادا کرنا چاہتے ہیں", + "Docs": "Docs", + "Doctoral Degree": "ڈاکٹریٹ ڈگری", + "Document Number:": "Document Number:", + "Documents check": "دستاویزات کی جانچ", + "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 Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "ابھی ایپ ڈاؤن لوڈ کریں:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "ڈرائیور", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "ڈرائیور نے آپ کے لیے سفر قبول کر لیا", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "ڈرائیور نے آپ کے لیے سفر کی درخواست دی", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "ڈرائیور نے آپ کا سفر منسوخ کر دیا", + "Driver Car Plate": "ڈرائیور کار پلیٹ", + "Driver Finish Trip": "ڈرائیور نے سفر ختم کر دیا", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "ڈرائیور مسافر کی طرف جا رہا ہے", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "ڈرائیور کا نام", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "ڈرائیور رجسٹریشن", + "Driver Registration & Requirements": "ڈرائیور رجسٹریشن اور تقاضے", + "Driver Wallet": "ڈرائیور والٹ", + "Driver already has 2 trips within the specified period.": "مقررہ مدت میں ڈرائیور کے پاس پہلے ہی 2 سفر ہیں۔", + "Driver is on the way": "ڈرائیور راستے میں ہے", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "ڈرائیور پک اپ پر انتظار کر رہا ہے۔", + "Driver joined the channel": "ڈرائیور چینل میں شامل ہو گیا", + "Driver left the channel": "ڈرائیور نے چینل چھوڑ دیا", + "Driver phone": "ڈرائیور کا فون", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "ڈرائیونگ لائسنس کلاس", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "دورانیہ ہے", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "پروفائل میں ترمیم کریں", + "Edit Your data": "اپنے ڈیٹا میں ترمیم کریں", + "Education": "تعلیم", + "Egypt": "مصر", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "الیکٹرک", + "Email": "Email", + "Email Us": "ہمیں ای میل کریں", + "Email Wrong": "ای میل غلط ہے", + "Email is": "ای میل ہے:", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "جو ای میل آپ نے درج کیا ہے وہ غلط ہے۔", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "روزگار کی قسم", + "Enable Location": "لوکیشن آن کریں", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "سفر ختم کریں", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "محفوظ اور آرام دہ سواری کا لطف اٹھائیں۔", + "Enjoy competitive prices across all trip options, making travel accessible.": "مسابقتی قیمتوں کا لطف اٹھائیں۔", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "اپنا پہلا نام درج کریں", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "فون درج کریں", + "Enter phone number": "Enter phone number", + "Enter promo code": "پرومو کوڈ درج کریں", + "Enter promo code here": "پرومو کوڈ یہاں درج کریں", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "پرومو کوڈ درج کریں اور حاصل کریں", + "Enter your City": "Enter your City", + "Enter your Note": "اپنا نوٹ درج کریں", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "اپنی شکایت یہاں لکھیں...", + "Enter your email": "Enter your email", + "Enter your email address": "اپنا ای میل ایڈریس درج کریں", + "Enter your feedback here": "اپنا فیڈ بیک یہاں درج کریں", + "Enter your first name": "اپنا پہلا نام درج کریں", + "Enter your last name": "اپنا آخری نام درج کریں", + "Enter your password": "Enter your password", + "Enter your phone number": "اپنا فون نمبر درج کریں", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "خرابی", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "میعاد ختم ہونے کی تاریخ", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "میعاد ختم ہونے کی تاریخ", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "چہرے کی شناخت کا نتیجہ", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "تیز ترین شکایت کا جواب", + "Favorite Places": "Favorite Places", + "Fee is": "فیس ہے", + "Feed Back": "فیڈ بیک", + "Feedback": "فیڈ بیک", + "Feedback data saved successfully": "فیڈ بیک ڈیٹا کامیابی سے محفوظ ہو گیا", + "Female": "عورت", + "Find answers to common questions": "عام سوالات کے جوابات تلاش کریں", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "نگرانی ختم کریں", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "پہلا نام", + "First Trip": "First Trip", + "First name": "پہلا نام", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "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 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 Siro 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": "اکثر پوچھے گئے سوالات", + "Fri": "Fri", + "From": "سے", + "From :": "سے :", + "From : Current Location": "سے: موجودہ لوکیشن", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "ایندھن", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "پورا نام", + "FullName": "پورا نام", + "GPS Required Allow !.": "GPS کی اجازت درکار ہے!.", + "Gender": "جنس", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "Get": "Get", + "Get Details of Trip": "سفر کی تفصیلات حاصل کریں", + "Get Direction": "سمت حاصل کریں", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get features for your country": "Get features for your country", + "Get it Now!": "ابھی حاصل کریں!", + "Get to your destination quickly and easily.": "اپنی منزل پر تیزی اور آسانی سے پہنچیں۔", + "Getting Started": "شروع کرنا", + "Gift Already Claimed": "تحفہ پہلے ہی حاصل کیا جا چکا ہے", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "پسندیدہ مقامات پر جائیں", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "اگلے قدم پر جائیں\\nکار لائسنس اسکین کریں۔", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "اب مسافر کی لوکیشن پر جائیں", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "اس ہدف پر جائیں", + "Go to this location": "اس لوکیشن پر جائیں", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "H اور", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "کیا آپ کے پاس پرومو کوڈ ہے؟", + "Head": "Head", + "Heading your way now. Please be ready.": "اب آپ کے راستے کی طرف بڑھ رہا ہوں۔ براہ کرم تیار رہیں۔", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "ہیلو یہ کپتان ہے", + "Hello this is Driver": "ہیلو یہ ڈرائیور ہے", + "Help & Support": "Help & Support", + "Help Details": "مدد کی تفصیلات", + "Helping Center": "ہیلپنگ سینٹر", + "Helping Page": "Helping Page", + "Here recorded trips audio": "یہاں ریکارڈ شدہ دوروں کی آڈیو", + "Hi": "ہیلو", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "سلام، میں اب جا رہا ہوں", + "Hi! This is": "ہیلو! یہ ہے", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "ہائی اسکول ڈپلومہ", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "سفر کی تاریخ", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "میں اپنی سواری کے لیے ادائیگی کیسے کر سکتا ہوں؟", + "How can I register as a driver?": "میں بطور ڈرائیور کیسے رجسٹر ہو سکتا ہوں؟", + "How do I communicate with the other party (passenger/driver)?": "میں دوسرے فریق سے کیسے بات کروں؟", + "How do I request a ride?": "میں سواری کی درخواست کیسے کروں؟", + "How many hours would you like to wait?": "آپ کتنے گھنٹے انتظار کرنا چاہیں گے؟", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "میں متفق ہوں", + "I Arrive": "I Arrive", + "I Arrive your site": "میں آپ کی لوکیشن پر پہنچ گیا", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "میں نے غلط لوکیشن شامل کی", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "میں آپ کے پاس پہنچ گیا", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "میں چہرے کی شناخت میں آپ کی ایپ میں رجسٹر نہیں ہو سکتا ", + "I want to order for myself": "میں اپنے لیے آرڈر کرنا چاہتا ہوں", + "I want to order for someone else": "میں کسی اور کے لیے آرڈر کرنا چاہتا ہوں", + "I was just trying the application": "میں صرف ایپلیکیشن آزما رہا تھا", + "I will go now": "میں اب جاؤں گا", + "I will slow down": "میں رفتار کم کروں گا", + "I've arrived.": "I've arrived.", + "ID Documents Back": "شناختی دستاویزات کی پشت", + "ID Documents Front": "شناختی دستاویزات کا سامنے کا حصہ", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "اگر آپ کار میں ہیں تو سفر شروع کریں دبائیں", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "اگر آپ کو مدد کی ضرورت ہو تو ہم سے رابطہ کریں", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "اگر آپ اسٹاپ شامل کرنا چاہتے ہیں تو یہاں کلک کریں", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "اگر آپ چاہتے ہیں کہ جب آپ آرڈر لاگو کریں تو گوگل میپ ایپ براہ راست چلے", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "تصویر کی شناخت کا نتیجہ ہے ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "ان-ایپ VOIP کالز", + "Including Tax": "ٹیکس سمیت", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "⚠️ غلط SMS کوڈ۔ براہ کرم دوبارہ کوشش کریں۔", + "Increase Fare": "کرایہ بڑھائیں", + "Increase Fee": "فیس بڑھائیں", + "Increase Your Trip Fee (Optional)": "اپنی ٹرپ فیس بڑھائیں (اختیاری)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "کرایہ بڑھانے سے مزید ڈرائیور متوجہ ہو سکتے ہیں۔ کیا آپ قیمت بڑھانا چاہیں گے؟", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "درج کریں", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "ایمرجنسی نمبر درج کریں", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "اپنا پرومو کوڈ درج کریں", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "معائنے کی تاریخ", + "InspectionResult": "معائنے کا نتیجہ", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "غلط MPIN", + "Invalid OTP": "غلط OTP", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "دعوت نامہ استعمال ہو چکا ہے", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "دعوت نامہ کامیابی سے بھیج دیا گیا", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "کیا مسافر آپ کی کار میں ہے؟", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "اجراء کی تاریخ", + "IssueDate": "اجراء کی تاریخ", + "JOD": "روپیہ", + "Join": "شامل ہوں", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "اردن", + "Just now": "Just now", + "KM": "کلو میٹر", + "Keep it up!": "جاری رکھیں!", + "Kuwait": "کویت", + "L.E": "L.E", + "L.S": "L.S", + "LE": "روپیہ", + "Lady": "خواتین", + "Lady Captain for girls": "خواتین کے لیے لیڈی کیپٹن", + "Lady Captains Available": "خواتین کپتان دستیاب ہیں", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "زبان", + "Language Options": "زبان کے اختیارات", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "آخری نام", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "تازہ ترین حالیہ سفر", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "چھوڑیں", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "آئیے کار لائسنس چیک کریں ", + "Lets check License Back Face": "آئیے لائسنس کے پچھلے حصے کو چیک کریں", + "License Categories": "لائسنس کے زمرے", + "License Expiry Date": "License Expiry Date", + "License Type": "لائسنس کی قسم", + "Link a phone number for transfers": "ٹرانسفر کے لیے فون نمبر لنک کریں", + "Location Access Required": "Location Access Required", + "Location Link": "لوکیشن لنک", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "لاگ آف", + "Log Out Page": "لاگ آؤٹ صفحہ", + "Login": "Login", + "Login Captin": "کپتان لاگ ان", + "Login Driver": "لاگ ان ڈرائیور", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "کم ترین قیمت حاصل کی گئی", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "بنایا گیا :", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "میک", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "مرد", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "نقشہ مسافر", + "Marital Status": "ازدواجی حیثیت", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "زیادہ سے زیادہ کرایہ", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "کم از کم کرایہ", + "Minute": "منٹ", + "Minutes": "Minutes", + "Mishwar Vip": "مشوار VIP", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "ماڈل", + "Model is": "ماڈل ہے:", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "صبح", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "انتہائی محفوظ طریقے", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "پن کو ایڈجسٹ کرنے کے لیے نقشہ منتقل کریں", + "Mute": "Mute", + "My Balance": "میرا بیلنس", + "My Card": "میرا کارڈ", + "My Cared": "میرے کارڈز", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "میرا پروفائل", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "میری موجودہ لوکیشن ہے:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "میری لوکیشن", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "نام", + "Name (Arabic)": "نام (اردو)", + "Name (English)": "نام (انگریزی)", + "Name :": "نام :", + "Name in arabic": "عربی میں نام", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "شناختی کارڈ", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "قومی نمبر", + "NationalID": "شناختی کارڈ نمبر", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "اگلا", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "رات", + "No": "نہیں", + "No ,still Waiting.": "نہیں، ابھی بھی انتظار کر رہا ہوں۔", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "آپ کی جگہ پر کوئی کار نہیں۔ معذرت!", + "No Car or Driver Found in your area.": "آپ کے علاقے میں کوئی کار یا ڈرائیور نہیں ملا۔", + "No I want": "نہیں میں چاہتا ہوں", + "No Promo for today .": "آج کے لیے کوئی پرومو نہیں ہے۔", + "No Response yet.": "ابھی تک کوئی جواب نہیں ملا۔", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "کوئی سم کارڈ نہیں، کوئی مسئلہ نہیں! ہماری ایپ کے ذریعے براہ راست اپنے ڈرائیور کو کال کریں۔", + "No accepted orders? Try raising your trip fee to attract riders.": "کوئی قبول شدہ آرڈر نہیں؟ سواروں کو راغب کرنے کے لیے اپنی ٹرپ فیس بڑھانے کی کوشش کریں۔", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "کوئی آڈیو فائل نہیں ملی۔", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "کوئی رابطہ نہیں ملا", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "آپ کے آلے پر فون نمبرز کے ساتھ کوئی رابطہ نہیں ملا۔", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "کسی ڈرائیور نے میری درخواست قبول نہیں کی", + "No drivers accepted your request yet": "ابھی تک کسی ڈرائیور نے آپ کی درخواست قبول نہیں کی", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "کوئی چہرہ شناخت نہیں ہوا", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "ابھی تک کوئی تصویر منتخب نہیں کی گئی", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "ابھی تک کوئی دعوت نامہ نہیں ملا!", + "No one accepted? Try increasing the fare.": "کسی نے قبول نہیں کیا؟ کرایہ بڑھانے کی کوشش کریں۔", + "No orders available": "No orders available", + "No passenger found for the given phone number": "دیے گئے فون نمبر کے لیے کوئی مسافر نہیں ملا", + "No phone number": "No phone number", + "No promos available right now.": "ابھی کوئی پرومو دستیاب نہیں ہے۔", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "ابھی تک کوئی سواری نہیں ملی", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "کوئی سفری تاریخ نہیں ملی", + "No trip yet found": "ابھی تک کوئی سفر نہیں ملا", + "No user found for the given phone number": "دیے گئے فون نمبر کے لیے کوئی صارف نہیں ملا", + "No wallet record found": "کوئی والٹ ریکارڈ نہیں ملا", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "نہیں، شکریہ", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "منسلک نہیں", + "Not set": "سیٹ نہیں", + "Not updated": "Not updated", + "Notifications": "اطلاعات", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "پیشہ", + "Offline": "Offline", + "Ok": "ٹھیک ہے", + "Ok , See you Tomorrow": "ٹھیک ہے، کل ملتے ہیں", + "Ok I will go now.": "ٹھیک ہے، میں اب جا رہا ہوں۔", + "Old and affordable, perfect for budget rides.": "پرانی اور سستی، بجٹ سواریوں کے لیے بہترین۔", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "ترتیبات کھولیں", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "یا اس کے بجائے نقد ادائیگی کریں", + "Order": "آرڈر", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "آرڈر لاگو ہو گیا", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "آرڈر مسافر کی طرف سے منسوخ کر دیا گیا", + "Order Details Siro": "Order Details Siro", + "Order History": "آرڈر ہسٹری", + "Order ID": "Order ID", + "Order Request Page": "آرڈر کی درخواست کا صفحہ", + "Order Under Review": "Order Under Review", + "Order for myself": "اپنے لیے آرڈر", + "Order for someone else": "کسی اور کے لیے آرڈر", + "OrderId": "آرڈر آئی ڈی", + "OrderVIP": "VIP آرڈر", + "Orders Page": "Orders Page", + "Origin": "اصل", + "Original Fare": "Original Fare", + "Other": "دیگر", + "Our dedicated customer service team ensures swift resolution of any issues.": "ہماری کسٹمر سروس ٹیم مسائل کے فوری حل کو یقینی بناتی ہے۔", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "مالک کا نام", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "مسافر نے سفر منسوخ کر دیا", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "مسافر آپ کی طرف آ رہا ہے", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "پاس ورڈ کم از کم 6 حروف کا ہونا چاہیے۔", + "Paste WhatsApp location link": "واٹس ایپ لوکیشن لنک پیسٹ کریں", + "Paste location link here": "لوکیشن لنک یہاں پیسٹ کریں", + "Paste the code here": "کوڈ یہاں پیسٹ کریں", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "کپتان کو براہ راست ادائیگی کریں", + "Pay from my budget": "میرے بجٹ سے ادا کریں", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "کریڈٹ کارڈ سے ادائیگی کریں", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "والٹ سے ادائیگی کریں", + "Pay with Your": "اپنے ساتھ ادا کریں", + "Pay with Your PayPal": "اپنے پے پال سے ادائیگی کریں", + "Payment Failed": "ادائیگی ناکام ہو گئی", + "Payment History": "ادائیگی کی تاریخ", + "Payment Method": "ادائیگی کا طریقہ", + "Payment Method:": "Payment Method:", + "Payment Options": "ادائیگی کے اختیارات", + "Payment Successful": "ادائیگی کامیاب", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "ادائیگیاں", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "ان مہم جوئی کرنے والوں کے لیے بہترین جو کچھ نیا اور دلچسپ تجربہ کرنا چاہتے ہیں", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "جدید ترین کار ماڈلز کے متلاشی مسافروں کے لیے بہترین", + "Permission denied": "اجازت مسترد کر دی گئی", + "Personal Information": "ذاتی معلومات", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "فون نمبر ہے:", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "نقشے سے منتخب کریں", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "نقشے سے اپنی منزل منتخب کریں", + "Pick your ride location on the map - Tap to confirm": "نقشے پر اپنی سواری کی لوکیشن منتخب کریں - تصدیق کے لیے ٹیپ کریں", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "پلیٹ", + "Plate Number": "پلیٹ نمبر", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "براہ کرم انتظار کریں اگر مسافر منسوخ کرنا چاہے!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "براہ کرم درج کریں", + "Please enter Your Email.": "براہ کرم اپنا ای میل درج کریں۔", + "Please enter Your Password.": "براہ کرم اپنا پاس ورڈ درج کریں۔", + "Please enter a correct phone": "براہ کرم درست فون نمبر درج کریں", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "براہ کرم فون نمبر درج کریں", + "Please enter a valid 16-digit card number": "براہ کرم درست 16 ہندسوں کا کارڈ نمبر درج کریں", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "براہ کرم ایک درست پرومو کوڈ درج کریں", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "براہ کرم CVV کوڈ درج کریں", + "Please enter the cardholder name": "براہ کرم کارڈ ہولڈر کا نام درج کریں", + "Please enter the complete 6-digit code.": "براہ کرم مکمل 6 ہندسوں کا کوڈ درج کریں۔", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "براہ کرم میعاد ختم ہونے کی تاریخ درج کریں", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "براہ کرم اپنا شہر درج کریں۔", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "براہ کرم اپنا سوال درج کریں۔", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "براہ کرم اپنا فیڈ بیک درج کریں۔", + "Please enter your first name.": "براہ کرم اپنا پہلا نام درج کریں۔", + "Please enter your last name.": "براہ کرم اپنا آخری نام درج کریں۔", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "براہ کرم اپنا فون نمبر درج کریں۔", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "براہ کرم ڈرائیور کے پاس جائیں", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "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 Siro 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 select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "براہ کرم اپنی شناخت کی تصدیق کریں", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "براہ کرم سفر شروع کرنے سے پہلے مسافر کے کار میں داخل ہونے کا انتظار کریں۔", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "پوائنٹ", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "ممکنہ سیکیورٹی خطرات کا پتہ چلا۔ ہو سکتا ہے ایپلیکیشن صحیح کام نہ کرے۔", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "رازداری کی پالیسی", + "Profile": "پروفائل", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "پرومو", + "Promo Already Used": "پرومو پہلے ہی استعمال ہو چکا ہے", + "Promo Code": "پرومو کوڈ", + "Promo Code Accepted": "پرومو کوڈ قبول ہو گیا", + "Promo Copied!": "پرمو کاپی ہو گیا!", + "Promo End !": "پرومو ختم!", + "Promo Ended": "پرومو ختم ہو گیا", + "Promo code copied to clipboard!": "پرومو کوڈ کلپ بورڈ پر کاپی ہو گیا!", + "Promos": "پروموز", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "ادائیگی منسوخ ہو گئی۔", + "Qatar": "قطر", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "فوری اقدامات", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "خاموش اور ماحول دوست", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "کپتان کو ریٹ کریں", + "Rate Driver": "ڈرائیور کو ریٹ کریں", + "Rate Our App": "Rate Our App", + "Rate Passenger": "مسافر کو ریٹ کریں", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "آنا جانا (Round Trip)", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "آنا جانا: شہروں کے درمیان آسان سفر کے لیے راؤنڈ ٹرپ سروس، آسان اور قابل اعتماد۔", + "Reason": "Reason", + "Recent Places": "حالیہ مقامات", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "میرا اکاؤنٹ ریچارج کریں", + "Record": "Record", + "Record saved": "ریکارڈ محفوظ ہو گیا", + "Recorded Trips (Voice & AI Analysis)": "ریکارڈ شدہ سفر (آواز اور AI تجزیہ)", + "Recorded Trips for Safety": "حفاظت کے لیے ریکارڈ شدہ سفر", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "آرڈر مسترد کریں", + "Refused": "Refused", + "Register": "رجسٹر کریں", + "Register Captin": "کپتان رجسٹر", + "Register Driver": "ڈرائیور رجسٹر کریں", + "Register as Driver": "بطور ڈرائیور رجسٹر کریں", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "مذہب", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "کوڈ دوبارہ بھیجیں", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "سفر کا انتظام", + "Ride Status": "Ride Status", + "Ride Summaries": "سواری کے خلاصے", + "Ride Summary": "سواری کا خلاصہ", + "Ride Today :": "Ride Today :", + "Ride Wallet": "سفر والٹ", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "سواریاں", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "سفر کے راستے", + "Route Not Found": "روٹ نہیں ملا", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "SOS فون", + "SUBMIT": "SUBMIT", + "SYP": "شامی پاؤن", + "Safety & Security": "حفاظت اور سیکیورٹی", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "سعودی عرب", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "کریڈٹ کارڈ محفوظ کریں", + "Saved Sucssefully": "کامیابی سے محفوظ ہو گیا", + "Scan Driver License": "ڈرائیونگ لائسنس اسکین کریں", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "آئی ڈی MklGoogle اسکین کریں", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "آئی ڈی اسکین کریں", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "سکوٹر", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "راستے کا نقطہ تلاش کریں", + "Search for your Start point": "اپنا نقطہ آغاز تلاش کریں", + "Search for your destination": "اپنی منزل تلاش کریں", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "قریب ترین کپتان کی تلاش جاری ہے...", + "Security Warning": "⚠️ سیکیورٹی وارننگ", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "راستے میں ملتے ہیں!", + "Select Country": "ملک منتخب کریں", + "Select Date": "تاریخ منتخب کریں", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "آرڈر کی قسم منتخب کریں", + "Select Payment Amount": "ادائیگی کی رقم منتخب کریں", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "وقت منتخب کریں", + "Select Waiting Hours": "انتظار کے اوقات منتخب کریں", + "Select Your Country": "اپنا ملک منتخب کریں", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "ایک پیغام منتخب کریں", + "Select recorded trip": "ریکارڈ شدہ سفر منتخب کریں", + "Select your destination": "اپنی منزل منتخب کریں", + "Select your preferred language for the app interface.": "ایپ انٹرفیس کے لیے اپنی پسندیدہ زبان منتخب کریں۔", + "Selected Date": "منتخب کردہ تاریخ", + "Selected Date and Time": "منتخب کردہ تاریخ اور وقت", + "Selected Location": "Selected Location", + "Selected Time": "منتخب کردہ وقت", + "Selected driver": "منتخب ڈرائیور", + "Selected file:": "منتخب کردہ فائل:", + "Send Email": "Send Email", + "Send Invite": "دعوت نامہ بھیجیں", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "تصدیقی کوڈ بھیجیں", + "Send Verification Code": "تصدیقی کوڈ بھیجیں", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "حسب ضرورت پیغام بھیجیں", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "سیشن ختم ہو گیا۔ براہ کرم دوبارہ لاگ ان کریں۔", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "والٹ فون نمبر سیٹ کریں", + "Set pickup location": "پک اپ لوکیشن سیٹ کریں", + "Setting": "سیٹنگ", + "Settings": "ترتیبات", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "ایپ شیئر کریں", + "Share Code": "Share Code", + "Share Trip Details": "سفر کی تفصیلات شیئر کریں", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "اس کوڈ کو اپنے دوستوں کے ساتھ شیئر کریں اور انعامات حاصل کریں!", + "Share via": "Share via", + "Share with friends and earn rewards": "دوستوں کے ساتھ شیئر کریں اور انعامات حاصل کریں", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "دعوت نامے دکھائیں", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "پروموز دکھائیں", + "Show Promos to Charge": "چارج کرنے کے لیے پروموز دکھائیں", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "تازہ ترین پرومو دکھائیں", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "دکھا رہا ہے", + "Sign In by Apple": "ایپل کے ذریعے سائن ان کریں", + "Sign In by Google": "گوگل کے ذریعے سائن ان کریں", + "Sign In with Google": "Sign In with Google", + "Sign Out": "سائن آؤٹ", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "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": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خاندانوں اور گروپوں کے لیے کشادہ وین سروس۔ آرام دہ، محفوظ اور کم خرچ۔", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "ریکارڈ شروع کریں", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "سفر شروع کریں", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "شماریات", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "جمع کرائیں ", + "Submit Complaint": "شکایت جمع کرائیں", + "Submit Question": "سوال جمع کرائیں", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "شکایت درج کریں", + "Submit rating": "ریٹنگ جمع کرائیں", + "Success": "کامیابی", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "رائیڈر تبدیل کریں", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "شام", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "تصویر لیں", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "ڈرائیونگ لائسنس کارڈ کی تصویر لیں", + "Take Picture Of ID Card": "شناختی کارڈ کی تصویر لیں", + "Tap on the promo code to copy it!": "اسے کاپی کرنے کے لیے پرومو کوڈ پر ٹیپ کریں!", + "Tap to upload": "Tap to upload", + "Target": "ہدف", + "Tariff": "ٹیرف", + "Tariffs": "ٹیرف", + "Tax Expiry Date": "ٹیکس کی میعاد ختم ہونے کی تاریخ", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "شکریہ", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "ڈرائیور جلد ہی آپ کی لوکیشن پر ہوگا۔", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "کپتان راستے کا ذمہ دار ہے۔", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "فاصلہ 500 میٹر سے کم ہے۔", + "The driver accept your order for": "ڈرائیور آپ کا آرڈر قبول کرتا ہے برائے", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "ڈرائیور نے آپ کا سفر قبول کر لیا ہے", + "The driver canceled your ride.": "ڈرائیور نے آپ کی سواری منسوخ کر دی۔", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "ڈرائیور آپ کے راستے میں ہے", + "The driver waiting you in picked location .": "ڈرائیور منتخب جگہ پر آپ کا انتظار کر رہا ہے۔", + "The driver waitting you in picked location .": "ڈرائیور منتخب جگہ پر آپ کا انتظار کر رہا ہے۔", + "The drivers are reviewing your request": "ڈرائیورز آپ کی درخواست کا جائزہ لے رہے ہیں", + "The email or phone number is already registered.": "ای میل یا فون نمبر پہلے سے رجسٹرڈ ہے۔", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "دعوت نامہ کامیابی سے بھیج دیا گیا", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "آرڈر دوسرے ڈرائیور نے قبول کر لیا", + "The order has been accepted by another driver.": "آرڈر دوسرے ڈرائیور نے قبول کر لیا ہے۔", + "The payment was approved.": "ادائیگی منظور ہو گئی۔", + "The payment was not approved. Please try again.": "ادائیگی منظور نہیں ہوئی۔ براہ کرم دوبارہ کوشش کریں۔", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "اگر راستہ بدل گیا تو قیمت بڑھ سکتی ہے۔", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "پروموشن کی مدت ختم ہو گئی ہے۔", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "سفر شروع ہو گیا ہے! بلا جھجھک ایمرجنسی نمبرز سے رابطہ کریں، اپنا سفر شیئر کریں، یا سفر کے لیے وائس ریکارڈنگ فعال کریں۔", + "There is no data yet.": "ابھی تک کوئی ڈیٹا نہیں ہے۔", + "There is no help Question here": "یہاں کوئی مدد کا سوال نہیں ہے", + "There is no notification yet": "ابھی تک کوئی اطلاع نہیں ہے", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "یہ رقم تمام سفر کے لیے جو مجھے مسافروں سے ملتی ہے", + "This amount for all trip I get from Passengers and Collected For me in": "یہ رقم تمام سفر کے لیے جو مجھے مسافروں سے ملتی ہے اور میرے لیے جمع کی گئی ہے", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "یہ ایک طے شدہ اطلاع ہے۔", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "یہ سکوٹر یا موٹر سائیکل کے لیے ہے۔", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "اس فون نمبر کو پہلے ہی مدعو کیا جا چکا ہے۔", + "This price is": "یہ قیمت ہے", + "This price is fixed even if the route changes for the driver.": "یہ قیمت مقررہ ہے چاہے ڈرائیور کا راستہ بدل جائے۔", + "This price may be changed": "یہ قیمت تبدیل ہو سکتی ہے", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "یہ سواری پہلے ہی کسی اور ڈرائیور نے لے لی ہے۔", + "This ride type allows changes, but the price may increase": "اس قسم کی سواری تبدیلیوں کی اجازت دیتی ہے، لیکن قیمت بڑھ سکتی ہے", + "This ride type does not allow changes to the destination or additional stops": "اس قسم کی سواری منزل میں تبدیلیوں یا اضافی اسٹاپس کی اجازت نہیں دیتی", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "یہ سفر آپ کے نقطہ آغاز سے سیدھا آپ کی منزل تک ایک مقررہ قیمت پر جاتا ہے۔ ڈرائیور کو منصوبہ بند راستے کی پیروی کرنی چاہیے۔", + "This trip is for women only": "یہ سفر صرف خواتین کے لیے ہے", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "پہنچنے کا وقت", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro 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.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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 Siro support directly.", + "To use Wallet charge it": "والٹ استعمال کرنے کے لیے اسے چارج کریں", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "والٹ ٹاپ اپ کریں", + "Top up Wallet to continue": "جاری رکھنے کے لیے والٹ ٹاپ اپ کریں", + "Total Amount:": "کل رقم:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "کل کنکشن کا دورانیہ:", + "Total Cost": "کل قیمت", + "Total Cost is": "Total Cost is", + "Total Duration:": "کل دورانیہ:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "مہینے میں کل گھنٹے", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "کل پوائنٹس ہیں", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "مہینے کا کل بجٹ", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "جدید، خاموش الیکٹرک کار میں سفر کریں۔ ایک پریمیم، ماحول دوست انتخاب۔", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "سفر منسوخ ہو گیا", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "سفر منسوخ ہو گیا۔ سفر کی لاگت آپ کے والٹ میں شامل کر دی جائے گی۔", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "سفر کی نگرانی", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "سفر ختم ہو گیا", + "Trip has Steps": "سفر کے مراحل ہیں", + "Trip is Begin": "سفر شروع ہو گیا", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "دورے ریکارڈ کیے گئے", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "ترکی", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "یہاں جگہ لکھیں", + "Type something": "Type something", + "Type something...": "کچھ لکھیں...", + "Type your Email": "اپنا ای میل لکھیں", + "Type your message": "اپنا پیغام ٹائپ کریں", + "Type your message...": "Type your message...", + "Types of Trips in Siro:": "Types of Trips in Siro:", + "USA": "امریکہ", + "Uncompromising Security": "غیر متزلزل سیکیورٹی", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "اپ ڈیٹ", + "Update Available": "Update Available", + "Update Education": "تعلیم اپ ڈیٹ کریں", + "Update Gender": "جنس اپ ڈیٹ کریں", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "اپ لوڈ ہو گیا", + "Use Touch ID or Face ID to confirm payment": "ادائیگی کی تصدیق کے لیے ٹچ آئی ڈی یا فیس آئی ڈی استعمال کریں", + "Use code:": "کوڈ استعمال کریں:", + "Use my invitation code to get a special gift on your first ride!": "اپنی پہلی سواری پر خصوصی تحفہ حاصل کرنے کے لیے میرا دعوتی کوڈ استعمال کریں!", + "Use my referral code:": "میرا ریفرل کوڈ استعمال کریں:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "صارف موجود نہیں ہے۔", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "اس فون نمبر یا ای میل کے ساتھ صارف پہلے سے موجود ہے۔", + "Uses cellular network": "Uses cellular network", + "VIN": "VIN", + "VIN :": "VIN :", + "VIN is": "VIN ہے:", + "VIP Order": "VIP آرڈر", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "تک درست:", + "Value": "Value", + "Van": "وین", + "Van / Bus": "Van / Bus", + "Van for familly": "فیملی کے لیے وین", + "Variety of Trip Choices": "سفر کے انتخاب کی اقسام", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "گاڑی کی تفصیلات پیچھے", + "Vehicle Details Front": "گاڑی کی تفصیلات سامنے", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "گاڑی کے اختیارات", + "Verification Code": "تصدیقی کوڈ", + "Verify": "تصدیق کریں", + "Verify Email": "ای میل کی تصدیق کریں", + "Verify Email For Driver": "ڈرائیور کے لیے ای میل کی تصدیق کریں", + "Verify OTP": "او ٹی پی کی تصدیق کریں", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "تمام بٹنوں کے لیے وائبریشن فیڈبیک", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "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 Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "کپتان کا انتظار...", + "Waiting for Driver ...": "ڈرائیور کا انتظار...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "آپ کی لوکیشن کا انتظار ہے", + "Wallet": "والٹ", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "والٹ بلاک ہے", + "Wallet!": "والٹ!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing 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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "ہم تصویر پر کارروائی کر رہے ہیں براہ کرم انتظار کریں ", + "We are search for nearst driver": "ہم قریبی ڈرائیور تلاش کر رہے ہیں", + "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 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 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 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 need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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 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 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 ہندسے بھیجے ہیں", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "ہم نئے ڈرائیور کی تلاش کریں گے۔\\nبراہ کرم انتظار کریں۔", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "خوش آمدید!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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 Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "کس قسم کی گاڑیاں دستیاب ہیں؟", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "واٹس ایپ لوکیشن ایکسٹریکٹر", + "When": "جب", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "آپ کہاں جا رہے ہیں؟", + "Where are you, sir?": "Where are you, sir?", + "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 Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "کام", + "Work & Contact": "کام اور رابطہ", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "کام کا وقت 12:00 - 19:00 ہے۔\\nآپ واٹس ایپ پیغام یا ای میل بھیج سکتے ہیں۔", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "نوٹ لکھیں", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "سال", + "Year is": "سال ہے:", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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 !": "آپ اس دن کے لیے روک دیے گئے ہیں!", + "You Can Cancel Trip And get Cost of Trip From": "آپ سفر منسوخ کر سکتے ہیں اور سفر کی قیمت حاصل کر سکتے ہیں سے", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "اگر کپتان وقت پر نہیں آیا تو آپ سواری منسوخ کر سکتے ہیں", + "You Dont Have Any amount in": "آپ کے پاس کوئی رقم نہیں ہے میں", + "You Dont Have Any places yet !": "ابھی تک آپ کے پاس کوئی جگہ نہیں ہے!", + "You Earn today is": "You Earn today is", + "You Have": "آپ کے پاس ہے", + "You Have Tips": "آپ کے پاس ٹپس ہیں", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "آپ نے اس دن 3 سواریوں سے انکار کر دیا یہی وجہ ہے \\nکل ملتے ہیں!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "آپ کو وجہ منتخب کرنی چاہیے۔", + "You Should choose rate figure": "آپ کو ریٹنگ کا انتخاب کرنا چاہیے", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "آپ حذف کر رہے ہیں", + "You are Stopped": "آپ رکے ہوئے ہیں", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "آپ مسافر کی لوکیشن کے قریب نہیں ہیں", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "آپ آن لائن رہنے کے لیے پوائنٹس خرید سکتے ہیں\\nنیچے دی گئی اس فہرست کے ذریعے", + "You can buy points from your budget": "آپ اپنے بجٹ سے پوائنٹس خرید سکتے ہیں", + "You can call or record audio during this trip.": "آپ اس سفر کے دوران کال یا آڈیو ریکارڈ کر سکتے ہیں۔", + "You can call or record audio of this trip": "آپ اس سفر کی کال یا آڈیو ریکارڈ کر سکتے ہیں", + "You can cancel Ride now": "آپ اب سواری منسوخ کر سکتے ہیں", + "You can cancel trip": "آپ سفر منسوخ کر سکتے ہیں", + "You can change the Country to get all features": "آپ تمام خصوصیات حاصل کرنے کے لیے ملک تبدیل کر سکتے ہیں", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "آپ ایپ کی زبان تبدیل کر سکتے ہیں", + "You can change the vibration feedback for all buttons": "آپ تمام بٹنوں کے لیے وائبریشن فیڈبیک تبدیل کر سکتے ہیں", + "You can claim your gift once they complete 2 trips.": "جب وہ 2 سفر مکمل کر لیں تو آپ اپنا تحفہ حاصل کر سکتے ہیں۔", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "سفر کی تصدیق ہونے پر آپ ایپ میں چیٹ کر سکتے ہیں۔", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "آپ ہم سے دفتری اوقات 12:00 - 19:00 کے دوران رابطہ کر سکتے ہیں۔", + "You can decline a request without any cost": "آپ بغیر کسی قیمت کے درخواست مسترد کر سکتے ہیں", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "آپ نقد یا کارڈ کے ذریعے ادائیگی کر سکتے ہیں۔", + "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 Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "آپ تحفے کے مستحق ہیں", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "آپ نے ابھی تک ایمرجنسی فون شامل نہیں کیا!", + "You dont have Points": "آپ کے پاس پوائنٹس نہیں ہیں", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "آپ دعوت دینے کے لیے اپنا تحفہ پہلے ہی وصول کر چکے ہیں", + "You have already used this promo code.": "آپ پہلے ہی یہ پرومو کوڈ استعمال کر چکے ہیں۔", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "ڈرائیور کی کال ہے", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "آپ نے پرومو کوڈ کاپی کر لیا ہے۔", + "You have earned 20": "آپ نے 20 کمائے ہیں", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "آپ نے تمام اوقات ختم کر دیے ہیں ", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "آپ کو دعوت دینے پر تحفہ ملا ہے", + "You have in account": "آپ کے اکاؤنٹ میں ہے", + "You have promo!": "آپ کے پاس پرومو ہے!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "آپ کو ای میل کی تصدیق کرنی ہوگی!", + "You must be charge your Account": "آپ کو اپنا اکاؤنٹ چارج کرنا ہوگا", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "زبان تبدیل کرنے کے لیے آپ کو ایپ دوبارہ شروع کرنی چاہیے۔", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "آپ کو اسے اپ لوڈ کرنا چاہیے۔", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "آپ کو ایک منتخب کرنا چاہیے", + "You should select your country": "آپ کو اپنا ملک منتخب کرنا چاہیے", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "آپ کے سفر کا فاصلہ ہے", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "ٹائمر ختم ہونے کے بعد آپ اپنی منزل پر پہنچ جائیں گے۔", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "آپ ڈرائیور کو قیمت ادا کریں گے یا ہم اگلے سفر پر آپ سے لے لیں گے", + "You will be thier in": "آپ وہاں ہوں گے میں", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "آپ آرڈرز وصول کرنے کے لیے ہر وقت اجازت کا انتخاب کریں گے", + "You will choose one of above !": "آپ کو اوپر والوں میں سے ایک کا انتخاب کرنا ہوگا!", + "You will get cost of your work for this trip": "آپ کو اس سفر کے لیے اپنے کام کی قیمت ملے گی", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "آپ کو ایس ایم ایس پیغام میں ایک کوڈ موصول ہوگا", + "You will receive a code in WhatsApp Messenger": "آپ کو واٹس ایپ میسنجر میں ایک کوڈ موصول ہوگا", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "آپ کو SMS پیغام میں کوڈ موصول ہوگا", + "Your Account is Deleted": "آپ کا اکاؤنٹ حذف کر دیا گیا ہے", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "آپ کا بجٹ ضرورت سے کم ہے", + "Your Choice, Our Priority": "آپ کا انتخاب، ہماری ترجیح", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "آپ مسافر کی لوکیشن سے دور ہیں", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "آپ کا دعوتی کوڈ کامیابی سے لاگو ہو گیا!", + "Your journey starts here": "آپ کا سفر یہاں سے شروع ہوتا ہے", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "آپ کا نام", + "Your order is being prepared": "آپ کا آرڈر تیار ہو رہا ہے", + "Your order sent to drivers": "آپ کا آرڈر ڈرائیورز کو بھیج دیا گیا", + "Your password": "Your password", + "Your past trips will appear here.": "آپ کے پچھلے سفر یہاں ظاہر ہوں گے۔", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "آپ کا ذاتی دعوتی کوڈ ہے:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "آپ کے سفر کی قیمت ہے", + "Your trip distance is": "آپ کے سفر کا فاصلہ ہے", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nہم سستی کو بھی ترجیح دیتے ہیں، مسابقتی قیمتوں کی پیشکش کرتے ہیں تاکہ آپ کی سواریوں کو قابل رسائی بنایا جا سکے۔", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "جاری رکھنے کے لیے، آپ کو استعمال کی شرائط اور رازداری کی پالیسی کا جائزہ لینا اور اتفاق کرنا چاہیے۔", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "ایک خرابی پیش آ گئی: @error", + "and I have a trip on": "اور میرے پاس ایک سفر ہے پر", + "and acknowledge our": "اور تسلیم کریں ہماری", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq ایک محفوظ، قابل اعتماد، اور قابل رسائی رائیڈ ہیلنگ ایپ ہے۔", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "آپ کے پوائنٹ تک پہنچنے کا وقت", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "پہلے", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "Intaleq حفاظت کے لیے پرعزم ہے۔", + "complete profile subtitle": "شروع کرنے کے لیے پروفایل مکمل کریں", + "complete registration button": "رجسٹریشن مکمل کریں", + "complete, you can claim your gift": "مکمل، آپ اپنا تحفہ حاصل کر سکتے ہیں", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "تخلیق کا وقت", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "فاصلہ ہے", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "ڈرائیونگ لائسنس", + "duration is": "دورانیہ ہے", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "ای میل (اختیاری)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "براہ کرم 5 ہندسوں کا او ٹی پی درج کریں", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "چہرے کی شناخت", + "failed to send otp": "او ٹی پی بھیجنے میں ناکامی۔", + "false": "false", + "first name label": "پہلا نام", + "first name required": "پہلا نام درکار ہے", + "for": "کے لیے", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "آپ کی پہلی رجسٹریشن کے لیے!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 سے 10:30 تک (جمعرات، جمعہ، ہفتہ، پیر)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 سے 15:00 تک (جمعرات، جمعہ، ہفتہ، پیر)", + "from 23:59 till 05:30": "23:59 سے 05:30 تک", + "from 3 times Take Attention": "3 بار سے توجہ دیں", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "آپ کی فہرست سے", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "Intaleq کے ساتھ، آپ منٹوں میں منزل تک سواری حاصل کر سکتے ہیں۔", + "get_to_destination": "اپنی منزل پر تیزی اور آسانی سے پہنچیں۔", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "مسافر کے سفر منسوخ کرنے سے پہلے\\nاپنی مسافر کی لوکیشن پر جائیں", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "مکمل کر لیا ہے", + "hi": "hi", + "hour": "گھنٹہ", + "hours before trying again.": "hours before trying again.", + "i agree": "میں متفق ہوں", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "اگر آپ کا اکاؤنٹ نہیں ہے", + "if you want help you can email us here": "اگر آپ مدد چاہتے ہیں تو آپ ہمیں یہاں ای میل کر سکتے ہیں", + "image verified": "تصویر کی تصدیق ہو گئی", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "رقم درج کریں", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "شامل ہوا", + "kilometer": "kilometer", + "last name label": "آخری نام", + "last name required": "آخری نام درکار ہے", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "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 Siro.", + "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 passenger": "مسافر کا پیغام", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "ماڈل :", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "میری لوکیشن", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "مختلف", + "of": "میں سے", + "on": "on", + "one last step title": "ایک آخری قدم", + "otp sent subtitle": "ایک 5 ہندسوں کا کوڈ بھیجا گیا\\n@phoneNumber", + "otp sent success": "او ٹی پی کامیابی سے واٹس ایپ پر بھیج دیا گیا۔", + "otp verification failed": "او ٹی پی کی تصدیق ناکام ہو گئی۔", + "passenger agreement": "مسافر معاہدہ", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "فون نمبر", + "phone number of driver": "phone number of driver", + "phone number required": "فون نمبر درکار ہے", + "please go to picker location exactly": "براہ کرم بالکل اسی لوکیشن پر جائیں جہاں سے اٹھانا ہے", + "please order now": "ابھی آرڈر کریں", + "please wait till driver accept your order": "براہ کرم انتظار کریں جب تک ڈرائیور آپ کا آرڈر قبول نہ کرے", + "points": "points", + "price is": "قیمت ہے", + "privacy policy": "رازداری کی پالیسی۔", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "رجسٹریشن ناکام ہو گئی۔", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "محفوظ اور آرام دہ سواری کا لطف اٹھائیں۔", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "سیکنڈز", + "security_warning": "security_warning", + "send otp button": "او ٹی پی (OTP) بھیجیں", + "server error try again": "سرور کی خرابی، دوبارہ کوشش کریں۔", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "ملتا جلتا", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "استعمال کی شرائط", + "the 300 points equal 300 L.E": "300 پوائنٹس 300 روپے کے برابر ہیں", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "500 پوائنٹس 30 روپے کے برابر ہیں", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "یہ آپ کے آلے سے تمام فائلیں حذف کر دے گا", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "ٹوکن کی تبدیلی", + "token updated": "ٹوکن اپ ڈیٹ ہو گیا", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "سفر", + "true": "true", + "type here": "یہاں ٹائپ کریں", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "تصدیق کریں اور جاری رکھیں", + "verify your number title": "اپنے نمبر کی تصدیق کریں", + "vin": "vin", + "wait 1 minute to receive message": "پیغام موصول ہونے کے لیے 1 منٹ انتظار کریں", + "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 siro", + "welcome user": "خوش آمدید، @firstName!", + "welcome_message": "Intaleq میں خوش آمدید!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "اپنی کار کے لیے رنگ لکھیں", + "write Expiration Date for your car": "اپنی کار کے لیے میعاد ختم ہونے کی تاریخ لکھیں", + "write Make for your car": "اپنی کار کے لیے میک لکھیں", + "write Model for your car": "اپنی کار کے لیے ماڈل لکھیں", + "write Year for your car": "اپنی کار کے لیے سال لکھیں", + "write comment here": "write comment here", + "write vin for your car": "اپنی کار کے لیے vin لکھیں", + "year :": "سال :", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "آپ نے حاصل کیا", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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 Siro Wallet", + "you will use this device?": "you will use this device?", + "your ride is Accepted": "آپ کی سواری قبول کر لی گئی ہے", + "your ride is applied": "آپ کی سواری لاگو ہو گئی ہے", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "میعاد ختم ہونے کی تاریخ", + "⚠️ You need to choose an amount!": "⚠️ آپ کو ایک رقم منتخب کرنے کی ضرورت ہے!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 والٹ سے ادائیگی کریں", + "💳 Pay with Credit Card": "💳 کریڈٹ کارڈ سے ادائیگی کریں", +}; diff --git a/siro_driver/lib/controller/local/zh.dart b/siro_driver/lib/controller/local/zh.dart new file mode 100644 index 0000000..319d01b --- /dev/null +++ b/siro_driver/lib/controller/local/zh.dart @@ -0,0 +1,2662 @@ +final Map zh = { + " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}": " \\\${durationController.jsonData1['message'][0]['day'].toString().split('-')[1]}", + " and acknowledge our Privacy Policy.": " وتقر بسياسة الخصوصية.", + " is ON for this month": " متصل هالشهر", + "\$achievedScore/\$maxScore \${\"points": "\$achievedScore/\$maxScore \${\"points", + "\$countOfInvitDriver / 100 \${'Trip": "\$countOfInvitDriver / 100 \${'Trip", + "\$countOfInvitDriver / 3 \${'Trip": "\$countOfInvitDriver / 3 \${'Trip", + "\$pointFromBudget \${'has been added to your budget": "\$pointFromBudget \${'has been added to your budget", + "\$title \$subtitle": "\$title \$subtitle", + "\${\"Minimum transfer amount is": "\${\"Minimum transfer amount is", + "\${\"NEXT STEP": "\${\"NEXT STEP", + "\${\"NationalID": "\${\"NationalID", + "\${\"Passenger cancelled the ride.": "\${\"Passenger cancelled the ride.", + "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\${\"Total budgets on month\".tr} = \${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\${\"Total rides on month\".tr} = \${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\${\"Transfer Fee": "\${\"Transfer Fee", + "\${\"You must leave at least": "\${\"You must leave at least", + "\${\"amount": "\${\"amount", + "\${\"transaction_id": "\${\"transaction_id", + "\${'*Siro APP CODE*": "\${'*Siro APP CODE*", + "\${'*Siro DRIVER CODE*": "\${'*Siro DRIVER CODE*", + "\${'Address": "\${'Address", + "\${'Address: ": "\${'Address: ", + "\${'Age": "\${'Age", + "\${'An unexpected error occurred:": "\${'An unexpected error occurred:", + "\${'Average of Hours of": "\${'Average of Hours of", + "\${'Be sure for take accurate images please\\nYou have": "\${'Be sure for take accurate images please\\nYou have", + "\${'Car Expire": "\${'Car Expire", + "\${'Car Kind": "\${'Car Kind", + "\${'Car Plate": "\${'Car Plate", + "\${'Chassis": "\${'Chassis", + "\${'Color": "\${'Color", + "\${'Date of Birth": "\${'Date of Birth", + "\${'Date of Birth: ": "\${'Date of Birth: ", + "\${'Displacement": "\${'Displacement", + "\${'Document Number: ": "\${'Document Number: ", + "\${'Drivers License Class": "\${'Drivers License Class", + "\${'Drivers License Class: ": "\${'Drivers License Class: ", + "\${'Expiry Date": "\${'Expiry Date", + "\${'Expiry Date: ": "\${'Expiry Date: ", + "\${'Failed to save driver data": "\${'Failed to save driver data", + "\${'Fuel": "\${'Fuel", + "\${'FullName": "\${'FullName", + "\${'Height: ": "\${'Height: ", + "\${'Hi": "\${'Hi", + "\${'How can I register as a driver?": "\${'How can I register as a driver?", + "\${'Inspection Date": "\${'Inspection Date", + "\${'InspectionResult": "\${'InspectionResult", + "\${'IssueDate": "\${'IssueDate", + "\${'License Expiry Date": "\${'License Expiry Date", + "\${'Made :": "\${'Made :", + "\${'Make": "\${'Make", + "\${'Model": "\${'Model", + "\${'Name": "\${'Name", + "\${'Name :": "\${'Name :", + "\${'Name in arabic": "\${'Name in arabic", + "\${'National Number": "\${'National Number", + "\${'NationalID": "\${'NationalID", + "\${'Next Level:": "\${'Next Level:", + "\${'OrderId": "\${'OrderId", + "\${'Owner Name": "\${'Owner Name", + "\${'Plate Number": "\${'Plate Number", + "\${'Please enter": "\${'Please enter", + "\${'Please wait": "\${'Please wait", + "\${'Price:": "\${'Price:", + "\${'Remaining:": "\${'Remaining:", + "\${'Ride": "\${'Ride", + "\${'Tax Expiry Date": "\${'Tax Expiry Date", + "\${'The price must be over than ": "\${'The price must be over than ", + "\${'The reason is": "\${'The reason is", + "\${'Transaction successful": "\${'Transaction successful", + "\${'Update": "\${'Update", + "\${'VIN :": "\${'VIN :", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'When": "\${'When", + "\${'Year": "\${'Year", + "\${'You can resend in": "\${'You can resend in", + "\${'You gained": "\${'You gained", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You have in account": "\${'You have in account", + "\${'before": "\${'before", + "\${'expected": "\${'expected", + "\${'model :": "\${'model :", + "\${'wallet_credited_message": "\${'wallet_credited_message", + "\${'year :": "\${'year :", + "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\${'الوقت المتبقي": "\${'الوقت المتبقي", + "\${'رصيدك الإجمالي:": "\${'رصيدك الإجمالي:", + "\${'ُExpire Date": "\${'ُExpire Date", + "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip": "\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \${'Trip", + "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip": "\${(driverInvitationData[index]['invitorName'])} \${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \${'Trip", + "\${captainWalletController.totalAmountVisa} \${'ل.س": "\${captainWalletController.totalAmountVisa} \${'ل.س", + "\${controller.totalCost} \${'\\\$": "\${controller.totalCost} \${'\\\$", + "\${controller.totalPoints} / \${next.minPoints} \${'Points": "\${controller.totalPoints} / \${next.minPoints} \${'Points", + "\${e.value.toInt()} \${'Rides": "\${e.value.toInt()} \${'Rides", + "\${firstNameController.text} \${lastNameController.text}": "\${firstNameController.text} \${lastNameController.text}", + "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements": "\${gc.unlockedCount}/\${gc.totalAchievements} \${'Achievements", + "\${rating.toStringAsFixed(1)} (\${'reviews": "\${rating.toStringAsFixed(1)} (\${'reviews", + "\${rc.activeReferrals}', 'Active": "\${rc.activeReferrals}', 'Active", + "\${rc.totalReferrals}', 'Total Invites": "\${rc.totalReferrals}', 'Total Invites", + "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\${sc.activeDays} \${'Days": "\${sc.activeDays} \${'Days", + "'": "'", + "([^\"]+)\"\\.tr'), // \"string": "([^\"]+)\"\\.tr'), // \"string", + "([^\"]+)\"\\.tr\\(\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\)'), // \"string", + "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string": "([^\"]+)\"\\.tr\\(\\w+\\)'), // \"string", + "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string": "([^\"]+)\"\\.tr\\(args: \\[.*?\\]\\)'), // \"string", + "([^\"]+)\"\\\\.tr'), // \"string": "([^\"]+)\"\\\\.tr'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(\\\\w+\\\\)'), // \"string", + "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string": "([^\"]+)\"\\\\.tr\\\\(args: \\\\[.*?\\\\]\\\\)'), // \"string", + "([^']+)'\\.tr\"), // 'string": "([^']+)'\\.tr\"), // 'string", + "([^']+)'\\.tr\\(\\)\"), // 'string": "([^']+)'\\.tr\\(\\)\"), // 'string", + "([^']+)'\\.tr\\(\\w+\\)\"), // 'string": "([^']+)'\\.tr\\(\\w+\\)\"), // 'string", + "([^']+)'\\\\.tr\"), // 'string": "([^']+)'\\\\.tr\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\)\"), // 'string", + "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string": "([^']+)'\\\\.tr\\\\(\\\\w+\\\\)\"), // 'string", + ")[1]}": ")[1]}", + "*Siro APP CODE*": "*Siro APP CODE*", + "*Siro DRIVER CODE*": "*Siro DRIVER CODE*", + "--": "--", + "-1% commission": "-1% commission", + "-2% commission": "-2% commission", + "-5% commission": "-5% commission", + ". I am at least 18 years of age.": ". I am at least 18 years of age.", + ". I am at least 18 years old.": ". I am at least 18 years old.", + ". The app will connect you with a nearby driver.": ". The app will connect you with a nearby driver.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.05 \\\${'JOD": "0.05 \\\${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "0.47 \\\${'JOD": "0.47 \\\${'JOD", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1 \\\${'JOD": "1 \\\${'JOD", + "1 \\\${'LE": "1 \\\${'LE", + "1', 'Share your code": "1', 'Share your code", + "1. Describe Your Issue": "١. وش المشكلة؟", + "1. Select Ride": "1. Select Ride", + "10 and get 4% discount": "10 وخذ خصم 4%", + "100 and get 11% discount": "100 وخذ خصم 11%", + "15 \${'LE": "15 \${'LE", + "15 \\\${'LE": "15 \\\${'LE", + "15000 \${'LE": "15000 \${'LE", + "15000 \\\${'LE": "15000 \\\${'LE", + "1999": "1999", + "2', 'Friend signs up": "2', 'Friend signs up", + "2. Attach Recorded Audio": "٢. أرفق تسجيل صوتي", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "2. Describe Your Issue": "2. Describe Your Issue", + "20 \${'LE": "20 \${'LE", + "20 \\\${'LE": "20 \\\${'LE", + "20 and get 6% discount": "20 وخذ خصم 6%", + "200 \${'JOD": "200 \${'JOD", + "200 \\\${'JOD": "200 \\\${'JOD", + "27\\\\": "27\\\\", + "27\\\\\\\\": "27\\\\\\\\", + "3 digit": "3 digit", + "3', 'Both earn rewards": "3', 'Both earn rewards", + "3. Attach Recorded Audio (Optional)": "3. Attach Recorded Audio (Optional)", + "3. Review Details & Response": "٣. مراجعة التفاصيل والرد", + "300 LE": "300 LE", + "3000 LE": "3000 ر.س", + "4', 'Bonus at 10 trips": "4', 'Bonus at 10 trips", + "4. Review Details & Response": "4. Review Details & Response", + "40 and get 8% discount": "40 وخذ خصم 8%", + "5 digit": "5 أرقام", + "<< BACK": "<< BACK", + "A connection error occurred": "A connection error occurred", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A promotion record for this driver already exists for today.": "A promotion record for this driver already exists for today.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "مشوار بحجز مسبق، يمديك تختار أفضل الكباتن والسيارات.", + "AI Page": "صفحة الذكاء الاصطناعي", + "AI failed to extract info": "AI failed to extract info", + "ATTIJARIWAFA BANK Egypt": "ATTIJARIWAFA BANK Egypt", + "About Us": "من نحن", + "Abu Dhabi Commercial Bank – Egypt": "Abu Dhabi Commercial Bank – Egypt", + "Abu Dhabi Islamic Bank – Egypt": "Abu Dhabi Islamic Bank – Egypt", + "Accept": "Accept", + "Accept Order": "قبول الطلب", + "Accept Ride": "Accept Ride", + "Accepted Ride": "المشوار مقبول", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Account Updated": "Account Updated", + "Achievements": "Achievements", + "Active Duration": "Active Duration", + "Active Duration:": "المدة الفعلية:", + "Active Ride": "Active Ride", + "Active Users": "Active Users", + "Active ride in progress. Leaving might stop tracking. Exit?": "Active ride in progress. Leaving might stop tracking. Exit?", + "Activities": "Activities", + "Add Balance": "Add Balance", + "Add Card": "إضافة بطاقة", + "Add Credit Card": "إضافة بطاقة ائتمان", + "Add Home": "إضافة البيت", + "Add Location": "إضافة موقع", + "Add Location 1": "إضافة موقع 1", + "Add Location 2": "إضافة موقع 2", + "Add Location 3": "إضافة موقع 3", + "Add Location 4": "إضافة موقع 4", + "Add Payment Method": "إضافة طريقة دفع", + "Add Phone": "إضافة رقم", + "Add Promo": "ضيف خصم", + "Add Question": "Add Question", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "إضافة وقفات", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a comment (optional)": "Add a comment (optional)", + "Add bank Account": "Add bank Account", + "Add criminal page": "Add criminal page", + "Add funds using our secure methods": "ضيف رصيد بطرق آمنة", + "Add new car": "Add new car", + "Add to Passenger Wallet": "Add to Passenger Wallet", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "العنوان", + "Address:": "Address:", + "Admin DashBoard": "لوحة التحكم", + "Affordable for Everyone": "أسعار تناسب الكل", + "After this period": "After this period", + "Afternoon Promo": "Afternoon Promo", + "Afternoon Promo Rides": "Afternoon Promo Rides", + "Age": "Age", + "Age is": "Age is", + "Agricultural Bank of Egypt": "Agricultural Bank of Egypt", + "Ahli United Bank": "Ahli United Bank", + "Air condition Trip": "Air condition Trip", + "Al Ahli Bank of Kuwait – Egypt": "Al Ahli Bank of Kuwait – Egypt", + "Al Baraka Bank Egypt B.S.C.": "Al Baraka Bank Egypt B.S.C.", + "Alert": "Alert", + "Alerts": "تنبيهات", + "Alex Bank Egypt": "Alex Bank Egypt", + "Allow Location Access": "السماح بالوصول للموقع", + "Allow overlay permission": "Allow overlay permission", + "Allowing location access will help us display orders near you. Please enable it now.": "Allowing location access will help us display orders near you. Please enable it now.", + "Already have an account? Login": "Already have an account? Login", + "Amount": "Amount", + "Amount to charge:": "Amount to charge:", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An application error occurred during upload.": "An application error occurred during upload.", + "An application error occurred.": "An application error occurred.", + "An error occurred": "An error occurred", + "An error occurred during contact sync: \$e": "An error occurred during contact sync: \$e", + "An error occurred during contact sync: \\\$e": "An error occurred during contact sync: \\\$e", + "An error occurred during contact sync: \\\\\\\$e": "An error occurred during contact sync: \\\\\\\$e", + "An error occurred during the payment process.": "خطأ في الدفع.", + "An error occurred while connecting to the server.": "An error occurred while connecting to the server.", + "An error occurred while loading contacts: \$e": "An error occurred while loading contacts: \$e", + "An error occurred while loading contacts: \\\$e": "An error occurred while loading contacts: \\\$e", + "An error occurred while loading contacts: \\\\\\\$e": "An error occurred while loading contacts: \\\\\\\$e", + "An error occurred while picking a contact": "An error occurred while picking a contact", + "An error occurred while picking contacts:": "صار خطأ وحنا نختار الأسماء:", + "An error occurred while saving driver data": "An error occurred while saving driver data", + "An unexpected error occurred. Please try again.": "صار خطأ غير متوقع. حاول مرة ثانية.", + "An unexpected error occurred:": "An unexpected error occurred:", + "An unknown server error occurred": "An unknown server error occurred", + "And acknowledge our": "And acknowledge our", + "Any comments about the passenger?": "Any comments about the passenger?", + "App Dark Mode": "App Dark Mode", + "App Preferences": "App Preferences", + "App with Passenger": "التطبيق مع الراكب", + "Applied": "تم التقديم", + "Apply": "Apply", + "Apply Order": "قبول الطلب", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "قربت منك. 3 دقايق وأكون عندك.", + "Approve Driver Documents": "Approve Driver Documents", + "Arab African International Bank": "Arab African International Bank", + "Arab Bank PLC": "Arab Bank PLC", + "Arab Banking Corporation - Egypt S.A.E": "Arab Banking Corporation - Egypt S.A.E", + "Arab International Bank": "Arab International Bank", + "Arab Investment Bank": "Arab Investment Bank", + "Are You sure to LogOut?": "Are You sure to LogOut?", + "Are You sure to ride to": "متأكد تبي تروح لـ", + "Are you Sure to LogOut?": "بتسجل خروج؟", + "Are you sure to cancel?": "متأكد تبي تلغي؟", + "Are you sure to delete recorded files": "متأكد تبي تحذف الملفات؟", + "Are you sure to delete this location?": "متأكد تبي تحذف هالموقع؟", + "Are you sure to delete your account?": "متأكد تبي تحذف حسابك؟", + "Are you sure to exit ride ?": "Are you sure to exit ride ?", + "Are you sure to exit ride?": "Are you sure to exit ride?", + "Are you sure to make this car as default": "Are you sure to make this car as default", + "Are you sure you want to cancel and collect the fee?": "Are you sure you want to cancel and collect the fee?", + "Are you sure you want to cancel this trip?": "Are you sure you want to cancel this trip?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure?": "Are you sure?", + "Are you sure? This action cannot be undone.": "متأكد؟ ما تقدر تتراجع بعدين.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "تبي تروح هالمكان؟", + "Are you want to go to this site": "تبي تروح هنا؟", + "Are you want to wait drivers to accept your order": "تبي تنتظر الكباتن؟", + "Arrival time": "وقت الوصول", + "Associate Degree": "دبلوم", + "Attach this audio file?": "ترفق هالملف الصوتي؟", + "Attention": "Attention", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "تم رفع الصوت.", + "Authentication failed": "Authentication failed", + "Available Balance": "Available Balance", + "Available Rides": "Available Rides", + "Available for rides": "متاح للمشاوير", + "Average of Hours of": "معدل الساعات", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "سيارة توفير", + "Bachelor\\'s Degree": "Bachelor\\'s Degree", + "Back": "Back", + "Back to other sign-in options": "Back to other sign-in options", + "Bahrain": "البحرين", + "Balance": "الرصيد", + "Balance limit exceeded": "تجاوزت حد الرصيد", + "Balance not enough": "الرصيد ما يكفي", + "Balance:": "الرصيد:", + "Bank Account": "Bank Account", + "Bank Card Payment": "Bank Card Payment", + "Bank account added successfully": "Bank account added successfully", + "Banque Du Caire": "Banque Du Caire", + "Banque Misr": "Banque Misr", + "Basic features": "Basic features", + "Be Slowly": "على مهلك", + "Be sure for take accurate images please": "Be sure for take accurate images please", + "Be sure for take accurate images please\\nYou have": "تأكد إن الصورة واضحة\\nعندك", + "Be sure to use it quickly! This code expires at": "استعجل عليه! الكود ينتهي في", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "لك الحرية في الاختيار.", + "Before we start, please review our terms.": "قبل نبدأ، راجع شروطنا لاهنت.", + "Behavior Page": "Behavior Page", + "Behavior Score": "Behavior Score", + "Best Day": "Best Day", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "أفضل خيار للمدن", + "Best choice for comfort car and flexible route and stops point": "أفضل خيار لسيارة مريحة ومسار مرن", + "Biometric Authentication": "Biometric Authentication", + "Birth Date": "تاريخ الميلاد", + "Birth year must be 4 digits": "Birth year must be 4 digits", + "Birthdate Mismatch": "Birthdate Mismatch", + "Birthdate on ID front and back does not match.": "Birthdate on ID front and back does not match.", + "Blom Bank": "Blom Bank", + "Bonus gift": "Bonus gift", + "BookingFee": "رسوم الحجز", + "Bottom Bar Example": "مثال الشريط السفلي", + "But you have a negative salary of": "بس عليك سالب بقيمة", + "CODE": "验证码", + "Calculating...": "Calculating...", + "Call": "Call", + "Call Connected": "Call Connected", + "Call Driver": "Call Driver", + "Call End": "انتهاء المكالمة", + "Call Ended": "Call Ended", + "Call Income": "مكالمة واردة", + "Call Income from Driver": "اتصال من الكابتن", + "Call Income from Passenger": "مكالمة من الراكب", + "Call Left": "مكالمات باقية", + "Call Options": "Call Options", + "Call Page": "صفحة الاتصال", + "Call Passenger": "Call Passenger", + "Call Support": "Call Support", + "Calling": "Calling", + "Calling non-Syrian numbers is not supported": "Calling non-Syrian numbers is not supported", + "Camera Access Denied.": "ما في وصول للكاميرا.", + "Camera not initialized yet": "الكاميرا لسه", + "Camera not initilaized yet": "الكاميرا لسه", + "Can I cancel my ride?": "أقدر ألغي المشوار؟", + "Can we know why you want to cancel Ride ?": "ليش تبي تلغي؟", + "Cancel": "إلغاء", + "Cancel & Collect Fee": "Cancel & Collect Fee", + "Cancel Ride": "إلغاء المشوار", + "Cancel Search": "إلغاء البحث", + "Cancel Trip": "إلغاء المشوار", + "Cancel Trip from driver": "إلغاء من الكابتن", + "Cancel Trip?": "Cancel Trip?", + "Canceled": "ملغي", + "Canceled Orders": "Canceled Orders", + "Cancelled": "Cancelled", + "Cancelled by Passenger": "Cancelled by Passenger", + "Cannot apply further discounts.": "ما تقدر تخصم أكثر.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "صور صحيفة خلو السوابق", + "Capture an Image of Your Driver License": "صور رخصتك", + "Capture an Image of Your Driver’s License": "Capture an Image of Your Driver’s License", + "Capture an Image of Your ID Document Back": "صور ظهر الهوية", + "Capture an Image of Your ID Document front": "صور الهوية (وجه)", + "Capture an Image of Your car license back": "صور استمارة السيارة (قفا)", + "Capture an Image of Your car license front": "صور استمارة السيارة (وجه)", + "Capture an Image of Your car license front ": "Capture an Image of Your car license front ", + "Car": "سيارة", + "Car Color": "Car Color", + "Car Color (Hex)": "Car Color (Hex)", + "Car Color (Name)": "Car Color (Name)", + "Car Color:": "Car Color:", + "Car Details": "تفاصيل السيارة", + "Car Expire": "Car Expire", + "Car Kind": "Car Kind", + "Car License Card": "استمارة السيارة", + "Car Make (e.g., Toyota)": "Car Make (e.g., Toyota)", + "Car Make:": "Car Make:", + "Car Model (e.g., Corolla)": "Car Model (e.g., Corolla)", + "Car Model:": "Car Model:", + "Car Plate": "Car Plate", + "Car Plate Number": "Car Plate Number", + "Car Plate is": "Car Plate is", + "Car Plate:": "Car Plate:", + "Car Registration (Back)": "Car Registration (Back)", + "Car Registration (Front)": "Car Registration (Front)", + "Car Type": "Car Type", + "Card Earnings": "Card Earnings", + "Card Number": "رقم البطاقة", + "Card Payment": "Card Payment", + "CardID": "رقم البطاقة", + "Cash": "كاش", + "Cash Earnings": "Cash Earnings", + "Cash Out": "Cash Out", + "Central Bank Of Egypt": "Central Bank Of Egypt", + "Century Rider": "Century Rider", + "Challenges": "Challenges", + "Change Country": "تغيير الدولة", + "Change Home location?": "Change Home location?", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location?": "Change Work location?", + "Change the app language": "Change the app language", + "Charge your Account": "Charge your Account", + "Charge your account.": "Charge your account.", + "Chassis": "رقم الشاصي", + "Check back later for new offers!": "شيك بعدين يمكن فيه عروض!", + "Checking for updates...": "Checking for updates...", + "Choose Claim Method": "Choose Claim Method", + "Choose Language": "اختر اللغة", + "Choose a contact option": "اختر طريقة تواصل", + "Choose between those Type Cars": "اختر نوع السيارة", + "Choose from Map": "اختر من الخريطة", + "Choose from contact": "Choose from contact", + "Choose how you want to call the passenger": "Choose how you want to call the passenger", + "Choose the trip option that perfectly suits your needs and preferences.": "اختر اللي يناسبك.", + "Choose who this order is for": "الطلب لمين؟", + "Choose your ride": "Choose your ride", + "Citi Bank N.A. Egypt": "Citi Bank N.A. Egypt", + "City": "المدينة", + "Claim": "Claim", + "Claim Reward": "Claim Reward", + "Claim your 20 LE gift for inviting": "اطلب هديتك (20 ريال) للدعوة", + "Claimed": "Claimed", + "CliQ": "CliQ", + "CliQ Payment": "CliQ Payment", + "Click here point": "Click here point", + "Click here to Show it in Map": "اضغط للعرض على الخريطة", + "Close": "إغلاق", + "Closest & Cheapest": "الأقرب والأرخص", + "Closest to You": "الأقرب لك", + "Code": "代码", + "Code approved": "Code approved", + "Code copied!": "Code copied!", + "Code not approved": "الكود مرفوض", + "Collect Cash": "Collect Cash", + "Collect Payment": "Collect Payment", + "Color": "اللون", + "Color is": "Color is", + "Comfort": "مريح", + "Comfort choice": "خيار الراحة", + "Comfort ❄️": "Comfort ❄️", + "Comfort: For cars newer than 2017 with air conditioning.": "Comfort: For cars newer than 2017 with air conditioning.", + "Coming Soon": "Coming Soon", + "Commercial International Bank - Egypt S.A.E": "Commercial International Bank - Egypt S.A.E", + "Commission": "Commission", + "Communication": "التواصل", + "Compatible, you may notice some slowness": "Compatible, you may notice some slowness", + "Compensation Received": "Compensation Received", + "Complaint": "شكوى", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "ما تقدر ترفع شكوى على هالمشوار. يمكن ما كمل أو ما بدأ.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete 100 trips": "Complete 100 trips", + "Complete 50 trips": "Complete 50 trips", + "Complete 500 trips": "Complete 500 trips", + "Complete Payment": "Complete Payment", + "Complete your first trip": "Complete your first trip", + "Completed": "Completed", + "Confirm": "تأكيد", + "Confirm & Find a Ride": "أكد ودور كابتن", + "Confirm Attachment": "تأكيد الإرفاق", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Payment": "Confirm Payment", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Selection": "تأكيد الاختيار", + "Confirm Trip": "Confirm Trip", + "Confirm payment with biometrics": "Confirm payment with biometrics", + "Confirm your Email": "أكد إيميلك", + "Confirmation": "Confirmation", + "Connected": "متصل", + "Connecting...": "Connecting...", + "Connection error": "Connection error", + "Contact Options": "خيارات التواصل", + "Contact Support": "تواصل مع الدعم", + "Contact Support to Recharge": "Contact Support to Recharge", + "Contact Us": "اتصل بنا", + "Contact permission is required to pick a contact": "Contact permission is required to pick a contact", + "Contact permission is required to pick contacts": "نحتاج صلاحية الأسماء.", + "Contact us for any questions on your order.": "تواصل معنا لو عندك سؤال.", + "Contacts Loaded": "تم تحميل الأسماء", + "Contacts sync completed successfully!": "Contacts sync completed successfully!", + "Continue": "متابعة", + "Continue Ride": "Continue Ride", + "Continue straight": "Continue straight", + "Continue to App": "Continue to App", + "Copy": "نسخ", + "Copy Code": "نسخ الكود", + "Copy this Promo to use it in your Ride!": "انسخ الكود واستخدمه!", + "Cost": "Cost", + "Cost Duration": "تكلفة الوقت", + "Cost Of Trip IS": "Cost Of Trip IS", + "Could not load trip details.": "Could not load trip details.", + "Could not start ride. Please check internet.": "Could not start ride. Please check internet.", + "Counts of Hours on days": "عدد الساعات بالأيام", + "Counts of budgets on days": "Counts of budgets on days", + "Counts of rides on days": "Counts of rides on days", + "Create Account": "Create Account", + "Create Account with Email": "Create Account with Email", + "Create Driver Account": "Create Driver Account", + "Create Wallet to receive your money": "أنشئ محفظة لاستلام فلوسك", + "Create new Account": "Create new Account", + "Credit": "Credit", + "Credit Agricole Egypt S.A.E": "Credit Agricole Egypt S.A.E", + "Credit card is": "Credit card is", + "Criminal Document": "Criminal Document", + "Criminal Document Required": "صحيفة خلو السوابق مطلوبة", + "Criminal Record": "خلو السوابق", + "Cropper": "قص الصورة", + "Current Balance": "الرصيد الحالي", + "Current Location": "الموقع الحالي", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "العميل غير موجود", + "Customer phone is not active": "جوال العميل مو شغال", + "DISCOUNT": "خصم", + "DRIVER123": "DRIVER123", + "Daily Challenges": "Daily Challenges", + "Daily Goal": "Daily Goal", + "Date": "التاريخ", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth": "Date of Birth", + "Date of Birth is": "تاريخ الميلاد:", + "Date of Birth:": "Date of Birth:", + "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 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 ,", + "Debit": "Debit", + "Debit Card": "Debit Card", + "Dec 15 - Dec 21, 2024": "Dec 15 - Dec 21, 2024", + "Decline": "Decline", + "Delete": "Delete", + "Delete My Account": "حذف حسابي", + "Delete Permanently": "حذف نهائي", + "Deleted": "انحذف", + "Delivery": "Delivery", + "Destination": "الوصول", + "Destination Location": "Destination Location", + "Destination selected": "Destination selected", + "Detect Your Face": "Detect Your Face", + "Detect Your Face ": "تحقق من وجهك", + "Device Change Detected": "Device Change Detected", + "Device Compatibility": "Device Compatibility", + "Diamond badge": "Diamond badge", + "Diesel": "Diesel", + "Directions": "Directions", + "Displacement": "سعة المحرك", + "Distance": "Distance", + "Distance To Passenger is": "Distance To Passenger is", + "Distance from Passenger to destination is": "Distance from Passenger to destination is", + "Distance is": "Distance is", + "Distance of the Ride is": "Distance of the Ride is", + "Do you have a disease for a long time?": "Do you have a disease for a long time?", + "Do you have an invitation code from another driver?": "عندك كود دعوة من كابتن ثاني؟", + "Do you want to change Home location": "تغير موقع البيت؟", + "Do you want to change Work location": "تغير موقع الدوام؟", + "Do you want to collect your earnings?": "Do you want to collect your earnings?", + "Do you want to go to this location?": "Do you want to go to this location?", + "Do you want to pay Tips for this Driver": "تبي تعطي الكابتن إكرامية؟", + "Docs": "Docs", + "Doctoral Degree": "دكتوراه", + "Document Number:": "Document Number:", + "Documents check": "فحص المستندات", + "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 Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "حمل التطبيق:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "كابتن", + "Driver Accepted Request": "Driver Accepted Request", + "Driver Accepted the Ride for You": "الكابتن قبل المشوار عشانك", + "Driver Agreement": "Driver Agreement", + "Driver Applied the Ride for You": "الكابتن قدم الطلب لك", + "Driver Balance": "Driver Balance", + "Driver Behavior": "Driver Behavior", + "Driver Cancel Your Trip": "Driver Cancel Your Trip", + "Driver Cancelled Your Trip": "الكابتن كنسل الرحلة", + "Driver Car Plate": "لوحة الكابتن", + "Driver Finish Trip": "الكابتن خلص المشوار", + "Driver Invitations": "Driver Invitations", + "Driver Is Going To Passenger": "الكابتن متوجه للراكب", + "Driver Level": "Driver Level", + "Driver License (Back)": "Driver License (Back)", + "Driver License (Front)": "Driver License (Front)", + "Driver List": "Driver List", + "Driver Login": "Driver Login", + "Driver Message": "Driver Message", + "Driver Name": "اسم الكابتن", + "Driver Name:": "Driver Name:", + "Driver Phone:": "Driver Phone:", + "Driver Portal": "Driver Portal", + "Driver Referral": "Driver Referral", + "Driver Registration": "تسجيل الكابتن", + "Driver Registration & Requirements": "تسجيل الكباتن", + "Driver Wallet": "محفظة الكابتن", + "Driver already has 2 trips within the specified period.": "الكابتن عنده مشوارين بهالوقت.", + "Driver is on the way": "الكابتن بالطريق", + "Driver is waiting": "Driver is waiting", + "Driver is waiting at pickup.": "الكابتن ينتظرك عند نقطة الركوب.", + "Driver joined the channel": "الكابتن دخل الشات", + "Driver left the channel": "الكابتن طلع من الشات", + "Driver phone": "جوال الكابتن", + "Driver's Personal Information": "Driver's Personal Information", + "Drivers": "Drivers", + "Drivers License Class": "فئة الرخصة", + "Drivers License Class:": "Drivers License Class:", + "Drivers received orders": "Drivers received orders", + "Driving Behavior": "Driving Behavior", + "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.": "Due to excessive cancellations (3 times), receiving orders has been suspended for 4 hours.", + "Duration": "Duration", + "Duration To Passenger is": "Duration To Passenger is", + "Duration is": "المدة:", + "Duration of Trip is": "Duration of Trip is", + "Duration of the Ride is": "Duration of the Ride is", + "E-Cash payment gateway": "E-Cash payment gateway", + "E-mail validé.\\\\": "E-mail validé.\\\\", + "E-mail validé.\\\\\\\\": "E-mail validé.\\\\\\\\", + "EGP": "EGP", + "Earnings": "Earnings", + "Earnings & Distance": "Earnings & Distance", + "Earnings Summary": "Earnings Summary", + "Edit": "Edit", + "Edit Profile": "تعديل الملف", + "Edit Your data": "تعديل بياناتك", + "Education": "التعليم", + "Egypt": "مصر", + "Egypt Post": "Egypt Post", + "Egypt') return 'فيش وتشبيه": "Egypt') return 'فيش وتشبيه", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egyptian Arab Land Bank": "Egyptian Arab Land Bank", + "Egyptian Gulf Bank": "Egyptian Gulf Bank", + "Electric": "كهربائية", + "Email": "Email", + "Email Us": "راسلنا", + "Email Wrong": "الإيميل غلط", + "Email is": "الإيميل:", + "Email must be correct.": "Email must be correct.", + "Email you inserted is Wrong.": "الإيميل اللي كتبته غلط.", + "Emergency Contact": "Emergency Contact", + "Emergency Number": "Emergency Number", + "Emirates National Bank of Dubai": "Emirates National Bank of Dubai", + "Employment Type": "نوع الوظيفة", + "Enable Location": "تفعيل الموقع", + "Enable Location Access": "Enable Location Access", + "Enable Location Permission": "Enable Location Permission", + "End": "End", + "End Ride": "إنهاء المشوار", + "End Trip": "End Trip", + "Enjoy a safe and comfortable ride.": "استمتع بمشوار آمن ومريح.", + "Enjoy competitive prices across all trip options, making travel accessible.": "أسعار منافسة.", + "Ensure the passenger is in the car.": "Ensure the passenger is in the car.", + "Enter Amount Paid": "Enter Amount Paid", + "Enter Health Insurance Provider": "Enter Health Insurance Provider", + "Enter Your First Name": "دخل اسمك الأول", + "Enter a valid email": "Enter a valid email", + "Enter a valid year": "Enter a valid year", + "Enter phone": "دخل الرقم", + "Enter phone number": "Enter phone number", + "Enter promo code": "دخل الكود", + "Enter promo code here": "اكتب الكود هنا", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the promo code and get": "دخل الكود واحصل على", + "Enter your City": "Enter your City", + "Enter your Note": "اكتب ملاحظة", + "Enter your Password": "Enter your Password", + "Enter your Question here": "Enter your Question here", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "اكتب شكواك هنا...", + "Enter your email": "Enter your email", + "Enter your email address": "دخل إيميلك", + "Enter your feedback here": "اكتب ملاحظتك", + "Enter your first name": "دخل اسمك", + "Enter your last name": "دخل اسم العائلة", + "Enter your password": "Enter your password", + "Enter your phone number": "دخل رقمك", + "Enter your promo code": "Enter your promo code", + "Enter your wallet number": "Enter your wallet number", + "Error": "خطأ", + "Error connecting call": "Error connecting call", + "Error processing request": "Error processing request", + "Error starting voice call": "Error starting voice call", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "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 Siro app", + "Exit": "Exit", + "Exit Ride?": "Exit Ride?", + "Expiration Date": "تاريخ الانتهاء", + "Expired Driver’s License": "Expired Driver’s License", + "Expired License": "Expired License", + "Expired License', 'Your driver’s license has expired.": "Expired License', 'Your driver’s license has expired.", + "Expiry Date": "تاريخ الانتهاء", + "Expiry Date:": "Expiry Date:", + "Export Development Bank of Egypt": "Export Development Bank of Egypt", + "Extra 200 pts when they complete 10 trips": "Extra 200 pts when they complete 10 trips", + "Face Detection Result": "نتيجة التحقق", + "Failed": "Failed", + "Failed to add place. Please try again later.": "Failed to add place. Please try again later.", + "Failed to cancel ride": "Failed to cancel ride", + "Failed to claim reward": "Failed to claim reward", + "Failed to connect to the server. Please try again.": "Failed to connect to the server. Please try again.", + "Failed to fetch rides. Please try again.": "Failed to fetch rides. Please try again.", + "Failed to finish ride. Please check internet.": "Failed to finish ride. Please check internet.", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to load profile data.": "Failed to load profile data.", + "Failed to process route points": "Failed to process route points", + "Failed to save driver data": "Failed to save driver data", + "Failed to send invite": "Failed to send invite", + "Failed to upload audio file.": "Failed to upload audio file.", + "Faisal Islamic Bank of Egypt": "Faisal Islamic Bank of Egypt", + "Fastest Complaint Response": "استجابة سريعة للشكاوى", + "Favorite Places": "Favorite Places", + "Fee is": "السعر:", + "Feed Back": "رأيك", + "Feedback": "ملاحظات", + "Feedback data saved successfully": "حفظنا تقييمك", + "Female": "أنثى", + "Find answers to common questions": "إجابات الأسئلة", + "Finish & Submit": "Finish & Submit", + "Finish Monitor": "إنهاء المتابعة", + "Finished": "Finished", + "First Abu Dhabi Bank": "First Abu Dhabi Bank", + "First Name": "الاسم الأول", + "First Trip": "First Trip", + "First name": "الاسم الأول", + "Five Star Driver": "Five Star Driver", + "Fixed Price": "Fixed Price", + "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 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 Siro 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": "الأسئلة الشائعة", + "Fri": "Fri", + "From": "من", + "From :": "من:", + "From : Current Location": "من: موقعك الحالي", + "From Budget": "From Budget", + "From:": "From:", + "Fuel": "الوقود", + "Fuel Type": "Fuel Type", + "Full Name": "Full Name", + "Full Name (Marital)": "الاسم الكامل", + "FullName": "الاسم الكامل", + "GPS Required Allow !.": "شغل الـ GPS!", + "Gender": "الجنس", + "General": "General", + "General Authority For Supply Commodities": "General Authority For Supply Commodities", + "Get": "Get", + "Get Details of Trip": "تفاصيل المشوار", + "Get Direction": "الاتجاهات", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get features for your country": "Get features for your country", + "Get it Now!": "خذها الحين!", + "Get to your destination quickly and easily.": "وصل وجهتك بسرعة وسهولة.", + "Getting Started": "البداية", + "Gift Already Claimed": "أخذت الهدية من قبل", + "Go": "Go", + "Go Now": "Go Now", + "Go Online": "Go Online", + "Go To Favorite Places": "للأماكن المفضلة", + "Go to next step": "Go to next step", + "Go to next step\\nscan Car License.": "الخطوة الجاية\\nمسح الاستمارة.", + "Go to passenger Location": "Go to passenger Location", + "Go to passenger Location now": "رح لموقع الراكب الحين", + "Go to passenger:": "Go to passenger:", + "Go to this Target": "روح للهدف", + "Go to this location": "رح لهالموقع", + "Goal Achieved!": "Goal Achieved!", + "Gold badge": "Gold badge", + "Good": "Good", + "Google Map App": "Google Map App", + "H and": "س و", + "HSBC Bank Egypt S.A.E": "HSBC Bank Egypt S.A.E", + "Hard Brake": "Hard Brake", + "Hard Brakes": "Hard Brakes", + "Have a promo code?": "عندك كود خصم؟", + "Head": "Head", + "Heading your way now. Please be ready.": "جايك بالطريق. خلك جاهز.", + "Health Insurance": "Health Insurance", + "Heatmap": "Heatmap", + "Height:": "Height:", + "Hello": "Hello", + "Hello this is Captain": "هلا، معك الكابتن", + "Hello this is Driver": "هلا، أنا الكابتن", + "Help & Support": "Help & Support", + "Help Details": "تفاصيل المساعدة", + "Helping Center": "مركز المساعدة", + "Helping Page": "Helping Page", + "Here recorded trips audio": "تسجيلات المشاوير هنا", + "Hi": "هلا", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "هلا، أنا بطلع الحين", + "Hi! This is": "هلا! هذا", + "Hi, I will go now": "Hi, I will go now", + "Hi, Where to": "Hi, Where to", + "High School Diploma": "ثانوي", + "High priority": "High priority", + "History": "History", + "History Page": "History Page", + "History of Trip": "سجل المشاوير", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "Hours": "Hours", + "Housing And Development Bank": "Housing And Development Bank", + "How It Works": "How It Works", + "How can I pay for my ride?": "كيف أدفع؟", + "How can I register as a driver?": "كيف أسجل كابتن؟", + "How do I communicate with the other party (passenger/driver)?": "كيف أتواصل؟", + "How do I request a ride?": "كيف أطلب مشوار؟", + "How many hours would you like to wait?": "كم ساعة تبي تنتظر؟", + "How much Passenger pay?": "How much Passenger pay?", + "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 Siro", + "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?", + "How would you rate our app?": "How would you rate our app?", + "Hybrid": "Hybrid", + "I Agree": "أوافق", + "I Arrive": "I Arrive", + "I Arrive your site": "وصلت موقعك", + "I Have Arrived": "I Have Arrived", + "I added the wrong pick-up/drop-off location": "الموقع غلط", + "I am currently located at": "I am currently located at", + "I am using": "I am using", + "I arrive you": "وصلت", + "I cant register in your app in face detection": "I cant register in your app in face detection", + "I cant register in your app in face detection ": "مو قادر أسجل بسبب بصمة الوجه", + "I want to order for myself": "بطلب لنفسي", + "I want to order for someone else": "بطلب لشخص ثاني", + "I was just trying the application": "أجرب التطبيق بس", + "I will go now": "بمشي الحين", + "I will slow down": "بهدي السرعة", + "I've arrived.": "I've arrived.", + "ID Documents Back": "ظهر الهوية", + "ID Documents Front": "وجه الهوية", + "ID Mismatch": "ID Mismatch", + "If you in Car Now. Press Start The Ride": "إذا ركبت، اضغط ابدأ المشوار", + "If you need any help or have question this is right site to do that and your welcome": "If you need any help or have question this is right site to do that and your welcome", + "If you need any help or have questions, this is the right place to do that. You are welcome!": "If you need any help or have questions, this is the right place to do that. You are welcome!", + "If you need assistance, contact us": "تحتاج مساعدة؟ كلمنا", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "تبي تضيف وقفة اضغط هنا", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "تبي قوقل ماب يفتح علطول؟", + "If your car license has the new design, upload the front side with two images.": "If your car license has the new design, upload the front side with two images.", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is": "Image detecting result is", + "Image detecting result is ": "نتيجة الفحص: ", + "Improve app performance": "Improve app performance", + "In-App VOIP Calls": "مكالمات صوتية بالتطبيق", + "Including Tax": "شامل الضريبة", + "Incoming Call...": "Incoming Call...", + "Incorrect sms code": "⚠️ رمز التحقق غلط. حاول مرة ثانية.", + "Increase Fare": "زيد السعر", + "Increase Fee": "زيد السعر", + "Increase Your Trip Fee (Optional)": "زيد سعر المشوار (اختياري)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "لو زودت السعر ممكن يجيك كابتن أسرع. تبي تزيد السعر؟", + "Industrial Development Bank": "Industrial Development Bank", + "Ineligible for Offer": "Ineligible for Offer", + "Info": "Info", + "Insert": "إدخال", + "Insert Account Bank": "Insert Account Bank", + "Insert Card Bank Details to Receive Your Visa Money Weekly": "Insert Card Bank Details to Receive Your Visa Money Weekly", + "Insert Emergency Number": "Insert Emergency Number", + "Insert Emergincy Number": "دخل رقم الطوارئ", + "Insert Payment Details": "Insert Payment Details", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "حط كود الخصم", + "Insert card number": "Insert card number", + "Insert mobile wallet number": "Insert mobile wallet number", + "Insert your mobile wallet details to receive your money weekly": "Insert your mobile wallet details to receive your money weekly", + "Inspection Date": "تاريخ الفحص الدوري", + "InspectionResult": "نتيجة الفحص", + "Install our app:": "Install our app:", + "Insufficient Balance": "Insufficient Balance", + "Invalid MPIN": "رمز خطأ", + "Invalid OTP": "كود غلط", + "Invalid customer MSISDN": "Invalid customer MSISDN", + "Invitation Used": "الدعوة مستخدمة", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite Driver": "Invite Driver", + "Invite Rider": "Invite Rider", + "Invite a Driver": "Invite a Driver", + "Invite another driver and both get a gift after he completes 100 trips!": "Invite another driver and both get a gift after he completes 100 trips!", + "Invite code already used": "Invite code already used", + "Invite sent successfully": "أرسلنا الدعوة", + "Is device compatible": "Is device compatible", + "Is the Passenger in your Car ?": "الراكب معك؟", + "Is the Passenger in your Car?": "Is the Passenger in your Car?", + "Issue Date": "تاريخ الإصدار", + "IssueDate": "تاريخ الإصدار", + "JOD": "ر.س", + "Join": "انضمام", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Jordan": "الأردن", + "Just now": "Just now", + "KM": "كم", + "Keep it up!": "كفو عليك!", + "Kuwait": "الكويت", + "L.E": "L.E", + "L.S": "L.S", + "LE": "ر.س", + "Lady": "نواعم", + "Lady Captain for girls": "كابتن سيدة للبنات", + "Lady Captains Available": "كباتن سيدات", + "Lady 👩": "Lady 👩", + "Lady: For girl drivers.": "Lady: For girl drivers.", + "Language": "اللغة", + "Language Options": "خيارات اللغة", + "Last 10 Trips": "Last 10 Trips", + "Last Name": "Last Name", + "Last name": "اسم العائلة", + "Last updated:": "Last updated:", + "Later": "Later", + "Latest Recent Trip": "آخر مشوار", + "Leaderboard": "Leaderboard", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "مغادرة", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Let the passenger scan this code to sign up": "Let the passenger scan this code to sign up", + "Lets check Car license": "Lets check Car license", + "Lets check Car license ": "نشيك الاستمارة", + "Lets check License Back Face": "نشيك ظهر الرخصة", + "License Categories": "فئات الرخصة", + "License Expiry Date": "License Expiry Date", + "License Type": "نوع الرخصة", + "Link a phone number for transfers": "اربط رقم للتحويلات", + "Location Access Required": "Location Access Required", + "Location Link": "رابط الموقع", + "Location Tracking Active": "Location Tracking Active", + "Log Off": "تسجيل خروج", + "Log Out Page": "صفحة الخروج", + "Login": "Login", + "Login Captin": "دخول الكابتن", + "Login Driver": "دخول كابتن", + "Login failed": "Login failed", + "Logout": "Logout", + "Lowest Price Achieved": "أقل سعر", + "MIDBANK": "MIDBANK", + "MTN Cash": "MTN Cash", + "Made :": "الصنع:", + "Maintain 5.0 rating": "Maintain 5.0 rating", + "Maintenance Center": "Maintenance Center", + "Maintenance Offer": "Maintenance Offer", + "Make": "الشركة المصنعة", + "Make a U-turn": "Make a U-turn", + "Make is": "Make is", + "Make purchases.": "Make purchases.", + "Male": "رجل", + "Map Dark Mode": "Map Dark Mode", + "Map Passenger": "خريطة الراكب", + "Marital Status": "الحالة الاجتماعية", + "Mashreq Bank": "Mashreq Bank", + "Mashwari": "Mashwari", + "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.": "Mashwari: For flexible trips where passengers choose the car and driver with prior arrangements.", + "Master\\'s Degree": "Master\\'s Degree", + "Max Speed": "Max Speed", + "Maximum Level Reached!": "Maximum Level Reached!", + "Maximum fare": "أعلى سعر", + "Message": "Message", + "Meter Fare": "Meter Fare", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "أقل سعر", + "Minute": "دقيقة", + "Minutes": "Minutes", + "Mishwar Vip": "مشوار VIP", + "Missing Documents": "Missing Documents", + "Mobile Wallets": "Mobile Wallets", + "Model": "الموديل", + "Model is": "الموديل:", + "Mon": "Mon", + "Monthly Report": "Monthly Report", + "Monthly Streak": "Monthly Streak", + "More": "More", + "Morning": "صباح", + "Morning Promo": "Morning Promo", + "Morning Promo Rides": "Morning Promo Rides", + "Most Secure Methods": "طرق آمنة", + "Motorcycle": "Motorcycle", + "Move the map to adjust the pin": "حرك الخريطة عشان تظبط الموقع", + "Mute": "Mute", + "My Balance": "رصيدي", + "My Card": "بطاقتي", + "My Cared": "بطاقاتي", + "My Cars": "My Cars", + "My Location": "My Location", + "My Profile": "ملفي", + "My Schedule": "My Schedule", + "My Wallet": "My Wallet", + "My current location is:": "موقعي الحالي:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "موقعي", + "N/A": "N/A", + "NEXT >>": "NEXT >>", + "NEXT STEP": "NEXT STEP", + "Name": "الاسم", + "Name (Arabic)": "الاسم (عربي)", + "Name (English)": "الاسم (إنجليزي)", + "Name :": "الاسم:", + "Name in arabic": "الاسم بالعربي", + "Name must be at least 2 characters": "Name must be at least 2 characters", + "Name of the Passenger is": "Name of the Passenger is", + "Nasser Social Bank": "Nasser Social Bank", + "National Bank of Egypt": "National Bank of Egypt", + "National Bank of Greece": "National Bank of Greece", + "National Bank of Kuwait – Egypt": "National Bank of Kuwait – Egypt", + "National ID": "رقم الهوية", + "National ID (Back)": "National ID (Back)", + "National ID (Front)": "National ID (Front)", + "National ID Number": "National ID Number", + "National ID must be 11 digits": "National ID must be 11 digits", + "National Number": "رقم الهوية", + "NationalID": "رقم الهوية/الإقامة", + "Navigation": "Navigation", + "Nearest Car": "Nearest Car", + "Nearest Car for you about": "Nearest Car for you about", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Need help? Contact Us": "Need help? Contact Us", + "Needs Improvement": "Needs Improvement", + "Net Profit": "Net Profit", + "Network error": "Network error", + "Next": "التالي", + "Next Level:": "Next Level:", + "Next as Cash !": "Next as Cash !", + "Night": "ليل", + "No": "لا", + "No ,still Waiting.": "لا، لسه أنتظر.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "ما في سيارة عندك. المعذرة!", + "No Car or Driver Found in your area.": "ما لقينا سيارة أو كابتن حولك.", + "No I want": "لا أبي", + "No Promo for today .": "ما في عروض اليوم.", + "No Response yet.": "ما في رد للحين.", + "No Rides Available": "No Rides Available", + "No Rides Yet": "No Rides Yet", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة؟ عادي! كلم الكابتن من التطبيق.", + "No accepted orders? Try raising your trip fee to attract riders.": "ماحد قبل؟ ارفع السعر.", + "No audio files found for this ride.": "No audio files found for this ride.", + "No audio files found.": "ما لقينا ملفات صوتية.", + "No audio files recorded.": "No audio files recorded.", + "No cars are available at the moment. Please try again later.": "No cars are available at the moment. Please try again later.", + "No cars nearby": "No cars nearby", + "No contact selected": "No contact selected", + "No contacts found": "ما لقينا جهات اتصال", + "No contacts with phone numbers found": "No contacts with phone numbers found", + "No contacts with phone numbers were found on your device.": "ما في أرقام بجهازك.", + "No data yet": "No data yet", + "No data yet!": "No data yet!", + "No driver accepted my request": "ماحد قبل طلبي", + "No drivers accepted your request yet": "ماحد قبل طلبك لسه", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No face detected": "ما تعرفنا على الوجه", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "ما اخترت صورة", + "No internet connection": "No internet connection", + "No invitation found": "No invitation found", + "No invitation found yet!": "ما فيه دعوات!", + "No one accepted? Try increasing the fare.": "ماحد قبل؟ جرب تزيد السعر.", + "No orders available": "No orders available", + "No passenger found for the given phone number": "ما لقينا راكب بهالرقم", + "No phone number": "No phone number", + "No promos available right now.": "ما فيه عروض حالياً.", + "No questions asked yet.": "No questions asked yet.", + "No ride found yet": "ما لقينا مشوار", + "No ride yet": "No ride yet", + "No rides available for your vehicle type.": "No rides available for your vehicle type.", + "No rides available right now.": "No rides available right now.", + "No rides found to complain about.": "No rides found to complain about.", + "No route points found": "No route points found", + "No statistics yet": "No statistics yet", + "No transactions this week": "No transactions this week", + "No transactions yet": "No transactions yet", + "No trip data available": "No trip data available", + "No trip history found": "ما فيه سجل مشاوير", + "No trip yet found": "ما لقينا مشوار", + "No user found for the given phone number": "ما لقينا مستخدم بهالرقم", + "No wallet record found": "ما لقينا سجل للمحفظة", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, still Waiting.": "No, still Waiting.", + "No, thanks": "لا، شكراً", + "No,I want": "No,I want", + "Non Egypt": "Non Egypt", + "Not Connected": "غير متصل", + "Not set": "مو محدد", + "Not updated": "Not updated", + "Notifications": "الإشعارات", + "Now select start pick": "Now select start pick", + "OK": "OK", + "OTP is incorrect or expired": "OTP is incorrect or expired", + "Occupation": "المهنة", + "Offline": "Offline", + "Ok": "تم", + "Ok , See you Tomorrow": "تمام، أشوفك بكره", + "Ok I will go now.": "أبشر، رايح له الحين.", + "Old and affordable, perfect for budget rides.": "اقتصادية ومناسبة للميزانية.", + "Online": "Online", + "Online Duration": "Online Duration", + "Only Syrian phone numbers are allowed": "Only Syrian phone numbers are allowed", + "Open App": "Open App", + "Open Settings": "افتح الإعدادات", + "Open app and go to passenger": "Open app and go to passenger", + "Open in Maps": "Open in Maps", + "Open the app to stay updated and ready for upcoming tasks.": "Open the app to stay updated and ready for upcoming tasks.", + "Opted out": "Opted out", + "Or": "Or", + "Or pay with Cash instead": "أو ادفع كاش", + "Order": "طلب", + "Order Accepted": "Order Accepted", + "Order Accepted by another driver": "Order Accepted by another driver", + "Order Applied": "تم الطلب", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "الطلب تكنسل من الراكب", + "Order Details Siro": "Order Details Siro", + "Order History": "سجل الطلبات", + "Order ID": "Order ID", + "Order Request Page": "صفحة الطلب", + "Order Under Review": "Order Under Review", + "Order for myself": "اطلب لنفسي", + "Order for someone else": "اطلب لغيرك", + "OrderId": "رقم الطلب", + "OrderVIP": "طلب VIP", + "Orders Page": "Orders Page", + "Origin": "الانطلاق", + "Original Fare": "Original Fare", + "Other": "غير ذلك", + "Our dedicated customer service team ensures swift resolution of any issues.": "فريقنا يحل مشاكلك بسرعة.", + "Overall Behavior Score": "Overall Behavior Score", + "Overlay": "Overlay", + "Owner Name": "اسم المالك", + "PTS": "PTS", + "Passenger": "Passenger", + "Passenger & Status": "Passenger & Status", + "Passenger Cancel Trip": "الراكب ألغى المشوار", + "Passenger Information": "Passenger Information", + "Passenger Invitations": "Passenger Invitations", + "Passenger Name": "Passenger Name", + "Passenger Name is": "Passenger Name is", + "Passenger Referral": "Passenger Referral", + "Passenger cancel trip": "Passenger cancel trip", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger cancelled the ride.": "Passenger cancelled the ride.", + "Passenger come to you": "الراكب جايك", + "Passenger name :": "Passenger name :", + "Passenger name:": "Passenger name:", + "Passenger paid amount": "Passenger paid amount", + "Passengers": "Passengers", + "Password": "Password", + "Password must be at least 6 characters": "Password must be at least 6 characters", + "Password must be at least 6 characters.": "Password must be at least 6 characters.", + "Password must br at least 6 character.": "كلمة المرور 6 حروف ع الأقل.", + "Paste WhatsApp location link": "حط رابط موقع الواتساب", + "Paste location link here": "الصق الرابط هنا", + "Paste the code here": "الصق الكود", + "Pay": "Pay", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "ادفع للكابتن كاش", + "Pay from my budget": "ادفع من رصيدي", + "Pay remaining to Wallet?": "Pay remaining to Wallet?", + "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: siroapp)", + "Pay with Credit Card": "ادفع بالبطاقة", + "Pay with Debit Card": "Pay with Debit Card", + "Pay with Wallet": "ادفع بالمحفظة", + "Pay with Your": "ادفع بـ", + "Pay with Your PayPal": "ادفع بـ PayPal", + "Payment Failed": "فشل الدفع", + "Payment History": "سجل المدفوعات", + "Payment Method": "طريقة الدفع", + "Payment Method:": "Payment Method:", + "Payment Options": "خيارات الدفع", + "Payment Successful": "الدفع ناجح", + "Payment Successful!": "Payment Successful!", + "Payment details added successfully": "Payment details added successfully", + "Payments": "الدفع", + "Percent Canceled": "Percent Canceled", + "Percent Completed": "Percent Completed", + "Percent Rejected": "Percent Rejected", + "Perfect for adventure seekers who want to experience something new and exciting": "لمحبي المغامرة", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالي للي يبون سيارات جديدة وحرية اختيار الطريق", + "Permission denied": "ما في صلاحية", + "Personal Information": "المعلومات الشخصية", + "Petrol": "Petrol", + "Phone": "Phone", + "Phone Check": "Phone Check", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "الجوال:", + "Phone Number is not Egypt phone": "Phone Number is not Egypt phone", + "Phone Number is not Egypt phone ": "Phone Number is not Egypt phone ", + "Phone Number wrong": "Phone Number wrong", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is already verified": "Phone number is already verified", + "Phone number is verified before": "Phone number is verified before", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number must be valid.": "Phone number must be valid.", + "Phone number seems too short": "Phone number seems too short", + "Pick from map": "اختر من الخريطة", + "Pick from map destination": "Pick from map destination", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick your destination from Map": "حدد وجهتك من الخريطة", + "Pick your ride location on the map - Tap to confirm": "حدد موقعك ع الخريطة - اضغط للتأكيد", + "Pickup Location": "Pickup Location", + "Place added successfully! Thanks for your contribution.": "Place added successfully! Thanks for your contribution.", + "Plate": "لوحة", + "Plate Number": "رقم اللوحة", + "Please Try anther time": "Please Try anther time", + "Please Wait If passenger want To Cancel!": "انتظر يمكن الراكب يلغي!", + "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.": "Please allow location access \"all the time\" to receive ride requests even when the app is in the background.", + "Please allow location access at all times to receive ride requests and ensure smooth service.": "Please allow location access at all times to receive ride requests and ensure smooth service.", + "Please check back later for available rides.": "Please check back later for available rides.", + "Please complete more distance before ending.": "Please complete more distance before ending.", + "Please describe your issue before submitting.": "Please describe your issue before submitting.", + "Please enter": "الرجاء إدخال", + "Please enter Your Email.": "دخل الإيميل لاهنت.", + "Please enter Your Password.": "دخل كلمة المرور.", + "Please enter a correct phone": "دخل رقم جوال صح", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a health insurance status.": "Please enter a health insurance status.", + "Please enter a phone number": "دخل رقم جوال", + "Please enter a valid 16-digit card number": "دخل رقم بطاقة صح (16 رقم)", + "Please enter a valid card 16-digit number.": "Please enter a valid card 16-digit number.", + "Please enter a valid email": "Please enter a valid email", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid insurance provider": "Please enter a valid insurance provider", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "دخل كود صحيح", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "كود CVV", + "Please enter the cardholder name": "اسم صاحب البطاقة", + "Please enter the complete 6-digit code.": "دخل الرمز كامل (6 أرقام).", + "Please enter the emergency number.": "Please enter the emergency number.", + "Please enter the expiry date": "تاريخ الانتهاء", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "دخل مدينتك.", + "Please enter your Email.": "Please enter your Email.", + "Please enter your Password.": "Please enter your Password.", + "Please enter your Question.": "اكتب سؤالك.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "اكتب ملاحظتك لاهنت.", + "Please enter your first name.": "دخل الاسم الأول.", + "Please enter your last name.": "دخل اسم العائلة.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "دخل رقم الجوال.", + "Please enter your question": "Please enter your question", + "Please go closer to the passenger location (less than 150m)": "Please go closer to the passenger location (less than 150m)", + "Please go to Car Driver": "تفضل عند الكابتن", + "Please go to Car now": "Please go to Car now", + "Please go to the pickup location exactly": "Please go to the pickup location exactly", + "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 Siro 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 select a contact": "Please select a contact", + "Please select a date": "Please select a date", + "Please select a rating before submitting.": "Please select a rating before submitting.", + "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: siroapp", + "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.", + "Please upload this license.": "Please upload this license.", + "Please verify your identity": "تحقق من هويتك", + "Please wait": "Please wait", + "Please wait for all documents to finish uploading before registering.": "Please wait for all documents to finish uploading before registering.", + "Please wait for the passenger to enter the car before starting the trip.": "انتظر الراكب يركب قبل تبدأ.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Point": "نقطة", + "Points": "Points", + "Policy restriction on calls": "Policy restriction on calls", + "Potential security risks detected. The application may not function correctly.": "Potential security risks detected. The application may not function correctly.", + "Potential security risks detected. The application may not function correctly.": "اكتشفنا مخاطر أمنية. يمكن التطبيق ما يشتغل صح.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Press here": "Press here", + "Press to hear": "Press to hear", + "Price": "Price", + "Price is": "Price is", + "Price of trip": "Price of trip", + "Price:": "Price:", + "Priority medium": "Priority medium", + "Priority support": "Priority support", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "سياسة الخصوصية", + "Profile": "الملف الشخصي", + "Profile Photo Required": "Profile Photo Required", + "Profile Picture": "Profile Picture", + "Progress:": "Progress:", + "Promo": "كود خصم", + "Promo Already Used": "الكود مستخدم", + "Promo Code": "كود الخصم", + "Promo Code Accepted": "انقبل الكود", + "Promo Copied!": "تم نسخ الكود!", + "Promo End !": "انتهى العرض!", + "Promo Ended": "انتهى العرض", + "Promo code copied to clipboard!": "نسخت الكود!", + "Promos": "العروض", + "Promos For Today": "Promos For Today", + "Promos For today": "Promos For today", + "Promotions": "Promotions", + "Pyament Cancelled .": "إلغاء الدفع.", + "Qatar": "قطر", + "Qatar National Bank Alahli": "Qatar National Bank Alahli", + "Question": "Question", + "Quick Actions": "إجراءات سريعة", + "Quick Invite": "Quick Invite", + "Quick Invite Link:": "Quick Invite Link:", + "Quick Messages": "Quick Messages", + "Quiet & Eco-Friendly": "هادية وصديقة للبيئة", + "Raih Gai: For same-day return trips longer than 50km.": "Raih Gai: For same-day return trips longer than 50km.", + "Rate": "Rate", + "Rate Captain": "قيم الكابتن", + "Rate Driver": "قيم الكابتن", + "Rate Our App": "Rate Our App", + "Rate Passenger": "قيم الراكب", + "Rating": "Rating", + "Rating is": "Rating is", + "Rating submitted successfully": "Rating submitted successfully", + "Rayeh Gai": "رايح جاي", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة مريحة للسفر بين المدن.", + "Reason": "Reason", + "Recent Places": "الأماكن الأخيرة", + "Recent Transactions": "Recent Transactions", + "Recharge Balance": "Recharge Balance", + "Recharge Balance Packages": "Recharge Balance Packages", + "Recharge my Account": "شحن حسابي", + "Record": "Record", + "Record saved": "انحفظ التسجيل", + "Recorded Trips (Voice & AI Analysis)": "مشاوير مسجلة", + "Recorded Trips for Safety": "مشاوير مسجلة للأمان", + "Refer 5 drivers": "Refer 5 drivers", + "Referral Center": "Referral Center", + "Referrals": "Referrals", + "Refresh": "Refresh", + "Refresh Market": "Refresh Market", + "Refresh Status": "Refresh Status", + "Refuse Order": "رفض الطلب", + "Refused": "Refused", + "Register": "تسجيل", + "Register Captin": "تسجيل كابتن", + "Register Driver": "تسجيل كابتن", + "Register as Driver": "سجل كابتن", + "Registration": "Registration", + "Registration completed successfully!": "Registration completed successfully!", + "Registration failed. Please try again.": "Registration failed. Please try again.", + "Reject": "Reject", + "Rejected Orders": "Rejected Orders", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "الديانة", + "Remainder": "Remainder", + "Remaining time": "Remaining time", + "Remaining:": "Remaining:", + "Report": "Report", + "Required field": "Required field", + "Resend Code": "إعادة إرسال", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Status": "Reward Status", + "Reward claimed successfully!": "Reward claimed successfully!", + "Ride": "Ride", + "Ride History": "Ride History", + "Ride Management": "إدارة المشاوير", + "Ride Status": "Ride Status", + "Ride Summaries": "ملخص المشاوير", + "Ride Summary": "ملخص المشوار", + "Ride Today :": "Ride Today :", + "Ride Wallet": "محفظة المشوار", + "Ride info": "Ride info", + "Ride information not found. Please refresh the page.": "Ride information not found. Please refresh the page.", + "Rides": "مشاوير", + "Road Legend": "Road Legend", + "Road Warrior": "Road Warrior", + "Rouats of Trip": "مسارات المشوار", + "Route Not Found": "الطريق غير معروف", + "Routs of Trip": "Routs of Trip", + "Run Google Maps directly": "Run Google Maps directly", + "S.P": "S.P", + "SAFAR Wallet": "SAFAR Wallet", + "SOS": "SOS", + "SOS Phone": "رقم الطوارئ", + "SUBMIT": "SUBMIT", + "SYP": "叙利亚镑", + "Safety & Security": "الأمان", + "Safety First 🛑": "Safety First 🛑", + "Same device detected": "Same device detected", + "Sat": "Sat", + "Saudi Arabia": "السعودية", + "Save": "Save", + "Save & Call": "Save & Call", + "Save Credit Card": "حفظ البطاقة", + "Saved Sucssefully": "تم الحفظ", + "Scan Driver License": "امسح الرخصة", + "Scan ID Api": "Scan ID Api", + "Scan ID MklGoogle": "مسح الهوية MklGoogle", + "Scan ID Tesseract": "Scan ID Tesseract", + "Scan Id": "مسح الهوية", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "سكوتر", + "Score": "Score", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for waypoint": "ابحث عن نقطة توقف", + "Search for your Start point": "ابحث عن نقطة البداية", + "Search for your destination": "ابحث عن وجهتك", + "Search name or number...": "Search name or number...", + "Searching for the nearest captain...": "جاري البحث عن أقرب كابتن...", + "Security Warning": "⚠️ تنبيه أمني", + "See you Tomorrow!": "See you Tomorrow!", + "See you on the road!": "نشوفك بالدرب!", + "Select Country": "اختر الدولة", + "Select Date": "اختر التاريخ", + "Select Name of Your Bank": "Select Name of Your Bank", + "Select Order Type": "اختر نوع الطلب", + "Select Payment Amount": "اختر المبلغ", + "Select Payment Method": "Select Payment Method", + "Select This Ride": "Select This Ride", + "Select Time": "اختر الوقت", + "Select Waiting Hours": "اختر ساعات الانتظار", + "Select Your Country": "اختر دولتك", + "Select a Bank": "Select a Bank", + "Select a Contact": "Select a Contact", + "Select a File": "Select a File", + "Select a file": "Select a file", + "Select a quick message": "Select a quick message", + "Select date and time of trip": "Select date and time of trip", + "Select how you want to charge your account": "Select how you want to charge your account", + "Select one message": "اختر رسالة", + "Select recorded trip": "اختر مشوار مسجل", + "Select your destination": "اختر وجهتك", + "Select your preferred language for the app interface.": "اختر لغة التطبيق.", + "Selected Date": "التاريخ المحدد", + "Selected Date and Time": "التاريخ والوقت", + "Selected Location": "Selected Location", + "Selected Time": "الوقت المحدد", + "Selected driver": "الكابتن المختار", + "Selected file:": "الملف المختار:", + "Send Email": "Send Email", + "Send Invite": "إرسال دعوة", + "Send Message": "Send Message", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "أرسل الرمز", + "Send Verification Code": "أرسل كود التحقق", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "أرسل رسالة", + "Send to Driver Again": "Send to Driver Again", + "Send your referral code to friends": "Send your referral code to friends", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "الجلسة انتهت. سجل دخولك مرة ثانية.", + "Set Daily Goal": "Set Daily Goal", + "Set Goal": "Set Goal", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "حط رقم للمحفظة", + "Set pickup location": "حدد موقع الانطلاق", + "Setting": "إعدادات", + "Settings": "الإعدادات", + "Sex is": "Sex is", + "Sham Cash": "Sham Cash", + "ShamCash Account": "ShamCash Account", + "Share": "Share", + "Share App": "شارك التطبيق", + "Share Code": "Share Code", + "Share Trip Details": "شارك تفاصيل المشوار", + "Share the app with another new driver": "Share the app with another new driver", + "Share the app with another new passenger": "Share the app with another new passenger", + "Share this code to earn rewards": "Share this code to earn rewards", + "Share this code with other drivers. Both of you will receive rewards!": "Share this code with other drivers. Both of you will receive rewards!", + "Share this code with passengers and earn rewards when they use it!": "Share this code with passengers and earn rewards when they use it!", + "Share this code with your friends and earn rewards when they use it!": "شارك الكود واكسب!", + "Share via": "Share via", + "Share with friends and earn rewards": "شارك مع ربعك واكسب", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "عرض الدعوات", + "Show My Trip Count": "Show My Trip Count", + "Show Promos": "عرض الخصومات", + "Show Promos to Charge": "عروض الشحن", + "Show behavior page": "Show behavior page", + "Show health insurance providers near me": "Show health insurance providers near me", + "Show latest promo": "عرض الخصومات", + "Show maintenance center near my location": "Show maintenance center near my location", + "Show my Cars": "Show my Cars", + "Showing": "عرض", + "Sign In by Apple": "دخول بـ Apple", + "Sign In by Google": "دخول بـ Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "تسجيل خروج", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to start your journey": "Sign in to start your journey", + "Sign in with Apple": "Sign in with Apple", + "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": "Siro", + "Siro Balance": "Siro Balance", + "Siro DRIVER CODE": "Siro DRIVER CODE", + "Siro Driver": "Siro Driver", + "Siro LLC": "Siro LLC", + "Siro LLC\\n\${'Syria": "Siro LLC\\n\${'Syria", + "Siro LLC\\n\\\${'Syria": "Siro LLC\\n\\\${'Syria", + "Siro Order": "Siro Order", + "Siro Over": "Siro Over", + "Siro Reminder": "Siro Reminder", + "Siro Wallet": "Siro Wallet", + "Siro Wallet Features:": "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.\\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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Siro123": "Siro123", + "Siro: For fixed salary and endpoints.": "Siro: 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", + "Societe Arabe Internationale De Banque": "Societe Arabe Internationale De Banque", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry": "Sorry", + "Sorry, the order was taken by another driver.": "Sorry, the order was taken by another driver.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان واسعة للعوايل والمجموعات. راحة وأمان وتوفير.", + "Speaker": "Speaker", + "Special Order": "Special Order", + "Speed": "Speed", + "Speed Order": "Speed Order", + "Speed 🔻": "Speed 🔻", + "Standard Call": "Standard Call", + "Standard support": "Standard support", + "Start": "Start", + "Start Navigation?": "Start Navigation?", + "Start Record": "ابدأ التسجيل", + "Start Ride": "Start Ride", + "Start Trip": "Start Trip", + "Start Trip?": "Start Trip?", + "Start sharing your code!": "Start sharing your code!", + "Start the Ride": "ابدأ المشوار", + "Starting contacts sync in background...": "Starting contacts sync in background...", + "Statistic": "Statistic", + "Statistics": "الإحصائيات", + "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 Siro 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", + "Submit": "Submit", + "Submit ": "إرسال ", + "Submit Complaint": "إرسال الشكوى", + "Submit Question": "أرسل سؤال", + "Submit Rating": "Submit Rating", + "Submit Your Complaint": "Submit Your Complaint", + "Submit Your Question": "Submit Your Question", + "Submit a Complaint": "رفع شكوى", + "Submit rating": "إرسال التقييم", + "Success": "تم", + "Suez Canal Bank": "Suez Canal Bank", + "Summary of your daily activity": "Summary of your daily activity", + "Sun": "Sun", + "Support": "Support", + "Support Reply": "Support Reply", + "Swipe to End Trip": "Swipe to End Trip", + "Switch Rider": "تغيير الراكب", + "Switch between light and dark map styles": "Switch between light and dark map styles", + "Switch between light and dark themes": "Switch between light and dark themes", + "Syria": "叙利亚", + "Syria') return 'لا حكم عليه": "Syria') return 'لا حكم عليه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syriatel Cash": "Syriatel Cash", + "Take Image": "صور", + "Take Photo Now": "Take Photo Now", + "Take Picture Of Driver License Card": "صور الرخصة", + "Take Picture Of ID Card": "صور الهوية", + "Tap on the promo code to copy it!": "اضغط ع الكود عشان تنسخه!", + "Tap to upload": "Tap to upload", + "Target": "الهدف", + "Tariff": "التعرفة", + "Tariffs": "التعرفة", + "Tax Expiry Date": "تاريخ انتهاء الضريبة", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thank You!": "Thank You!", + "Thanks": "شكراً", + "The 300 points equal 300 L.E for you\\nSo go and gain your money": "The 300 points equal 300 L.E for you\\nSo go and gain your money", + "The 30000 points equal 30000 S.P for you\\nSo go and gain your money": "The 30000 points equal 30000 S.P for you\\nSo go and gain your money", + "The Amount is less than": "The Amount is less than", + "The Driver Will be in your location soon .": "الكابتن بيوصلك قريب.", + "The United Bank": "The United Bank", + "The app may not work optimally": "The app may not work optimally", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", + "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.": "The context does not provide any complaint details, so I cannot provide a solution to this issue. Please provide the necessary information, and I will be happy to assist you.", + "The distance less than 500 meter.": "المسافة أقل من 500 متر.", + "The driver accept your order for": "الكابتن قبل بـ", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "الكابتن قبل مشوارك", + "The driver canceled your ride.": "الكابتن ألغى مشوارك.", + "The driver is approaching.": "The driver is approaching.", + "The driver on your way": "الكابتن جايك", + "The driver waiting you in picked location .": "الكابتن ينتظرك في الموقع.", + "The driver waitting you in picked location .": "الكابتن ينتظرك.", + "The drivers are reviewing your request": "الكباتن يشوفون طلبك", + "The email or phone number is already registered.": "الإيميل أو الرقم مسجل.", + "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.": "The full name on your criminal record does not match the one on your driver’s license. Please verify and provide the correct documents.", + "The invitation was sent successfully": "أرسلنا الدعوة", + "The map will show an approximate view.": "The map will show an approximate view.", + "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.": "The national number on your driver’s license does not match the one on your ID document. Please verify and provide the correct documents.", + "The order Accepted by another Driver": "الطلب راح لكابتن ثاني", + "The order has been accepted by another driver.": "الطلب أخذه كابتن ثاني.", + "The payment was approved.": "تم الدفع.", + "The payment was not approved. Please try again.": "الدفع ما انقبل. جرب مرة ثانية.", + "The period of this code is 24 hours": "The period of this code is 24 hours", + "The price may increase if the route changes.": "ممكن يزيد السعر لو تغير الطريق.", + "The price must be over than": "The price must be over than", + "The promotion period has ended.": "خلصت فترة العرض.", + "The reason is": "The reason is", + "The selected contact does not have a phone number": "The selected contact does not have a phone number", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "بدأ المشوار! تقدر تكلم الطوارئ، تشارك رحلتك، أو تسجل صوت.", + "There is no data yet.": "ما في بيانات.", + "There is no help Question here": "ما في سؤال مساعدة", + "There is no notification yet": "ما في إشعارات", + "There no Driver Aplly your order sorry for that": "There no Driver Aplly your order sorry for that", + "They register using your code": "They register using your code", + "This Trip Cancelled": "This Trip Cancelled", + "This Trip Was Cancelled": "This Trip Was Cancelled", + "This amount for all trip I get from Passengers": "هذا المبلغ من كل الركاب", + "This amount for all trip I get from Passengers and Collected For me in": "المبلغ المجمع لي في", + "This driver is not registered": "This driver is not registered", + "This for new registration": "This for new registration", + "This is a scheduled notification.": "هذا إشعار مجدول.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "هذا للسكوتر أو الدباب.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This page is only available for Android devices": "This page is only available for Android devices", + "This phone number has already been invited.": "هالرقم قد أرسلنا له دعوة.", + "This price is": "هالسعر هو", + "This price is fixed even if the route changes for the driver.": "السعر ثابت حتى لو تغير الطريق.", + "This price may be changed": "السعر ممكن يتغير", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "المشوار راح لكابتن ثاني.", + "This ride type allows changes, but the price may increase": "تقدر تغير بس السعر بيزيد", + "This ride type does not allow changes to the destination or additional stops": "ما تقدر تغير الوجهة أو توقف", + "This ride was just accepted by another driver.": "This ride was just accepted by another driver.", + "This service will be available soon.": "This service will be available soon.", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "مشوار مباشر بسعر ثابت. الكابتن يلتزم بالمسار.", + "This trip is for women only": "المشوار للنساء فقط", + "This will delete all recorded files from your device.": "This will delete all recorded files from your device.", + "Thu": "Thu", + "Time": "Time", + "Time Finish is": "Time Finish is", + "Time to Passenger": "Time to Passenger", + "Time to Passenger is": "Time to Passenger is", + "Time to arrive": "وقت الوصول", + "TimeStart is": "TimeStart is", + "Times of Trip": "Times of Trip", + "Tip is": "Tip is", + "To :": "To :", + "To Home": "To Home", + "To Work": "To Work", + "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 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 Siro app...": "To become a ride-sharing driver on the Siro 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.", + "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?": "To ensure the best experience, we suggest adjusting the settings to suit your device. Would you like to proceed?", + "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 Siro support directly.", + "To use Wallet charge it": "عشان تستخدم المحفظة اشحنها", + "Today": "Today", + "Today Overview": "Today Overview", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "شحن المحفظة", + "Top up Wallet to continue": "اشحن المحفظة عشان تكمل", + "Total Amount:": "المبلغ الكلي:", + "Total Budget from trips by": "Total Budget from trips by", + "Total Budget from trips by\\nCredit card is": "Total Budget from trips by\\nCredit card is", + "Total Budget from trips is": "Total Budget from trips is", + "Total Budget is": "Total Budget is", + "Total Connection": "Total Connection", + "Total Connection Duration:": "مدة الاتصال:", + "Total Cost": "التكلفة الكلية", + "Total Cost is": "Total Cost is", + "Total Duration:": "المدة الكلية:", + "Total Earnings": "Total Earnings", + "Total For You is": "Total For You is", + "Total From Passenger is": "Total From Passenger is", + "Total Hours on month": "ساعات الشهر", + "Total Invites": "Total Invites", + "Total Net": "Total Net", + "Total Orders": "Total Orders", + "Total Points": "Total Points", + "Total Points is": "مجموع النقاط", + "Total Price": "Total Price", + "Total Rides": "Total Rides", + "Total Trips": "Total Trips", + "Total Weekly Earnings": "Total Weekly Earnings", + "Total budgets on month": "ميزانية الشهر", + "Total is": "Total is", + "Total points is": "Total points is", + "Total price from": "Total price from", + "Total rides on month": "Total rides on month", + "Total wallet is": "Total wallet is", + "Total weekly is": "Total weekly is", + "Transaction failed": "Transaction failed", + "Transaction failed, please try again.": "Transaction failed, please try again.", + "Transaction successful": "Transaction successful", + "Transactions this week": "Transactions this week", + "Transfer": "Transfer", + "Transfer budget": "Transfer budget", + "Transfer money multiple times.": "Transfer money multiple times.", + "Transfer to anyone.": "Transfer to anyone.", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "تنقل بسيارة كهربائية حديثة وهادية. خيار فخم وصديق للبيئة.", + "Traveled": "Traveled", + "Trip": "Trip", + "Trip Cancelled": "المشوار تكنسل", + "Trip Cancelled from driver. We are looking for a new driver. Please wait.": "Trip Cancelled from driver. We are looking for a new driver. Please wait.", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "تم إلغاء المشوار. المبلغ رجع لمحفظتك.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Completed": "Trip Completed", + "Trip Detail": "Trip Detail", + "Trip Details": "Trip Details", + "Trip Finished": "Trip Finished", + "Trip ID": "Trip ID", + "Trip Info": "Trip Info", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "متابعة المشوار", + "Trip Started": "Trip Started", + "Trip Status:": "Trip Status:", + "Trip Summary with": "Trip Summary with", + "Trip Timeline": "Trip Timeline", + "Trip finished": "انتهت الرحلة", + "Trip has Steps": "الرحلة فيها وقفات", + "Trip is Begin": "بدأ المشوار", + "Trip taken": "Trip taken", + "Trip updated successfully": "Trip updated successfully", + "Trips": "Trips", + "Trips recorded": "المشاوير المسجلة", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \\\$trips / \\\$target": "Trips: \\\$trips / \\\$target", + "Tue": "Tue", + "Turkey": "تركيا", + "Turn left": "Turn left", + "Turn right": "Turn right", + "Turn sharp left": "Turn sharp left", + "Turn sharp right": "Turn sharp right", + "Turn slight left": "Turn slight left", + "Turn slight right": "Turn slight right", + "Type Any thing": "Type Any thing", + "Type a message...": "Type a message...", + "Type here Place": "اكتب المكان", + "Type something": "Type something", + "Type something...": "اكتب شي...", + "Type your Email": "اكتب إيميلك", + "Type your message": "اكتب رسالتك", + "Type your message...": "Type your message...", + "Types of Trips in Siro:": "Types of Trips in Siro:", + "USA": "أمريكا", + "Uncompromising Security": "أمان تام", + "Unknown": "Unknown", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "تحديث", + "Update Available": "Update Available", + "Update Education": "تحديث التعليم", + "Update Gender": "تحديث الجنس", + "Updated": "Updated", + "Updated successfully": "Updated successfully", + "Upload Documents": "Upload Documents", + "Upload or AI failed": "Upload or AI failed", + "Uploaded": "تم الرفع", + "Use Touch ID or Face ID to confirm payment": "استخدم البصمة لتأكيد الدفع", + "Use code:": "استخدم الكود:", + "Use my invitation code to get a special gift on your first ride!": "استخدم كودي عشان يجيك هدية بأول مشوار!", + "Use my referral code:": "استخدم كود الدعوة:", + "Use this code in registration": "Use this code in registration", + "User does not exist.": "المستخدم مو موجود.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User not logged in": "User not logged in", + "User with this phone number or email already exists.": "هالرقم أو الإيميل مسجل من قبل.", + "Uses cellular network": "Uses cellular network", + "VIN": "رقم الهيكل", + "VIN :": "رقم الهيكل:", + "VIN is": "رقم الهيكل:", + "VIP Order": "طلب VIP", + "VIP Order Accepted": "VIP Order Accepted", + "VIP Orders": "VIP Orders", + "VIP first": "VIP first", + "Valid Until:": "صالح لين:", + "Value": "Value", + "Van": "عائلية (فان)", + "Van / Bus": "Van / Bus", + "Van for familly": "فان للعائلة", + "Variety of Trip Choices": "خيارات متنوعة", + "Vehicle": "Vehicle", + "Vehicle Category": "Vehicle Category", + "Vehicle Details": "Vehicle Details", + "Vehicle Details Back": "تفاصيل المركبة (خلف)", + "Vehicle Details Front": "تفاصيل المركبة (أمام)", + "Vehicle Information": "Vehicle Information", + "Vehicle Options": "خيارات السيارات", + "Verification Code": "رمز التحقق", + "Verify": "تأكيد", + "Verify Email": "تأكيد الإيميل", + "Verify Email For Driver": "تأكيد إيميل الكابتن", + "Verify OTP": "تأكيد الرمز", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "اهتزاز لكل الأزرار", + "Vibration feedback for buttons": "Vibration feedback for buttons", + "Videos Tutorials": "Videos Tutorials", + "View All": "View All", + "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 Siro 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", + "Waiting": "Waiting", + "Waiting Time": "Waiting Time", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "بانتظار الكابتن...", + "Waiting for Driver ...": "بانتظار الكابتن...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "ننتظر موقعك", + "Wallet": "المحفظة", + "Wallet Add": "Wallet Add", + "Wallet Added": "Wallet Added", + "Wallet Added\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}": "Wallet Added\\\\\\\${(remainingFee).toStringAsFixed(0)}", + "Wallet Payment": "Wallet Payment", + "Wallet Phone Number": "Wallet Phone Number", + "Wallet Type": "Wallet Type", + "Wallet is blocked": "المحفظة موقوفة", + "Wallet!": "المحفظة!", + "Warning": "Warning", + "Warning: Siroing detected!": "Warning: Siroing 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", + "We are process picture please wait": "We are process picture please wait", + "We are process picture please wait ": "نعالج الصورة، انتظر شوي", + "We are search for nearst driver": "ندور أقرب كابتن", + "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 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 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 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 need access to your location to match you with nearby passengers and ensure accurate navigation.": "We need access to your location to match you with nearby passengers and ensure accurate navigation.", + "We need access to your location to match you with nearby passengers and provide accurate navigation.": "We need access to your location to match you with nearby passengers and provide accurate navigation.", + "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 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 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 أرقام لإيميلك", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "بنشوف لك كابتن ثاني.\\nانتظر لاهنت.", + "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.": "We will send you a notification as soon as your account is approved. You can safely close this page, and we'll let you know when the review is complete.", + "Wed": "Wed", + "Weekly Budget": "Weekly Budget", + "Weekly Challenges": "Weekly Challenges", + "Weekly Earnings": "Weekly Earnings", + "Weekly Plan": "Weekly Plan", + "Weekly Streak": "Weekly Streak", + "Weekly Summary": "Weekly Summary", + "Welcome": "Welcome", + "Welcome Back!": "هلا بك من جديد!", + "Welcome Offer!": "Welcome Offer!", + "Welcome to Siro!": "Welcome to Siro!", + "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 Siro?", + "What is the feature of our wallet?": "What is the feature of our wallet?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "وش أنواع السيارات؟", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "جلب الموقع من واتساب", + "When": "متى", + "When you complete 500 trips, you will be eligible for exclusive health insurance offers.": "When you complete 500 trips, you will be eligible for exclusive health insurance offers.", + "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.": "When you complete 600 trips, you will be eligible to receive offers for maintenance of your car.", + "Where are you going?": "وين رايح؟", + "Where are you, sir?": "Where are you, sir?", + "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 Siro?", + "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 Siro, you can get a ride to your destination in minutes.", + "Withdraw": "Withdraw", + "Work": "الدوام", + "Work & Contact": "العمل والتواصل", + "Work 30 consecutive days": "Work 30 consecutive days", + "Work 7 consecutive days": "Work 7 consecutive days", + "Work Days": "Work Days", + "Work Saved": "Work Saved", + "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 - 17:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "الدوام من 12 لـ 7.\\nأرسل واتساب أو إيميل.", + "Would the passenger like to settle the remaining fare using their wallet?": "Would the passenger like to settle the remaining fare using their wallet?", + "Would you like to proceed with health insurance?": "Would you like to proceed with health insurance?", + "Write note": "اكتب ملاحظة", + "Write the reason for canceling the trip": "Write the reason for canceling the trip", + "Write your comment here": "Write your comment here", + "Write your reason...": "Write your reason...", + "YYYY-MM-DD": "YYYY-MM-DD", + "Year": "السنة", + "Year is": "السنة:", + "Year of Manufacture": "Year of Manufacture", + "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 Siro 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 !": "توقفت اليوم!", + "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي وتأخذ حقك من", + "You Can Cancel the Trip and get Cost From": "You Can Cancel the Trip and get Cost From", + "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي إذا تأخر الكابتن", + "You Dont Have Any amount in": "ما عندك رصيد في", + "You Dont Have Any places yet !": "ما عندك أماكن!", + "You Earn today is": "You Earn today is", + "You Have": "عندك", + "You Have Tips": "عندك إكرامية", + "You Have in": "You Have in", + "You Refused 3 Rides this Day that is the reason": "You Refused 3 Rides this Day that is the reason", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "رفضت 3 مشاوير اليوم.\\nنشوفك بكره!", + "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason\\nSee you Tomorrow!", + "You Should be select reason.": "لازم تختار سبب.", + "You Should choose rate figure": "لازم تختار تقييم", + "You Will Be Notified": "You Will Be Notified", + "You accepted the VIP order.": "You accepted the VIP order.", + "You are Delete": "أنت بتحذف", + "You are Stopped": "أنت موقوف", + "You are buying": "You are buying", + "You are far from passenger location": "You are far from passenger location", + "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?": "You are in an active ride. Leaving this screen might stop tracking. Are you sure you want to exit?", + "You are near the destination": "You are near the destination", + "You are not in near to passenger location": "أنت بعيد عن الراكب", + "You are not near": "You are not near", + "You are not near the passenger location": "You are not near the passenger location", + "You can buy Points to let you online": "You can buy Points to let you online", + "You can buy Points to let you online\\nby this list below": "اشتر نقاط عشان تكون متصل\\nمن القائمة", + "You can buy points from your budget": "تقدر تشتري نقاط من رصيدك", + "You can call or record audio during this trip.": "تقدر تتصل أو تسجل صوت خلال المشوار.", + "You can call or record audio of this trip": "تقدر تتصل أو تسجل صوت", + "You can cancel Ride now": "تقدر تلغي الحين", + "You can cancel trip": "تقدر تكنسل", + "You can change the Country to get all features": "غير الدولة عشان كل الميزات", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "تغيير اللغة", + "You can change the vibration feedback for all buttons": "تقدر تغير اهتزاز الأزرار", + "You can claim your gift once they complete 2 trips.": "تقدر تأخذ الهدية إذا كملوا مشوارين.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "عن طريق الشات في التطبيق.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 10:00 - 17:00.": "You can contact us during working hours from 10:00 - 17:00.", + "You can contact us during working hours from 12:00 - 19:00.": "كلمناه من 12 لـ 7.", + "You can decline a request without any cost": "تقدر ترفض بدون تكلفة", + "You can now receive orders": "You can now receive orders", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "ادفع كاش أو بطاقة.", + "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 Siro 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", + "You cannot call the passenger due to policy violations": "You cannot call the passenger due to policy violations", + "You deserve the gift": "تستاهل الهدية", + "You do not have enough money in your SAFAR wallet": "You do not have enough money in your SAFAR wallet", + "You dont Add Emergency Phone Yet!": "ما ضفت رقم طوارئ!", + "You dont have Points": "ما عندك نقاط", + "You dont have invitation code": "You dont have invitation code", + "You dont have money in your Wallet": "You dont have money in your Wallet", + "You dont have money in your Wallet or you should less transfer 5 LE to activate": "You dont have money in your Wallet or you should less transfer 5 LE to activate", + "You gained": "You gained", + "You get 100 pts, they get 50 pts": "You get 100 pts, they get 50 pts", + "You have": "You have", + "You have 200": "You have 200", + "You have 500": "You have 500", + "You have already received your gift for inviting": "قد استلمت هديتك على هالدعوة", + "You have already used this promo code.": "استخدمت هالكود من قبل.", + "You have arrived at your destination": "You have arrived at your destination", + "You have arrived at your destination, @name": "You have arrived at your destination, @name", + "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.": "You have been driving for 12 hours. For your safety and compliance, please take a 6-hour break.", + "You have call from driver": "عندك اتصال من الكابتن", + "You have chosen not to proceed with health insurance.": "You have chosen not to proceed with health insurance.", + "You have copied the promo code.": "نسخت كود الخصم.", + "You have earned 20": "كسبت 20", + "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.": "You have exceeded the allowed cancellation limit (3 times).\\nYou cannot work until the penalty expires.", + "You have finished all times": "You have finished all times", + "You have finished all times ": "خلصت محاولاتك", + "You have gift 300 \${CurrencyHelper.currency}": "You have gift 300 \${CurrencyHelper.currency}", + "You have gift 300 EGP": "You have gift 300 EGP", + "You have gift 300 JOD": "You have gift 300 JOD", + "You have gift 300 L.E": "You have gift 300 L.E", + "You have gift 300 SYP": "You have gift 300 SYP", + "You have gift 300 \\\${CurrencyHelper.currency}": "You have gift 300 \\\${CurrencyHelper.currency}", + "You have gift 30000 EGP": "You have gift 30000 EGP", + "You have gift 30000 JOD": "You have gift 30000 JOD", + "You have gift 30000 SYP": "You have gift 30000 SYP", + "You have got a gift": "You have got a gift", + "You have got a gift for invitation": "جتك هدية عشان الدعوة", + "You have in account": "عندك بالحساب", + "You have promo!": "عندك خصم!", + "You have received a gift token!": "You have received a gift token!", + "You have successfully charged your account": "You have successfully charged your account", + "You have successfully opted for health insurance.": "You have successfully opted for health insurance.", + "You have transfer to your wallet from": "You have transfer to your wallet from", + "You have transferred to your wallet from": "You have transferred to your wallet from", + "You have upload Criminal documents": "You have upload Criminal documents", + "You haven't moved sufficiently!": "You haven't moved sufficiently!", + "You must Verify email !.": "لازم تأكد الإيميل!", + "You must be charge your Account": "لازم تشحن حسابك", + "You must be closer than 100 meters to arrive": "You must be closer than 100 meters to arrive", + "You must be recharge your Account": "You must be recharge your Account", + "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق لتغيير اللغة.", + "You need to be closer to the pickup location.": "You need to be closer to the pickup location.", + "You need to complete 500 trips": "You need to complete 500 trips", + "You should complete 500 trips to unlock this feature.": "You should complete 500 trips to unlock this feature.", + "You should complete 600 trips": "You should complete 600 trips", + "You should have upload it .": "لازم ترفعها طال عمرك.", + "You should renew Driver license": "You should renew Driver license", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "لازم تختار واحد", + "You should select your country": "اختر دولتك", + "You should use Touch ID or Face ID to confirm payment": "You should use Touch ID or Face ID to confirm payment", + "You trip distance is": "مسافة المشوار:", + "You will arrive to your destination after": "You will arrive to your destination after", + "You will arrive to your destination after timer end.": "بتوصل بعد انتهاء المؤقت.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "بتدفع للكابتن أو نأخذها منك المشوار الجاي", + "You will be thier in": "بتوصل خلال", + "You will cancel registration": "You will cancel registration", + "You will choose allow all the time to be ready receive orders": "اختر 'السماح طوال الوقت' لاستقبال الطلبات", + "You will choose one of above !": "اختر واحد من اللي فوق!", + "You will get cost of your work for this trip": "بتاخذ حق مشوارك", + "You will need to pay the cost to the driver, or it will be deducted from your next trip": "You will need to pay the cost to the driver, or it will be deducted from your next trip", + "You will receive a code in SMS message": "بيجيك كود برسالة نصية", + "You will receive a code in WhatsApp Messenger": "بيجيك كود ع الواتساب", + "You will receive code in sms message": "You will receive code in sms message", + "You will recieve code in sms message": "بيجيك كود في رسالة", + "Your Account is Deleted": "انحذف حسابك", + "Your Activity": "Your Activity", + "Your Application is Under Review": "Your Application is Under Review", + "Your Budget less than needed": "رصيدك أقل من المطلوب", + "Your Choice, Our Priority": "اختيارك يهمنا", + "Your Driver Referral Code": "Your Driver Referral Code", + "Your Earnings": "Your Earnings", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your Name is Wrong": "Your Name is Wrong", + "Your Passenger Referral Code": "Your Passenger Referral Code", + "Your Question": "Your Question", + "Your Questions": "Your Questions", + "Your Referral Code": "Your Referral Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is": "Your Ride Duration is", + "Your Wallet balance is": "Your Wallet balance is", + "Your account is temporarily restricted ⛔": "Your account is temporarily restricted ⛔", + "Your are far from passenger location": "أنت بعيد عن الراكب", + "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.": "Your balance is less than the minimum withdrawal amount of {minAmount} S.P.", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your completed trips will appear here": "Your completed trips will appear here", + "Your data will be erased after 2 weeks": "Your data will be erased after 2 weeks", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your device is good and very suitable": "Your device is good and very suitable", + "Your device provides excellent performance": "Your device provides excellent performance", + "Your driver’s license and/or car tax has expired. Please renew them before proceeding.": "Your driver’s license and/or car tax has expired. Please renew them before proceeding.", + "Your driver’s license has expired.": "Your driver’s license has expired.", + "Your driver’s license has expired. Please renew it before proceeding.": "Your driver’s license has expired. Please renew it before proceeding.", + "Your driver’s license has expired. Please renew it.": "Your driver’s license has expired. Please renew it.", + "Your email address": "Your email address", + "Your email not updated yet": "Your email not updated yet", + "Your fee is": "Your fee is", + "Your invite code was successfully applied!": "تم تطبيق كود الدعوة!", + "Your journey starts here": "مشوارك يبدأ هنا", + "Your location is being tracked in the background.": "Your location is being tracked in the background.", + "Your name": "اسمك", + "Your order is being prepared": "طلبك يتجهز", + "Your order sent to drivers": "أرسلنا طلبك للكباتن", + "Your password": "Your password", + "Your past trips will appear here.": "مشاويرك السابقة بتطلع هنا.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment was successful.": "Your payment was successful.", + "Your personal invitation code is:": "كود الدعوة حقك:", + "Your rating has been submitted.": "Your rating has been submitted.", + "Your total balance:": "Your total balance:", + "Your trip cost is": "تكلفة مشوارك:", + "Your trip distance is": "مسافة مشوارك:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\\\$": "\\\$", + "\\\$achievedScore/\\\$maxScore \\\${\"points": "\\\$achievedScore/\\\$maxScore \\\${\"points", + "\\\$countOfInvitDriver / 100 \\\${'Trip": "\\\$countOfInvitDriver / 100 \\\${'Trip", + "\\\$countOfInvitDriver / 3 \\\${'Trip": "\\\$countOfInvitDriver / 3 \\\${'Trip", + "\\\$error": "\\\$error", + "\\\$pointFromBudget \\\${'has been added to your budget": "\\\$pointFromBudget \\\${'has been added to your budget", + "\\\$pricePoint": "\\\$pricePoint", + "\\\$title \\\$subtitle": "\\\$title \\\$subtitle", + "\\\${\"Minimum transfer amount is": "\\\${\"Minimum transfer amount is", + "\\\${\"NEXT STEP": "\\\${\"NEXT STEP", + "\\\${\"NationalID": "\\\${\"NationalID", + "\\\${\"Passenger cancelled the ride.": "\\\${\"Passenger cancelled the ride.", + "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}": "\\\${\"Total budgets on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalPrice'] ?? 0}", + "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}": "\\\${\"Total rides on month\".tr} = \\\${durationController.jsonData2['message'][0]['totalCount'] ?? 0}", + "\\\${\"Transfer Fee": "\\\${\"Transfer Fee", + "\\\${\"You must leave at least": "\\\${\"You must leave at least", + "\\\${\"amount": "\\\${\"amount", + "\\\${\"transaction_id": "\\\${\"transaction_id", + "\\\${'*Siro APP CODE*": "\\\${'*Siro APP CODE*", + "\\\${'*Siro DRIVER CODE*": "\\\${'*Siro DRIVER CODE*", + "\\\${'Address": "\\\${'Address", + "\\\${'Address: ": "\\\${'Address: ", + "\\\${'Age": "\\\${'Age", + "\\\${'An unexpected error occurred:": "\\\${'An unexpected error occurred:", + "\\\${'Average of Hours of": "\\\${'Average of Hours of", + "\\\${'Be sure for take accurate images please\\nYou have": "\\\${'Be sure for take accurate images please\\nYou have", + "\\\${'Car Expire": "\\\${'Car Expire", + "\\\${'Car Kind": "\\\${'Car Kind", + "\\\${'Car Plate": "\\\${'Car Plate", + "\\\${'Chassis": "\\\${'Chassis", + "\\\${'Color": "\\\${'Color", + "\\\${'Date of Birth": "\\\${'Date of Birth", + "\\\${'Date of Birth: ": "\\\${'Date of Birth: ", + "\\\${'Displacement": "\\\${'Displacement", + "\\\${'Document Number: ": "\\\${'Document Number: ", + "\\\${'Drivers License Class": "\\\${'Drivers License Class", + "\\\${'Drivers License Class: ": "\\\${'Drivers License Class: ", + "\\\${'Expiry Date": "\\\${'Expiry Date", + "\\\${'Expiry Date: ": "\\\${'Expiry Date: ", + "\\\${'Failed to save driver data": "\\\${'Failed to save driver data", + "\\\${'Fuel": "\\\${'Fuel", + "\\\${'FullName": "\\\${'FullName", + "\\\${'Height: ": "\\\${'Height: ", + "\\\${'Hi": "\\\${'Hi", + "\\\${'How can I register as a driver?": "\\\${'How can I register as a driver?", + "\\\${'Inspection Date": "\\\${'Inspection Date", + "\\\${'InspectionResult": "\\\${'InspectionResult", + "\\\${'IssueDate": "\\\${'IssueDate", + "\\\${'License Expiry Date": "\\\${'License Expiry Date", + "\\\${'Made :": "\\\${'Made :", + "\\\${'Make": "\\\${'Make", + "\\\${'Model": "\\\${'Model", + "\\\${'Name": "\\\${'Name", + "\\\${'Name :": "\\\${'Name :", + "\\\${'Name in arabic": "\\\${'Name in arabic", + "\\\${'National Number": "\\\${'National Number", + "\\\${'NationalID": "\\\${'NationalID", + "\\\${'Next Level:": "\\\${'Next Level:", + "\\\${'OrderId": "\\\${'OrderId", + "\\\${'Owner Name": "\\\${'Owner Name", + "\\\${'Plate Number": "\\\${'Plate Number", + "\\\${'Please enter": "\\\${'Please enter", + "\\\${'Please wait": "\\\${'Please wait", + "\\\${'Price:": "\\\${'Price:", + "\\\${'Remaining:": "\\\${'Remaining:", + "\\\${'Ride": "\\\${'Ride", + "\\\${'Tax Expiry Date": "\\\${'Tax Expiry Date", + "\\\${'The price must be over than ": "\\\${'The price must be over than ", + "\\\${'The reason is": "\\\${'The reason is", + "\\\${'Transaction successful": "\\\${'Transaction successful", + "\\\${'Update": "\\\${'Update", + "\\\${'VIN :": "\\\${'VIN :", + "\\\${'We have sent a verification code to your mobile number:": "\\\${'We have sent a verification code to your mobile number:", + "\\\${'When": "\\\${'When", + "\\\${'Year": "\\\${'Year", + "\\\${'You can resend in": "\\\${'You can resend in", + "\\\${'You gained": "\\\${'You gained", + "\\\${'You have call from driver": "\\\${'You have call from driver", + "\\\${'You have in account": "\\\${'You have in account", + "\\\${'before": "\\\${'before", + "\\\${'expected": "\\\${'expected", + "\\\${'model :": "\\\${'model :", + "\\\${'wallet_credited_message": "\\\${'wallet_credited_message", + "\\\${'year :": "\\\${'year :", + "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "\\\${'المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "\\\${'الوقت المتبقي": "\\\${'الوقت المتبقي", + "\\\${'رصيدك الإجمالي:": "\\\${'رصيدك الإجمالي:", + "\\\${'ُExpire Date": "\\\${'ُExpire Date", + "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip": "\\\${(driverInvitationDataToPassengers[index]['passengerName'].toString())} \\\${driverInvitationDataToPassengers[index]['countOfInvitDriver']} / 3 \\\${'Trip", + "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip": "\\\${(driverInvitationData[index]['invitorName'])} \\\${(driverInvitationData[index]['countOfInvitDriver'])} / 100 \\\${'Trip", + "\\\${AppInformation.appName} Wallet": "\\\${AppInformation.appName} Wallet", + "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س": "\\\${captainWalletController.totalAmountVisa} \\\${'ل.س", + "\\\${controller.totalCost} \\\${'\\\\\\\$": "\\\${controller.totalCost} \\\${'\\\\\\\$", + "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points": "\\\${controller.totalPoints} / \\\${next.minPoints} \\\${'Points", + "\\\${e.value.toInt()} \\\${'Rides": "\\\${e.value.toInt()} \\\${'Rides", + "\\\${firstNameController.text} \\\${lastNameController.text}": "\\\${firstNameController.text} \\\${lastNameController.text}", + "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements": "\\\${gc.unlockedCount}/\\\${gc.totalAchievements} \\\${'Achievements", + "\\\${rating.toStringAsFixed(1)} (\\\${'reviews": "\\\${rating.toStringAsFixed(1)} (\\\${'reviews", + "\\\${rc.activeReferrals}', 'Active": "\\\${rc.activeReferrals}', 'Active", + "\\\${rc.totalReferrals}', 'Total Invites": "\\\${rc.totalReferrals}', 'Total Invites", + "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards": "\\\${rc.totalRewardsEarned.toStringAsFixed(0)}', 'Rewards", + "\\\${sc.activeDays} \\\${'Days": "\\\${sc.activeDays} \\\${'Days", + "\\\\\\\$": "\\\\\\\$", + "\\\\\\\$error": "\\\\\\\$error", + "\\\\\\\$pricePoint": "\\\\\\\$pricePoint", + "\\\\\\\$title \\\\\\\$subtitle": "\\\\\\\$title \\\\\\\$subtitle", + "\\\\\\\${AppInformation.appName} Wallet": "\\\\\\\${AppInformation.appName} Wallet", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nونهتم بالأسعار تكون مناسبة.", + "accepted": "accepted", + "accepted your order": "accepted your order", + "accepted your order at price": "accepted your order at price", + "age": "age", + "agreement subtitle": "للمتابعة، وافق على الشروط والخصوصية.", + "airport": "airport", + "alert": "alert", + "amount": "amount", + "amount_paid": "amount_paid", + "an error occurred": "صار خطأ غير متوقع: @error", + "and I have a trip on": "وعندي مشوار على", + "and acknowledge our": "وتقر بـ", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "انطلق تطبيق آمن وموثوق.", + "ar": "ar", + "ar-gulf": "ar-gulf", + "ar-ma": "ar-ma", + "arrival time to reach your point": "وقت الوصول لنقطتك", + "as the driver.": "as the driver.", + "attach audio of complain": "attach audio of complain", + "attach correct audio": "attach correct audio", + "be sure": "be sure", + "before": "قبل", + "below, I confirm that I have read and agree to the": "below, I confirm that I have read and agree to the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the": "below, I have reviewed and agree to the Terms of Use and acknowledge the", + "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.", + "birthdate": "birthdate", + "bonus_added": "bonus_added", + "by": "by", + "by this list below": "by this list below", + "cancel": "cancel", + "carType'] ?? 'Fixed Price": "carType'] ?? 'Fixed Price", + "car_back": "car_back", + "car_color": "car_color", + "car_front": "car_front", + "car_license_back": "car_license_back", + "car_license_front": "car_license_front", + "car_model": "car_model", + "car_plate": "car_plate", + "change device": "change device", + "color.beige": "color.beige", + "color.black": "color.black", + "color.blue": "color.blue", + "color.bronze": "color.bronze", + "color.brown": "color.brown", + "color.burgundy": "color.burgundy", + "color.champagne": "color.champagne", + "color.darkGreen": "color.darkGreen", + "color.gold": "color.gold", + "color.gray": "color.gray", + "color.green": "color.green", + "color.gunmetal": "color.gunmetal", + "color.maroon": "color.maroon", + "color.navy": "color.navy", + "color.orange": "color.orange", + "color.purple": "color.purple", + "color.red": "color.red", + "color.silver": "color.silver", + "color.white": "color.white", + "color.yellow": "color.yellow", + "committed_to_safety": "نهتم بسلامتك.", + "complete profile subtitle": "كمل بياناتك عشان تبدأ", + "complete registration button": "إتمام التسجيل", + "complete, you can claim your gift": "اكتمل، اطلب هديتك", + "connection_failed": "connection_failed", + "copied to clipboard": "copied to clipboard", + "cost is": "cost is", + "created time": "وقت الإنشاء", + "de": "de", + "default_tone": "default_tone", + "deleted": "deleted", + "detected": "detected", + "distance is": "المسافة هي", + "driver' ? 'Invite Driver": "driver' ? 'Invite Driver", + "driver_license": "رخصة_قيادة", + "duration is": "المدة:", + "e.g., 0912345678": "e.g., 0912345678", + "education": "education", + "el": "el", + "email optional label": "الإيميل (اختياري)", + "email', 'support@sefer.live', 'Hello": "email', 'support@sefer.live', 'Hello", + "end": "end", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "end_name'] ?? 'Destination Location": "end_name'] ?? 'Destination Location", + "enter otp validation": "دخل الكود (5 أرقام)", + "error": "error", + "error'] ?? 'Failed to claim reward": "error'] ?? 'Failed to claim reward", + "error_processing_document": "error_processing_document", + "es": "es", + "expected": "expected", + "expiration_date": "expiration_date", + "fa": "fa", + "face detect": "التحقق من الوجه", + "failed to send otp": "فشل إرسال الرمز.", + "false": "false", + "first name label": "الاسم الأول", + "first name required": "الاسم الأول مطلوب", + "for": "لـ", + "for ": "for ", + "for transfer fees": "for transfer fees", + "for your first registration!": "لتسجيلك الأول!", + "fr": "fr", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 3:00", + "from 23:59 till 05:30": "من 11:59 م لـ 5:30 ص", + "from 3 times Take Attention": "من 3 مرات، انتبه", + "from 3:00pm to 6:00 pm": "from 3:00pm to 6:00 pm", + "from 7:00am to 10:00am": "from 7:00am to 10:00am", + "from your favorites": "from your favorites", + "from your list": "من قائمتك", + "fromBudget": "fromBudget", + "gender": "gender", + "get_a_ride": "مع انطلق، الموتر يجيك بدقايق.", + "get_to_destination": "وصل وجهتك بسرعة.", + "go to your passenger location before": "go to your passenger location before", + "go to your passenger location before\\nPassenger cancel trip": "رح لموقع الراكب قبل يكنسل", + "h": "h", + "hard_brakes']} \${'Hard Brakes": "hard_brakes']} \${'Hard Brakes", + "hard_brakes']} \\\${'Hard Brakes": "hard_brakes']} \\\${'Hard Brakes", + "has been added to your budget": "has been added to your budget", + "has completed": "كمل", + "hi": "hi", + "hour": "ساعة", + "hours before trying again.": "hours before trying again.", + "i agree": "موافق", + "id': 1, 'name': 'Car": "id': 1, 'name': 'Car", + "id': 1, 'name': 'Petrol": "id': 1, 'name': 'Petrol", + "id': 2, 'name': 'Diesel": "id': 2, 'name': 'Diesel", + "id': 2, 'name': 'Motorcycle": "id': 2, 'name': 'Motorcycle", + "id': 3, 'name': 'Electric": "id': 3, 'name': 'Electric", + "id': 3, 'name': 'Van / Bus": "id': 3, 'name': 'Van / Bus", + "id': 4, 'name': 'Hybrid": "id': 4, 'name': 'Hybrid", + "id_back": "id_back", + "id_card_back": "id_card_back", + "id_card_front": "id_card_front", + "id_front": "id_front", + "if you dont have account": "إذا ما عندك حساب", + "if you want help you can email us here": "تبي مساعدة؟ راسلنا", + "image verified": "الصورة تمام", + "in your": "in your", + "in your wallet": "in your wallet", + "incorrect_document_message": "incorrect_document_message", + "incorrect_document_title": "incorrect_document_title", + "insert amount": "دخل المبلغ", + "is ON for this month": "is ON for this month", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "it": "it", + "joined": "انضم", + "kilometer": "kilometer", + "last name label": "اسم العائلة", + "last name required": "اسم العائلة مطلوب", + "ll let you know when the review is complete.": "ll let you know when the review is complete.", + "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 Siro.", + "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 passenger": "رسالة من الراكب", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message'] ?? 'Failed to send OTP.": "message'] ?? 'Failed to send OTP.", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "min": "min", + "minute": "minute", + "minutes before trying again.": "minutes before trying again.", + "model :": "الموديل:", + "moi\\\\": "moi\\\\", + "moi\\\\\\\\": "moi\\\\\\\\", + "mtn": "mtn", + "my location": "موقعي", + "non_id_card_back": "non_id_card_back", + "non_id_card_front": "non_id_card_front", + "not similar": "غير مطابق", + "of": "من", + "on": "on", + "one last step title": "خطوة أخيرة", + "otp sent subtitle": "أرسلنا كود من 5 أرقام على\\n@phoneNumber", + "otp sent success": "تم إرسال الرمز للواتساب.", + "otp verification failed": "رمز التحقق غلط.", + "passenger agreement": "اتفاقية الراكب", + "passenger amount to me": "passenger amount to me", + "payment_success": "payment_success", + "pending": "pending", + "phone number label": "رقم الجوال", + "phone number of driver": "phone number of driver", + "phone number required": "مطلوب رقم الجوال", + "please go to picker location exactly": "رح لموقع الركوب بالضبط", + "please order now": "اطلب الحين", + "please wait till driver accept your order": "انتظر الكابتن يقبل", + "points": "points", + "price is": "السعر:", + "privacy policy": "سياسة الخصوصية.", + "rating_count": "rating_count", + "rating_driver": "rating_driver", + "re eligible for a special offer!": "re eligible for a special offer!", + "registration failed": "فشل التسجيل.", + "registration_date": "registration_date", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "ru": "ru", + "s Degree": "s Degree", + "s License": "s License", + "s Personal Information": "s Personal Information", + "s Promo": "s Promo", + "s Promos": "s Promos", + "s Response": "s Response", + "s Siro account.": "s Siro account.", + "s Siro account.\\nStore your money with us and receive it in your bank as a monthly salary.": "s Siro 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 Siro 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 Siro app!", + "safe_and_comfortable": "استمتع بمشوار آمن.", + "scams operations": "scams operations", + "scan Car License.": "scan Car License.", + "seconds": "ثانية", + "security_warning": "security_warning", + "send otp button": "أرسل كود التحقق", + "server error try again": "خطأ في السيرفر، حاول مرة ثانية.", + "server_error": "server_error", + "server_error_message": "server_error_message", + "similar": "مطابق", + "start": "start", + "startName'] ?? 'Unknown Location": "startName'] ?? 'Unknown Location", + "start_name'] ?? 'Pickup Location": "start_name'] ?? 'Pickup Location", + "string": "string", + "syriatel": "syriatel", + "t an Egyptian phone number": "t an Egyptian phone number", + "t be late": "t be late", + "t cancel!": "t cancel!", + "t continue with us .": "t continue with us .", + "t continue with us .\\nYou should renew Driver license": "t continue with us .\\nYou should renew Driver license", + "t find a valid route to this destination. Please try selecting a different point.": "t find a valid route to this destination. Please try selecting a different point.", + "t forget your personal belongings.": "t forget your personal belongings.", + "t forget your ride!": "t forget your ride!", + "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "t found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.", + "t have a code": "t have a code", + "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 Siro 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", + "t start trip if not": "t start trip if not", + "t start trip if passenger not in your car": "t start trip if passenger not in your car", + "terms of use": "شروط الاستخدام", + "the 300 points equal 300 L.E": "300 نقطة بـ 300 ر.س", + "the 300 points equal 300 L.E for you": "the 300 points equal 300 L.E for you", + "the 300 points equal 300 L.E for you\\nSo go and gain your money": "the 300 points equal 300 L.E for you\\nSo go and gain your money", + "the 3000 points equal 3000 L.E": "the 3000 points equal 3000 L.E", + "the 3000 points equal 3000 L.E for you": "the 3000 points equal 3000 L.E for you", + "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 ر.س", + "the 500 points equal 30 JOD for you": "the 500 points equal 30 JOD for you", + "the 500 points equal 30 JOD for you\\nSo go and gain your money": "the 500 points equal 30 JOD for you\\nSo go and gain your money", + "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm to 6:00 pm", + "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm": "this is count of your all trips in the Afternoon promo today from 3:00pm-6:00 pm", + "this is count of your all trips in the morning promo today from 7:00am to 10:00am": "this is count of your all trips in the morning promo today from 7:00am to 10:00am", + "this is count of your all trips in the morning promo today from 7:00am-10:00am": "this is count of your all trips in the morning promo today from 7:00am-10:00am", + "this will delete all files from your device": "بيمسح كل الملفات من جهازك", + "time Selected": "time Selected", + "tips": "tips", + "tips\\nTotal is": "tips\\nTotal is", + "title': 'scams operations": "title': 'scams operations", + "to": "to", + "to arrive you.": "to arrive you.", + "to receive ride requests even when the app is in the background.": "to receive ride requests even when the app is in the background.", + "to ride with": "to ride with", + "token change": "تغيير الرمز", + "token updated": "تحدث الرمز", + "towards": "towards", + "tr": "tr", + "transaction_failed": "transaction_failed", + "transaction_id": "transaction_id", + "transfer Successful": "transfer Successful", + "trips": "مشاوير", + "true": "true", + "type here": "اكتب هنا", + "unknown_document": "unknown_document", + "upgrade price": "upgrade price", + "uploaded sucssefuly": "uploaded sucssefuly", + "ve arrived.": "ve arrived.", + "ve been trying to reach you but your phone is off.": "ve been trying to reach you but your phone is off.", + "verify and continue button": "تحقق وكمال", + "verify your number title": "تحقق من رقمك", + "vin": "vin", + "wait 1 minute to receive message": "انتظر دقيقة توصلك الرسالة", + "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 siro", + "welcome user": "يا هلا، @firstName!", + "welcome_message": "أهلاً بك في انطلق!", + "welcome_to_siro": "welcome_to_siro", + "whatsapp', phone1, 'Hello": "whatsapp', phone1, 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "اكتب اللون", + "write Expiration Date for your car": "اكتب تاريخ الانتهاء", + "write Make for your car": "اكتب الشركة", + "write Model for your car": "اكتب الموديل", + "write Year for your car": "اكتب السنة", + "write comment here": "write comment here", + "write vin for your car": "اكتب رقم الهيكل", + "year :": "السنة:", + "you are not moved yet !": "you are not moved yet !", + "you can buy": "you can buy", + "you can show video how to setup": "you can show video how to setup", + "you canceled order": "you canceled order", + "you dont have accepted ride": "you dont have accepted ride", + "you gain": "كسبت", + "you have a negative balance of": "you have a negative balance of", + "you have connect to passengers and let them cancel the order": "you have connect to passengers and let them cancel the order", + "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 Siro Wallet", + "you will use this device?": "you will use this device?", + "your ride is Accepted": "مشوارك انقبل", + "your ride is applied": "انطلب مشوارك", + "zh": "zh", + "أدخل رقم محفظتك": "أدخل رقم محفظتك", + "أوافق": "أوافق", + "إلغاء": "إلغاء", + "إلى": "إلى", + "اضغط للاستماع": "اضغط للاستماع", + "الاسم الكامل": "الاسم الكامل", + "التالي": "التالي", + "التقط صورة الوجه الخلفي للرخصة": "التقط صورة الوجه الخلفي للرخصة", + "التقط صورة لخلفية رخصة المركبة": "التقط صورة لخلفية رخصة المركبة", + "التقط صورة لرخصة القيادة": "التقط صورة لرخصة القيادة", + "التقط صورة لصحيفة الحالة الجنائية": "التقط صورة لصحيفة الحالة الجنائية", + "التقط صورة للوجه الأمامي للهوية": "التقط صورة للوجه الأمامي للهوية", + "التقط صورة للوجه الخلفي للهوية": "التقط صورة للوجه الخلفي للهوية", + "التقط صورة لوجه رخصة المركبة": "التقط صورة لوجه رخصة المركبة", + "الرصيد الحالي": "الرصيد الحالي", + "الرصيد المتاح": "الرصيد المتاح", + "الرقم القومي": "الرقم القومي", + "السعر": "السعر", + "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو": "المبلغ في محفظتك أقل من الحد الأدنى للسحب وهو", + "المسافة": "المسافة", + "الوقت المتبقي": "الوقت المتبقي", + "بطاقة الهوية – الوجه الأمامي": "بطاقة الهوية – الوجه الأمامي", + "بطاقة الهوية – الوجه الخلفي": "بطاقة الهوية – الوجه الخلفي", + "تأكيد": "تأكيد", + "تحديث الآن": "تحديث الآن", + "تحديث جديد متوفر": "تحديث جديد متوفر", + "تم إلغاء الرحلة": "تم إلغاء الرحلة", + "تنبيه": "تنبيه", + "ثانية": "ثانية", + "رخصة القيادة – الوجه الأمامي": "رخصة القيادة – الوجه الأمامي", + "رخصة القيادة – الوجه الخلفي": "رخصة القيادة – الوجه الخلفي", + "رخصة المركبة – الوجه الأمامي": "رخصة المركبة – الوجه الأمامي", + "رخصة المركبة – الوجه الخلفي": "رخصة المركبة – الوجه الخلفي", + "رصيدك الإجمالي:": "رصيدك الإجمالي:", + "رفض": "رفض", + "سحب الرصيد": "سحب الرصيد", + "سنة الميلاد": "سنة الميلاد", + "سيتم إلغاء التسجيل": "سيتم إلغاء التسجيل", + "شاهد فيديو الشرح": "شاهد فيديو الشرح", + "صحيفة الحالة الجنائية": "صحيفة الحالة الجنائية", + "طريقة الدفع:": "طريقة الدفع:", + "طلب جديد": "طلب جديد", + "عدم محكومية": "عدم محكومية", + "قبول": "قبول", + "ل.س": "ل.س", + "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.": "لقد ألغيت \\\$count رحلات اليوم. الوصول لـ 3 سيعرضك للإيقاف المؤقت.", + "للوصول": "للوصول", + "مثال: 0912345678": "مثال: 0912345678", + "مدة الرحلة: \${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\${order.tripDurationMinutes} دقيقة", + "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة": "مدة الرحلة: \\\\\\\${order.tripDurationMinutes} دقيقة", + "ملخص الأرباح": "ملخص الأرباح", + "من": "من", + "موافق": "موافق", + "نتيجة الفحص": "نتيجة الفحص", + "هل تريد سحب أرباحك؟": "هل تريد سحب أرباحك؟", + "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.": "يوجد إصدار جديد من التطبيق في المتجر، يرجى التحديث للحصول على الميزات الجديدة.", + "ُExpire Date": "تاريخ الانتهاء", + "⚠️ You need to choose an amount!": "⚠️ لازم تختار مبلغ!", + "🏆 \${'Maximum Level Reached!": "🏆 \${'Maximum Level Reached!", + "🏆 \\\${'Maximum Level Reached!": "🏆 \\\${'Maximum Level Reached!", + "💰 Pay with Wallet": "💰 ادفع بالمحفظة", + "💳 Pay with Credit Card": "💳 ادفع بالبطاقة", +}; diff --git a/siro_driver/lib/views/home/Captin/home_captain/widget/connect.dart b/siro_driver/lib/views/home/Captin/home_captain/widget/connect.dart index 33036dc..8eeb001 100755 --- a/siro_driver/lib/views/home/Captin/home_captain/widget/connect.dart +++ b/siro_driver/lib/views/home/Captin/home_captain/widget/connect.dart @@ -25,7 +25,7 @@ class ConnectWidget extends StatelessWidget { child: GetBuilder( builder: (homeCaptainController) => double.parse( (captainWalletController.totalPoints)) < - -200 + homeCaptainController.minPointsThreshold ? CupertinoButton( onPressed: () { Get.defaultDialog( @@ -33,7 +33,7 @@ class ConnectWidget extends StatelessWidget { barrierDismissible: false, title: double.parse( (captainWalletController.totalPoints)) < - -200 + homeCaptainController.minPointsThreshold ? 'You dont have Points'.tr : 'You Are Stopped For this Day !'.tr, titleStyle: AppStyle.title, @@ -43,7 +43,7 @@ class ConnectWidget extends StatelessWidget { onPressed: () async { double.parse((captainWalletController .totalPoints)) < - -200 + homeCaptainController.minPointsThreshold ? await Get.find() .speakText( 'You must be recharge your Account' @@ -58,7 +58,7 @@ class ConnectWidget extends StatelessWidget { Text( double.parse((captainWalletController .totalPoints)) < - -200 + homeCaptainController.minPointsThreshold ? 'You must be recharge your Account'.tr : 'You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!' .tr, @@ -68,7 +68,7 @@ class ConnectWidget extends StatelessWidget { ), confirm: double.parse( (captainWalletController.totalPoints)) < - -200 + homeCaptainController.minPointsThreshold ? MyElevatedButton( title: 'Recharge my Account'.tr, onPressed: () { diff --git a/siro_rider/lib/controller/local/ar_eg.dart b/siro_rider/lib/controller/local/ar_eg.dart index 265a281..1fb09b4 100644 --- a/siro_rider/lib/controller/local/ar_eg.dart +++ b/siro_rider/lib/controller/local/ar_eg.dart @@ -1,151 +1,74 @@ final Map ar_eg = { - " \$index": " \$index", - " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", - " and acknowledge our Privacy Policy.": " وتقر بسياسة الخصوصية.", - " and acknowledge the ": " y reconozco los ", - " as the driver.": " ككابتن.", " I am currently located at ": " أنا حالياً في ", " I am using": " أنا استخدم", " If you need to reach me, please contact the driver directly at": " إذا بغيتني، كلم الكابتن على", - " in your": " in your", - " in your wallet": " بمحفظتك", - " is ON for this month": " متصل هالشهر", - " joined": " joined", " KM": " كم", " Minutes": " دقائق", " Next as Cash !": " التالي كاش!", - " tips\\nTotal is": " إكرامية\\nالمجموع", - " to arrive you.": " عشان يوصلك.", - " to ride with": " عشان اركب مع", - " wallet due to a previous trip.": " wallet due to a previous trip.", - " with license plate ": " لوحتها ", " You Earn today is ": " دخلك اليوم: ", " You Have in": " عندك في", - "\"": "\"", - "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", - "\$countPoint \${'LE": "\$countPoint \${'LE", - "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", - "\$firstName \$lastName": "\$firstName \$lastName", - "\$passengerName \${'has completed": "\$passengerName \${'has completed", - "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", - "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", - "\${\"Car Color:": "\${\"Car Color:", - "\${\"Where you want go ": "\${\"Where you want go ", - "\${\"Working Hours:": "\${\"Working Hours:", - "\${'\${'Hi! This is": "\${'\${'Hi! This is", - "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", - "\${'Age": "\${'Age", - "\${'Balance:": "\${'Balance:", - "\${'Car": "\${'Car", - "\${'Car Plate is ": "\${'Car Plate is ", - "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", - "\${'Code": "\${'Code", - "\${'Color": "\${'Color", - "\${'Color is ": "\${'Color is ", - "\${'Cost Duration": "\${'Cost Duration", - "\${'Date of Birth is": "\${'Date of Birth is", - "\${'DISCOUNT": "\${'DISCOUNT", - "\${'Distance is": "\${'Distance is", - "\${'Duration is": "\${'Duration is", - "\${'Email is": "\${'Email is", - "\${'Expiration Date ": "\${'Expiration Date ", - "\${'Fee is": "\${'Fee is", - "\${'How was your trip with": "\${'How was your trip with", - "\${'Keep it up!": "\${'Keep it up!", - "\${'Make is ": "\${'Make is ", - "\${'Model is": "\${'Model is", - "\${'Negative Balance:": "\${'Negative Balance:", - "\${'Pay": "\${'Pay", - "\${'Phone Number is": "\${'Phone Number is", - "\${'Plate": "\${'Plate", - "\${'Please enter": "\${'Please enter", - "\${'Rides": "\${'Rides", - "\${'Selected Date and Time": "\${'Selected Date and Time", - "\${'Selected driver": "\${'Selected driver", - "\${'Sex is ": "\${'Sex is ", - "\${'Showing": "\${'Showing", - "\${'Stop": "\${'Stop", - "\${'Tip is": "\${'Tip is", - "\${'Tip is ": "\${'Tip is ", - "\${'Total price to ": "\${'Total price to ", - "\${'Update": "\${'Update", - "\${'Valid Until:": "\${'Valid Until:", - "\${'VIN is": "\${'VIN is", - "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", - "\${'Where to": "\${'Where to", - "\${'Year is": "\${'Year is", - "\${'You are Delete": "\${'You are Delete", - "\${'You can resend in": "\${'You can resend in", - "\${'You have a balance of": "\${'You have a balance of", - "\${'You have a negative balance of": "\${'You have a negative balance of", - "\${'you have a negative balance of": "\${'you have a negative balance of", - "\${'You have call from driver": "\${'You have call from driver", - "\${'You have call from Passenger": "\${'You have call from Passenger", - "\${'You will be thier in": "\${'You will be thier in", - "\${'you will pay to Driver": "\${'you will pay to Driver", - "\${'Your fee is ": "\${'Your fee is ", - "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", - "\${'Your trip distance is": "\${'Your trip distance is", - "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", - "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", - "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", - "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", - "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", - "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", - "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", - "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", - "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " وتقر بسياسة الخصوصية.", + " and acknowledge the ": " وتقر بـ ", + " as the driver.": " ككابتن.", + " in your": " في محفظتك", + " in your wallet": " بمحفظتك", + " is ON for this month": " متصل هالشهر", + " joined": " انضم", + " tips\\nTotal is": " إكرامية\\nالمجموع", + " tips\nTotal is": " tips\nTotal is", + " to arrive you.": " عشان يوصلك.", + " to ride with": " عشان اركب مع", + " wallet due to a previous trip.": " المحفظة بسبب رحلة سابقة.", + " with license plate ": " لوحتها ", "--": "--", - ". I am at least 18 years old.": ". Tengo al menos 18 años.", - "0.05 \${'JOD": "0.05 \${'JOD", - "0.47 \${'JOD": "0.47 \${'JOD", - "1 \${'JOD": "1 \${'JOD", - "1 \${'LE": "1 \${'LE", - "1 Passenger": "1 Passenger", + ". I am at least 18 years old.": ". عمري 18 سنة أو أكتر.", + "0.05 \${'JOD": "0.05 \${'دينار أردني", + "0.47 \${'JOD": "0.47 \${'دينار أردني", + "1 Passenger": "راكب واحد", + "1 \${'JOD": "1 \${'دينار أردني", + "1 \${'LE": "1 \${'جنيه مصري", "1. Describe Your Issue": "١. وش المشكلة؟", "10 and get 4% discount": "10 وخذ خصم 4%", "100 and get 11% discount": "100 وخذ خصم 11%", - "10000 \${'LE": "10000 \${'LE", - "100000 \${'LE": "100000 \${'LE", - "15 \${'LE": "15 \${'LE", - "15000 \${'LE": "15000 \${'LE", - "2 Passengers": "2 Passengers", + "10000 \${'LE": "10000 \${'جنيه", + "100000 \${'LE": "100000 \${'جنيه", + "15 \${'LE": "15 \${'جنيه مصري", + "15000 \${'LE": "15000 \${'جنيه مصري", + "2 Passengers": "راكبان", "2. Attach Recorded Audio": "٢. أرفق تسجيل صوتي", - "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", - "20 \${'LE": "20 \${'LE", + "2. Attach Recorded Audio (Optional)": "2. أرفق الصوت المسجل (اختياري)", + "20 \${'LE": "20 \${'جنيه مصري", "20 and get 6% discount": "20 وخذ خصم 6%", - "200 \${'JOD": "200 \${'JOD", - "20000 \${'LE": "20000 \${'LE", + "200 \${'JOD": "200 \${'دينار أردني", + "20000 \${'LE": "20000 \${'جنيه", + "3 Passengers": "٣ ركاب", "3 digit": "3 أرقام", - "3 Passengers": "3 Passengers", "3. Review Details & Response": "٣. مراجعة التفاصيل والرد", "3000 LE": "3000 ر.س", - "4 Passengers": "4 Passengers", + "4 Passengers": "٤ ركاب", "40 and get 8% discount": "40 وخذ خصم 8%", - "40000 \${'LE": "40000 \${'LE", + "40000 \${'LE": "40000 \${'جنيه", "5 digit": "5 أرقام", - "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nونهتم بالأسعار تكون مناسبة.", - "A new version of the app is available. Please update to the latest version.": "Hay una nueva versión de la aplicación disponible. Por favor, actualiza a la última versión.", + "A new version of the app is available. Please update to the latest version.": "في إصدار جديد من التطبيق. من فضلك حدّث للإصدار الأخير.", "A trip with a prior reservation, allowing you to choose the best captains and cars.": "مشوار بحجز مسبق، يمديك تختار أفضل الكباتن والسيارات.", - "About Siro": "Informazioni su Siro", + "AI Page": "صفحة الذكاء الاصطناعي", + "About Intaleq": "About Intaleq", + "About Siro": "عن سيرو", "About Us": "من نحن", "Accept": "قبول", "Accept Order": "قبول الطلب", "Accept Ride's Terms & Review Privacy Notice": "الموافقة على الشروط", - "accepted": "aceptado", "Accepted Ride": "المشوار مقبول", - "Accepted your order": "Tu pedido ha sido aceptado", - "accepted your order at price": "aceptó tu pedido al precio de", - "Account": "Account", - "Actions": "Actions", + "Accepted your order": "قبل طلبك", + "Account": "الحساب", + "Actions": "إجراءات", "Active Duration:": "المدة الفعلية:", - "Active Users": "Active Users", - "Add a new waypoint stop": "Add a new waypoint stop", - "Add a Stop": "Add a Stop", + "Active Users": "المستخدمين النشطين", "Add Card": "إضافة بطاقة", "Add Credit Card": "إضافة بطاقة ائتمان", - "Add funds using our secure methods": "ضيف رصيد بطرق آمنة", "Add Home": "إضافة البيت", "Add Location": "إضافة موقع", "Add Location 1": "إضافة موقع 1", @@ -155,79 +78,71 @@ final Map ar_eg = { "Add Payment Method": "إضافة طريقة دفع", "Add Phone": "إضافة رقم", "Add Promo": "ضيف خصم", - "Add SOS Phone": "Añadir teléfono SOS", + "Add SOS Phone": "أضف رقم طوارئ", "Add Stops": "إضافة وقفات", - "Add wallet phone you use": "Añade el teléfono de la billetera que usas", - "Add Work": "Añadir trabajo", - "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "Add Work": "أضف الشغل", + "Add a Stop": "أضف محطة", + "Add a new waypoint stop": "إضافة نقطة توقف جديدة", + "Add funds using our secure methods": "ضيف رصيد بطرق آمنة", + "Add wallet phone you use": "أضف رقم محفظة الموبايل اللي بتعمله", "Address": "العنوان", "Address: ": "العنوان:", - "addWork' ? 'Add Work": "addWork' ? 'Add Work", "Admin DashBoard": "لوحة التحكم", - "Advanced Tools": "Advanced Tools", + "Advanced Tools": "أدوات متقدمة", "Affordable for Everyone": "أسعار تناسب الكل", "After this period\\nYou can't cancel!": "بعد هالوقت\\nما تقدر تلغي!", - "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", - "Age is": "Age is", + "After this period\\nYou can\\'t cancel!": "بعد هذه الفترة\nلا يمكنك الإلغاء!", + "After this period\nYou can't cancel!": "After this period\nYou can't cancel!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "العمر هو", "Age is ": "العمر: ", - "Age is ": "Age is ", - "agreement subtitle": "للمتابعة، وافق على الشروط والخصوصية.", - "AI Page": "صفحة الذكاء الاصطناعي", - "airport": "aeropuerto", - "Alert": "Alert", + "Age is ": "العمر هو ", + "Alert": "تنبيه", "Alerts": "تنبيهات", - "Align QR Code within the frame": "Align QR Code within the frame", + "Align QR Code within the frame": "قم بمحاذاة رمز QR داخل الإطار", "Allow Location Access": "السماح بالوصول للموقع", "Already have an account? Login": "هل لديك حساب بالفعل؟ تسجيل الدخول", - "An error occurred": "An error occurred", - "an error occurred": "صار خطأ غير متوقع: @error", + "An OTP has been sent to your number.": "تم إرسال رمز التحقق إلى رقمك.", + "An error occurred": "حدث خطأ", "An error occurred during the payment process.": "خطأ في الدفع.", "An error occurred while picking contacts:": "صار خطأ وحنا نختار الأسماء:", "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", - "An OTP has been sent to your number.": "An OTP has been sent to your number.", "An unexpected error occurred. Please try again.": "صار خطأ غير متوقع. حاول مرة ثانية.", - "and acknowledge our": "وتقر بـ", - "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", - "and acknowledge the": "y reconozco el", - "and I have a trip on": "وعندي مشوار على", - "App Tester Login": "App Tester Login", + "App Tester Login": "تسجيل دخول مختبر التطبيق", "App with Passenger": "التطبيق مع الراكب", - "app_description": "سيرو تطبيق آمن وموثوق.", - "Appearance": "Appearance", + "Appearance": "المظهر", "Applied": "تم التقديم", - "Apply": "Aplicar", + "Apply": "تطبيق", "Apply Order": "قبول الطلب", - "Apply Promo Code": "Aplicar código de promoción", + "Apply Promo Code": "طبّق كود الخصم", "Approaching your area. Should be there in 3 minutes.": "قربت منك. 3 دقايق وأكون عندك.", + "Are You sure to ride to": "متأكد تبي تروح لـ", + "Are you Sure to LogOut?": "بتسجل خروج؟", "Are you sure to cancel?": "متأكد تبي تلغي؟", "Are you sure to delete recorded files": "متأكد تبي تحذف الملفات؟", "Are you sure to delete this location?": "متأكد تبي تحذف هالموقع؟", "Are you sure to delete your account?": "متأكد تبي تحذف حسابك؟", - "Are you Sure to LogOut?": "بتسجل خروج؟", - "Are You sure to ride to": "متأكد تبي تروح لـ", - "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", - "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure you want to delete this file?": "هل أنت متأكد من رغبتك في حذف هذا الملف؟", + "Are you sure you want to logout?": "متأكد إنك عايز تسجّل خروج؟", "Are you sure? This action cannot be undone.": "متأكد؟ ما تقدر تتراجع بعدين.", - "Are you want to change": "¿Quieres cambiar?", + "Are you want to change": "عايز تغيّر", "Are you want to go this site": "تبي تروح هالمكان؟", "Are you want to go to this site": "تبي تروح هنا؟", "Are you want to wait drivers to accept your order": "تبي تنتظر الكباتن؟", "Arrival time": "وقت الوصول", - "arrival time to reach your point": "وقت الوصول لنقطتك", - "Arrived": "Arrived", - "as the driver.": "as the driver.", + "Arrived": "وصل", "Associate Degree": "دبلوم", "Attach this audio file?": "ترفق هالملف الصوتي؟", - "Attention": "Atención", - "Audio file not attached": "Archivo de audio no adjunto", - "Audio Recording": "Audio Recording", + "Attention": "تنبيه", + "Audio Recording": "تسجيل صوتي", + "Audio file not attached": "مفيش ملف صوتي مرفق", "Audio uploaded successfully.": "تم رفع الصوت.", "Available for rides": "متاح للمشاوير", "Average of Hours of": "معدل الساعات", - "Awaiting response...": "Esperando respuesta...", + "Awaiting response...": "بانتظار الرد...", "Awfar Car": "سيارة توفير", "Bachelor's Degree": "بكالوريوس", - "Back": "Atrás", + "Back": "رجوع", "Bahrain": "البحرين", "Balance": "الرصيد", "Balance limit exceeded": "تجاوزت حد الرصيد", @@ -235,36 +150,38 @@ final Map ar_eg = { "Balance:": "الرصيد:", "Be Slowly": "على مهلك", "Be sure for take accurate images please\\nYou have": "تأكد إن الصورة واضحة\\nعندك", + "Be sure for take accurate images please\nYou have": "Be sure for take accurate images please\nYou have", "Be sure to use it quickly! This code expires at": "استعجل عليه! الكود ينتهي في", "Because we are near, you have the flexibility to choose the ride that works best for you.": "لك الحرية في الاختيار.", - "before": "قبل", "Before we start, please review our terms.": "قبل نبدأ، راجع شروطنا لاهنت.", - "begin": "begin", - "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Mejor opción para un coche cómodo con una ruta flexible y puntos de parada. Este aeropuerto ofrece entrada con visa a este precio.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "أحسن اختيار لعربيّة مريحة مع طريق مرن ومحطات توقف. المطار ده بيوفر تأشيرة دخول بالسعر ده.", "Best choice for cities": "أفضل خيار للمدن", "Best choice for comfort car and flexible route and stops point": "أفضل خيار لسيارة مريحة ومسار مرن", "Birth Date": "تاريخ الميلاد", - "Bonus gift": "Regalo de bonificación", + "Bonus gift": "هدية بونص", "BookingFee": "رسوم الحجز", "Bottom Bar Example": "مثال الشريط السفلي", "But you have a negative salary of": "بس عليك سالب بقيمة", - "by": "por", "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "باختيار 'أوافق'، أقر بأني قريت الشروط وعمري 18 وفوق.", - "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "Al seleccionar \\\"Acepto\\\" a continuación, confirmo que he leído y acepto los", - "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "Al seleccionar \\\"Acepto\\\" a continuación, confirmo que he leído y acepto los ", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "باختيار \"أوافق\" أدناه، أؤكد أنني قرأت وأوافق على ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "باختيار \"أوافق\" أدناه، أؤكد أنني قرأت وأوافق على ", "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "باختيار \\\"أوافق\\\"، أكون وافقت على الشروط و ", - "Call": "Call", + "CODE": "الكود", + "Call": "اتصل", "Call Connected": "تم فتح الاتصال", "Call End": "انتهاء المكالمة", - "Call Ended": "Call Ended", + "Call Ended": "انتهت المكالمة", "Call Income": "مكالمة واردة", "Call Income from Driver": "اتصال من الكابتن", "Call Income from Passenger": "مكالمة من الراكب", - "Call left": "Call left", "Call Left": "مكالمات باقية", "Call Options": "خيارات الاتصال", "Call Page": "صفحة الاتصال", - "Call Support": "Call Support", + "Call Support": "اتصل بالدعم", + "Call left": "اتصال متبقي", "Calling": "عم نتصل بـ", "Camera Access Denied.": "ما في وصول للكاميرا.", "Camera not initialized yet": "الكاميرا لسه", @@ -277,285 +194,264 @@ final Map ar_eg = { "Cancel Trip": "إلغاء المشوار", "Cancel Trip from driver": "إلغاء من الكابتن", "Canceled": "ملغي", - "cancelled": "cancelled", "Cannot apply further discounts.": "ما تقدر تخصم أكثر.", "Captain": "الكابتن", - "Capture an Image of Your car license back": "صور استمارة السيارة (قفا)", - "Capture an Image of Your car license front": "صور استمارة السيارة (وجه)", "Capture an Image of Your Criminal Record": "صور صحيفة خلو السوابق", "Capture an Image of Your Driver License": "صور رخصتك", "Capture an Image of Your Driver's License": "صور رخصتك", "Capture an Image of Your ID Document Back": "صور ظهر الهوية", "Capture an Image of Your ID Document front": "صور الهوية (وجه)", + "Capture an Image of Your car license back": "صور استمارة السيارة (قفا)", + "Capture an Image of Your car license front": "صور استمارة السيارة (وجه)", "Car": "سيارة", - "Car Color:": "Color del coche:", + "Car Color:": "لون العربية:", "Car Details": "تفاصيل السيارة", "Car License Card": "استمارة السيارة", - "Car Make:": "Marca del coche:", - "Car Model:": "Modelo del coche:", + "Car Make:": "ماركة العربية:", + "Car Model:": "موديل العربية:", "Car Plate is ": "اللوحة: ", - "Car Plate:": "Matrícula del coche:", + "Car Plate:": "لوحة العربية:", "Card Number": "رقم البطاقة", "CardID": "رقم البطاقة", - "carType'] ?? 'Car": "carType'] ?? 'Car", "Cash": "كاش", "Change Country": "تغيير الدولة", - "change device": "cambiar dispositivo", "Change Home location ?": "تغيير موقع المنزل؟", - "Change Photo": "Change Photo", - "Change Ride": "Cambiar viaje", - "Change Route": "Cambiar ruta", + "Change Photo": "تغيير الصورة", + "Change Ride": "غيّر الرحلة", + "Change Route": "غيّر الطريق", "Change Work location ?": "تغيير موقع العمل؟", - "Changed my mind": "我改变了主意", + "Changed my mind": "غيرت رأيي", "Chassis": "رقم الشاصي", - "Chat with us anytime": "Chatta con noi in qualsiasi momento", + "Chat with us anytime": "تحدث معنا في أي وقت", "Check back later for new offers!": "شيك بعدين يمكن فيه عروض!", + "Choose Language": "اختر اللغة", "Choose a contact option": "اختر طريقة تواصل", "Choose between those Type Cars": "اختر نوع السيارة", - "Choose from contact": "Choose from contact", - "Choose from Gallery": "Choose from Gallery", + "Choose from Gallery": "اختر من المعرض", "Choose from Map": "اختر من الخريطة", + "Choose from contact": "اختر من جهات الاتصال", "Choose how you want to call the driver": "اختر طريقة الاتصال بالكابتن", - "Choose Language": "اختر اللغة", "Choose the trip option that perfectly suits your needs and preferences.": "اختر اللي يناسبك.", "Choose who this order is for": "الطلب لمين؟", - "Choose your ride": "Elige tu viaje", + "Choose your ride": "اختر رحلتك", "City": "المدينة", "Claim your 20 LE gift for inviting": "اطلب هديتك (20 ريال) للدعوة", - "Click here point": "Haz clic aquí", - "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click here point": "اضغط هنا", "Click here to Show it in Map": "اضغط للعرض على الخريطة", - "Click to track the trip": "Click to track the trip", + "Click here to begin your trip\\n\\nGood luck, ": "انقر هنا لبدء رحلتك\n\nبالتوفيق، ", + "Click to track the trip": "انقر لتتبع الرحلة", "Close": "إغلاق", - "Close panel": "Close panel", + "Close panel": "إغلاق اللوحة", "Closest & Cheapest": "الأقرب والأرخص", "Closest to You": "الأقرب لك", - "CODE": "验证码", - "Code": "代码", + "Code": "الكود", "Code not approved": "الكود مرفوض", "Color": "اللون", "Color is ": "اللون: ", "Comfort": "مريح", "Comfort choice": "خيار الراحة", - "Coming": "Coming", - "committed_to_safety": "نهتم بسلامتك.", + "Coming": "قادم", "Communication": "التواصل", "Complaint": "شكوى", "Complaint cannot be filed for this ride. It may not have been completed or started.": "ما تقدر ترفع شكوى على هالمشوار. يمكن ما كمل أو ما بدأ.", - "Complaint data saved successfully": "Datos de la queja guardados con éxito", - "Complete Payment": "Complete Payment", - "complete profile subtitle": "كمل بياناتك عشان تبدأ", - "complete registration button": "إتمام التسجيل", - "Complete your profile": "Complete your profile", - "complete, you can claim your gift": "اكتمل، اطلب هديتك", + "Complaint data saved successfully": "تم حفظ بيانات الشكوى بنجاح", + "Complete Payment": "اكمل الدفع", + "Complete your profile": "أكمل ملفك الشخصي", "Confirm": "تأكيد", "Confirm & Find a Ride": "أكد ودور كابتن", "Confirm Attachment": "تأكيد الإرفاق", - "Confirm Cancellation": "Confirm Cancellation", - "Confirm Pick-up Location": "Confirmar ubicación de recogida", - "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Cancellation": "تأكيد الإلغاء", + "Confirm Pick-up Location": "تأكيد موقع الالتقاط", + "Confirm Pickup Location": "تأكيد موقع الركوب", "Confirm Selection": "تأكيد الاختيار", - "Confirm Trip": "Confirmar viaje", + "Confirm Trip": "تأكيد الرحلة", "Confirm your Email": "أكد إيميلك", "Connected": "متصل", "Connecting...": "عم يتم الاتصال...", - "Connection Error": "连接错误", - "Connection failed. Please try again.": "Connection failed. Please try again.", + "Connection Error": "خطأ في الاتصال", + "Connection failed. Please try again.": "فشل الاتصال. يرجى المحاولة مرة أخرى.", "Contact Options": "خيارات التواصل", - "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", - "Contact permission is required to pick contacts": "نحتاج صلاحية الأسماء.", "Contact Support": "تواصل مع الدعم", "Contact Us": "اتصل بنا", + "Contact permission is permanently denied. Please enable it in settings to continue.": "صلاحية الوصول لجهات الاتصال مرفوضة نهائياً. يرجى تفعيلها من الإعدادات للمتابعة.", + "Contact permission is required to pick contacts": "نحتاج صلاحية الأسماء.", "Contact us for any questions on your order.": "تواصل معنا لو عندك سؤال.", "Contacts Loaded": "تم تحميل الأسماء", - "contacts. Others were hidden because they don't have a phone number.": "جهة اتصال. الباقي مخفي عشان ما عندهم أرقام.", - "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", "Continue": "متابعة", - "copied to clipboard": "copiado al portapapeles", "Copy": "نسخ", "Copy Code": "نسخ الكود", "Copy this Promo to use it in your Ride!": "انسخ الكود واستخدمه!", "Cost Duration": "تكلفة الوقت", "Cost Of Trip IS ": "تكلفة المشوار: ", - "Could not add invite": "Could not add invite", - "Could not create ride. Please try again.": "Could not create ride. Please try again.", - "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Could not add invite": "لم نتمكن من إضافة الدعوة", + "Could not create ride. Please try again.": "لم نتمكن من إنشاء الرحلة. يرجى المحاولة مرة أخرى.", + "Country Picker Page Placeholder": "البحث عن البلد", "Counts of Hours on days": "عدد الساعات بالأيام", "Create Wallet to receive your money": "أنشئ محفظة لاستلام فلوسك", - "created time": "وقت الإنشاء", "Criminal Document Required": "صحيفة خلو السوابق مطلوبة", "Criminal Record": "خلو السوابق", - "Crop Photo": "Crop Photo", + "Crop Photo": "قص الصورة", "Cropper": "قص الصورة", "Current Balance": "الرصيد الحالي", "Current Location": "الموقع الحالي", - "Customer MSISDN doesn’t have customer wallet": "El MSISDN del cliente no tiene billetera", + "Customer MSISDN doesn’t have customer wallet": "رقم موبايل العميل مش فيه محفظة عميل", "Customer not found": "العميل غير موجود", "Customer phone is not active": "جوال العميل مو شغال", - "Dark Mode": "Dark Mode", + "DISCOUNT": "خصم", + "Dark Mode": "الوضع الداكن", "Date": "التاريخ", - "Date and Time Picker": "Selector de fecha y hora", + "Date and Time Picker": "منتقي التاريخ والوقت", "Date of Birth is": "تاريخ الميلاد:", "Date of Birth: ": "تاريخ الميلاد:", "Days": "أيام", - "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Estimado ,\\n\\n 🚀 ¡Acabo de comenzar un viaje emocionante y me gustaría compartir los detalles de mi trayecto y mi ubicación actual contigo en tiempo real! Por favor, descarga la aplicación Siro. Te permitirá ver los detalles de mi viaje y mi última ubicación.\\n\\n 👉 Enlace de descarga: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n ¡Espero mantenerte cerca durante mi aventura!\\n\\n Siro ,", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "مرحباً،\n\n 🚀 لقد بدأت للتو رحلة مشوقة وأود مشاركة تفاصيل رحلتي وموقعي الحالي معك في الوقت الفعلي! يرجى تحميل تطبيق سيرو. سيتيح لك عرض تفاصيل رحلتي وموقعي الأخير.\n\n 👉 رابط التحميل: \n أندرويد [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n آي أو إس [https://getapp.cc/app/6458734951]\n\n أتطلع إلى البقاء على تواصل معك خلال رحلتي!\n\n سيرو،", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", "Decline": "رفض", - "Delete": "Delete", - "Delete Account": "Delete Account", - "Delete All": "Delete All", - "Delete All Recordings?": "Delete All Recordings?", + "Delete": "حذف", + "Delete Account": "حذف الحساب", + "Delete All": "حذف الكل", + "Delete All Recordings?": "حذف جميع التسجيلات؟", "Delete My Account": "حذف حسابي", "Delete Permanently": "حذف نهائي", - "Delete Recording?": "Delete Recording?", - "deleted": "eliminado", + "Delete Recording?": "حذف التسجيل؟", "Deleted": "انحذف", "Destination": "الوصول", - "Destination selected": "Destino seleccionado", - "Destination Set": "Destination Set", + "Destination Set": "تم تحديد الوجهة", + "Destination selected": "تم اختيار الوجهة", "Detect Your Face ": "تحقق من وجهك", - "Device Change Detected": "Cambio de dispositivo detectado", - "Direct talk with our team": "Parla direttamente con il nostro team", - "DISCOUNT": "خصم", + "Device Change Detected": "تم اكتشاف تغيير الجهاز", + "Direct talk with our team": "تحدث مباشرة مع فريقنا", "Displacement": "سعة المحرك", - "Distance": "Distance", + "Distance": "المسافة", + "Distance To Passenger is ": "المسافة للراكب: ", "Distance from Passenger to destination is ": "المسافة للوجهة: ", - "distance is": "المسافة هي", "Distance is ": "المسافة: ", "Distance of the Ride is ": "مسافة المشوار: ", - "Distance To Passenger is ": "المسافة للراكب: ", "Do you have an invitation code from another driver?": "عندك كود دعوة من كابتن ثاني؟", "Do you want to change Home location": "تغير موقع البيت؟", "Do you want to change Work location": "تغير موقع الدوام؟", "Do you want to pay Tips for this Driver": "تبي تعطي الكابتن إكرامية؟", - "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Do you want to send an emergency message to your SOS contact?": "هل تريد إرسال رسالة طوارئ إلى جهة اتصال الطوارئ الخاصة بك؟", "Doctoral Degree": "دكتوراه", "Document Number: ": "رقم الوثيقة:", "Documents check": "فحص المستندات", - "Don't Cancel": "不要取消", + "Don't Cancel": "لا تلغِ", "Don't forget your personal belongings.": "لا تنسى أغراضك.", - "Don't forget your ride!": "¡No olvides tu viaje!", + "Don't forget your ride!": "لا تنسَ رحلتك!", "Don't have an account? Register": "ليس لديك حساب؟ تسجيل", "Done": "تم", "Don’t forget your personal belongings.": "انتبه لأغراضك الشخصية.", - "Double tap to open search or enter destination": "Double tap to open search or enter destination", - "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", - "Download the app now:": "حمل التطبيق:", - "Download the Siro app now and enjoy your ride!": "حمل تطبيق سيرو واستمتع بمشوارك!", + "Double tap to open search or enter destination": "انقر مرتين لفتح البحث أو إدخال الوجهة", + "Double tap to set or change this waypoint on the map": "انقر مرتين لتحديد أو تغيير نقطة التوقف هذه على الخريطة", + "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 Siro Driver app now and earn rewards!": "حمل تطبيق كابتن سيرو واكسب مكافآت!", - "Drawing route on map...": "Drawing route on map...", + "Download the Siro app now and enjoy your ride!": "حمل تطبيق سيرو واستمتع بمشوارك!", + "Download the app now:": "حمل التطبيق:", + "Drawing route on map...": "بيتم رسم الطريق على الخريطة...", "Driver": "كابتن", "Driver Accepted the Ride for You": "الكابتن قبل المشوار عشانك", - "Driver already has 2 trips within the specified period.": "الكابتن عنده مشوارين بهالوقت.", "Driver Applied the Ride for You": "الكابتن قدم الطلب لك", - "Driver asked me to cancel": "司机要求我取消订单", "Driver Cancelled Your Trip": "الكابتن كنسل الرحلة", "Driver Car Plate": "لوحة الكابتن", "Driver Finish Trip": "الكابتن خلص المشوار", "Driver Is Going To Passenger": "الكابتن متوجه للراكب", - "Driver is Going To You": "Driver is Going To You", - "Driver is on the way": "الكابتن بالطريق", - "Driver is taking too long": "司机来得太慢了", - "Driver is waiting at pickup.": "الكابتن ينتظرك عند نقطة الركوب.", - "Driver joined the channel": "الكابتن دخل الشات", - "Driver left the channel": "الكابتن طلع من الشات", - "Driver List": "Lista de conductores", + "Driver List": "قائمة السايقين", "Driver Name": "اسم الكابتن", - "Driver Name:": "Nombre del conductor:", - "Driver Phone": "Driver Phone", - "Driver phone": "جوال الكابتن", - "Driver Phone:": "Teléfono del conductor:", - "Driver Referral": "Driver Referral", + "Driver Name:": "اسم السايق:", + "Driver Phone": "هاتف السائق", + "Driver Phone:": "موبايل السايق:", + "Driver Referral": "إحالة السايق", "Driver Registration": "تسجيل الكابتن", "Driver Registration & Requirements": "تسجيل الكباتن", "Driver Wallet": "محفظة الكابتن", + "Driver already has 2 trips within the specified period.": "الكابتن عنده مشوارين بهالوقت.", + "Driver asked me to cancel": "طلب مني السائق الإلغاء", + "Driver is Going To You": "السائق في طريقه إليك", + "Driver is on the way": "الكابتن بالطريق", + "Driver is taking too long": "السائق يتأخر كثيراً", + "Driver is waiting at pickup.": "الكابتن ينتظرك عند نقطة الركوب.", + "Driver joined the channel": "الكابتن دخل الشات", + "Driver left the channel": "الكابتن طلع من الشات", + "Driver phone": "جوال الكابتن", "Driver's License": "رخصة القيادة", - "driver_license": "رخصة_قيادة", - "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", "Drivers License Class": "فئة الرخصة", "Drivers License Class: ": "فئة الرخصة:", - "due to a previous trip.": "due to a previous trip.", - "duration is": "المدة:", - "Duration is": "المدة:", - "Duration of the Ride is ": "مدة المشوار: ", - "Duration of Trip is ": "مدة المشوار: ", "Duration To Passenger is ": "الوقت للراكب: ", - "e.g. 0912345678": "e.g. 0912345678", + "Duration is": "المدة:", + "Duration of Trip is ": "مدة المشوار: ", + "Duration of the Ride is ": "مدة المشوار: ", + "EGP": "جنيه مصري", "Edit Profile": "تعديل الملف", "Edit Your data": "تعديل بياناتك", "Education": "التعليم", - "EGP": "EGP", "Egypt": "مصر", - "Egypt' ? 'LE": "Egypt' ? 'LE", - "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egypt' ? 'LE": "Egypt' ? 'جنيه", + "Egypt': return 'EGP": "Egypt': return 'جنيه مصري", "Electric": "كهربائية", - "Email": "Correo electrónico", - "Email is": "الإيميل:", - "email optional label": "الإيميل (اختياري)", - "Email Support": "Supporto via email", + "Email": "البريد الإلكتروني", + "Email Support": "الدعم عبر البريد الإلكتروني", "Email Us": "راسلنا", "Email Wrong": "الإيميل غلط", + "Email is": "الإيميل:", "Email you inserted is Wrong.": "الإيميل اللي كتبته غلط.", - "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", - "Emergency Mode Triggered": "Emergency Mode Triggered", - "Emergency SOS": "Emergency SOS", + "Emergency Mode Triggered": "تم تفعيل وضع الطوارئ", + "Emergency SOS": "طوارئ SOS", "Employment Type": "نوع الوظيفة", "Enable Location": "تفعيل الموقع", - "Enable Location Access": "Habilitar acceso a la ubicación", + "Enable Location Access": "تفعيل الوصول للموقع", "End": "إنهاء", "End Ride": "إنهاء المشوار", - "endName'] ?? 'Destination": "endName'] ?? 'Destination", "Enjoy a safe and comfortable ride.": "استمتع بمشوار آمن ومريح.", "Enjoy competitive prices across all trip options, making travel accessible.": "أسعار منافسة.", - "Enter a password": "Enter a password", - "Enter a valid email": "Ingresa un correo electrónico válido", + "Enter Your First Name": "دخل اسمك الأول", + "Enter a password": "أدخل كلمة المرور", + "Enter a valid email": "أدخل بريد إلكتروني صحيح", "Enter driver's phone": "رقم الكابتن", - "enter otp validation": "دخل الكود (5 أرقام)", "Enter phone": "دخل الرقم", "Enter promo code": "دخل الكود", "Enter promo code here": "اكتب الكود هنا", "Enter the 3-digit code": "أدخل الكود المكون من ٣ أرقام", - "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the 5-digit code": "أدخل الكود المكون من 5 أرقام", "Enter the promo code and get": "دخل الكود واحصل على", - "Enter your City": "Enter your City", - "Enter your code below to apply the discount.": "Ingrese su código a continuación para aplicar el descuento.", - "Enter your complaint here": "Ingresa tu queja aquí", + "Enter your City": "أدخل مدينتك", + "Enter your Note": "اكتب ملاحظة", + "Enter your Password": "أدخل كلمة المرور", + "Enter your code below to apply the discount.": "أدخل كودك تحت عشان تطبق الخصم.", + "Enter your complaint here": "أدخل شكواك هنا", "Enter your complaint here...": "اكتب شكواك هنا...", "Enter your email address": "دخل إيميلك", "Enter your feedback here": "اكتب ملاحظتك", "Enter your first name": "دخل اسمك", - "Enter Your First Name": "دخل اسمك الأول", "Enter your last name": "دخل اسم العائلة", - "Enter your Note": "اكتب ملاحظة", - "Enter your Password": "Enter your Password", - "Enter your password": "Ingresa tu contraseña", + "Enter your password": "أدخل كلمة المرور", "Enter your phone number": "دخل رقمك", - "Enter your promo code": "Ingresa tu código de promoción", + "Enter your promo code": "أدخل كود الخصم بتاعك", "Error": "خطأ", - "Error uploading proof": "Error uploading proof", - "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error uploading proof": "حصل خطأ في رفع الإثبات", + "Error', 'An application error occurred.": "خطأ', 'حصل خطأ في التطبيق.", "Error: \${snapshot.error}": "Error: \${snapshot.error}", "Evening": "مساء", + "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 Siro app": "عروض حصرية دائماً مع سيرو", "Expiration Date": "تاريخ الانتهاء", "Expiration Date ": "تاريخ الانتهاء: ", "Expiry Date": "تاريخ الانتهاء", "Expiry Date: ": "تاريخ الانتهاء:", - "face detect": "التحقق من الوجه", "Face Detection Result": "نتيجة التحقق", - "Failed": "Failed", - "Failed to book trip: ": "Failed to book trip: ", + "Failed": "فشل", + "Failed to book trip: ": "فشل حجز الرحلة: ", "Failed to book trip: \$e": "Failed to book trip: \$e", "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", - "Failed to get location": "Failed to get location", - "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", - "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", - "Failed to search, please try again later": "搜索失败,请稍后重试", - "Failed to send OTP": "Failed to send OTP", - "failed to send otp": "فشل إرسال الرمز.", - "Failed to upload photo": "Failed to upload photo", - "Fast matching": "Fast matching", + "Failed to get location": "فشل في الحصول على الموقع", + "Failed to initiate call session. Please try again.": "فشل في بدء جلسة المكالمة. من فضلك جرب تاني.", + "Failed to initiate payment. Please try again.": "فشل في بدء الدفع. من فضلك جرب تاني.", + "Failed to search, please try again later": "فشل البحث، يرجى المحاولة مرة أخرى لاحقاً", + "Failed to send OTP": "فشل إرسال رمز التحقق", + "Failed to upload photo": "فشل رفع الصورة", + "Fast matching": "مطابقة سريعة", "Fastest Complaint Response": "استجابة سريعة للشكاوى", - "Favorite Places": "Lugares favoritos", + "Favorite Places": "الأماكن المفضلة", "Fee is": "السعر:", "Feed Back": "رأيك", "Feedback": "ملاحظات", @@ -563,98 +459,88 @@ final Map ar_eg = { "Female": "أنثى", "Find answers to common questions": "إجابات الأسئلة", "Finish Monitor": "إنهاء المتابعة", - "Finished": "Finished", + "Finished": "منتهية", "First Name": "الاسم الأول", "First name": "الاسم الأول", - "first name label": "الاسم الأول", - "first name required": "الاسم الأول مطلوب", - "Fixed Price": "Fixed Price", + "Fixed Price": "سعر ثابت", "Flag-down fee": "فتح الباب", - "for": "لـ", - "For App Reviewers / Testers": "For App Reviewers / Testers", + "For App Reviewers / Testers": "لمراجعي / مختبري التطبيق", "For Drivers": "للكباتن", - "For official inquiries": "Per richieste ufficiali", - "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Para viajes de velocidad y entrega, el precio se calcula dinámicamente. Para viajes de confort, el precio se basa en el tiempo y la distancia.", + "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", + "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 your first registration!": "لتسجيلك الأول!", - "Found another transport": "找到了其他交通工具", + "For official inquiries": "للاستفسارات الرسمية", + "Found another transport": "وجدت وسيلة نقل أخرى", "Free Call": "مكالمة مجانية", "Frequently Asked Questions": "الأسئلة المتكررة", "Frequently Questions": "الأسئلة الشائعة", "From": "من", - "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30", - "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 3:00", - "from 23:59 till 05:30": "من 11:59 م لـ 5:30 ص", - "from 3 times Take Attention": "من 3 مرات، انتبه", "From :": "من:", "From : ": "من: ", "From : Current Location": "من: موقعك الحالي", - "from your favorites": "de tus favoritos", - "from your list": "من قائمتك", - "From:": "Desde:", + "From:": "من:", "Fuel": "الوقود", "Full Name (Marital)": "الاسم الكامل", "FullName": "الاسم الكامل", + "GPS Required Allow !.": "شغل الـ GPS!", "Gender": "الجنس", - "General": "General", - "Get": "Obtener", - "Get a discount on your first Siro ride!": "لك خصم على أول مشوار في سيرو!", + "General": "عام", + "Get": "احصل على", "Get Details of Trip": "تفاصيل المشوار", "Get Direction": "الاتجاهات", + "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!", + "Get a discount on your first Siro ride!": "لك خصم على أول مشوار في سيرو!", "Get it Now!": "خذها الحين!", "Get to your destination quickly and easily.": "وصل وجهتك بسرعة وسهولة.", - "get_a_ride": "مع سيرو، الموتر يجيك بدقايق.", - "get_to_destination": "وصل وجهتك بسرعة.", "Getting Started": "البداية", "Gift Already Claimed": "أخذت الهدية من قبل", "Go To Favorite Places": "للأماكن المفضلة", "Go to next step\\nscan Car License.": "الخطوة الجاية\\nمسح الاستمارة.", + "Go to next step\nscan Car License.": "Go to next step\nscan Car License.", "Go to passenger Location now": "رح لموقع الراكب الحين", - "Go to this location": "رح لهالموقع", "Go to this Target": "روح للهدف", - "go to your passenger location before\\nPassenger cancel trip": "رح لموقع الراكب قبل يكنسل", - "GPS Required Allow !.": "شغل الـ GPS!", - "Grant": "Grant", + "Go to this location": "رح لهالموقع", + "Grant": "منح الصلاحية", "H and": "س و", - "has completed": "كمل", - "Have a Promo Code?": "Have a Promo Code?", + "Have a Promo Code?": "هل لديك كود خصم؟", "Have a promo code?": "عندك كود خصم؟", "Heading your way now. Please be ready.": "جايك بالطريق. خلك جاهز.", "Height: ": "الطول:", "Hello this is Captain": "هلا، معك الكابتن", "Hello this is Driver": "هلا، أنا الكابتن", + "Hello! I'm inviting you to try Intaleq.": "Hello! I'm inviting you to try Intaleq.", "Hello! I'm inviting you to try Siro.": "هلا! أدعوك تجرب تطبيق سيرو.", - "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", - "Hello, I'm at the agreed-upon location": "Hola, estoy en la ubicación acordada", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "مرحباً! أدعوك لتجربة تطبيق سيرو.", + "Hello, I'm at the agreed-upon location": "مرحباً، أنا في الموقع المتفق عليه", "Help Details": "تفاصيل المساعدة", "Helping Center": "مركز المساعدة", "Here recorded trips audio": "تسجيلات المشاوير هنا", "Hi": "هلا", - "Hi ,I Arrive your location": "Hi ,I Arrive your location", - "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I Arrive your location": "مرحباً، لقد وصلت إلى موقعك", + "Hi ,I Arrive your site": "أهلاً، وصلت لموقعك", "Hi ,I will go now": "هلا، أنا بطلع الحين", "Hi! This is": "هلا! هذا", - "Hi, Where to": "Hi, Where to", + "Hi, Where to": "أهلاً، فين؟", "Hi, Where to ": "هلا، لوين؟", - "Hi, Where to ": "Hi, Where to ", + "Hi, Where to ": "مرحباً، إلى أين؟ ", "High School Diploma": "ثانوي", "History of Trip": "سجل المشاوير", - "Home": "Home", - "Home Page": "Página de inicio", - "Home Saved": "Casa guardada", - "hour": "ساعة", + "Home": "الرئيسية", + "Home Page": "الصفحة الرئيسية", + "Home Saved": "تم حفظ البيت", "How can I pay for my ride?": "كيف أدفع؟", "How can I register as a driver?": "كيف أسجل كابتن؟", "How do I communicate with the other party (passenger/driver)?": "كيف أتواصل؟", "How do I request a ride?": "كيف أطلب مشوار؟", "How many hours would you like to wait?": "كم ساعة تبي تنتظر؟", - "How much longer will you be?": "¿Cuánto tiempo más tardarás?", - "I added the wrong pick-up/drop-off location": "الموقع غلط", + "How much longer will you be?": "هتتأخر كام؟", "I Agree": "أوافق", - "i agree": "موافق", - "I am currently located at": "I am currently located at", - "I arrive you": "وصلت", "I Arrive your site": "وصلت موقعك", + "I added the wrong pick-up/drop-off location": "الموقع غلط", + "I am currently located at": "أنا موجود دلوقتي في", + "I arrive you": "وصلت", "I cant register in your app in face detection ": "مو قادر أسجل بسبب بصمة الوجه", "I don't have a reason": "ما عندي سبب", "I don't need a ride anymore": "ما عاد أحتاج مشوار", @@ -663,24 +549,19 @@ final Map ar_eg = { "I was just trying the application": "أجرب التطبيق بس", "I will go now": "بمشي الحين", "I will slow down": "بهدي السرعة", - "I'm Safe": "I'm Safe", + "I'm Safe": "أنا بأمان", "I'm waiting for you": "أنا أنتظرك", - "I've been trying to reach you but your phone is off.": "He estado intentando contactarte pero tu teléfono está apagado.", + "I've been trying to reach you but your phone is off.": "كنت أحاول الوصول إليك ولكن هاتفك مغلق.", "ID Documents Back": "ظهر الهوية", "ID Documents Front": "وجه الهوية", - "if you don't have account": "ما عندك حساب", - "if you dont have account": "إذا ما عندك حساب", "If you in Car Now. Press Start The Ride": "إذا ركبت، اضغط ابدأ المشوار", "If you need assistance, contact us": "تحتاج مساعدة؟ كلمنا", - "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you need to reach me, please contact the driver directly at": "إذا احتجت توصل لي، من فضلك اتصل بالسايق مباشرة على", "If you want add stop click here": "تبي تضيف وقفة اضغط هنا", - "if you want help you can email us here": "تبي مساعدة؟ راسلنا", - "If you want order to another person": "Si quieres pedir para otra persona", + "If you want order to another person": "إذا عايز تطلب لشخص تاني", "If you want to make Google Map App run directly when you apply order": "تبي قوقل ماب يفتح علطول؟", + "Image Upload Failed": "فشل رفع الصورة", "Image detecting result is ": "نتيجة الفحص: ", - "Image Upload Failed": "Image Upload Failed", - "image verified": "الصورة تمام", - "in your": "en tu", "In-App VOIP Calls": "مكالمات صوتية بالتطبيق", "Including Tax": "شامل الضريبة", "Incorrect sms code": "⚠️ رمز التحقق غلط. حاول مرة ثانية.", @@ -689,249 +570,240 @@ final Map ar_eg = { "Increase Your Trip Fee (Optional)": "زيد سعر المشوار (اختياري)", "Increasing the fare might attract more drivers. Would you like to increase the price?": "لو زودت السعر ممكن يجيك كابتن أسرع. تبي تزيد السعر؟", "Insert": "إدخال", - "insert amount": "دخل المبلغ", "Insert Emergincy Number": "دخل رقم الطوارئ", - "insert sos phone": "insert sos phone", - "Insert SOS Phone": "Insertar teléfono SOS", - "Insert Wallet phone number": "Ingresa el número de teléfono de la billetera", + "Insert SOS Phone": "أدخل رقم طوارئ", + "Insert Wallet phone number": "أدخل رقم موبايل المحفظة", "Insert Your Promo Code": "حط كود الخصم", "Inspection Date": "تاريخ الفحص الدوري", "InspectionResult": "نتيجة الفحص", + "Intaleq": "Intaleq", + "Intaleq Balance": "Intaleq Balance", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Intaleq Over", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq Support", + "Intaleq Wallet": "Intaleq Wallet", + "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", "Invalid MPIN": "رمز خطأ", "Invalid OTP": "كود غلط", - "Invalid QR Code": "Invalid QR Code", - "Invalid QR Code format": "Invalid QR Code format", + "Invalid QR Code": "رمز QR غير صالح", + "Invalid QR Code format": "صيغة رمز QR غير صالحة", "Invitation Used": "الدعوة مستخدمة", - "Invitations Sent": "Invitations Sent", - "Invite": "Invite", + "Invitations Sent": "تم إرسال الدعوات", + "Invite": "دعوة", "Invite sent successfully": "أرسلنا الدعوة", - "is calling you": "عم يتصل فيك", - "is driving a": "is driving a", - "is driving a ": "يسوق ", - "is reviewing your order. They may need more information or a higher price.": "está revisando tu pedido. Pueden necesitar más información o un precio más alto.", "Is the Passenger in your Car ?": "الراكب معك؟", "Issue Date": "تاريخ الإصدار", "IssueDate": "تاريخ الإصدار", "JOD": "ر.س", "Join": "انضمام", - "Join a channel": "Join a channel", + "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!", "Join Siro as a driver using my referral code!": "سجل كابتن في سيرو بكود الدعوة حقي!", - "joined": "انضم", + "Join a channel": "الانضمام إلى القناة", "Jordan": "الأردن", - "Keep it up!": "كفو عليك!", "KM": "كم", + "Keep it up!": "كفو عليك!", "Kuwait": "الكويت", - "label': 'Dark Mode": "label': 'Dark Mode", - "label': 'Light Mode": "label': 'Light Mode", - "label': 'System Default": "label': 'System Default", + "LE": "ر.س", "Lady": "نواعم", "Lady Captain for girls": "كابتن سيدة للبنات", "Lady Captains Available": "كباتن سيدات", "Language": "اللغة", "Language Options": "خيارات اللغة", - "Last Name": "Last Name", + "Last Name": "اسم العائلة", "Last name": "اسم العائلة", - "last name label": "اسم العائلة", - "last name required": "اسم العائلة مطلوب", "Latest Recent Trip": "آخر مشوار", - "LE": "ر.س", - "Learn more about our app and mission": "Aprende más sobre nuestra aplicación y misión", + "Learn more about our app and mission": "اعرف أكتر عن تطبيقنا ورسالتنا", "Leave": "مغادرة", - "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Leave a detailed comment (Optional)": "اترك تعليق مفصل (اختياري)", "Lets check Car license ": "نشيك الاستمارة", "Lets check License Back Face": "نشيك ظهر الرخصة", "License Categories": "فئات الرخصة", "License Type": "نوع الرخصة", - "Light Mode": "Light Mode", + "Light Mode": "الوضع الفاتح", "Link a phone number for transfers": "اربط رقم للتحويلات", - "Listen": "Listen", - "Location": "Location", + "Listen": "استماع", + "Location": "الموقع", "Location Link": "رابط الموقع", - "Location Received": "Location Received", + "Location Received": "تم استلام الموقع", "Log Off": "تسجيل خروج", "Log Out Page": "صفحة الخروج", - "Login": "Iniciar sesión", + "Login": "تسجيل الدخول", "Login Captin": "دخول الكابتن", "Login Driver": "دخول كابتن", - "login or register subtitle": "دخل رقم جوالك للدخول أو التسجيل", - "Logout": "Logout", + "Logout": "تسجيل الخروج", "Lowest Price Achieved": "أقل سعر", - "m": "د", "Made :": "الصنع:", "Make": "الشركة المصنعة", "Make is ": "الشركة:", "Male": "رجل", - "Map Error": "Map Error", + "Map Error": "خطأ في الخريطة", "Map Passenger": "خريطة الراكب", "Marital Status": "الحالة الاجتماعية", "Master's Degree": "ماجستير", "Maximum fare": "أعلى سعر", - "Message": "Message", - "message From Driver": "رسالة من الكابتن", - "message From passenger": "رسالة من الراكب", - "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", - "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", - "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", - "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", - "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", - "min": "min", - "min added to fare": "min added to fare", + "Message": "رسالة", + "Microphone permission is required for voice calls": "مطلوب إذن الميكروفون للمكالمات الصوتية", "Minimum fare": "أقل سعر", "Minute": "دقيقة", "Mishwar Vip": "مشوار VIP", "Model": "الموديل", - "model :": "الموديل:", "Model is": "الموديل:", "Morning": "صباح", "Most Secure Methods": "طرق آمنة", - "Move map to select destination": "Move map to select destination", - "Move map to set start location": "Move map to set start location", - "Move map to set stop": "Move map to set stop", - "Move map to your home location": "Move map to your home location", - "Move map to your pickup point": "Move map to your pickup point", - "Move map to your work location": "Move map to your work location", + "Move map to select destination": "حرك الخريطة لاختيار الوجهة", + "Move map to set start location": "حرك الخريطة لتحديد موقع الانطلاق", + "Move map to set stop": "حرك الخريطة لتحديد نقطة التوقف", + "Move map to your home location": "حرك الخريطة إلى موقع منزلك", + "Move map to your pickup point": "حرك الخريطة إلى نقطة الركوب", + "Move map to your work location": "حرك الخريطة إلى موقع عملك", "Move the map to adjust the pin": "حرك الخريطة عشان تظبط الموقع", "Mute": "كتم الصوت", "My Balance": "رصيدي", "My Card": "بطاقتي", "My Cared": "بطاقاتي", - "My current location is:": "موقعي الحالي:", - "my location": "موقعي", - "My location is correct. You can search for me using the navigation app": "Mi ubicación es correcta. Puedes buscarme usando la aplicación de navegación.", "My Profile": "ملفي", + "My current location is:": "موقعي الحالي:", + "My location is correct. You can search for me using the navigation app": "مواقعي صحيح. تقدر تبحث عليا باستخدام تطبيق الملاحة", "MyLocation": "موقعي", - "N/A": "N/A", + "N/A": "غير متاح", "Name": "الاسم", "Name (Arabic)": "الاسم (عربي)", "Name (English)": "الاسم (إنجليزي)", "Name :": "الاسم:", "Name in arabic": "الاسم بالعربي", "Name of the Passenger is ": "اسم الراكب: ", - "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", "National ID": "رقم الهوية", "National Number": "رقم الهوية", "NationalID": "رقم الهوية/الإقامة", - "Nearby": "Nearby", - "Nearest Car": "Coche más cercano", + "Nearby": "قريب", + "Nearest Car": "أقرب عربيّة", "Nearest Car for you about ": "أقرب سيارة لك بعد ", - "Nearest Car: ~": "Coche más cercano: ~", - "Need assistance? Contact us": "¿Necesitas ayuda? Contáctanos", - "Network error occurred": "Network error occurred", + "Nearest Car: ~": "أقرب عربيّة: ~", + "Need assistance? Contact us": "عايز مساعدة؟ اتصل بينا", + "Network error occurred": "حدث خطأ في الشبكة", "Next": "التالي", "Night": "ليل", "No": "لا", "No ,still Waiting.": "لا، لسه أنتظر.", - "No accepted orders? Try raising your trip fee to attract riders.": "ماحد قبل؟ ارفع السعر.", - "No audio files found.": "ما لقينا ملفات صوتية.", - "No Captain Accepted Your Order": "Ningún capitán aceptó tu pedido", + "No Captain Accepted Your Order": "مفيش كابتن قبل طلبك", "No Car in your site. Sorry!": "ما في سيارة عندك. المعذرة!", "No Car or Driver Found in your area.": "ما لقينا سيارة أو كابتن حولك.", - "No cars nearby": "No hay coches cerca", - "No contacts available": "No contacts available", + "No Drivers Found": "لم يتم العثور على سائقين", + "No I want": "لا أبي", + "No Notifications": "لا توجد إشعارات", + "No Promo for today .": "ما في عروض اليوم.", + "No Recordings Found": "لم يتم العثور على تسجيلات", + "No Response yet.": "ما في رد للحين.", + "No Rides now!": "لا توجد رحلات الآن!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة؟ عادي! كلم الكابتن من التطبيق.", + "No accepted orders? Try raising your trip fee to attract riders.": "ماحد قبل؟ ارفع السعر.", + "No audio files found.": "ما لقينا ملفات صوتية.", + "No cars nearby": "مفيش عربيات قريبة", + "No contacts available": "لا توجد جهات اتصال متاحة", "No contacts found": "ما لقينا جهات اتصال", "No contacts with phone numbers were found on your device.": "ما في أرقام بجهازك.", "No driver accepted my request": "ماحد قبل طلبي", "No drivers accepted your request yet": "ماحد قبل طلبك لسه", - "No drivers available": "No hay conductores disponibles", - "No drivers available at the moment. Please try again later.": "No hay conductores disponibles en este momento. Por favor, inténtalo de nuevo más tarde.", - "No Drivers Found": "未找到司机", - "No drivers found at the moment.\\nPlease try again later.": "目前未找到司机。\\n请稍后重试。", + "No drivers available": "مفيش سايقين متاحين", + "No drivers available at the moment. Please try again later.": "مفيش سايقين متاحين دلوقتي. من فضلك جرب تاني بعد شوية.", + "No drivers found at the moment.\\nPlease try again later.": "لم يتم العثور على سائقين حالياً.\nيرجى المحاولة مرة أخرى لاحقاً.", + "No drivers found at the moment.\nPlease try again later.": "No drivers found at the moment.\nPlease try again later.", "No face detected": "ما تعرفنا على الوجه", - "No favorite places yet!": "¡Aún no tienes lugares favoritos!", - "No i want": "No i want", - "No I want": "لا أبي", + "No favorite places yet!": "مفيش أماكن مفضلة لسه!", + "No i want": "لا، أنا عايز", "No image selected yet": "ما اخترت صورة", "No invitation found yet!": "ما فيه دعوات!", - "No notification data found.": "No notification data found.", - "No Notifications": "No Notifications", + "No notification data found.": "لم يتم العثور على بيانات إشعارات.", "No one accepted? Try increasing the fare.": "ماحد قبل؟ جرب تزيد السعر.", "No passenger found for the given phone number": "ما لقينا راكب بهالرقم", - "No Promo for today .": "ما في عروض اليوم.", "No promos available right now.": "ما فيه عروض حالياً.", - "No Recordings Found": "No Recordings Found", - "No Response yet.": "ما في رد للحين.", "No ride found yet": "ما لقينا مشوار", - "No Rides now!": "No Rides now!", - "No routes available for this destination.": "No routes available for this destination.", - "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة؟ عادي! كلم الكابتن من التطبيق.", - "No trip data available": "No hay datos de viaje disponibles", + "No routes available for this destination.": "لا توجد طرق متاحة لهذه الوجهة.", + "No trip data available": "مفيش بيانات رحلة متاحة", "No trip history found": "ما فيه سجل مشاوير", "No trip yet found": "ما لقينا مشوار", - "No user found": "No user found", + "No user found": "لم يتم العثور على مستخدم", "No user found for the given phone number": "ما لقينا مستخدم بهالرقم", "No wallet record found": "ما لقينا سجل للمحفظة", "No, I don't have a code": "لا، ما عندي", - "No, I want to cancel this trip": "No, quiero cancelar este viaje", + "No, I want to cancel this trip": "لا، أنا عايز ألغي الرحلة دي", "No, thanks": "لا، شكراً", - "No,I want": "No,I want", - "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "No,I want": "لا، أنا عايز", + "No.Iwant Cancel Trip.": "لا، أريد إلغاء الرحلة.", "Not Connected": "غير متصل", "Not set": "مو محدد", - "not similar": "غير مطابق", - "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", - "Notice": "Notice", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "ملاحظة: إذا لم يتم إدخال رمز البلد، سيتم حفظه كـ سوري (+963).", + "Notice": "تنبيه", "Notifications": "الإشعارات", - "Now move the map to your pickup point": "Now move the map to your pickup point", - "Now select start pick": "Ahora selecciona el punto de inicio", - "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "Now move the map to your pickup point": "الآن حرك الخريطة إلى نقطة الركوب الخاصة بك", + "Now select start pick": "دلوقتي اختر نقطة البداية", + "Now set the pickup point for the other person": "الآن حدد نقطة الركوب للشخص الآخر", + "OK": "تمام", "Occupation": "المهنة", - "of": "من", - "OK": "OK", "Ok": "تم", "Ok , See you Tomorrow": "تمام، أشوفك بكره", "Ok I will go now.": "أبشر، رايح له الحين.", "Old and affordable, perfect for budget rides.": "اقتصادية ومناسبة للميزانية.", - "On Trip": "On Trip", - "one last step title": "خطوة أخيرة", - "Open": "Open", - "Open destination search": "Open destination search", - "Open in Google Maps": "Open in Google Maps", + "On Trip": "في الرحلة", + "Open": "فتح", "Open Settings": "افتح الإعدادات", + "Open destination search": "فتح بحث الوجهات", + "Open in Google Maps": "فتح في خرائط جوجل", "Or pay with Cash instead": "أو ادفع كاش", "Order": "طلب", - "Order Accepted": "Pedido aceptado", + "Order Accepted": "تم قبول الطلب", "Order Applied": "تم الطلب", - "Order Cancelled": "Pedido cancelado", + "Order Cancelled": "تم إلغاء الطلب", "Order Cancelled by Passenger": "الطلب تكنسل من الراكب", + "Order Details Intaleq": "Order Details Intaleq", "Order Details Siro": "تفاصيل الطلب", - "Order for myself": "اطلب لنفسي", - "Order for someone else": "اطلب لغيرك", "Order History": "سجل الطلبات", "Order Request Page": "صفحة الطلب", - "Order Under Review": "Pedido en revisión", - "Order VIP Canceld": "Order VIP Canceld", + "Order Under Review": "الطلب قيد المراجعة", + "Order VIP Canceld": "تم إلغاء الطلب المميز VIP", + "Order for myself": "اطلب لنفسي", + "Order for someone else": "اطلب لغيرك", "OrderId": "رقم الطلب", "OrderVIP": "طلب VIP", "Origin": "الانطلاق", "Other": "غير ذلك", - "otp sent subtitle": "أرسلنا كود من 5 أرقام على\\n@phoneNumber", - "otp sent success": "تم إرسال الرمز للواتساب.", - "otp verification failed": "رمز التحقق غلط.", "Our dedicated customer service team ensures swift resolution of any issues.": "فريقنا يحل مشاكلك بسرعة.", "Owner Name": "اسم المالك", - "Passenger": "Passenger", - "passenger agreement": "اتفاقية الراكب", - "Passenger cancel order": "Passenger cancel order", + "Passenger": "الراكب", "Passenger Cancel Trip": "الراكب ألغى المشوار", - "Passenger cancelled order": "El pasajero canceló el pedido", + "Passenger Name is ": "اسم الراكب: ", + "Passenger Referral": "إحالة الراكب", + "Passenger cancel order": "ألغى الراكب الطلب", + "Passenger cancelled order": "الراكب ألغى الطلب", "Passenger come to you": "الراكب جايك", "Passenger name : ": "اسم الراكب: ", - "Passenger Name is ": "اسم الراكب: ", - "Passenger Referral": "Passenger Referral", - "Password": "Contraseña", + "Password": "كلمة المرور", "Password must br at least 6 character.": "كلمة المرور 6 حروف ع الأقل.", + "Paste WhatsApp location link": "حط رابط موقع الواتساب", "Paste location link here": "الصق الرابط هنا", "Paste the code here": "الصق الكود", - "Paste WhatsApp location link": "حط رابط موقع الواتساب", - "Pay": "Pagar", - "Pay by Cliq": "Pay by Cliq", - "Pay by MTN Wallet": "Pay by MTN Wallet", - "Pay by Sham Cash": "Pay by Sham Cash", - "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay": "ادفع", + "Pay by Cliq": "الدفع عبر كليك (Cliq)", + "Pay by MTN Wallet": "الدفع عبر محفظة MTN", + "Pay by Sham Cash": "الدفع عبر شام كاش", + "Pay by Syriatel Wallet": "الدفع عبر محفظة سيريتل", "Pay directly to the captain": "ادفع للكابتن كاش", "Pay from my budget": "ادفع من رصيدي", "Pay with Credit Card": "ادفع بالبطاقة", - "Pay with PayPal": "Pay with PayPal", + "Pay with PayPal": "الدفع عبر باي بال", "Pay with Wallet": "ادفع بالمحفظة", "Pay with Your": "ادفع بـ", "Pay with Your PayPal": "ادفع بـ PayPal", @@ -941,359 +813,335 @@ final Map ar_eg = { "Payment Options": "خيارات الدفع", "Payment Successful": "الدفع ناجح", "Payments": "الدفع", - "pending": "pendiente", "Perfect for adventure seekers who want to experience something new and exciting": "لمحبي المغامرة", "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالي للي يبون سيارات جديدة وحرية اختيار الطريق", + "Permission Required": "الصلاحية مطلوبة", "Permission denied": "ما في صلاحية", - "Permission Required": "Permission Required", "Personal Information": "المعلومات الشخصية", - "Phone": "Phone", - "phone not verified": "phone not verified", - "Phone Number": "Phone Number", - "Phone Number Check": "Phone Number Check", + "Phone": "الموبايل", + "Phone Number": "رقم الموبايل", + "Phone Number Check": "فحص رقم الموبايل", "Phone Number is": "الجوال:", - "Phone number is verified before": "El número de teléfono ya ha sido verificado", - "Phone number isn't an Egyptian phone number": "El número de teléfono no es un número egipcio", - "phone number label": "رقم الجوال", - "Phone number must be exactly 11 digits long": "El número de teléfono debe tener exactamente 11 dígitos", - "phone number required": "مطلوب رقم الجوال", - "Phone number seems too short": "Phone number seems too short", - "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", - "Phone Wallet Saved Successfully": "Billetera telefónica guardada con éxito", - "Pick destination on map": "Pick destination on map", + "Phone Wallet Saved Successfully": "تم حفظ محفظة الموبايل بنجاح", + "Phone number is verified before": "رقم الموبايل تم التحقق منه سابقًا", + "Phone number isn't an Egyptian phone number": "رقم الهاتف ليس رقماً مصرياً", + "Phone number must be exactly 11 digits long": "رقم الموبايل لازم يكون مكون من 11 رقم بالضبط", + "Phone number seems too short": "يبدو إن رقم الموبايل قصير جدًا", + "Phone verified. Please complete registration.": "تم تأكيد الهاتف. يرجى إكمال التسجيل.", + "Pick destination on map": "اختر الوجهة على الخريطة", "Pick from map": "اختر من الخريطة", - "Pick from map destination": "Elige el destino en el mapa", - "Pick location on map": "Pick location on map", - "Pick on map": "Pick on map", - "Pick or Tap to confirm": "Elige o toca para confirmar", - "Pick start point on map": "Pick start point on map", + "Pick from map destination": "اختر الوجهة من الخريطة", + "Pick location on map": "اختر الموقع على الخريطة", + "Pick on map": "اختر على الخريطة", + "Pick or Tap to confirm": "اختر أو اضغط للتأكيد", + "Pick start point on map": "اختر نقطة الانطلاق على الخريطة", "Pick your destination from Map": "حدد وجهتك من الخريطة", "Pick your ride location on the map - Tap to confirm": "حدد موقعك ع الخريطة - اضغط للتأكيد", - "Plan Your Route": "Plan Your Route", + "Plan Your Route": "خطط لمسارك", "Plate": "لوحة", "Plate Number": "رقم اللوحة", - "Please add contacts to your phone.": "Please add contacts to your phone.", - "Please check your internet and try again.": "Please check your internet and try again.", - "Please check your internet connection": "请检查您的网络连接", - "Please don't be late": "Por favor, no llegues tarde", - "Please don't be late, I'm waiting for you at the specified location.": "Por favor, no llegues tarde, te estoy esperando en la ubicación especificada.", + "Please Try anther time ": "جرب وقت ثاني", + "Please Wait If passenger want To Cancel!": "انتظر يمكن الراكب يلغي!", + "Please add contacts to your phone.": "يرجى إضافة جهات اتصال إلى هاتفك.", + "Please check your internet and try again.": "يرجى التحقق من الإنترنت والمحاولة مرة أخرى.", + "Please check your internet connection": "يرجى التحقق من اتصالك بالإنترنت", + "Please don't be late": "يرجى عدم التأخر", + "Please don't be late, I'm waiting for you at the specified location.": "يرجى عدم التأخر، أنا بانتظارك في الموقع المحدد.", "Please enter": "الرجاء إدخال", + "Please enter Your Email.": "دخل الإيميل لاهنت.", + "Please enter Your Password.": "دخل كلمة المرور.", "Please enter a correct phone": "دخل رقم جوال صح", - "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a description of the issue.": "من فضلك ادخل وصف للمشكلة.", "Please enter a phone number": "دخل رقم جوال", "Please enter a valid 16-digit card number": "دخل رقم بطاقة صح (16 رقم)", - "Please enter a valid email.": "Please enter a valid email.", - "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid email.": "من فضلك ادخل بريد إلكتروني صحيح.", + "Please enter a valid phone number.": "من فضلك ادخل رقم موبايل صحيح.", "Please enter a valid promo code": "دخل كود صحيح", - "Please enter phone number": "Please enter phone number", + "Please enter phone number": "من فضلك ادخل رقم الموبايل", + "Please enter the CVV code": "كود CVV", "Please enter the cardholder name": "اسم صاحب البطاقة", "Please enter the complete 6-digit code.": "دخل الرمز كامل (6 أرقام).", - "Please enter the CVV code": "كود CVV", "Please enter the expiry date": "تاريخ الانتهاء", - "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter the number without the leading 0": "من فضلك ادخل الرقم من غير الصفر الأولي", "Please enter your City.": "دخل مدينتك.", - "Please enter your complaint.": "Por favor, ingresa tu queja.", - "Please enter Your Email.": "دخل الإيميل لاهنت.", + "Please enter your Question.": "اكتب سؤالك.", + "Please enter your complaint.": "من فضلك ادخل شكواك.", "Please enter your feedback.": "اكتب ملاحظتك لاهنت.", "Please enter your first name.": "دخل الاسم الأول.", "Please enter your last name.": "دخل اسم العائلة.", - "Please enter Your Password.": "دخل كلمة المرور.", - "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number": "من فضلك ادخل رقم موبايلك", "Please enter your phone number.": "دخل رقم الجوال.", - "Please enter your Question.": "اكتب سؤالك.", "Please go to Car Driver": "تفضل عند الكابتن", - "Please go to Car now": "Please go to Car now", + "Please go to Car now": "من فضلك اذهب للعربية دلوقتي", "Please go to Car now ": "روح للسيارة الحين", - "please go to picker location exactly": "رح لموقع الركوب بالضبط", "Please help! Contact me as soon as possible.": "فزعة! كلمني بسرعة.", "Please make sure not to leave any personal belongings in the car.": "تأكد إنك ما نسيت شي في السيارة.", + "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 Siro app": "تأكد إن أغراضك معك وإن الباقي رجع للمحفظة قبل تنزل. شكراً لاستخدامك سيرو.", - "please order now": "اطلب الحين", - "Please paste the transfer message": "Please paste the transfer message", + "Please paste the transfer message": "من فضلك الصق رسالة التحويل", "Please put your licence in these border": "حط الرخصة داخل الإطار", - "Please select a reason first": "Please select a reason first", - "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", - "Please slow down": "Please slow down", + "Please select a reason first": "يرجى اختيار سبب أولاً", + "Please set a valid SOS phone number.": "يرجى تعيين رقم طوارئ صالح.", + "Please slow down": "يرجى تخفيف السرعة", "Please stay on the picked point.": "خليك في الموقع المحدد لا هنت.", - "Please try again in a few moments": "Por favor, inténtalo de nuevo en unos momentos", - "Please Try anther time ": "جرب وقت ثاني", + "Please try again in a few moments": "من فضلك جرب تاني بعد شوية لحظات", "Please verify your identity": "تحقق من هويتك", "Please wait for the passenger to enter the car before starting the trip.": "انتظر الراكب يركب قبل تبدأ.", - "Please Wait If passenger want To Cancel!": "انتظر يمكن الراكب يلغي!", - "please wait till driver accept your order": "انتظر الكابتن يقبل", - "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", - "Please write the reason...": "请填写原因...", + "Please wait while we prepare your trip.": "من فضلك انتظر واحنا بنحضر رحلتك.", + "Please write the reason...": "يرجى كتابة السبب...", "Point": "نقطة", "Potential security risks detected. The application may not function correctly.": "اكتشفنا مخاطر أمنية. يمكن التطبيق ما يشتغل صح.", - "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", - "Pre-booking": "Reserva anticipada", - "Preferences": "Preferences", - "Price": "Precio", - "price is": "السعر:", - "Price of trip": "Precio del viaje", - "Privacy Notice": "Aviso de privacidad", - "privacy policy": "سياسة الخصوصية.", + "Potential security risks detected. The application will close in @seconds seconds.": "اتكتشف مخاطر أمنية محتملة. التطبيق هيقفل خلال @seconds ثانية.", + "Pre-booking": "حجز مسبق", + "Preferences": "التفضيلات", + "Price": "السعر", + "Price of trip": "سعر الرحلة", + "Privacy Notice": "إشعار الخصوصية", "Privacy Policy": "سياسة الخصوصية", "Professional driver": "كابتن محترف", "Profile": "الملف الشخصي", - "Profile photo updated": "Profile photo updated", - "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "Profile photo updated": "تم تحديث صورة الملف الشخصي", "Promo": "كود خصم", "Promo Already Used": "الكود مستخدم", "Promo Code": "كود الخصم", "Promo Code Accepted": "انقبل الكود", - "Promo code copied to clipboard!": "نسخت الكود!", "Promo Copied!": "تم نسخ الكود!", "Promo End !": "انتهى العرض!", "Promo Ended": "انتهى العرض", - "Promo Error": "Promo Error", - "Promo', 'Show latest promo": "Promo', 'Show latest promo", - "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "Promo Error": "خطأ في الرمز الترويجي", + "Promo code copied to clipboard!": "نسخت الكود!", + "Promo', 'Show latest promo": "Promo', 'عرض أحدث العروض", "Promos": "العروض", - "Promos For Today": "Promociones para hoy", + "Promos For Today": "العروض ليوم النهاردة", "Pyament Cancelled .": "إلغاء الدفع.", "Qatar": "قطر", - "Quick Access": "Quick Access", + "Quick Access": "وصول سريع", "Quick Actions": "إجراءات سريعة", - "Quick Message": "Quick Message", + "Quick Message": "رسالة سريعة", "Quiet & Eco-Friendly": "هادية وصديقة للبيئة", "Rate Captain": "قيم الكابتن", "Rate Driver": "قيم الكابتن", "Rate Passenger": "قيم الراكب", - "Rating is": "Rating is", + "Rating is": "التقييم هو", "Rating is ": "التقييم: ", - "Rating is ": "Rating is ", + "Rating is ": "التقييم هو ", "Rayeh Gai": "رايح جاي", "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة مريحة للسفر بين المدن.", - "Reach out to us via": "Contattaci tramite", - "Received empty route data.": "Received empty route data.", + "Reach out to us via": "تواصل معنا عبر", + "Received empty route data.": "تم استلام بيانات مسار فارغة.", "Recent Places": "الأماكن الأخيرة", "Recharge my Account": "شحن حسابي", - "Record": "Record", + "Record": "تسجيل", "Record saved": "انحفظ التسجيل", - "Record your trips to see them here.": "Record your trips to see them here.", + "Record your trips to see them here.": "سجل رحلاتك لعرضها هنا.", "Recorded Trips (Voice & AI Analysis)": "مشاوير مسجلة", "Recorded Trips for Safety": "مشاوير مسجلة للأمان", - "Refresh Map": "刷新地图", + "Refresh Map": "تحديث الخريطة", "Refuse Order": "رفض الطلب", "Register": "تسجيل", - "Register as Driver": "سجل كابتن", "Register Captin": "تسجيل كابتن", "Register Driver": "تسجيل كابتن", - "registration failed": "فشل التسجيل.", - "reject your order.": "rechazó tu pedido.", - "rejected": "rechazado", - "Rejected Orders Count": "Rejected Orders Count", + "Register as Driver": "سجل كابتن", + "Rejected Orders Count": "عدد الطلبات المرفوضة", "Religion": "الديانة", - "remaining": "restante", - "Remove waypoint": "Remove waypoint", - "Report": "Report", + "Remove waypoint": "إزالة نقطة التوقف", + "Report": "تقرير", "Resend Code": "إعادة إرسال", - "Resend code": "Reenviar código", - "reviews": "تقييم", - "Reward Claimed": "Reward Claimed", - "Reward Earned": "Reward Earned", - "Reward Status": "Reward Status", + "Resend code": "إعادة إرسال الكود", + "Reward Claimed": "تم استلام المكافأة", + "Reward Earned": "تم كسب مكافأة", + "Reward Status": "حالة المكافأة", "Ride Management": "إدارة المشاوير", "Ride Summaries": "ملخص المشاوير", "Ride Summary": "ملخص المشوار", "Ride Today : ": "مشوار اليوم: ", "Ride Wallet": "محفظة المشوار", - "rides": "viajes", "Rides": "مشاوير", "Rouats of Trip": "مسارات المشوار", - "Route": "Route", - "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "Route": "المسار", "Route Not Found": "الطريق غير معروف", - "safe_and_comfortable": "استمتع بمشوار آمن.", + "Route and prices have been calculated successfully!": "تم حساب المسار والأسعار بنجاح!", + "SOS": "الطوارئ", + "SOS Phone": "رقم الطوارئ", + "SYP": "ليرة سورية", "Safety & Security": "الأمان", "Saudi Arabia": "السعودية", - "Save": "Save", - "Save Changes": "Save Changes", + "Save": "حفظ", + "Save Changes": "حفظ التغييرات", "Save Credit Card": "حفظ البطاقة", - "Save Name": "Save Name", + "Save Name": "حفظ الاسم", "Saved Sucssefully": "تم الحفظ", "Scan Driver License": "امسح الرخصة", - "Scan Id": "مسح الهوية", "Scan ID MklGoogle": "مسح الهوية MklGoogle", - "Scan QR": "Scan QR", - "Scan QR Code": "Scan QR Code", - "Scheduled Time:": "Hora programada:", + "Scan Id": "مسح الهوية", + "Scan QR": "مسح QR", + "Scan QR Code": "مسح رمز QR", + "Scheduled Time:": "الوقت المجدول:", "Scooter": "سكوتر", - "Search country": "Search country", - "Search for a starting point": "Search for a starting point", - "Search for another driver": "寻找其他司机", + "Search country": "ابحث عن الدولة", + "Search for a starting point": "ابحث عن نقطة البداية", + "Search for another driver": "البحث عن سائق آخر", "Search for waypoint": "ابحث عن نقطة توقف", - "Search for your destination": "ابحث عن وجهتك", "Search for your Start point": "ابحث عن نقطة البداية", - "Searching for nearby drivers...": "正在寻找附近的司机...", + "Search for your destination": "ابحث عن وجهتك", + "Searching for nearby drivers...": "جاري البحث عن سائقين قريبين...", "Searching for the nearest captain...": "جاري البحث عن أقرب كابتن...", - "seconds": "ثانية", - "Secure": "Secure", + "Secure": "آمن", "Security Warning": "⚠️ تنبيه أمني", - "security_warning": "security_warning", "See you on the road!": "نشوفك بالدرب!", - "Select Appearance": "Select Appearance", - "Select betweeen types": "Select betweeen types", + "Select Appearance": "اختر المظهر", "Select Country": "اختر الدولة", "Select Date": "اختر التاريخ", - "Select date and time of trip": "Seleccionar fecha y hora del viaje", - "Select Education": "Select Education", - "Select Gender": "Select Gender", - "Select one message": "اختر رسالة", + "Select Education": "اختر مستوى التعليم", + "Select Gender": "اختر الجنس", "Select Order Type": "اختر نوع الطلب", "Select Payment Amount": "اختر المبلغ", - "Select recorded trip": "اختر مشوار مسجل", - "Select This Ride": "Select This Ride", + "Select This Ride": "اختر الرحلة دي", "Select Time": "اختر الوقت", "Select Waiting Hours": "اختر ساعات الانتظار", "Select Your Country": "اختر دولتك", + "Select betweeen types": "اختر بين الأنواع", + "Select date and time of trip": "اختر تاريخ ووقت الرحلة", + "Select one message": "اختر رسالة", + "Select recorded trip": "اختر مشوار مسجل", "Select your destination": "اختر وجهتك", "Select your preferred language for the app interface.": "اختر لغة التطبيق.", "Selected Date": "التاريخ المحدد", "Selected Date and Time": "التاريخ والوقت", + "Selected Time": "الوقت المحدد", "Selected driver": "الكابتن المختار", "Selected file:": "الملف المختار:", - "Selected Time": "الوقت المحدد", - "Send a custom message": "أرسل رسالة", - "Send Email": "Send Email", + "Send Email": "إرسال بريد إلكتروني", + "Send Intaleq app to him": "Send Intaleq app to him", "Send Invite": "إرسال دعوة", - "send otp button": "أرسل كود التحقق", + "Send SOS": "إرسال طوارئ (SOS)", "Send Siro app to him": "أرسل له تطبيق سيرو", - "Send SOS": "Send SOS", - "Send to Driver Again": "Enviar al conductor nuevamente", "Send Verfication Code": "أرسل الرمز", "Send Verification Code": "أرسل كود التحقق", - "Send WhatsApp Message": "Send WhatsApp Message", - "Server Error": "Server Error", - "Server error": "Server error", - "server error try again": "خطأ في السيرفر، حاول مرة ثانية.", - "Server error. Please try again.": "Server error. Please try again.", + "Send WhatsApp Message": "إرسال رسالة واتساب", + "Send a custom message": "أرسل رسالة", + "Send to Driver Again": "إرسال للسايق تاني", + "Server Error": "خطأ في الخادم", + "Server error": "خطأ في السيرفر", + "Server error. Please try again.": "خطأ في السيرفر. من فضلك جرب تاني.", "Session expired. Please log in again.": "الجلسة انتهت. سجل دخولك مرة ثانية.", - "Set as Home": "Set as Home", - "Set as Stop": "Set as Stop", - "Set as Work": "Set as Work", - "Set Destination": "Set Destination", - "Set Location on Map": "Establecer ubicación en el mapa", - "Set Phone Number": "Set Phone Number", - "Set pickup location": "حدد موقع الانطلاق", + "Set Destination": "تحديد الوجهة", + "Set Location on Map": "تعيين الموقع على الخريطة", + "Set Phone Number": "تعيين رقم الموبايل", "Set Wallet Phone Number": "حط رقم للمحفظة", + "Set as Home": "تعيين كمنزل", + "Set as Stop": "تعيين كنقطة توقف", + "Set as Work": "تعيين كعمل", + "Set pickup location": "حدد موقع الانطلاق", "Setting": "إعدادات", "Settings": "الإعدادات", "Sex is ": "الجنس: ", - "Share": "Share", + "Share": "مشاركة", "Share App": "شارك التطبيق", - "Share this code with your friends and earn rewards when they use it!": "شارك الكود واكسب!", - "Share Trip": "Share Trip", + "Share Trip": "مشاركة الرحلة", "Share Trip Details": "شارك تفاصيل المشوار", + "Share this code with your friends and earn rewards when they use it!": "شارك الكود واكسب!", "Share with friends and earn rewards": "شارك مع ربعك واكسب", - "Share your experience to help us improve...": "Share your experience to help us improve...", - "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "Share your experience to help us improve...": "شارك تجربتك عشان تساعدنا نتحسن...", "Show Invitations": "عرض الدعوات", - "Show latest promo": "عرض الخصومات", "Show Promos": "عرض الخصومات", "Show Promos to Charge": "عروض الشحن", + "Show latest promo": "عرض الخصومات", "Showing": "عرض", "Sign In by Apple": "دخول بـ Apple", "Sign In by Google": "دخول بـ Google", - "Sign in for a seamless experience": "Inicia sesión para una experiencia sin interrupciones", - "Sign in to continue": "Sign in to continue", - "Sign in with Apple": "Iniciar sesión con Apple", - "Sign In with Google": "Iniciar sesión con Google", - "Sign in with Google for easier email and name entry": "ادخل بقوقل أسهل", + "Sign In with Google": "تسجيل الدخول عبر جوجل", "Sign Out": "تسجيل خروج", - "similar": "مطابق", - "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Sign in for a seamless experience": "سجّل دخول عشان تجربة سلسة", + "Sign in to continue": "سجل الدخول للمتابعة", + "Sign in with Apple": "تسجيل الدخول عبر آبل", + "Sign in with Google for easier email and name entry": "ادخل بقوقل أسهل", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "ما عليك سوى فتح تطبيق سيرو وإدخال وجهتك والضغط على \"طلب رحلة\". سيقوم التطبيق بتوصيلك بسائق قريب.", "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "افتح التطبيق، حدد وجهتك، واطلب المشوار.", "Siro": "سيرو", "Siro Balance": "رصيد سيرو", + "Siro LLC": "شركة سيرو", + "Siro Over": "انتهى المشوار", + "Siro Passenger": "راكب سيرو", + "Siro Support": "دعم سيرو", + "Siro Wallet": "محفظة سيرو", "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:": "سيرو تطبيق مشاوير مصمم لأمانك وميزانيتك. نوصلك بكباتن ثقة.", "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.": "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.", - "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 es la aplicación de transporte compartido más segura y confiable diseñada especialmente para pasajeros en Siria. Brindamos una experiencia de viaje cómoda, respetuosa y asequible con características que priorizan su seguridad y conveniencia. Nuestros capitanes de confianza están verificados, asegurados y respaldados por el mantenimiento regular del automóvil realizado por los mejores ingenieros. También ofrecemos servicios de apoyo en carretera para asegurarnos de que cada viaje sea sencillo y sin preocupaciones. Con Siro, disfruta de calidad, seguridad y tranquilidad cada vez que viaja.", + "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.": "سيرو هو تطبيق مشاركة الرحلات الأكثر أماناً وموثوقية المصمم خصيصاً للركاب في سوريا. نحن نقدم تجربة رحلة مريحة ومحترمة وبأسعار معقولة مع الميزات التي تعطي الأولوية لسلامتك وراحتك.", + "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 LLC": "شركة سيرو", "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 Over": "انتهى المشوار", - "Siro Passenger": "Siro Passenger", "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 Support": "Supporto Siro", - "Siro Wallet": "محفظة سيرو", - "Siro's Response": "Respuesta de Siro", - "Something went wrong. Please try again.": "Something went wrong. Please try again.", - "Sorry 😔": "抱歉 😔", - "Sorry, there are no cars available of this type right now.": "抱歉,目前没有此类车型。", - "SOS": "SOS", - "SOS Phone": "رقم الطوارئ", + "Siro's Response": "رد سيرو", + "Something went wrong. Please try again.": "حصل حاجة غلط. من فضلك جرب تاني.", + "Sorry 😔": "المعذرة 😔", + "Sorry, there are no cars available of this type right now.": "المعذرة، لا تتوفر سيارات من هذا النوع حالياً.", "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان واسعة للعوايل والمجموعات. راحة وأمان وتوفير.", "Speaker": "مكبر الصوت", - "Speaking...": "Speaking...", - "Speed Over": "Speed Over", + "Speaking...": "يتحدث...", + "Speed Over": "تجاوز السرعة", "Standard Call": "اتصال عادي", - "Start Point": "Start Point", + "Start Point": "نقطة الانطلاق", "Start Record": "ابدأ التسجيل", "Start the Ride": "ابدأ المشوار", - "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", "Statistics": "الإحصائيات", - "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stay calm. We are here to help.": "ابق هادئاً. نحن هنا للمساعدة.", + "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 Siro app.": "خطوات طلب مشوار بتطبيق سيرو.", - "Stop": "Stop", - "Submit": "Enviar", + "Stop": "توقف", + "Submit": "إرسال", "Submit ": "إرسال ", - "Submit a Complaint": "رفع شكوى", "Submit Complaint": "إرسال الشكوى", "Submit Question": "أرسل سؤال", - "Submit Rating": "Submit Rating", + "Submit Rating": "إرسال التقييم", + "Submit a Complaint": "رفع شكوى", "Submit rating": "إرسال التقييم", "Success": "تم", - "Support & Info": "Support & Info", - "Support is Away": "Il supporto è attualmente assente", - "Support is currently Online": "Il supporto è attualmente online", + "Support & Info": "الدعم والمعلومات", + "Support is Away": "الدعم غير متصل حالياً", + "Support is currently Online": "الدعم متصل حالياً", "Switch Rider": "تغيير الراكب", - "SYP": "叙利亚镑", - "Syria": "叙利亚", - "Syria': return 'SYP": "Syria': return 'SYP", + "Syria": "سوريا", + "Syria': return 'SYP": "Syria': return 'ليرة سورية", "Syria'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.": "خدمة مشاركة مشاوير رائدة في الخليج.", - "System Default": "System Default", - "Take a Photo": "Take a Photo", + "System Default": "افتراضي النظام", "Take Image": "صور", "Take Picture Of Driver License Card": "صور الرخصة", "Take Picture Of ID Card": "صور الهوية", + "Take a Photo": "التقاط صورة", "Tap on the promo code to copy it!": "اضغط ع الكود عشان تنسخه!", - "Tap to apply your discount": "Tap to apply your discount", - "Tap to search your destination": "Tap to search your destination", + "Tap to apply your discount": "اضغط لتطبيق الخصم الخاص بك", + "Tap to search your destination": "اضغط للبحث عن وجهتك", "Target": "الهدف", "Tariff": "التعرفة", "Tariffs": "التعرفة", "Tax Expiry Date": "تاريخ انتهاء الضريبة", - "Terms of Use": "Términos de uso", - "terms of use": "شروط الاستخدام", - "Terms of Use & Privacy Notice": "Términos de uso y aviso de privacidad", + "Terms of Use": "شروط الاستخدام", + "Terms of Use & Privacy Notice": "شروط الاستخدام وإشعار الخصوصية", "Thanks": "شكراً", - "the 300 points equal 300 L.E": "300 نقطة بـ 300 ر.س", - "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 نقطة تساوي 300 ر.س لك\\nرح اكسب فلوسك", - "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 ر.س", - "the 500 points equal 30 JOD for you \\nSo go and gain your money": "الـ 500 نقطة بـ 30 ر.س لك\\nروح اكسب فلوسك", + "The Driver Will be in your location soon .": "الكابتن بيوصلك قريب.", "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "الملف الصوتي لم يتم رفعه بعد.\\\\nهل تريد الإرسال بدونه؟", - "The audio file is not uploaded yet.\\nDo you want to submit without it?": "El archivo de audio aún no se ha subido.\\n¿Quiere enviarlo sin él?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "ملف الصوت مش اترفع لسه.\nعايز ترسل من غيره؟", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", "The distance less than 500 meter.": "المسافة أقل من 500 متر.", "The driver accept your order for": "الكابتن قبل بـ", - "The driver accepted your order for": "El conductor aceptó tu pedido para", + "The driver accepted your order for": "السايق قبل طلبك مقابل", "The driver accepted your trip": "الكابتن قبل مشوارك", "The driver canceled your ride.": "الكابتن ألغى مشوارك.", - "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "司机因紧急情况取消了行程。\\n您想立即寻找其他司机吗?", - "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "ألغى السائق الرحلة لسبب طارئ.\nهل تريد البحث عن سائق آخر فوراً؟", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?", + "The driver cancelled the trip.": "ألغى السائق الرحلة.", "The driver on your way": "الكابتن جايك", "The driver waiting you in picked location .": "الكابتن ينتظرك في الموقع.", "The driver waitting you in picked location .": "الكابتن ينتظرك.", - "The Driver Will be in your location soon .": "الكابتن بيوصلك قريب.", "The drivers are reviewing your request": "الكباتن يشوفون طلبك", "The email or phone number is already registered.": "الإيميل أو الرقم مسجل.", "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "الاسم في خلو السوابق ما يطابق الرخصة.", @@ -1305,60 +1153,58 @@ final Map ar_eg = { "The payment was not approved. Please try again.": "الدفع ما انقبل. جرب مرة ثانية.", "The price may increase if the route changes.": "ممكن يزيد السعر لو تغير الطريق.", "The promotion period has ended.": "خلصت فترة العرض.", - "The reason is": "La razón es", + "The reason is": "السبب هو", "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "بدأ المشوار! تقدر تكلم الطوارئ، تشارك رحلتك، أو تسجل صوت.", - "There is no Car or Driver in your area.": "您所在的区域没有车辆或司机。", + "There is no Car or Driver in your area.": "لا توجد سيارة أو سائق في منطقتك.", "There is no data yet.": "ما في بيانات.", "There is no help Question here": "ما في سؤال مساعدة", "There is no notification yet": "ما في إشعارات", "There no Driver Aplly your order sorry for that ": "ماحد قبل طلبك، المعذرة", "There's heavy traffic here. Can you suggest an alternate pickup point?": "زحمة هنا. تقدر تغير موقع الركوب؟", - "This action cannot be undone.": "This action cannot be undone.", - "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This action cannot be undone.": "لا يمكن التراجع عن هذا الإجراء.", + "This action is permanent and cannot be undone.": "هذا الإجراء دائم ولا يمكن التراجع عنه.", "This amount for all trip I get from Passengers": "هذا المبلغ من كل الركاب", "This amount for all trip I get from Passengers and Collected For me in": "المبلغ المجمع لي في", "This is a scheduled notification.": "هذا إشعار مجدول.", - "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for delivery or a motorcycle.": "ده للتوصيل أو موتوسيكل.", "This is for scooter or a motorcycle.": "هذا للسكوتر أو الدباب.", - "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This is the total number of rejected orders per day after accepting the orders": "ده هو العدد الإجمالي للطلبات المرفوضة يوميًا بعد قبول الطلبات", "This phone number has already been invited.": "هالرقم قد أرسلنا له دعوة.", "This price is": "هالسعر هو", "This price is fixed even if the route changes for the driver.": "السعر ثابت حتى لو تغير الطريق.", "This price may be changed": "السعر ممكن يتغير", - "This ride is already applied by another driver.": "Este viaje ya ha sido aplicado por otro conductor.", + "This ride is already applied by another driver.": "الرحلة دي اتقدم عليها سايق تاني بالفعل.", "This ride is already taken by another driver.": "المشوار راح لكابتن ثاني.", "This ride type allows changes, but the price may increase": "تقدر تغير بس السعر بيزيد", "This ride type does not allow changes to the destination or additional stops": "ما تقدر تغير الوجهة أو توقف", "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "مشوار مباشر بسعر ثابت. الكابتن يلتزم بالمسار.", "This trip is for women only": "المشوار للنساء فقط", - "this will delete all files from your device": "بيمسح كل الملفات من جهازك", - "Time": "Time", + "Time": "الوقت", "Time to arrive": "وقت الوصول", "Tip is ": "الإكرامية: ", - "To :": "To :", + "To :": "لـ :", "To : ": "إلى: ", - "to arrive you.": "to arrive you.", + "To Home": "للبيت", + "To Work": "للشغل", "To become a passenger, you must review and agree to the ": "عشان تصير راكب، لازم توافق على ", + "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 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 change Language the App": "Para cambiar el idioma de la aplicación", + "To change Language the App": "عشان تغيّر لغة التطبيق", "To change some Settings": "لتغيير الإعدادات", "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 give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "عشان نخدمك صح، نبي نعرف موقعك. بنستخدمه عشان نلقى لك كباتن قريبين.", - "To Home": "A casa", + "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 Siro support directly.": "للتسجيل زر موقعنا.", "To use Wallet charge it": "عشان تستخدم المحفظة اشحنها", - "To Work": "Al trabajo", "Today's Promos": "عروض اليوم", - "token change": "تغيير الرمز", - "token updated": "تحدث الرمز", - "Top up Balance": "Top up Balance", - "Top up Balance to continue": "Top up Balance to continue", + "Top up Balance": "شحن الرصيد", + "Top up Balance to continue": "شحن الرصيد عشان تكمل", "Top up Wallet": "شحن المحفظة", "Top up Wallet to continue": "اشحن المحفظة عشان تكمل", "Total Amount:": "المبلغ الكلي:", "Total Budget from trips by\\nCredit card is ": "إجمالي الدخل بالبطاقة: ", + "Total Budget from trips by\nCredit card is ": "Total Budget from trips by\nCredit card is ", "Total Budget from trips is ": "إجمالي الدخل: ", - "Total budgets on month": "ميزانية الشهر", "Total Connection Duration:": "مدة الاتصال:", "Total Cost": "التكلفة الكلية", "Total Cost is ": "التكلفة الكلية: ", @@ -1366,56 +1212,57 @@ final Map ar_eg = { "Total For You is ": "لك: ", "Total From Passenger is ": "المجموع من الراكب: ", "Total Hours on month": "ساعات الشهر", - "Total Invites": "Total Invites", + "Total Invites": "إجمالي الدعوات", "Total Points is": "مجموع النقاط", + "Total Price": "السعر الإجمالي", + "Total budgets on month": "ميزانية الشهر", "Total points is ": "مجموع النقاط ", - "Total Price": "Total Price", "Total price from ": "السعر الكلي من ", "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "تنقل بسيارة كهربائية حديثة وهادية. خيار فخم وصديق للبيئة.", - "Trip booked successfully": "Trip booked successfully", "Trip Cancelled": "المشوار تكنسل", "Trip Cancelled. The cost of the trip will be added to your wallet.": "تم إلغاء المشوار. المبلغ رجع لمحفظتك.", - "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Viaje cancelado. El costo del viaje se deducirá de tu billetera.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "الرحلة اتلغت. تكلفة الرحلة هتنخصم من محفظتك.", + "Trip Monitor": "مراقب الرحلة", + "Trip Monitoring": "متابعة المشوار", + "Trip Status:": "حالة الرحلة:", + "Trip booked successfully": "تم حجز الرحلة بنجاح", "Trip finished": "انتهت الرحلة", - "Trip finished ": "Trip finished ", + "Trip finished ": "انتهت الرحلة ", "Trip has Steps": "الرحلة فيها وقفات", "Trip is Begin": "بدأ المشوار", - "Trip Monitor": "Monitor de viaje", - "Trip Monitoring": "متابعة المشوار", - "Trip Status:": "Estado del viaje:", - "Trip updated successfully": "Viaje actualizado con éxito", - "trips": "مشاوير", + "Trip updated successfully": "تم تحديث الرحلة بنجاح", "Trips recorded": "المشاوير المسجلة", - "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \$trips / \$target": "الرحلات: \$trips / \$target", "Trusted driver": "كابتن موثوق", "Turkey": "تركيا", - "type here": "اكتب هنا", "Type here Place": "اكتب المكان", "Type something...": "اكتب شي...", "Type your Email": "اكتب إيميلك", "Type your message": "اكتب رسالتك", - "Type your message...": "Type your message...", + "Type your message...": "اكتب رسالتك...", + "USA": "أمريكا", "Uncompromising Security": "أمان تام", - "unknown": "unknown", - "Unknown Driver": "Conductor desconocido", - "Unknown Location": "Unknown Location", + "Unknown Driver": "سايق غير معروف", + "Unknown Location": "موقع غير معروف", "Update": "تحديث", - "Update Available": "Actualización disponible", + "Update Available": "في تحديث جديد", "Update Education": "تحديث التعليم", "Update Gender": "تحديث الجنس", - "Update Name": "Update Name", - "upgrade price": "aumentar el precio", + "Update Name": "تحديث الاسم", "Uploaded": "تم الرفع", - "USA": "أمريكا", + "Use Touch ID or Face ID to confirm payment": "استخدم البصمة لتأكيد الدفع", "Use code:": "استخدم الكود:", "Use my invitation code to get a special gift on your first ride!": "استخدم كودي عشان يجيك هدية بأول مشوار!", "Use my referral code:": "استخدم كود الدعوة:", - "Use Touch ID or Face ID to confirm payment": "استخدم البصمة لتأكيد الدفع", "User does not exist.": "المستخدم مو موجود.", - "User does not have a wallet #1652": "El usuario no tiene una billetera #1652", - "User not found": "Usuario no encontrado", + "User does not have a wallet #1652": "المستخدم مالوش محفظة #1652", + "User not found": "ملاقيش المستخدم", "User with this phone number or email already exists.": "هالرقم أو الإيميل مسجل من قبل.", "Uses cellular network": "يستخدم شبكة الهاتف", + "VIN": "رقم الهيكل", + "VIN :": "رقم الهيكل:", + "VIN is": "رقم الهيكل:", + "VIP Order": "طلب VIP", "Valid Until:": "صالح لين:", "Van": "عائلية (فان)", "Van for familly": "فان للعائلة", @@ -1424,153 +1271,144 @@ final Map ar_eg = { "Vehicle Details Front": "تفاصيل المركبة (أمام)", "Vehicle Options": "خيارات السيارات", "Verification Code": "رمز التحقق", + "Verified Passenger": "راكب موثق", "Verified driver": "كابتن موثق", - "Verified Passenger": "Verified Passenger", "Verify": "تأكيد", - "verify and continue button": "تحقق وكمال", "Verify Email": "تأكيد الإيميل", "Verify Email For Driver": "تأكيد إيميل الكابتن", "Verify OTP": "تأكيد الرمز", - "verify your number title": "تحقق من رقمك", - "Vibration": "Vibración", + "Vibration": "الاهتزاز", "Vibration feedback for all buttons": "اهتزاز لكل الأزرار", - "View Map": "View Map", + "View Map": "عرض الخريطة", "View your past transactions": "شوف عملياتك السابقة", - "VIN": "رقم الهيكل", - "VIN :": "رقم الهيكل:", - "VIN is": "رقم الهيكل:", - "VIP Order": "طلب VIP", - "Visit our website or contact Siro support for information on driver registration and requirements.": "زور موقعنا أو كلم الدعم.", "Visit Website/Contact Support": "الموقع / الدعم", - "Voice Call": "Chiamata vocale", + "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 Siro support for information on driver registration and requirements.": "زور موقعنا أو كلم الدعم.", + "Voice Call": "مكالمة صوتية", "Voice call over internet": "مكالمة صوتية عبر الإنترنت", - "wait 1 minute to receive message": "انتظر دقيقة توصلك الرسالة", - "wait 1 minute to recive message": "wait 1 minute to recive message", - "Wait for the trip to start first": "Wait for the trip to start first", + "Wait for the trip to start first": "انتظر حتى تبدأ الرحلة أولاً", + "Waiting VIP": "بانتظار VIP", "Waiting for Captin ...": "بانتظار الكابتن...", "Waiting for Driver ...": "بانتظار الكابتن...", - "Waiting for trips": "Waiting for trips", + "Waiting for trips": "بانتظار الرحلات", "Waiting for your location": "ننتظر موقعك", - "Waiting VIP": "Esperando VIP", - "Waiting...": "Waiting...", + "Waiting...": "انتظار...", "Wallet": "المحفظة", - "wallet due to a previous trip.": "billetera debido a un viaje anterior.", "Wallet is blocked": "المحفظة موقوفة", "Wallet!": "المحفظة!", - "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", - "Warning": "Warning", + "Warning": "تحذير", + "Warning: Intaleqing detected!": "Warning: Intaleqing detected!", "Warning: Siroing detected!": "تحذير: سرعة عالية!", "Warning: Speeding detected!": "تنبيه: سرعة عالية!", - "Waypoint has been set successfully": "Waypoint has been set successfully", - "We apologize 😔": "我们深表歉意 😔", - "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", + "Waypoint has been set successfully": "تم تحديد نقطة التوقف بنجاح", + "We Are Sorry That we dont have cars in your Location!": "آسفين، ما في سيارات حولك!", + "We apologize 😔": "المعذرة 😔", + "We are looking for a captain but the price may increase to let a captain accept": "إحنا بنبص على كابتن بس السعر ممكن يزيد عشان كابتن يقبل", "We are process picture please wait ": "نعالج الصورة، انتظر شوي", "We are search for nearst driver": "ندور أقرب كابتن", "We are searching for the nearest driver": "ندور أقرب كابتن", "We are searching for the nearest driver to you": "ندور لك أقرب كابتن", - "We Are Sorry That we dont have cars in your Location!": "آسفين، ما في سيارات حولك!", "We connect you with the nearest drivers for faster pickups and quicker journeys.": "نوصلك بأقرب كباتن عشان ما تتأخر.", "We couldn't find a valid route to this destination. Please try selecting a different point.": "ما لقينا طريق للوجهة هذي. جرب تختار نقطة ثانية.", "We have sent a verification code to your mobile number:": "طرشنا لك رمز التحقق على جوالك:", "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ما لقينا كباتن للحين. فكر تزيد السعر عشان يوافقون أسرع.", - "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 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 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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "We noticed the speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "لاحظنا أن السرعة تتجاوز 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 أرقام لإيميلك", - "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", - "We use location to get accurate and nearest passengers for you": "Usamos la ubicación para obtener pasajeros precisos y cercanos para ti", - "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "Usamos tu ubicación precisa para encontrar el conductor disponible más cercano y proporcionar información precisa de recogida y dejada. Puedes gestionar esto en Configuración.", + "We use location to get accurate and nearest driver for you": "نستخدم الموقع للحصول على السائق الأقرب والأكثر دقة لك", + "We use location to get accurate and nearest passengers for you": "بنستخدم الموقع عشان نلاقي ركاب دقيقين وقريبين ليك", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "بنستخدم موقعك الدقيق عشان نلاقي أقرب سايق متاح ونوفر معلومات دقيقة للاستلام والتنزيل. تقدر تدير ده في الإعدادات.", "We will look for a new driver.\\nPlease wait.": "بنشوف لك كابتن ثاني.\\nانتظر لاهنت.", - "We're here to help you 24/7": "Siamo qui per aiutarti 24/7", - "Welcome Back": "Welcome Back", + "We will look for a new driver.\nPlease wait.": "We will look for a new driver.\nPlease wait.", + "We're here to help you 24/7": "نحن هنا لمساعدتك على مدار الساعة 24/7", + "Welcome Back": "مرحباً بعودتك", "Welcome Back!": "هلا بك من جديد!", - "welcome to siro": "حياك في سيرو", + "Welcome to Intaleq!": "Welcome to Intaleq!", "Welcome to Siro!": "حياك الله في سيرو!", - "welcome user": "يا هلا، @firstName!", - "welcome_message": "أهلاً بك في سيرو!", "What are the requirements to become a driver?": "وش الشروط؟", + "What safety measures does Intaleq offer?": "What safety measures does Intaleq offer?", "What safety measures does Siro offer?": "وش إجراءات الأمان؟", "What types of vehicles are available?": "وش أنواع السيارات؟", - "WhatsApp": "WhatsApp", + "WhatsApp": "واتساب", "WhatsApp Location Extractor": "جلب الموقع من واتساب", - "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", "When": "متى", "Where are you going?": "وين رايح؟", - "Where are you, sir?": "¿Dónde estás, señor?", + "Where are you, sir?": "أين أنت، سيدي؟", "Where to": "وين الوجهة؟", "Where you want go ": "وين تبي تروح ", + "Why Choose Intaleq?": "Why Choose Intaleq?", "Why Choose Siro?": "ليش سيرو؟", - "Why do you want to cancel?": "Why do you want to cancel?", - "with license plate": "with license plate", + "Why do you want to cancel?": "لماذا تريد الإلغاء؟", + "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 Siro, you can get a ride to your destination in minutes.": "مع سيرو، توصل وجهتك بدقايق.", - "with type": "con tipo", - "witout zero": "witout zero", "Work": "الدوام", "Work & Contact": "العمل والتواصل", - "Work Saved": "Trabajo guardado", - "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work Saved": "تم حفظ العمل", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "أوقات العمل من 10:00 صباحاً إلى 16:00 مساءً.\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "الدوام من 12 لـ 7.\\nأرسل واتساب أو إيميل.", - "Working Hours:": "Orario di lavoro:", - "write Color for your car": "اكتب اللون", - "write Expiration Date for your car": "اكتب تاريخ الانتهاء", - "write Make for your car": "اكتب الشركة", - "write Model for your car": "اكتب الموديل", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.", + "Working Hours:": "أوقات العمل:", "Write note": "اكتب ملاحظة", - "write vin for your car": "اكتب رقم الهيكل", - "write Year for your car": "اكتب السنة", - "Wrong pickup location": "上车地点错误", + "Wrong pickup location": "موقع ركوب خاطئ", "Year": "السنة", - "year :": "السنة:", "Year is": "السنة:", - "Yes": "Yes", - "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "是的,您可以在特定条件下(例如分配司机前)取消行程。详情请参阅 Siro 取消政策。", + "Yes": "نعم", + "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 Siro 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 are Delete": "أنت بتحذف", - "You are not in near to passenger location": "أنت بعيد عن الراكب", - "You are Stopped": "أنت موقوف", "You Are Stopped For this Day !": "توقفت اليوم!", - "You can buy points from your budget": "تقدر تشتري نقاط من رصيدك", + "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي وتأخذ حقك من", + "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي إذا تأخر الكابتن", + "You Dont Have Any amount in": "ما عندك رصيد في", + "You Dont Have Any places yet !": "ما عندك أماكن!", + "You Have": "عندك", + "You Have Tips": "عندك إكرامية", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "رفضت 3 مشاوير اليوم.\\nنشوفك بكره!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!", + "You Should be select reason.": "لازم تختار سبب.", + "You Should choose rate figure": "لازم تختار تقييم", + "You are Delete": "أنت بتحذف", + "You are Stopped": "أنت موقوف", + "You are not in near to passenger location": "أنت بعيد عن الراكب", "You can buy Points to let you online\\nby this list below": "اشتر نقاط عشان تكون متصل\\nمن القائمة", + "You can buy Points to let you online\nby this list below": "You can buy Points to let you online\nby this list below", + "You can buy points from your budget": "تقدر تشتري نقاط من رصيدك", "You can call or record audio during this trip.": "تقدر تتصل أو تسجل صوت خلال المشوار.", "You can call or record audio of this trip": "تقدر تتصل أو تسجل صوت", - "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي إذا تأخر الكابتن", "You can cancel Ride now": "تقدر تلغي الحين", "You can cancel trip": "تقدر تكنسل", - "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي وتأخذ حقك من", "You can change the Country to get all features": "غير الدولة عشان كل الميزات", - "You can change the destination by long-pressing any point on the map": "Puedes cambiar el destino manteniendo presionado cualquier punto en el mapa", + "You can change the destination by long-pressing any point on the map": "يمكنك تغيير الوجهة بالضغط المطول على أي نقطة على الخريطة", "You can change the language of the app": "تغيير اللغة", "You can change the vibration feedback for all buttons": "تقدر تغير اهتزاز الأزرار", "You can claim your gift once they complete 2 trips.": "تقدر تأخذ الهدية إذا كملوا مشوارين.", "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "عن طريق الشات في التطبيق.", - "You can contact us during working hours from 10:00 - 16:00.": "Puede contactarnos durante el horario laboral de 10:00 a 16:00.", + "You can contact us during working hours from 10:00 - 16:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 10:00 إلى 16:00.", "You can contact us during working hours from 12:00 - 19:00.": "كلمناه من 12 لـ 7.", "You can decline a request without any cost": "تقدر ترفض بدون تكلفة", - "You can only use one device at a time. This device will now be set as your active device.": "Solo puedes usar un dispositivo a la vez. Este dispositivo se establecerá ahora como tu dispositivo activo.", + "You can only use one device at a time. This device will now be set as your active device.": "يمكنك استخدام جهاز واحد فقط في كل مرة. سيتم الآن تعيين هذا الجهاز كجهازك النشط.", "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "ادفع كاش أو بطاقة.", "You can resend in": "تقدر تعيد الإرسال بعد", + "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 Siro 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 upgrade price to may driver accept your order": "يمكنك رفع السعر ليقبل السائق طلبك", "You can't continue with us .\\nYou should renew Driver license": "ما تقدر تكمل معنا.\\nلازم تجدد الرخصة", - "you canceled order": "cancelaste el pedido", - "You canceled VIP trip": "Cancelaste el viaje VIP", + "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": "لقد ألغيت رحلة VIP", "You deserve the gift": "تستاهل الهدية", "You dont Add Emergency Phone Yet!": "ما ضفت رقم طوارئ!", - "You Dont Have Any amount in": "ما عندك رصيد في", - "You Dont Have Any places yet !": "ما عندك أماكن!", "You dont have Points": "ما عندك نقاط", - "you gain": "كسبت", - "You Have": "عندك", - "you have a negative balance of": "tienes un saldo negativo de", "You have already received your gift for inviting": "قد استلمت هديتك على هالدعوة", "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", "You have already used this promo code.": "استخدمت هالكود من قبل.", - "You have been successfully referred!": "You have been successfully referred!", + "You have been successfully referred!": "تمت إحالتك بنجاح!", "You have call from driver": "عندك اتصال من الكابتن", "You have copied the promo code.": "نسخت كود الخصم.", "You have earned 20": "كسبت 20", @@ -1578,64 +1416,297 @@ final Map ar_eg = { "You have got a gift for invitation": "جتك هدية عشان الدعوة", "You have in account": "عندك بالحساب", "You have promo!": "عندك خصم!", - "You Have Tips": "عندك إكرامية", - "You must be charge your Account": "لازم تشحن حسابك", - "you must insert token code": "you must insert token code", - "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق لتغيير اللغة.", "You must Verify email !.": "لازم تأكد الإيميل!", - "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "رفضت 3 مشاوير اليوم.\\nنشوفك بكره!", - "You Should be select reason.": "لازم تختار سبب.", - "You Should choose rate figure": "لازم تختار تقييم", + "You must be charge your Account": "لازم تشحن حسابك", + "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق لتغيير اللغة.", "You should have upload it .": "لازم ترفعها طال عمرك.", - "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", - "You should restart app to change language": "Debes reiniciar la aplicación para cambiar el idioma", + "You should ideintify your gender for this type of trip!": "يجب تحديد جنسك لهذا النوع من الرحلات!", + "You should restart app to change language": "يجب عليك إعادة تشغيل التطبيق لتغيير اللغة", "You should select one": "لازم تختار واحد", "You should select your country": "اختر دولتك", "You trip distance is": "مسافة المشوار:", "You will arrive to your destination after ": "بتوصل بعد ", "You will arrive to your destination after timer end.": "بتوصل بعد انتهاء المؤقت.", - "You will be charged for the cost of the driver coming to your location.": "Se te cobrará el costo del conductor que viene a tu ubicación.", + "You will be charged for the cost of the driver coming to your location.": "سيتم محاسبتك على تكلفة وصول السائق إلى موقعك.", "You will be pay the cost to driver or we will get it from you on next trip": "بتدفع للكابتن أو نأخذها منك المشوار الجاي", "You will be thier in": "بتوصل خلال", "You will choose allow all the time to be ready receive orders": "اختر 'السماح طوال الوقت' لاستقبال الطلبات", "You will choose one of above !": "اختر واحد من اللي فوق!", - "You will choose one of above!": "You will choose one of above!", + "You will choose one of above!": "ستختار واحداً مما سبق!", "You will get cost of your work for this trip": "بتاخذ حق مشوارك", - "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 receive a code in SMS message": "بيجيك كود برسالة نصية", "You will receive a code in WhatsApp Messenger": "بيجيك كود ع الواتساب", "You will recieve code in sms message": "بيجيك كود في رسالة", "Your Account is Deleted": "انحذف حسابك", - "Your are far from passenger location": "أنت بعيد عن الراكب", "Your Budget less than needed": "رصيدك أقل من المطلوب", "Your Choice, Our Priority": "اختيارك يهمنا", - "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your Journey Begins Here": "رحلتك تبدأ من هنا", + "Your QR Code": "رمز QR الخاص بك", + "Your Rewards": "مكافآتك", + "Your Ride Duration is ": "مدة المشوار: ", + "Your Wallet balance is ": "رصيدك بالمحفظة: ", + "Your are far from passenger location": "أنت بعيد عن الراكب", + "Your complaint has been submitted.": "تم تقديم شكواك.", "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "بتمسح بياناتك بعد أسبوعين\\nوما تقدر ترجع بعد شهر", - "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", - "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", - "Your email address": "Tu dirección de correo electrónico", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "سيتم مسح بياناتك بعد أسبوعين\nولن تتمكن من العودة لاستخدام التطبيق بعد شهر واحد", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ", + "Your device appears to be compromised. The app will now close.": "يبدو أن جهازك مخترق. سيتم الآن إغلاق التطبيق.", + "Your email address": "عنوان بريدك الإلكتروني", "Your fee is ": "أجرتك: ", "Your invite code was successfully applied!": "تم تطبيق كود الدعوة!", - "Your Journey Begins Here": "Tu viaje comienza aquí", "Your journey starts here": "مشوارك يبدأ هنا", "Your name": "اسمك", "Your order is being prepared": "طلبك يتجهز", "Your order sent to drivers": "أرسلنا طلبك للكباتن", - "Your password": "Tu contraseña", + "Your password": "كلمة المرور الخاصة بك", "Your past trips will appear here.": "مشاويرك السابقة بتطلع هنا.", - "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment is being processed and your wallet will be updated shortly.": "يتم معالجة دفعتك وسيتم تحديث محفظتك قريباً.", "Your personal invitation code is:": "كود الدعوة حقك:", - "Your QR Code": "Your QR Code", - "Your Rewards": "Your Rewards", - "Your Ride Duration is ": "مدة المشوار: ", - "your ride is Accepted": "مشوارك انقبل", - "your ride is applied": "انطلب مشوارك", "Your trip cost is": "تكلفة مشوارك:", "Your trip distance is": "مسافة مشوارك:", - "Your trip is scheduled": "Tu viaje está programado", - "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", - "Your Wallet balance is ": "رصيدك بالمحفظة: ", + "Your trip is scheduled": "رحلتك مجدولة", + "Your valuable feedback helps us improve our service quality.": "تعليقاتك القيمة تساعدنا في تحسين جودة خدمتنا.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'أكمل", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'تم الحفظ بنجاح", + "\${'Age": "\${'العمر", + "\${'Balance:": "\${'الرصيد:", + "\${'Car": "\${'السيارة", + "\${'Car Plate is ": "\${'لوحة السيارة هي ", + "\${'Claim your 20 LE gift for inviting": "\${'احصل على هدية بقيمة 20 جنيه لدعوة", + "\${'Code": "\${'الرمز", + "\${'Color": "\${'اللون", + "\${'Color is ": "\${'اللون هو ", + "\${'Cost Duration": "\${'تكلفة المدة", + "\${'DISCOUNT": "\${'خصم", + "\${'Date of Birth is": "\${'تاريخ الميلاد هو", + "\${'Distance is": "\${'المسافة هي", + "\${'Duration is": "\${'المدة هي", + "\${'Email is": "\${'البريد الإلكتروني هو", + "\${'Expiration Date ": "\${'تاريخ انتهاء الصلاحية ", + "\${'Fee is": "\${'الرسوم هي", + "\${'How was your trip with": "\${'كيف كانت رحلتك مع", + "\${'Keep it up!": "\${'استمر في ذلك!", + "\${'Make is ": "\${'الماركة هي ", + "\${'Model is": "\${'الموديل هو", + "\${'Negative Balance:": "\${'رصيد سالب:", + "\${'Pay": "\${'دفع", + "\${'Phone Number is": "\${'رقم الهاتف هو", + "\${'Plate": "\${'اللوحة", + "\${'Please enter": "\${'من فضلك ادخل", + "\${'Rides": "\${'الرحلات", + "\${'Selected Date and Time": "\${'التاريخ والوقت المحددين", + "\${'Selected driver": "\${'السائق المحدد", + "\${'Sex is ": "\${'الجنس هو ", + "\${'Showing": "\${'عرض", + "\${'Stop": "\${'توقف", + "\${'Tip is": "\${'الإكرامية هي ", + "\${'Tip is ": "\${'الإكرامية هي ", + "\${'Total price to ": "\${'السعر الإجمالي إلى ", + "\${'Update": "\${'تحديث", + "\${'VIN is": "\${'رقم الهيكل (VIN) هو", + "\${'Valid Until:": "\${'صالح لغاية:", + "\${'We have sent a verification code to your mobile number:": "\${'أرسلنا كود التحقق لرقم موبايلك:", + "\${'Where to": "\${'إلى أين", + "\${'Year is": "\${'السنة هي", + "\${'You are Delete": "\${'لقد قمت بحذف", + "\${'You can resend in": "\${'تقدر تعيد الإرسال خلال", + "\${'You have a balance of": "\${'لديك رصيد بقيمة", + "\${'You have a negative balance of": "\${'لديك رصيد سالب بقيمة", + "\${'You have call from Passenger": "\${'لديك مكالمة من الراكب", + "\${'You have call from driver": "\${'معاك مكالمة من السايق", + "\${'You will be thier in": "\${'ستكون هناك خلال", + "\${'Your Ride Duration is ": "\${'مدة رحلتك هي ", + "\${'Your fee is ": "\${'رسومك هي ", + "\${'Your trip distance is": "\${'مسافة رحلتك هي", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\$\${' tips\nTotal is", + "\${'you have a negative balance of": "\${'لديك رصيد سالب بقيمة", + "\${'you will pay to Driver": "\${'ستدفع للسائق", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} رصيد", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'رصيد", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'كم", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'رحلات", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'تقييمات", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'دقيقة", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'تم الحفظ بنجاح", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nونهتم بالأسعار تكون مناسبة.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "accepted": "مقبولة", + "accepted your order at price": "قبل طلبك بالسعر", + "addHome' ? 'Add Home": "addHome' ? 'إضافة المنزل", + "addWork' ? 'Add Work": "addWork' ? 'إضافة العمل", + "agreement subtitle": "للمتابعة، وافق على الشروط والخصوصية.", + "airport": "المطار", + "an error occurred": "صار خطأ غير متوقع: @error", + "and I have a trip on": "وعندي مشوار على", + "and acknowledge our": "وتقر بـ", + "and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية.", + "and acknowledge the": "وأوافق على", + "app_description": "سيرو تطبيق آمن وموثوق.", + "arrival time to reach your point": "وقت الوصول لنقطتك", + "as the driver.": "كسايق.", + "before": "قبل", + "begin": "بدء", + "by": "بواسطة", + "cancelled": "ملغي", + "carType'] ?? 'Car": "carType'] ?? 'سيارة", + "change device": "غيّر الجهاز", + "committed_to_safety": "نهتم بسلامتك.", + "complete profile subtitle": "كمل بياناتك عشان تبدأ", + "complete registration button": "إتمام التسجيل", + "complete, you can claim your gift": "اكتمل، اطلب هديتك", + "contacts. Others were hidden because they don't have a phone number.": "جهة اتصال. الباقي مخفي عشان ما عندهم أرقام.", + "contacts. Others were hidden because they don\\'t have a phone number.": "جهات الاتصال. تم إخفاء الآخرين لأنهم لا يملكون رقم هاتف.", + "copied to clipboard": "تم النسخ للحافظة", + "created time": "وقت الإنشاء", + "deleted": "تم الحذف", + "distance is": "المسافة هي", + "driverName'] ?? 'Captain": "driverName'] ?? 'الكابتن", + "driver_license": "رخصة_قيادة", + "due to a previous trip.": "بسبب رحلة سابقة.", + "duration is": "المدة:", + "e.g. 0912345678": "مثال: 0912345678", + "email optional label": "الإيميل (اختياري)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'مرحباً", + "endName'] ?? 'Destination": "endName'] ?? 'الوجهة", + "enter otp validation": "دخل الكود (5 أرقام)", + "face detect": "التحقق من الوجه", + "failed to send otp": "فشل إرسال الرمز.", + "first name label": "الاسم الأول", + "first name required": "الاسم الأول مطلوب", + "for": "لـ", + "for your first registration!": "لتسجيلك الأول!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 3:00", + "from 23:59 till 05:30": "من 11:59 م لـ 5:30 ص", + "from 3 times Take Attention": "من 3 مرات، انتبه", + "from your favorites": "من مفضلاتك", + "from your list": "من قائمتك", + "get_a_ride": "مع سيرو، الموتر يجيك بدقايق.", + "get_to_destination": "وصل وجهتك بسرعة.", + "go to your passenger location before\\nPassenger cancel trip": "رح لموقع الراكب قبل يكنسل", + "go to your passenger location before\nPassenger cancel trip": "go to your passenger location before\nPassenger cancel trip", + "has completed": "كمل", + "hour": "ساعة", + "i agree": "موافق", + "if you don't have account": "ما عندك حساب", + "if you dont have account": "إذا ما عندك حساب", + "if you want help you can email us here": "تبي مساعدة؟ راسلنا", + "image verified": "الصورة تمام", + "in your": "في", + "insert amount": "دخل المبلغ", + "insert sos phone": "أدخل رقم الطوارئ", + "is calling you": "عم يتصل فيك", + "is driving a": "قاعد يسوق", + "is driving a ": "يسوق ", + "is reviewing your order. They may need more information or a higher price.": "بيراجع طلبك. ممكن يحتاجوا معلومات أكتر أو سعر أعلى.", + "joined": "انضم", + "label': 'Dark Mode": "label': 'الوضع الداكن", + "label': 'Light Mode": "label': 'الوضع الفاتح", + "label': 'System Default": "label': 'افتراضي النظام", + "last name label": "اسم العائلة", + "last name required": "اسم العائلة مطلوب", + "login or register subtitle": "دخل رقم جوالك للدخول أو التسجيل", + "m": "د", + "message From Driver": "رسالة من الكابتن", + "message From passenger": "رسالة من الراكب", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'حصل خطأ غير معروف في السيرفر", + "message'] ?? 'Claim failed": "message'] ?? 'فشل الاستلام", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'فشل في إنشاء الفاتورة", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'كود خصم غير صالح", + "min": "دقيقة", + "min added to fare": "دقائق مضافة إلى الأجرة", + "model :": "الموديل:", + "my location": "موقعي", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'موقع غير معروف", + "not similar": "غير مطابق", + "of": "من", + "one last step title": "خطوة أخيرة", + "otp sent subtitle": "أرسلنا كود من 5 أرقام على\\n@phoneNumber", + "otp sent success": "تم إرسال الرمز للواتساب.", + "otp verification failed": "رمز التحقق غلط.", + "passenger agreement": "اتفاقية الراكب", + "pending": "قيد الانتظار", + "phone not verified": "الهاتف غير مؤكد", + "phone number label": "رقم الجوال", + "phone number required": "مطلوب رقم الجوال", + "please go to picker location exactly": "رح لموقع الركوب بالضبط", + "please order now": "اطلب الحين", + "please wait till driver accept your order": "انتظر الكابتن يقبل", + "price is": "السعر:", + "privacy policy": "سياسة الخصوصية.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'الملف الشخصي", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "فشل التسجيل.", + "reject your order.": "رفض طلبك.", + "rejected": "مرفوض", + "remaining": "المتبقي", + "reviews": "تقييم", + "rides": "الرحلات", + "safe_and_comfortable": "استمتع بمشوار آمن.", + "seconds": "ثانية", + "security_warning": "تحذير أمني", + "send otp button": "أرسل كود التحقق", + "server error try again": "خطأ في السيرفر، حاول مرة ثانية.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'مشاركة التطبيق", + "similar": "مطابق", + "startName'] ?? 'Start Point": "startName'] ?? 'نقطة الانطلاق", + "terms of use": "شروط الاستخدام", + "the 300 points equal 300 L.E": "300 نقطة بـ 300 ر.س", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 نقطة تساوي 300 ر.س لك\\nرح اكسب فلوسك", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "the 300 points equal 300 L.E for you \nSo go and gain your money", + "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 ر.س", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "الـ 500 نقطة بـ 30 ر.س لك\\nروح اكسب فلوسك", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "the 500 points equal 30 JOD for you \nSo go and gain your money", + "this will delete all files from your device": "بيمسح كل الملفات من جهازك", + "to arrive you.": "يوصل ليك.", + "token change": "تغيير الرمز", + "token updated": "تحدث الرمز", + "trips": "مشاوير", + "type here": "اكتب هنا", + "unknown": "غير معروف", + "upgrade price": "رفع السعر", + "verify and continue button": "تحقق وكمال", + "verify your number title": "تحقق من رقمك", + "wait 1 minute to receive message": "انتظر دقيقة توصلك الرسالة", + "wait 1 minute to recive message": "انتظر دقيقة واحدة لتلقي الرسالة", + "wallet due to a previous trip.": "محفظة بسبب رحلة سابقة.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'المحفظة", + "welcome to intaleq": "welcome to intaleq", + "welcome to siro": "حياك في سيرو", + "welcome user": "يا هلا، @firstName!", + "welcome_message": "أهلاً بك في سيرو!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'مرحباً", + "with license plate": "مع لوحة الترخيص", + "with type": "مع النوع", + "witout zero": "بدون صفر", + "write Color for your car": "اكتب اللون", + "write Expiration Date for your car": "اكتب تاريخ الانتهاء", + "write Make for your car": "اكتب الشركة", + "write Model for your car": "اكتب الموديل", + "write Year for your car": "اكتب السنة", + "write vin for your car": "اكتب رقم الهيكل", + "year :": "السنة:", + "you canceled order": "لقد ألغيت الطلب", + "you gain": "كسبت", + "you have a negative balance of": "لديك رصيد سلبي بقيمة", + "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 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 Siro Wallet": "بتدفع حق وقت الكابتن، شوف محفظتك في سيرو", + "your ride is Accepted": "مشوارك انقبل", + "your ride is applied": "انطلب مشوارك", "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", "ُExpire Date": "تاريخ الانتهاء", "⚠️ You need to choose an amount!": "⚠️ لازم تختار مبلغ!", diff --git a/siro_rider/lib/controller/local/ar_jo.dart b/siro_rider/lib/controller/local/ar_jo.dart index 211259d..f5d9043 100644 --- a/siro_rider/lib/controller/local/ar_jo.dart +++ b/siro_rider/lib/controller/local/ar_jo.dart @@ -1,151 +1,74 @@ final Map ar_jo = { - " \$index": " \$index", - " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", - " and acknowledge our Privacy Policy.": " وتقر بسياسة الخصوصية.", - " and acknowledge the ": " y reconozco los ", - " as the driver.": " ككابتن.", " I am currently located at ": " أنا حالياً في ", " I am using": " أنا استخدم", " If you need to reach me, please contact the driver directly at": " إذا بغيتني، كلم الكابتن على", - " in your": " in your", - " in your wallet": " بمحفظتك", - " is ON for this month": " متصل هالشهر", - " joined": " joined", " KM": " كم", " Minutes": " دقائق", " Next as Cash !": " التالي كاش!", - " tips\\nTotal is": " إكرامية\\nالمجموع", - " to arrive you.": " عشان يوصلك.", - " to ride with": " عشان اركب مع", - " wallet due to a previous trip.": " wallet due to a previous trip.", - " with license plate ": " لوحتها ", " You Earn today is ": " دخلك اليوم: ", " You Have in": " عندك في", - "\"": "\"", - "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", - "\$countPoint \${'LE": "\$countPoint \${'LE", - "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", - "\$firstName \$lastName": "\$firstName \$lastName", - "\$passengerName \${'has completed": "\$passengerName \${'has completed", - "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", - "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", - "\${\"Car Color:": "\${\"Car Color:", - "\${\"Where you want go ": "\${\"Where you want go ", - "\${\"Working Hours:": "\${\"Working Hours:", - "\${'\${'Hi! This is": "\${'\${'Hi! This is", - "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", - "\${'Age": "\${'Age", - "\${'Balance:": "\${'Balance:", - "\${'Car": "\${'Car", - "\${'Car Plate is ": "\${'Car Plate is ", - "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", - "\${'Code": "\${'Code", - "\${'Color": "\${'Color", - "\${'Color is ": "\${'Color is ", - "\${'Cost Duration": "\${'Cost Duration", - "\${'Date of Birth is": "\${'Date of Birth is", - "\${'DISCOUNT": "\${'DISCOUNT", - "\${'Distance is": "\${'Distance is", - "\${'Duration is": "\${'Duration is", - "\${'Email is": "\${'Email is", - "\${'Expiration Date ": "\${'Expiration Date ", - "\${'Fee is": "\${'Fee is", - "\${'How was your trip with": "\${'How was your trip with", - "\${'Keep it up!": "\${'Keep it up!", - "\${'Make is ": "\${'Make is ", - "\${'Model is": "\${'Model is", - "\${'Negative Balance:": "\${'Negative Balance:", - "\${'Pay": "\${'Pay", - "\${'Phone Number is": "\${'Phone Number is", - "\${'Plate": "\${'Plate", - "\${'Please enter": "\${'Please enter", - "\${'Rides": "\${'Rides", - "\${'Selected Date and Time": "\${'Selected Date and Time", - "\${'Selected driver": "\${'Selected driver", - "\${'Sex is ": "\${'Sex is ", - "\${'Showing": "\${'Showing", - "\${'Stop": "\${'Stop", - "\${'Tip is": "\${'Tip is", - "\${'Tip is ": "\${'Tip is ", - "\${'Total price to ": "\${'Total price to ", - "\${'Update": "\${'Update", - "\${'Valid Until:": "\${'Valid Until:", - "\${'VIN is": "\${'VIN is", - "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", - "\${'Where to": "\${'Where to", - "\${'Year is": "\${'Year is", - "\${'You are Delete": "\${'You are Delete", - "\${'You can resend in": "\${'You can resend in", - "\${'You have a balance of": "\${'You have a balance of", - "\${'You have a negative balance of": "\${'You have a negative balance of", - "\${'you have a negative balance of": "\${'you have a negative balance of", - "\${'You have call from driver": "\${'You have call from driver", - "\${'You have call from Passenger": "\${'You have call from Passenger", - "\${'You will be thier in": "\${'You will be thier in", - "\${'you will pay to Driver": "\${'you will pay to Driver", - "\${'Your fee is ": "\${'Your fee is ", - "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", - "\${'Your trip distance is": "\${'Your trip distance is", - "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", - "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", - "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", - "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", - "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", - "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", - "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", - "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", - "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " وتقر بسياسة الخصوصية.", + " and acknowledge the ": " وتقر بـ ", + " as the driver.": " ككابتن.", + " in your": " في محفظتك", + " in your wallet": " بمحفظتك", + " is ON for this month": " متصل هالشهر", + " joined": " انضم", + " tips\\nTotal is": " إكرامية\\nالمجموع", + " tips\nTotal is": " tips\nTotal is", + " to arrive you.": " عشان يوصلك.", + " to ride with": " عشان اركب مع", + " wallet due to a previous trip.": " المحفظة بسبب رحلة سابقة.", + " with license plate ": " لوحتها ", "--": "--", - ". I am at least 18 years old.": ". Tengo al menos 18 años.", - "0.05 \${'JOD": "0.05 \${'JOD", - "0.47 \${'JOD": "0.47 \${'JOD", - "1 \${'JOD": "1 \${'JOD", - "1 \${'LE": "1 \${'LE", - "1 Passenger": "1 Passenger", + ". I am at least 18 years old.": ". أنا عمري 18 سنة أو أكثر.", + "0.05 \${'JOD": "0.05 \${'دينار أردني", + "0.47 \${'JOD": "0.47 \${'دينار أردني", + "1 Passenger": "راكب واحد", + "1 \${'JOD": "1 \${'دينار أردني", + "1 \${'LE": "1 \${'جنيه مصري", "1. Describe Your Issue": "١. وش المشكلة؟", "10 and get 4% discount": "10 وخذ خصم 4%", "100 and get 11% discount": "100 وخذ خصم 11%", - "10000 \${'LE": "10000 \${'LE", - "100000 \${'LE": "100000 \${'LE", - "15 \${'LE": "15 \${'LE", - "15000 \${'LE": "15000 \${'LE", - "2 Passengers": "2 Passengers", + "10000 \${'LE": "10000 \${'جنيه", + "100000 \${'LE": "100000 \${'جنيه", + "15 \${'LE": "15 \${'جنيه مصري", + "15000 \${'LE": "15000 \${'جنيه مصري", + "2 Passengers": "راكبان", "2. Attach Recorded Audio": "٢. أرفق تسجيل صوتي", - "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", - "20 \${'LE": "20 \${'LE", + "2. Attach Recorded Audio (Optional)": "2. أرفق التسجيل الصوتي (اختياري)", + "20 \${'LE": "20 \${'جنيه مصري", "20 and get 6% discount": "20 وخذ خصم 6%", - "200 \${'JOD": "200 \${'JOD", - "20000 \${'LE": "20000 \${'LE", + "200 \${'JOD": "200 \${'دينار أردني", + "20000 \${'LE": "20000 \${'جنيه", + "3 Passengers": "٣ ركاب", "3 digit": "3 أرقام", - "3 Passengers": "3 Passengers", "3. Review Details & Response": "٣. مراجعة التفاصيل والرد", "3000 LE": "3000 ر.س", - "4 Passengers": "4 Passengers", + "4 Passengers": "٤ ركاب", "40 and get 8% discount": "40 وخذ خصم 8%", - "40000 \${'LE": "40000 \${'LE", + "40000 \${'LE": "40000 \${'جنيه", "5 digit": "5 أرقام", - "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nونهتم بالأسعار تكون مناسبة.", - "A new version of the app is available. Please update to the latest version.": "Hay una nueva versión de la aplicación disponible. Por favor, actualiza a la última versión.", + "A new version of the app is available. Please update to the latest version.": "يتوفر إصدار جديد من التطبيق. يرجى التحديث إلى أحدث إصدار.", "A trip with a prior reservation, allowing you to choose the best captains and cars.": "مشوار بحجز مسبق، يمديك تختار أفضل الكباتن والسيارات.", - "About Siro": "Informazioni su Siro", + "AI Page": "صفحة الذكاء الاصطناعي", + "About Intaleq": "About Intaleq", + "About Siro": "عن سيرو", "About Us": "من نحن", "Accept": "قبول", "Accept Order": "قبول الطلب", "Accept Ride's Terms & Review Privacy Notice": "الموافقة على الشروط", - "accepted": "aceptado", "Accepted Ride": "المشوار مقبول", - "Accepted your order": "Tu pedido ha sido aceptado", - "accepted your order at price": "aceptó tu pedido al precio de", - "Account": "Account", - "Actions": "Actions", + "Accepted your order": "تم قبول طلبك", + "Account": "الحساب", + "Actions": "إجراءات", "Active Duration:": "المدة الفعلية:", - "Active Users": "Active Users", - "Add a new waypoint stop": "Add a new waypoint stop", - "Add a Stop": "Add a Stop", + "Active Users": "المستخدمون النشطون", "Add Card": "إضافة بطاقة", "Add Credit Card": "إضافة بطاقة ائتمان", - "Add funds using our secure methods": "ضيف رصيد بطرق آمنة", "Add Home": "إضافة البيت", "Add Location": "إضافة موقع", "Add Location 1": "إضافة موقع 1", @@ -155,79 +78,71 @@ final Map ar_jo = { "Add Payment Method": "إضافة طريقة دفع", "Add Phone": "إضافة رقم", "Add Promo": "ضيف خصم", - "Add SOS Phone": "Añadir teléfono SOS", + "Add SOS Phone": "أضف رقم طوارئ", "Add Stops": "إضافة وقفات", - "Add wallet phone you use": "Añade el teléfono de la billetera que usas", - "Add Work": "Añadir trabajo", - "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "Add Work": "إضافة مكان العمل", + "Add a Stop": "أضف محطة", + "Add a new waypoint stop": "إضافة نقطة توقف جديدة", + "Add funds using our secure methods": "ضيف رصيد بطرق آمنة", + "Add wallet phone you use": "أضف رقم محفظتك المستخدم", "Address": "العنوان", "Address: ": "العنوان:", - "addWork' ? 'Add Work": "addWork' ? 'Add Work", "Admin DashBoard": "لوحة التحكم", - "Advanced Tools": "Advanced Tools", + "Advanced Tools": "أدوات متقدمة", "Affordable for Everyone": "أسعار تناسب الكل", "After this period\\nYou can't cancel!": "بعد هالوقت\\nما تقدر تلغي!", - "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", - "Age is": "Age is", + "After this period\\nYou can\\'t cancel!": "بعد هذه الفترة\nلا يمكنك الإلغاء!", + "After this period\nYou can't cancel!": "After this period\nYou can't cancel!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "العمر هو", "Age is ": "العمر: ", - "Age is ": "Age is ", - "agreement subtitle": "للمتابعة، وافق على الشروط والخصوصية.", - "AI Page": "صفحة الذكاء الاصطناعي", - "airport": "aeropuerto", - "Alert": "Alert", + "Age is ": "العمر هو ", + "Alert": "تنبيه", "Alerts": "تنبيهات", - "Align QR Code within the frame": "Align QR Code within the frame", + "Align QR Code within the frame": "قم بمحاذاة رمز QR داخل الإطار", "Allow Location Access": "السماح بالوصول للموقع", "Already have an account? Login": "هل لديك حساب بالفعل؟ تسجيل الدخول", - "An error occurred": "An error occurred", - "an error occurred": "صار خطأ غير متوقع: @error", + "An OTP has been sent to your number.": "تم إرسال رمز التحقق إلى رقمك.", + "An error occurred": "حدث خطأ", "An error occurred during the payment process.": "خطأ في الدفع.", "An error occurred while picking contacts:": "صار خطأ وحنا نختار الأسماء:", "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", - "An OTP has been sent to your number.": "An OTP has been sent to your number.", "An unexpected error occurred. Please try again.": "صار خطأ غير متوقع. حاول مرة ثانية.", - "and acknowledge our": "وتقر بـ", - "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", - "and acknowledge the": "y reconozco el", - "and I have a trip on": "وعندي مشوار على", - "App Tester Login": "App Tester Login", + "App Tester Login": "تسجيل دخول مختبر التطبيق", "App with Passenger": "التطبيق مع الراكب", - "app_description": "سيرو تطبيق آمن وموثوق.", - "Appearance": "Appearance", + "Appearance": "المظهر", "Applied": "تم التقديم", - "Apply": "Aplicar", + "Apply": "تطبيق", "Apply Order": "قبول الطلب", - "Apply Promo Code": "Aplicar código de promoción", + "Apply Promo Code": "تطبيق الرمز الترويجي", "Approaching your area. Should be there in 3 minutes.": "قربت منك. 3 دقايق وأكون عندك.", + "Are You sure to ride to": "متأكد تبي تروح لـ", + "Are you Sure to LogOut?": "بتسجل خروج؟", "Are you sure to cancel?": "متأكد تبي تلغي؟", "Are you sure to delete recorded files": "متأكد تبي تحذف الملفات؟", "Are you sure to delete this location?": "متأكد تبي تحذف هالموقع؟", "Are you sure to delete your account?": "متأكد تبي تحذف حسابك؟", - "Are you Sure to LogOut?": "بتسجل خروج؟", - "Are You sure to ride to": "متأكد تبي تروح لـ", - "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", - "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure you want to delete this file?": "هل أنت متأكد من رغبتك في حذف هذا الملف؟", + "Are you sure you want to logout?": "هل أنت متأكد من تسجيل الخروج؟", "Are you sure? This action cannot be undone.": "متأكد؟ ما تقدر تتراجع بعدين.", - "Are you want to change": "¿Quieres cambiar?", + "Are you want to change": "هل تريد تغيير", "Are you want to go this site": "تبي تروح هالمكان؟", "Are you want to go to this site": "تبي تروح هنا؟", "Are you want to wait drivers to accept your order": "تبي تنتظر الكباتن؟", "Arrival time": "وقت الوصول", - "arrival time to reach your point": "وقت الوصول لنقطتك", - "Arrived": "Arrived", - "as the driver.": "as the driver.", + "Arrived": "وصل", "Associate Degree": "دبلوم", "Attach this audio file?": "ترفق هالملف الصوتي؟", - "Attention": "Atención", - "Audio file not attached": "Archivo de audio no adjunto", - "Audio Recording": "Audio Recording", + "Attention": "تنبيه", + "Audio Recording": "تسجيل صوتي", + "Audio file not attached": "لم يتم إرفاق ملف صوتي", "Audio uploaded successfully.": "تم رفع الصوت.", "Available for rides": "متاح للمشاوير", "Average of Hours of": "معدل الساعات", - "Awaiting response...": "Esperando respuesta...", + "Awaiting response...": "بانتظار الرد...", "Awfar Car": "سيارة توفير", "Bachelor's Degree": "بكالوريوس", - "Back": "Atrás", + "Back": "رجوع", "Bahrain": "البحرين", "Balance": "الرصيد", "Balance limit exceeded": "تجاوزت حد الرصيد", @@ -235,36 +150,38 @@ final Map ar_jo = { "Balance:": "الرصيد:", "Be Slowly": "على مهلك", "Be sure for take accurate images please\\nYou have": "تأكد إن الصورة واضحة\\nعندك", + "Be sure for take accurate images please\nYou have": "Be sure for take accurate images please\nYou have", "Be sure to use it quickly! This code expires at": "استعجل عليه! الكود ينتهي في", "Because we are near, you have the flexibility to choose the ride that works best for you.": "لك الحرية في الاختيار.", - "before": "قبل", "Before we start, please review our terms.": "قبل نبدأ، راجع شروطنا لاهنت.", - "begin": "begin", - "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Mejor opción para un coche cómodo con una ruta flexible y puntos de parada. Este aeropuerto ofrece entrada con visa a este precio.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "الخيار الأفضل لسيارة مريحة مع طريق مرن ومحطات توقف. يقدم هذا المطار تأشيرة دخول بهذا السعر.", "Best choice for cities": "أفضل خيار للمدن", "Best choice for comfort car and flexible route and stops point": "أفضل خيار لسيارة مريحة ومسار مرن", "Birth Date": "تاريخ الميلاد", - "Bonus gift": "Regalo de bonificación", + "Bonus gift": "هدية مكافأة", "BookingFee": "رسوم الحجز", "Bottom Bar Example": "مثال الشريط السفلي", "But you have a negative salary of": "بس عليك سالب بقيمة", - "by": "por", "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "باختيار 'أوافق'، أقر بأني قريت الشروط وعمري 18 وفوق.", - "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "Al seleccionar \\\"Acepto\\\" a continuación, confirmo que he leído y acepto los", - "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "Al seleccionar \\\"Acepto\\\" a continuación, confirmo que he leído y acepto los ", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "باختيار \"أوافق\" أدناه، أؤكد أنني قرأت وأوافق على ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "باختيار \"أوافق\" أدناه، أؤكد أنني قرأت وأوافق على ", "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "باختيار \\\"أوافق\\\"، أكون وافقت على الشروط و ", - "Call": "Call", + "CODE": "الرمز", + "Call": "اتصل", "Call Connected": "تم فتح الاتصال", "Call End": "انتهاء المكالمة", - "Call Ended": "Call Ended", + "Call Ended": "انتهت المكالمة", "Call Income": "مكالمة واردة", "Call Income from Driver": "اتصال من الكابتن", "Call Income from Passenger": "مكالمة من الراكب", - "Call left": "Call left", "Call Left": "مكالمات باقية", "Call Options": "خيارات الاتصال", "Call Page": "صفحة الاتصال", - "Call Support": "Call Support", + "Call Support": "اتصل بالدعم", + "Call left": "اتصال متبقي", "Calling": "عم نتصل بـ", "Camera Access Denied.": "ما في وصول للكاميرا.", "Camera not initialized yet": "الكاميرا لسه", @@ -277,285 +194,264 @@ final Map ar_jo = { "Cancel Trip": "إلغاء المشوار", "Cancel Trip from driver": "إلغاء من الكابتن", "Canceled": "ملغي", - "cancelled": "cancelled", "Cannot apply further discounts.": "ما تقدر تخصم أكثر.", "Captain": "الكابتن", - "Capture an Image of Your car license back": "صور استمارة السيارة (قفا)", - "Capture an Image of Your car license front": "صور استمارة السيارة (وجه)", "Capture an Image of Your Criminal Record": "صور صحيفة خلو السوابق", "Capture an Image of Your Driver License": "صور رخصتك", "Capture an Image of Your Driver's License": "صور رخصتك", "Capture an Image of Your ID Document Back": "صور ظهر الهوية", "Capture an Image of Your ID Document front": "صور الهوية (وجه)", + "Capture an Image of Your car license back": "صور استمارة السيارة (قفا)", + "Capture an Image of Your car license front": "صور استمارة السيارة (وجه)", "Car": "سيارة", - "Car Color:": "Color del coche:", + "Car Color:": "لون السيارة:", "Car Details": "تفاصيل السيارة", "Car License Card": "استمارة السيارة", - "Car Make:": "Marca del coche:", - "Car Model:": "Modelo del coche:", + "Car Make:": "ماركة السيارة:", + "Car Model:": "موديل السيارة:", "Car Plate is ": "اللوحة: ", - "Car Plate:": "Matrícula del coche:", + "Car Plate:": "لوحة السيارة:", "Card Number": "رقم البطاقة", "CardID": "رقم البطاقة", - "carType'] ?? 'Car": "carType'] ?? 'Car", "Cash": "كاش", "Change Country": "تغيير الدولة", - "change device": "cambiar dispositivo", "Change Home location ?": "تغيير موقع المنزل؟", - "Change Photo": "Change Photo", - "Change Ride": "Cambiar viaje", - "Change Route": "Cambiar ruta", + "Change Photo": "تغيير الصورة", + "Change Ride": "تغيير الرحلة", + "Change Route": "تغيير الطريق", "Change Work location ?": "تغيير موقع العمل؟", - "Changed my mind": "我改变了主意", + "Changed my mind": "غيرت رأيي", "Chassis": "رقم الشاصي", - "Chat with us anytime": "Chatta con noi in qualsiasi momento", + "Chat with us anytime": "تحدث معنا في أي وقت", "Check back later for new offers!": "شيك بعدين يمكن فيه عروض!", + "Choose Language": "اختر اللغة", "Choose a contact option": "اختر طريقة تواصل", "Choose between those Type Cars": "اختر نوع السيارة", - "Choose from contact": "Choose from contact", - "Choose from Gallery": "Choose from Gallery", + "Choose from Gallery": "اختر من المعرض", "Choose from Map": "اختر من الخريطة", + "Choose from contact": "اختر من جهات الاتصال", "Choose how you want to call the driver": "اختر طريقة الاتصال بالكابتن", - "Choose Language": "اختر اللغة", "Choose the trip option that perfectly suits your needs and preferences.": "اختر اللي يناسبك.", "Choose who this order is for": "الطلب لمين؟", - "Choose your ride": "Elige tu viaje", + "Choose your ride": "اختر رحلتك", "City": "المدينة", "Claim your 20 LE gift for inviting": "اطلب هديتك (20 ريال) للدعوة", - "Click here point": "Haz clic aquí", - "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click here point": "انقر هنا", "Click here to Show it in Map": "اضغط للعرض على الخريطة", - "Click to track the trip": "Click to track the trip", + "Click here to begin your trip\\n\\nGood luck, ": "انقر هنا لبدء رحلتك\n\nبالتوفيق، ", + "Click to track the trip": "انقر لتتبع الرحلة", "Close": "إغلاق", - "Close panel": "Close panel", + "Close panel": "إغلاق اللوحة", "Closest & Cheapest": "الأقرب والأرخص", "Closest to You": "الأقرب لك", - "CODE": "验证码", - "Code": "代码", + "Code": "الرمز", "Code not approved": "الكود مرفوض", "Color": "اللون", "Color is ": "اللون: ", "Comfort": "مريح", "Comfort choice": "خيار الراحة", - "Coming": "Coming", - "committed_to_safety": "نهتم بسلامتك.", + "Coming": "قادم", "Communication": "التواصل", "Complaint": "شكوى", "Complaint cannot be filed for this ride. It may not have been completed or started.": "ما تقدر ترفع شكوى على هالمشوار. يمكن ما كمل أو ما بدأ.", - "Complaint data saved successfully": "Datos de la queja guardados con éxito", - "Complete Payment": "Complete Payment", - "complete profile subtitle": "كمل بياناتك عشان تبدأ", - "complete registration button": "إتمام التسجيل", - "Complete your profile": "Complete your profile", - "complete, you can claim your gift": "اكتمل، اطلب هديتك", + "Complaint data saved successfully": "تم حفظ بيانات الشكوى بنجاح", + "Complete Payment": "إكمال الدفع", + "Complete your profile": "أكمل ملفك الشخصي", "Confirm": "تأكيد", "Confirm & Find a Ride": "أكد ودور كابتن", "Confirm Attachment": "تأكيد الإرفاق", - "Confirm Cancellation": "Confirm Cancellation", - "Confirm Pick-up Location": "Confirmar ubicación de recogida", - "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Cancellation": "تأكيد الإلغاء", + "Confirm Pick-up Location": "تأكيد موقع الالتقاط", + "Confirm Pickup Location": "تأكيد موقع الركوب", "Confirm Selection": "تأكيد الاختيار", - "Confirm Trip": "Confirmar viaje", + "Confirm Trip": "تأكيد الرحلة", "Confirm your Email": "أكد إيميلك", "Connected": "متصل", "Connecting...": "عم يتم الاتصال...", - "Connection Error": "连接错误", - "Connection failed. Please try again.": "Connection failed. Please try again.", + "Connection Error": "خطأ في الاتصال", + "Connection failed. Please try again.": "فشل الاتصال. يرجى المحاولة مرة أخرى.", "Contact Options": "خيارات التواصل", - "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", - "Contact permission is required to pick contacts": "نحتاج صلاحية الأسماء.", "Contact Support": "تواصل مع الدعم", "Contact Us": "اتصل بنا", + "Contact permission is permanently denied. Please enable it in settings to continue.": "صلاحية الوصول لجهات الاتصال مرفوضة نهائياً. يرجى تفعيلها من الإعدادات للمتابعة.", + "Contact permission is required to pick contacts": "نحتاج صلاحية الأسماء.", "Contact us for any questions on your order.": "تواصل معنا لو عندك سؤال.", "Contacts Loaded": "تم تحميل الأسماء", - "contacts. Others were hidden because they don't have a phone number.": "جهة اتصال. الباقي مخفي عشان ما عندهم أرقام.", - "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", "Continue": "متابعة", - "copied to clipboard": "copiado al portapapeles", "Copy": "نسخ", "Copy Code": "نسخ الكود", "Copy this Promo to use it in your Ride!": "انسخ الكود واستخدمه!", "Cost Duration": "تكلفة الوقت", "Cost Of Trip IS ": "تكلفة المشوار: ", - "Could not add invite": "Could not add invite", - "Could not create ride. Please try again.": "Could not create ride. Please try again.", - "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Could not add invite": "لم نتمكن من إضافة الدعوة", + "Could not create ride. Please try again.": "لم نتمكن من إنشاء الرحلة. يرجى المحاولة مرة أخرى.", + "Country Picker Page Placeholder": "البحث عن البلد", "Counts of Hours on days": "عدد الساعات بالأيام", "Create Wallet to receive your money": "أنشئ محفظة لاستلام فلوسك", - "created time": "وقت الإنشاء", "Criminal Document Required": "صحيفة خلو السوابق مطلوبة", "Criminal Record": "خلو السوابق", - "Crop Photo": "Crop Photo", + "Crop Photo": "قص الصورة", "Cropper": "قص الصورة", "Current Balance": "الرصيد الحالي", "Current Location": "الموقع الحالي", - "Customer MSISDN doesn’t have customer wallet": "El MSISDN del cliente no tiene billetera", + "Customer MSISDN doesn’t have customer wallet": "رقم هاتف العميل لا يحتوي على محفظة عميل", "Customer not found": "العميل غير موجود", "Customer phone is not active": "جوال العميل مو شغال", - "Dark Mode": "Dark Mode", + "DISCOUNT": "خصم", + "Dark Mode": "الوضع الداكن", "Date": "التاريخ", - "Date and Time Picker": "Selector de fecha y hora", + "Date and Time Picker": "منتقي التاريخ والوقت", "Date of Birth is": "تاريخ الميلاد:", "Date of Birth: ": "تاريخ الميلاد:", "Days": "أيام", - "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Estimado ,\\n\\n 🚀 ¡Acabo de comenzar un viaje emocionante y me gustaría compartir los detalles de mi trayecto y mi ubicación actual contigo en tiempo real! Por favor, descarga la aplicación Siro. Te permitirá ver los detalles de mi viaje y mi última ubicación.\\n\\n 👉 Enlace de descarga: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n ¡Espero mantenerte cerca durante mi aventura!\\n\\n Siro ,", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "مرحباً،\n\n 🚀 لقد بدأت للتو رحلة مشوقة وأود مشاركة تفاصيل رحلتي وموقعي الحالي معك في الوقت الفعلي! يرجى تحميل تطبيق سيرو. سيتيح لك عرض تفاصيل رحلتي وموقعي الأخير.\n\n 👉 رابط التحميل: \n أندرويد [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n آي أو إس [https://getapp.cc/app/6458734951]\n\n أتطلع إلى البقاء على تواصل معك خلال رحلتي!\n\n سيرو،", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", "Decline": "رفض", - "Delete": "Delete", - "Delete Account": "Delete Account", - "Delete All": "Delete All", - "Delete All Recordings?": "Delete All Recordings?", + "Delete": "حذف", + "Delete Account": "حذف الحساب", + "Delete All": "حذف الكل", + "Delete All Recordings?": "حذف جميع التسجيلات؟", "Delete My Account": "حذف حسابي", "Delete Permanently": "حذف نهائي", - "Delete Recording?": "Delete Recording?", - "deleted": "eliminado", + "Delete Recording?": "حذف التسجيل؟", "Deleted": "انحذف", "Destination": "الوصول", - "Destination selected": "Destino seleccionado", - "Destination Set": "Destination Set", + "Destination Set": "تم تحديد الوجهة", + "Destination selected": "تم اختيار الوجهة", "Detect Your Face ": "تحقق من وجهك", - "Device Change Detected": "Cambio de dispositivo detectado", - "Direct talk with our team": "Parla direttamente con il nostro team", - "DISCOUNT": "خصم", + "Device Change Detected": "تم اكتشاف تغيير الجهاز", + "Direct talk with our team": "تحدث مباشرة مع فريقنا", "Displacement": "سعة المحرك", - "Distance": "Distance", + "Distance": "المسافة", + "Distance To Passenger is ": "المسافة للراكب: ", "Distance from Passenger to destination is ": "المسافة للوجهة: ", - "distance is": "المسافة هي", "Distance is ": "المسافة: ", "Distance of the Ride is ": "مسافة المشوار: ", - "Distance To Passenger is ": "المسافة للراكب: ", "Do you have an invitation code from another driver?": "عندك كود دعوة من كابتن ثاني؟", "Do you want to change Home location": "تغير موقع البيت؟", "Do you want to change Work location": "تغير موقع الدوام؟", "Do you want to pay Tips for this Driver": "تبي تعطي الكابتن إكرامية؟", - "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Do you want to send an emergency message to your SOS contact?": "هل تريد إرسال رسالة طوارئ إلى جهة اتصال الطوارئ الخاصة بك؟", "Doctoral Degree": "دكتوراه", "Document Number: ": "رقم الوثيقة:", "Documents check": "فحص المستندات", - "Don't Cancel": "不要取消", + "Don't Cancel": "لا تلغِ", "Don't forget your personal belongings.": "لا تنسى أغراضك.", - "Don't forget your ride!": "¡No olvides tu viaje!", + "Don't forget your ride!": "لا تنسَ رحلتك!", "Don't have an account? Register": "ليس لديك حساب؟ تسجيل", "Done": "تم", "Don’t forget your personal belongings.": "انتبه لأغراضك الشخصية.", - "Double tap to open search or enter destination": "Double tap to open search or enter destination", - "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", - "Download the app now:": "حمل التطبيق:", - "Download the Siro app now and enjoy your ride!": "حمل تطبيق سيرو واستمتع بمشوارك!", + "Double tap to open search or enter destination": "انقر مرتين لفتح البحث أو إدخال الوجهة", + "Double tap to set or change this waypoint on the map": "انقر مرتين لتحديد أو تغيير نقطة التوقف هذه على الخريطة", + "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 Siro Driver app now and earn rewards!": "حمل تطبيق كابتن سيرو واكسب مكافآت!", - "Drawing route on map...": "Drawing route on map...", + "Download the Siro app now and enjoy your ride!": "حمل تطبيق سيرو واستمتع بمشوارك!", + "Download the app now:": "حمل التطبيق:", + "Drawing route on map...": "جارٍ رسم الطريق على الخريطة...", "Driver": "كابتن", "Driver Accepted the Ride for You": "الكابتن قبل المشوار عشانك", - "Driver already has 2 trips within the specified period.": "الكابتن عنده مشوارين بهالوقت.", "Driver Applied the Ride for You": "الكابتن قدم الطلب لك", - "Driver asked me to cancel": "司机要求我取消订单", "Driver Cancelled Your Trip": "الكابتن كنسل الرحلة", "Driver Car Plate": "لوحة الكابتن", "Driver Finish Trip": "الكابتن خلص المشوار", "Driver Is Going To Passenger": "الكابتن متوجه للراكب", - "Driver is Going To You": "Driver is Going To You", - "Driver is on the way": "الكابتن بالطريق", - "Driver is taking too long": "司机来得太慢了", - "Driver is waiting at pickup.": "الكابتن ينتظرك عند نقطة الركوب.", - "Driver joined the channel": "الكابتن دخل الشات", - "Driver left the channel": "الكابتن طلع من الشات", - "Driver List": "Lista de conductores", + "Driver List": "قائمة السائقين", "Driver Name": "اسم الكابتن", - "Driver Name:": "Nombre del conductor:", - "Driver Phone": "Driver Phone", - "Driver phone": "جوال الكابتن", - "Driver Phone:": "Teléfono del conductor:", - "Driver Referral": "Driver Referral", + "Driver Name:": "اسم السائق:", + "Driver Phone": "هاتف السائق", + "Driver Phone:": "هاتف السائق:", + "Driver Referral": "إحالة السائق", "Driver Registration": "تسجيل الكابتن", "Driver Registration & Requirements": "تسجيل الكباتن", "Driver Wallet": "محفظة الكابتن", + "Driver already has 2 trips within the specified period.": "الكابتن عنده مشوارين بهالوقت.", + "Driver asked me to cancel": "طلب مني السائق الإلغاء", + "Driver is Going To You": "السائق في طريقه إليك", + "Driver is on the way": "الكابتن بالطريق", + "Driver is taking too long": "السائق يتأخر كثيراً", + "Driver is waiting at pickup.": "الكابتن ينتظرك عند نقطة الركوب.", + "Driver joined the channel": "الكابتن دخل الشات", + "Driver left the channel": "الكابتن طلع من الشات", + "Driver phone": "جوال الكابتن", "Driver's License": "رخصة القيادة", - "driver_license": "رخصة_قيادة", - "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", "Drivers License Class": "فئة الرخصة", "Drivers License Class: ": "فئة الرخصة:", - "due to a previous trip.": "due to a previous trip.", - "duration is": "المدة:", - "Duration is": "المدة:", - "Duration of the Ride is ": "مدة المشوار: ", - "Duration of Trip is ": "مدة المشوار: ", "Duration To Passenger is ": "الوقت للراكب: ", - "e.g. 0912345678": "e.g. 0912345678", + "Duration is": "المدة:", + "Duration of Trip is ": "مدة المشوار: ", + "Duration of the Ride is ": "مدة المشوار: ", + "EGP": "جنيه مصري", "Edit Profile": "تعديل الملف", "Edit Your data": "تعديل بياناتك", "Education": "التعليم", - "EGP": "EGP", "Egypt": "مصر", - "Egypt' ? 'LE": "Egypt' ? 'LE", - "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egypt' ? 'LE": "Egypt' ? 'جنيه", + "Egypt': return 'EGP": "Egypt': return 'جنيه مصري", "Electric": "كهربائية", - "Email": "Correo electrónico", - "Email is": "الإيميل:", - "email optional label": "الإيميل (اختياري)", - "Email Support": "Supporto via email", + "Email": "البريد الإلكتروني", + "Email Support": "الدعم عبر البريد الإلكتروني", "Email Us": "راسلنا", "Email Wrong": "الإيميل غلط", + "Email is": "الإيميل:", "Email you inserted is Wrong.": "الإيميل اللي كتبته غلط.", - "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", - "Emergency Mode Triggered": "Emergency Mode Triggered", - "Emergency SOS": "Emergency SOS", + "Emergency Mode Triggered": "تم تفعيل وضع الطوارئ", + "Emergency SOS": "طوارئ SOS", "Employment Type": "نوع الوظيفة", "Enable Location": "تفعيل الموقع", - "Enable Location Access": "Habilitar acceso a la ubicación", + "Enable Location Access": "تفعيل الوصول إلى الموقع", "End": "إنهاء", "End Ride": "إنهاء المشوار", - "endName'] ?? 'Destination": "endName'] ?? 'Destination", "Enjoy a safe and comfortable ride.": "استمتع بمشوار آمن ومريح.", "Enjoy competitive prices across all trip options, making travel accessible.": "أسعار منافسة.", - "Enter a password": "Enter a password", - "Enter a valid email": "Ingresa un correo electrónico válido", + "Enter Your First Name": "دخل اسمك الأول", + "Enter a password": "أدخل كلمة المرور", + "Enter a valid email": "أدخل بريداً إلكترونياً صالحاً", "Enter driver's phone": "رقم الكابتن", - "enter otp validation": "دخل الكود (5 أرقام)", "Enter phone": "دخل الرقم", "Enter promo code": "دخل الكود", "Enter promo code here": "اكتب الكود هنا", "Enter the 3-digit code": "أدخل الكود المكون من ٣ أرقام", - "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the 5-digit code": "أدخل الكود المكون من 5 أرقام", "Enter the promo code and get": "دخل الكود واحصل على", - "Enter your City": "Enter your City", - "Enter your code below to apply the discount.": "Ingrese su código a continuación para aplicar el descuento.", - "Enter your complaint here": "Ingresa tu queja aquí", + "Enter your City": "أدخل مدينتك", + "Enter your Note": "اكتب ملاحظة", + "Enter your Password": "أدخل كلمة المرور", + "Enter your code below to apply the discount.": "أدخل رمزك أدناه لتطبيق الخصم.", + "Enter your complaint here": "أدخل شكواك هنا", "Enter your complaint here...": "اكتب شكواك هنا...", "Enter your email address": "دخل إيميلك", "Enter your feedback here": "اكتب ملاحظتك", "Enter your first name": "دخل اسمك", - "Enter Your First Name": "دخل اسمك الأول", "Enter your last name": "دخل اسم العائلة", - "Enter your Note": "اكتب ملاحظة", - "Enter your Password": "Enter your Password", - "Enter your password": "Ingresa tu contraseña", + "Enter your password": "أدخل كلمة المرور", "Enter your phone number": "دخل رقمك", - "Enter your promo code": "Ingresa tu código de promoción", + "Enter your promo code": "أدخل رمزك الترويجي", "Error": "خطأ", - "Error uploading proof": "Error uploading proof", - "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error uploading proof": "خطأ في رفع الإثبات", + "Error', 'An application error occurred.": "خطأ', 'حدث خطأ في التطبيق.", "Error: \${snapshot.error}": "Error: \${snapshot.error}", "Evening": "مساء", + "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 Siro app": "عروض حصرية دائماً مع سيرو", "Expiration Date": "تاريخ الانتهاء", "Expiration Date ": "تاريخ الانتهاء: ", "Expiry Date": "تاريخ الانتهاء", "Expiry Date: ": "تاريخ الانتهاء:", - "face detect": "التحقق من الوجه", "Face Detection Result": "نتيجة التحقق", - "Failed": "Failed", - "Failed to book trip: ": "Failed to book trip: ", + "Failed": "فشل", + "Failed to book trip: ": "فشل حجز الرحلة: ", "Failed to book trip: \$e": "Failed to book trip: \$e", "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", - "Failed to get location": "Failed to get location", - "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", - "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", - "Failed to search, please try again later": "搜索失败,请稍后重试", - "Failed to send OTP": "Failed to send OTP", - "failed to send otp": "فشل إرسال الرمز.", - "Failed to upload photo": "Failed to upload photo", - "Fast matching": "Fast matching", + "Failed to get location": "فشل في الحصول على الموقع", + "Failed to initiate call session. Please try again.": "فشل في بدء جلسة المكالمة. يرجى المحاولة مرة أخرى.", + "Failed to initiate payment. Please try again.": "فشل في بدء الدفع. يرجى المحاولة مرة أخرى.", + "Failed to search, please try again later": "فشل البحث، يرجى المحاولة مرة أخرى لاحقاً", + "Failed to send OTP": "فشل إرسال رمز التحقق", + "Failed to upload photo": "فشل رفع الصورة", + "Fast matching": "مطابقة سريعة", "Fastest Complaint Response": "استجابة سريعة للشكاوى", - "Favorite Places": "Lugares favoritos", + "Favorite Places": "الأماكن المفضلة", "Fee is": "السعر:", "Feed Back": "رأيك", "Feedback": "ملاحظات", @@ -563,98 +459,88 @@ final Map ar_jo = { "Female": "أنثى", "Find answers to common questions": "إجابات الأسئلة", "Finish Monitor": "إنهاء المتابعة", - "Finished": "Finished", + "Finished": "منتهية", "First Name": "الاسم الأول", "First name": "الاسم الأول", - "first name label": "الاسم الأول", - "first name required": "الاسم الأول مطلوب", - "Fixed Price": "Fixed Price", + "Fixed Price": "سعر ثابت", "Flag-down fee": "فتح الباب", - "for": "لـ", - "For App Reviewers / Testers": "For App Reviewers / Testers", + "For App Reviewers / Testers": "لمراجعي / مختبري التطبيق", "For Drivers": "للكباتن", - "For official inquiries": "Per richieste ufficiali", - "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Para viajes de velocidad y entrega, el precio se calcula dinámicamente. Para viajes de confort, el precio se basa en el tiempo y la distancia.", + "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", + "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 your first registration!": "لتسجيلك الأول!", - "Found another transport": "找到了其他交通工具", + "For official inquiries": "للاستفسارات الرسمية", + "Found another transport": "وجدت وسيلة نقل أخرى", "Free Call": "مكالمة مجانية", "Frequently Asked Questions": "الأسئلة المتكررة", "Frequently Questions": "الأسئلة الشائعة", "From": "من", - "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30", - "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 3:00", - "from 23:59 till 05:30": "من 11:59 م لـ 5:30 ص", - "from 3 times Take Attention": "من 3 مرات، انتبه", "From :": "من:", "From : ": "من: ", "From : Current Location": "من: موقعك الحالي", - "from your favorites": "de tus favoritos", - "from your list": "من قائمتك", - "From:": "Desde:", + "From:": "من:", "Fuel": "الوقود", "Full Name (Marital)": "الاسم الكامل", "FullName": "الاسم الكامل", + "GPS Required Allow !.": "شغل الـ GPS!", "Gender": "الجنس", - "General": "General", - "Get": "Obtener", - "Get a discount on your first Siro ride!": "لك خصم على أول مشوار في سيرو!", + "General": "عام", + "Get": "احصل على", "Get Details of Trip": "تفاصيل المشوار", "Get Direction": "الاتجاهات", + "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!", + "Get a discount on your first Siro ride!": "لك خصم على أول مشوار في سيرو!", "Get it Now!": "خذها الحين!", "Get to your destination quickly and easily.": "وصل وجهتك بسرعة وسهولة.", - "get_a_ride": "مع سيرو، الموتر يجيك بدقايق.", - "get_to_destination": "وصل وجهتك بسرعة.", "Getting Started": "البداية", "Gift Already Claimed": "أخذت الهدية من قبل", "Go To Favorite Places": "للأماكن المفضلة", "Go to next step\\nscan Car License.": "الخطوة الجاية\\nمسح الاستمارة.", + "Go to next step\nscan Car License.": "Go to next step\nscan Car License.", "Go to passenger Location now": "رح لموقع الراكب الحين", - "Go to this location": "رح لهالموقع", "Go to this Target": "روح للهدف", - "go to your passenger location before\\nPassenger cancel trip": "رح لموقع الراكب قبل يكنسل", - "GPS Required Allow !.": "شغل الـ GPS!", - "Grant": "Grant", + "Go to this location": "رح لهالموقع", + "Grant": "منح الصلاحية", "H and": "س و", - "has completed": "كمل", - "Have a Promo Code?": "Have a Promo Code?", + "Have a Promo Code?": "هل لديك كود خصم؟", "Have a promo code?": "عندك كود خصم؟", "Heading your way now. Please be ready.": "جايك بالطريق. خلك جاهز.", "Height: ": "الطول:", "Hello this is Captain": "هلا، معك الكابتن", "Hello this is Driver": "هلا، أنا الكابتن", + "Hello! I'm inviting you to try Intaleq.": "Hello! I'm inviting you to try Intaleq.", "Hello! I'm inviting you to try Siro.": "هلا! أدعوك تجرب تطبيق سيرو.", - "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", - "Hello, I'm at the agreed-upon location": "Hola, estoy en la ubicación acordada", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "مرحباً! أدعوك لتجربة تطبيق سيرو.", + "Hello, I'm at the agreed-upon location": "مرحباً، أنا في الموقع المتفق عليه", "Help Details": "تفاصيل المساعدة", "Helping Center": "مركز المساعدة", "Here recorded trips audio": "تسجيلات المشاوير هنا", "Hi": "هلا", - "Hi ,I Arrive your location": "Hi ,I Arrive your location", - "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I Arrive your location": "مرحباً، لقد وصلت إلى موقعك", + "Hi ,I Arrive your site": "مرحباً، لقد وصلت إلى موقعك", "Hi ,I will go now": "هلا، أنا بطلع الحين", "Hi! This is": "هلا! هذا", - "Hi, Where to": "Hi, Where to", + "Hi, Where to": "مرحباً، إلى أين؟", "Hi, Where to ": "هلا، لوين؟", - "Hi, Where to ": "Hi, Where to ", + "Hi, Where to ": "مرحباً، إلى أين؟ ", "High School Diploma": "ثانوي", "History of Trip": "سجل المشاوير", - "Home": "Home", - "Home Page": "Página de inicio", - "Home Saved": "Casa guardada", - "hour": "ساعة", + "Home": "الرئيسية", + "Home Page": "الصفحة الرئيسية", + "Home Saved": "تم حفظ المنزل", "How can I pay for my ride?": "كيف أدفع؟", "How can I register as a driver?": "كيف أسجل كابتن؟", "How do I communicate with the other party (passenger/driver)?": "كيف أتواصل؟", "How do I request a ride?": "كيف أطلب مشوار؟", "How many hours would you like to wait?": "كم ساعة تبي تنتظر؟", - "How much longer will you be?": "¿Cuánto tiempo más tardarás?", - "I added the wrong pick-up/drop-off location": "الموقع غلط", + "How much longer will you be?": "كم من الوقت ستتأخر؟", "I Agree": "أوافق", - "i agree": "موافق", - "I am currently located at": "I am currently located at", - "I arrive you": "وصلت", "I Arrive your site": "وصلت موقعك", + "I added the wrong pick-up/drop-off location": "الموقع غلط", + "I am currently located at": "أنا موجود حالياً في", + "I arrive you": "وصلت", "I cant register in your app in face detection ": "مو قادر أسجل بسبب بصمة الوجه", "I don't have a reason": "ما عندي سبب", "I don't need a ride anymore": "ما عاد أحتاج مشوار", @@ -663,24 +549,19 @@ final Map ar_jo = { "I was just trying the application": "أجرب التطبيق بس", "I will go now": "بمشي الحين", "I will slow down": "بهدي السرعة", - "I'm Safe": "I'm Safe", + "I'm Safe": "أنا بأمان", "I'm waiting for you": "أنا أنتظرك", - "I've been trying to reach you but your phone is off.": "He estado intentando contactarte pero tu teléfono está apagado.", + "I've been trying to reach you but your phone is off.": "كنت أحاول الوصول إليك ولكن هاتفك مغلق.", "ID Documents Back": "ظهر الهوية", "ID Documents Front": "وجه الهوية", - "if you don't have account": "ما عندك حساب", - "if you dont have account": "إذا ما عندك حساب", "If you in Car Now. Press Start The Ride": "إذا ركبت، اضغط ابدأ المشوار", "If you need assistance, contact us": "تحتاج مساعدة؟ كلمنا", - "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you need to reach me, please contact the driver directly at": "إذا كنت بحاجة للتواصل معي، يرجى الاتصال بالسائق مباشرة على", "If you want add stop click here": "تبي تضيف وقفة اضغط هنا", - "if you want help you can email us here": "تبي مساعدة؟ راسلنا", - "If you want order to another person": "Si quieres pedir para otra persona", + "If you want order to another person": "إذا أردت الطلب لشخص آخر", "If you want to make Google Map App run directly when you apply order": "تبي قوقل ماب يفتح علطول؟", + "Image Upload Failed": "فشل رفع الصورة", "Image detecting result is ": "نتيجة الفحص: ", - "Image Upload Failed": "Image Upload Failed", - "image verified": "الصورة تمام", - "in your": "en tu", "In-App VOIP Calls": "مكالمات صوتية بالتطبيق", "Including Tax": "شامل الضريبة", "Incorrect sms code": "⚠️ رمز التحقق غلط. حاول مرة ثانية.", @@ -689,249 +570,240 @@ final Map ar_jo = { "Increase Your Trip Fee (Optional)": "زيد سعر المشوار (اختياري)", "Increasing the fare might attract more drivers. Would you like to increase the price?": "لو زودت السعر ممكن يجيك كابتن أسرع. تبي تزيد السعر؟", "Insert": "إدخال", - "insert amount": "دخل المبلغ", "Insert Emergincy Number": "دخل رقم الطوارئ", - "insert sos phone": "insert sos phone", - "Insert SOS Phone": "Insertar teléfono SOS", - "Insert Wallet phone number": "Ingresa el número de teléfono de la billetera", + "Insert SOS Phone": "أدخل رقم طوارئ", + "Insert Wallet phone number": "أدخل رقم هاتف المحفظة", "Insert Your Promo Code": "حط كود الخصم", "Inspection Date": "تاريخ الفحص الدوري", "InspectionResult": "نتيجة الفحص", + "Intaleq": "Intaleq", + "Intaleq Balance": "Intaleq Balance", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Intaleq Over", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq Support", + "Intaleq Wallet": "Intaleq Wallet", + "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", "Invalid MPIN": "رمز خطأ", "Invalid OTP": "كود غلط", - "Invalid QR Code": "Invalid QR Code", - "Invalid QR Code format": "Invalid QR Code format", + "Invalid QR Code": "رمز QR غير صالح", + "Invalid QR Code format": "صيغة رمز QR غير صالحة", "Invitation Used": "الدعوة مستخدمة", - "Invitations Sent": "Invitations Sent", - "Invite": "Invite", + "Invitations Sent": "تم إرسال الدعوات", + "Invite": "دعوة", "Invite sent successfully": "أرسلنا الدعوة", - "is calling you": "عم يتصل فيك", - "is driving a": "is driving a", - "is driving a ": "يسوق ", - "is reviewing your order. They may need more information or a higher price.": "está revisando tu pedido. Pueden necesitar más información o un precio más alto.", "Is the Passenger in your Car ?": "الراكب معك؟", "Issue Date": "تاريخ الإصدار", "IssueDate": "تاريخ الإصدار", "JOD": "ر.س", "Join": "انضمام", - "Join a channel": "Join a channel", + "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!", "Join Siro as a driver using my referral code!": "سجل كابتن في سيرو بكود الدعوة حقي!", - "joined": "انضم", + "Join a channel": "الانضمام إلى القناة", "Jordan": "الأردن", - "Keep it up!": "كفو عليك!", "KM": "كم", + "Keep it up!": "كفو عليك!", "Kuwait": "الكويت", - "label': 'Dark Mode": "label': 'Dark Mode", - "label': 'Light Mode": "label': 'Light Mode", - "label': 'System Default": "label': 'System Default", + "LE": "ر.س", "Lady": "نواعم", "Lady Captain for girls": "كابتن سيدة للبنات", "Lady Captains Available": "كباتن سيدات", "Language": "اللغة", "Language Options": "خيارات اللغة", - "Last Name": "Last Name", + "Last Name": "اسم العائلة", "Last name": "اسم العائلة", - "last name label": "اسم العائلة", - "last name required": "اسم العائلة مطلوب", "Latest Recent Trip": "آخر مشوار", - "LE": "ر.س", - "Learn more about our app and mission": "Aprende más sobre nuestra aplicación y misión", + "Learn more about our app and mission": "تعرف على المزيد عن تطبيقنا ورسالتنا", "Leave": "مغادرة", - "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Leave a detailed comment (Optional)": "اترك تعليقاً مفصلاً (اختياري)", "Lets check Car license ": "نشيك الاستمارة", "Lets check License Back Face": "نشيك ظهر الرخصة", "License Categories": "فئات الرخصة", "License Type": "نوع الرخصة", - "Light Mode": "Light Mode", + "Light Mode": "الوضع الفاتح", "Link a phone number for transfers": "اربط رقم للتحويلات", - "Listen": "Listen", - "Location": "Location", + "Listen": "استماع", + "Location": "الموقع", "Location Link": "رابط الموقع", - "Location Received": "Location Received", + "Location Received": "تم استلام الموقع", "Log Off": "تسجيل خروج", "Log Out Page": "صفحة الخروج", - "Login": "Iniciar sesión", + "Login": "تسجيل الدخول", "Login Captin": "دخول الكابتن", "Login Driver": "دخول كابتن", - "login or register subtitle": "دخل رقم جوالك للدخول أو التسجيل", - "Logout": "Logout", + "Logout": "تسجيل الخروج", "Lowest Price Achieved": "أقل سعر", - "m": "د", "Made :": "الصنع:", "Make": "الشركة المصنعة", "Make is ": "الشركة:", "Male": "رجل", - "Map Error": "Map Error", + "Map Error": "خطأ في الخريطة", "Map Passenger": "خريطة الراكب", "Marital Status": "الحالة الاجتماعية", "Master's Degree": "ماجستير", "Maximum fare": "أعلى سعر", - "Message": "Message", - "message From Driver": "رسالة من الكابتن", - "message From passenger": "رسالة من الراكب", - "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", - "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", - "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", - "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", - "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", - "min": "min", - "min added to fare": "min added to fare", + "Message": "رسالة", + "Microphone permission is required for voice calls": "مطلوب إذن الميكروفون للمكالمات الصوتية", "Minimum fare": "أقل سعر", "Minute": "دقيقة", "Mishwar Vip": "مشوار VIP", "Model": "الموديل", - "model :": "الموديل:", "Model is": "الموديل:", "Morning": "صباح", "Most Secure Methods": "طرق آمنة", - "Move map to select destination": "Move map to select destination", - "Move map to set start location": "Move map to set start location", - "Move map to set stop": "Move map to set stop", - "Move map to your home location": "Move map to your home location", - "Move map to your pickup point": "Move map to your pickup point", - "Move map to your work location": "Move map to your work location", + "Move map to select destination": "حرك الخريطة لاختيار الوجهة", + "Move map to set start location": "حرك الخريطة لتحديد موقع الانطلاق", + "Move map to set stop": "حرك الخريطة لتحديد نقطة التوقف", + "Move map to your home location": "حرك الخريطة إلى موقع منزلك", + "Move map to your pickup point": "حرك الخريطة إلى نقطة الركوب", + "Move map to your work location": "حرك الخريطة إلى موقع عملك", "Move the map to adjust the pin": "حرك الخريطة عشان تظبط الموقع", "Mute": "كتم الصوت", "My Balance": "رصيدي", "My Card": "بطاقتي", "My Cared": "بطاقاتي", - "My current location is:": "موقعي الحالي:", - "my location": "موقعي", - "My location is correct. You can search for me using the navigation app": "Mi ubicación es correcta. Puedes buscarme usando la aplicación de navegación.", "My Profile": "ملفي", + "My current location is:": "موقعي الحالي:", + "My location is correct. You can search for me using the navigation app": "مواقعي صحيح. يمكنك البحث عني باستخدام تطبيق الملاحة", "MyLocation": "موقعي", - "N/A": "N/A", + "N/A": "غير متوفر", "Name": "الاسم", "Name (Arabic)": "الاسم (عربي)", "Name (English)": "الاسم (إنجليزي)", "Name :": "الاسم:", "Name in arabic": "الاسم بالعربي", "Name of the Passenger is ": "اسم الراكب: ", - "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", "National ID": "رقم الهوية", "National Number": "رقم الهوية", "NationalID": "رقم الهوية/الإقامة", - "Nearby": "Nearby", - "Nearest Car": "Coche más cercano", + "Nearby": "قريب", + "Nearest Car": "أقرب سيارة", "Nearest Car for you about ": "أقرب سيارة لك بعد ", - "Nearest Car: ~": "Coche más cercano: ~", - "Need assistance? Contact us": "¿Necesitas ayuda? Contáctanos", - "Network error occurred": "Network error occurred", + "Nearest Car: ~": "أقرب سيارة: ~", + "Need assistance? Contact us": "هل تحتاج مساعدة؟ اتصل بنا", + "Network error occurred": "حدث خطأ في الشبكة", "Next": "التالي", "Night": "ليل", "No": "لا", "No ,still Waiting.": "لا، لسه أنتظر.", - "No accepted orders? Try raising your trip fee to attract riders.": "ماحد قبل؟ ارفع السعر.", - "No audio files found.": "ما لقينا ملفات صوتية.", - "No Captain Accepted Your Order": "Ningún capitán aceptó tu pedido", + "No Captain Accepted Your Order": "لم يقبل أي كابتن طلبك", "No Car in your site. Sorry!": "ما في سيارة عندك. المعذرة!", "No Car or Driver Found in your area.": "ما لقينا سيارة أو كابتن حولك.", - "No cars nearby": "No hay coches cerca", - "No contacts available": "No contacts available", + "No Drivers Found": "لم يتم العثور على سائقين", + "No I want": "لا أبي", + "No Notifications": "لا توجد إشعارات", + "No Promo for today .": "ما في عروض اليوم.", + "No Recordings Found": "لم يتم العثور على تسجيلات", + "No Response yet.": "ما في رد للحين.", + "No Rides now!": "لا توجد رحلات الآن!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة؟ عادي! كلم الكابتن من التطبيق.", + "No accepted orders? Try raising your trip fee to attract riders.": "ماحد قبل؟ ارفع السعر.", + "No audio files found.": "ما لقينا ملفات صوتية.", + "No cars nearby": "لا توجد سيارات قريبة", + "No contacts available": "لا توجد جهات اتصال متاحة", "No contacts found": "ما لقينا جهات اتصال", "No contacts with phone numbers were found on your device.": "ما في أرقام بجهازك.", "No driver accepted my request": "ماحد قبل طلبي", "No drivers accepted your request yet": "ماحد قبل طلبك لسه", - "No drivers available": "No hay conductores disponibles", - "No drivers available at the moment. Please try again later.": "No hay conductores disponibles en este momento. Por favor, inténtalo de nuevo más tarde.", - "No Drivers Found": "未找到司机", - "No drivers found at the moment.\\nPlease try again later.": "目前未找到司机。\\n请稍后重试。", + "No drivers available": "لا يوجد سائقون متاحون", + "No drivers available at the moment. Please try again later.": "لا يوجد سائقون متاحون حالياً. يرجى المحاولة مرة أخرى لاحقاً.", + "No drivers found at the moment.\\nPlease try again later.": "لم يتم العثور على سائقين حالياً.\nيرجى المحاولة مرة أخرى لاحقاً.", + "No drivers found at the moment.\nPlease try again later.": "No drivers found at the moment.\nPlease try again later.", "No face detected": "ما تعرفنا على الوجه", - "No favorite places yet!": "¡Aún no tienes lugares favoritos!", - "No i want": "No i want", - "No I want": "لا أبي", + "No favorite places yet!": "لا توجد أماكن مفضلة بعد!", + "No i want": "لا، أريد", "No image selected yet": "ما اخترت صورة", "No invitation found yet!": "ما فيه دعوات!", - "No notification data found.": "No notification data found.", - "No Notifications": "No Notifications", + "No notification data found.": "لم يتم العثور على بيانات إشعارات.", "No one accepted? Try increasing the fare.": "ماحد قبل؟ جرب تزيد السعر.", "No passenger found for the given phone number": "ما لقينا راكب بهالرقم", - "No Promo for today .": "ما في عروض اليوم.", "No promos available right now.": "ما فيه عروض حالياً.", - "No Recordings Found": "No Recordings Found", - "No Response yet.": "ما في رد للحين.", "No ride found yet": "ما لقينا مشوار", - "No Rides now!": "No Rides now!", - "No routes available for this destination.": "No routes available for this destination.", - "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة؟ عادي! كلم الكابتن من التطبيق.", - "No trip data available": "No hay datos de viaje disponibles", + "No routes available for this destination.": "لا توجد طرق متاحة لهذه الوجهة.", + "No trip data available": "لا توجد بيانات رحلة متاحة", "No trip history found": "ما فيه سجل مشاوير", "No trip yet found": "ما لقينا مشوار", - "No user found": "No user found", + "No user found": "لم يتم العثور على مستخدم", "No user found for the given phone number": "ما لقينا مستخدم بهالرقم", "No wallet record found": "ما لقينا سجل للمحفظة", "No, I don't have a code": "لا، ما عندي", - "No, I want to cancel this trip": "No, quiero cancelar este viaje", + "No, I want to cancel this trip": "لا، أريد إلغاء هذه الرحلة", "No, thanks": "لا، شكراً", - "No,I want": "No,I want", - "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "No,I want": "لا، أريد", + "No.Iwant Cancel Trip.": "لا، أريد إلغاء الرحلة.", "Not Connected": "غير متصل", "Not set": "مو محدد", - "not similar": "غير مطابق", - "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", - "Notice": "Notice", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "ملاحظة: إذا لم يتم إدخال رمز البلد، سيتم حفظه كـ سوري (+963).", + "Notice": "تنبيه", "Notifications": "الإشعارات", - "Now move the map to your pickup point": "Now move the map to your pickup point", - "Now select start pick": "Ahora selecciona el punto de inicio", - "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "Now move the map to your pickup point": "الآن حرك الخريطة إلى نقطة الركوب الخاصة بك", + "Now select start pick": "الآن اختر نقطة البداية", + "Now set the pickup point for the other person": "الآن حدد نقطة الركوب للشخص الآخر", + "OK": "موافق", "Occupation": "المهنة", - "of": "من", - "OK": "OK", "Ok": "تم", "Ok , See you Tomorrow": "تمام، أشوفك بكره", "Ok I will go now.": "أبشر، رايح له الحين.", "Old and affordable, perfect for budget rides.": "اقتصادية ومناسبة للميزانية.", - "On Trip": "On Trip", - "one last step title": "خطوة أخيرة", - "Open": "Open", - "Open destination search": "Open destination search", - "Open in Google Maps": "Open in Google Maps", + "On Trip": "في الرحلة", + "Open": "فتح", "Open Settings": "افتح الإعدادات", + "Open destination search": "فتح بحث الوجهات", + "Open in Google Maps": "فتح في خرائط جوجل", "Or pay with Cash instead": "أو ادفع كاش", "Order": "طلب", - "Order Accepted": "Pedido aceptado", + "Order Accepted": "تم قبول الطلب", "Order Applied": "تم الطلب", - "Order Cancelled": "Pedido cancelado", + "Order Cancelled": "تم إلغاء الطلب", "Order Cancelled by Passenger": "الطلب تكنسل من الراكب", + "Order Details Intaleq": "Order Details Intaleq", "Order Details Siro": "تفاصيل الطلب", - "Order for myself": "اطلب لنفسي", - "Order for someone else": "اطلب لغيرك", "Order History": "سجل الطلبات", "Order Request Page": "صفحة الطلب", - "Order Under Review": "Pedido en revisión", - "Order VIP Canceld": "Order VIP Canceld", + "Order Under Review": "الطلب قيد المراجعة", + "Order VIP Canceld": "تم إلغاء الطلب المميز VIP", + "Order for myself": "اطلب لنفسي", + "Order for someone else": "اطلب لغيرك", "OrderId": "رقم الطلب", "OrderVIP": "طلب VIP", "Origin": "الانطلاق", "Other": "غير ذلك", - "otp sent subtitle": "أرسلنا كود من 5 أرقام على\\n@phoneNumber", - "otp sent success": "تم إرسال الرمز للواتساب.", - "otp verification failed": "رمز التحقق غلط.", "Our dedicated customer service team ensures swift resolution of any issues.": "فريقنا يحل مشاكلك بسرعة.", "Owner Name": "اسم المالك", - "Passenger": "Passenger", - "passenger agreement": "اتفاقية الراكب", - "Passenger cancel order": "Passenger cancel order", + "Passenger": "الراكب", "Passenger Cancel Trip": "الراكب ألغى المشوار", - "Passenger cancelled order": "El pasajero canceló el pedido", + "Passenger Name is ": "اسم الراكب: ", + "Passenger Referral": "إحالة الراكب", + "Passenger cancel order": "ألغى الراكب الطلب", + "Passenger cancelled order": "الراكب ألغى الطلب", "Passenger come to you": "الراكب جايك", "Passenger name : ": "اسم الراكب: ", - "Passenger Name is ": "اسم الراكب: ", - "Passenger Referral": "Passenger Referral", - "Password": "Contraseña", + "Password": "كلمة المرور", "Password must br at least 6 character.": "كلمة المرور 6 حروف ع الأقل.", + "Paste WhatsApp location link": "حط رابط موقع الواتساب", "Paste location link here": "الصق الرابط هنا", "Paste the code here": "الصق الكود", - "Paste WhatsApp location link": "حط رابط موقع الواتساب", - "Pay": "Pagar", - "Pay by Cliq": "Pay by Cliq", - "Pay by MTN Wallet": "Pay by MTN Wallet", - "Pay by Sham Cash": "Pay by Sham Cash", - "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay": "ادفع", + "Pay by Cliq": "الدفع عبر كليك (Cliq)", + "Pay by MTN Wallet": "الدفع عبر محفظة MTN", + "Pay by Sham Cash": "الدفع عبر شام كاش", + "Pay by Syriatel Wallet": "الدفع عبر محفظة سيريتل", "Pay directly to the captain": "ادفع للكابتن كاش", "Pay from my budget": "ادفع من رصيدي", "Pay with Credit Card": "ادفع بالبطاقة", - "Pay with PayPal": "Pay with PayPal", + "Pay with PayPal": "الدفع عبر باي بال", "Pay with Wallet": "ادفع بالمحفظة", "Pay with Your": "ادفع بـ", "Pay with Your PayPal": "ادفع بـ PayPal", @@ -941,359 +813,335 @@ final Map ar_jo = { "Payment Options": "خيارات الدفع", "Payment Successful": "الدفع ناجح", "Payments": "الدفع", - "pending": "pendiente", "Perfect for adventure seekers who want to experience something new and exciting": "لمحبي المغامرة", "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالي للي يبون سيارات جديدة وحرية اختيار الطريق", + "Permission Required": "الصلاحية مطلوبة", "Permission denied": "ما في صلاحية", - "Permission Required": "Permission Required", "Personal Information": "المعلومات الشخصية", - "Phone": "Phone", - "phone not verified": "phone not verified", - "Phone Number": "Phone Number", - "Phone Number Check": "Phone Number Check", + "Phone": "الهاتف", + "Phone Number": "رقم الهاتف", + "Phone Number Check": "فحص رقم الهاتف", "Phone Number is": "الجوال:", - "Phone number is verified before": "El número de teléfono ya ha sido verificado", - "Phone number isn't an Egyptian phone number": "El número de teléfono no es un número egipcio", - "phone number label": "رقم الجوال", - "Phone number must be exactly 11 digits long": "El número de teléfono debe tener exactamente 11 dígitos", - "phone number required": "مطلوب رقم الجوال", - "Phone number seems too short": "Phone number seems too short", - "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", - "Phone Wallet Saved Successfully": "Billetera telefónica guardada con éxito", - "Pick destination on map": "Pick destination on map", + "Phone Wallet Saved Successfully": "تم حفظ محفظة الهاتف بنجاح", + "Phone number is verified before": "تم التحقق من رقم الهاتف سابقاً", + "Phone number isn't an Egyptian phone number": "رقم الهاتف ليس رقماً مصرياً", + "Phone number must be exactly 11 digits long": "يجب أن يكون رقم الهاتف مكوناً من 11 رقماً بالضبط", + "Phone number seems too short": "يبدو أن رقم الهاتف قصير جداً", + "Phone verified. Please complete registration.": "تم تأكيد الهاتف. يرجى إكمال التسجيل.", + "Pick destination on map": "اختر الوجهة على الخريطة", "Pick from map": "اختر من الخريطة", - "Pick from map destination": "Elige el destino en el mapa", - "Pick location on map": "Pick location on map", - "Pick on map": "Pick on map", - "Pick or Tap to confirm": "Elige o toca para confirmar", - "Pick start point on map": "Pick start point on map", + "Pick from map destination": "اختر الوجهة من الخريطة", + "Pick location on map": "اختر الموقع على الخريطة", + "Pick on map": "اختر على الخريطة", + "Pick or Tap to confirm": "اختر أو انقر للتأكيد", + "Pick start point on map": "اختر نقطة الانطلاق على الخريطة", "Pick your destination from Map": "حدد وجهتك من الخريطة", "Pick your ride location on the map - Tap to confirm": "حدد موقعك ع الخريطة - اضغط للتأكيد", - "Plan Your Route": "Plan Your Route", + "Plan Your Route": "خطط لمسارك", "Plate": "لوحة", "Plate Number": "رقم اللوحة", - "Please add contacts to your phone.": "Please add contacts to your phone.", - "Please check your internet and try again.": "Please check your internet and try again.", - "Please check your internet connection": "请检查您的网络连接", - "Please don't be late": "Por favor, no llegues tarde", - "Please don't be late, I'm waiting for you at the specified location.": "Por favor, no llegues tarde, te estoy esperando en la ubicación especificada.", + "Please Try anther time ": "جرب وقت ثاني", + "Please Wait If passenger want To Cancel!": "انتظر يمكن الراكب يلغي!", + "Please add contacts to your phone.": "يرجى إضافة جهات اتصال إلى هاتفك.", + "Please check your internet and try again.": "يرجى التحقق من الإنترنت والمحاولة مرة أخرى.", + "Please check your internet connection": "يرجى التحقق من اتصالك بالإنترنت", + "Please don't be late": "يرجى عدم التأخر", + "Please don't be late, I'm waiting for you at the specified location.": "يرجى عدم التأخر، أنا بانتظارك في الموقع المحدد.", "Please enter": "الرجاء إدخال", + "Please enter Your Email.": "دخل الإيميل لاهنت.", + "Please enter Your Password.": "دخل كلمة المرور.", "Please enter a correct phone": "دخل رقم جوال صح", - "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a description of the issue.": "يرجى إدخال وصف للمشكلة.", "Please enter a phone number": "دخل رقم جوال", "Please enter a valid 16-digit card number": "دخل رقم بطاقة صح (16 رقم)", - "Please enter a valid email.": "Please enter a valid email.", - "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid email.": "يرجى إدخال بريد إلكتروني صالح.", + "Please enter a valid phone number.": "يرجى إدخال رقم هاتف صالح.", "Please enter a valid promo code": "دخل كود صحيح", - "Please enter phone number": "Please enter phone number", + "Please enter phone number": "يرجى إدخال رقم الهاتف", + "Please enter the CVV code": "كود CVV", "Please enter the cardholder name": "اسم صاحب البطاقة", "Please enter the complete 6-digit code.": "دخل الرمز كامل (6 أرقام).", - "Please enter the CVV code": "كود CVV", "Please enter the expiry date": "تاريخ الانتهاء", - "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter the number without the leading 0": "يرجى إدخال الرقم بدون الصفر الأولي", "Please enter your City.": "دخل مدينتك.", - "Please enter your complaint.": "Por favor, ingresa tu queja.", - "Please enter Your Email.": "دخل الإيميل لاهنت.", + "Please enter your Question.": "اكتب سؤالك.", + "Please enter your complaint.": "يرجى إدخال شكواك.", "Please enter your feedback.": "اكتب ملاحظتك لاهنت.", "Please enter your first name.": "دخل الاسم الأول.", "Please enter your last name.": "دخل اسم العائلة.", - "Please enter Your Password.": "دخل كلمة المرور.", - "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number": "يرجى إدخال رقم هاتفك", "Please enter your phone number.": "دخل رقم الجوال.", - "Please enter your Question.": "اكتب سؤالك.", "Please go to Car Driver": "تفضل عند الكابتن", - "Please go to Car now": "Please go to Car now", + "Please go to Car now": "يرجى الذهاب إلى السيارة الآن", "Please go to Car now ": "روح للسيارة الحين", - "please go to picker location exactly": "رح لموقع الركوب بالضبط", "Please help! Contact me as soon as possible.": "فزعة! كلمني بسرعة.", "Please make sure not to leave any personal belongings in the car.": "تأكد إنك ما نسيت شي في السيارة.", + "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 Siro app": "تأكد إن أغراضك معك وإن الباقي رجع للمحفظة قبل تنزل. شكراً لاستخدامك سيرو.", - "please order now": "اطلب الحين", - "Please paste the transfer message": "Please paste the transfer message", + "Please paste the transfer message": "يرجى لصق رسالة التحويل", "Please put your licence in these border": "حط الرخصة داخل الإطار", - "Please select a reason first": "Please select a reason first", - "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", - "Please slow down": "Please slow down", + "Please select a reason first": "يرجى اختيار سبب أولاً", + "Please set a valid SOS phone number.": "يرجى تعيين رقم طوارئ صالح.", + "Please slow down": "يرجى تخفيف السرعة", "Please stay on the picked point.": "خليك في الموقع المحدد لا هنت.", - "Please try again in a few moments": "Por favor, inténtalo de nuevo en unos momentos", - "Please Try anther time ": "جرب وقت ثاني", + "Please try again in a few moments": "يرجى المحاولة مرة أخرى بعد لحظات", "Please verify your identity": "تحقق من هويتك", "Please wait for the passenger to enter the car before starting the trip.": "انتظر الراكب يركب قبل تبدأ.", - "Please Wait If passenger want To Cancel!": "انتظر يمكن الراكب يلغي!", - "please wait till driver accept your order": "انتظر الكابتن يقبل", - "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", - "Please write the reason...": "请填写原因...", + "Please wait while we prepare your trip.": "يرجى الانتظار بينما نحضر رحلتك.", + "Please write the reason...": "يرجى كتابة السبب...", "Point": "نقطة", "Potential security risks detected. The application may not function correctly.": "اكتشفنا مخاطر أمنية. يمكن التطبيق ما يشتغل صح.", - "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", - "Pre-booking": "Reserva anticipada", - "Preferences": "Preferences", - "Price": "Precio", - "price is": "السعر:", - "Price of trip": "Precio del viaje", - "Privacy Notice": "Aviso de privacidad", - "privacy policy": "سياسة الخصوصية.", + "Potential security risks detected. The application will close in @seconds seconds.": "تم اكتشاف مخاطر أمنية محتملة. سيتم إغلاق التطبيق خلال @seconds ثانية.", + "Pre-booking": "الحجز المسبق", + "Preferences": "التفضيلات", + "Price": "السعر", + "Price of trip": "سعر الرحلة", + "Privacy Notice": "إشعار الخصوصية", "Privacy Policy": "سياسة الخصوصية", "Professional driver": "كابتن محترف", "Profile": "الملف الشخصي", - "Profile photo updated": "Profile photo updated", - "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "Profile photo updated": "تم تحديث صورة الملف الشخصي", "Promo": "كود خصم", "Promo Already Used": "الكود مستخدم", "Promo Code": "كود الخصم", "Promo Code Accepted": "انقبل الكود", - "Promo code copied to clipboard!": "نسخت الكود!", "Promo Copied!": "تم نسخ الكود!", "Promo End !": "انتهى العرض!", "Promo Ended": "انتهى العرض", - "Promo Error": "Promo Error", - "Promo', 'Show latest promo": "Promo', 'Show latest promo", - "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "Promo Error": "خطأ في الرمز الترويجي", + "Promo code copied to clipboard!": "نسخت الكود!", + "Promo', 'Show latest promo": "Promo', 'عرض أحدث العروض", "Promos": "العروض", - "Promos For Today": "Promociones para hoy", + "Promos For Today": "العروض ليوم اليوم", "Pyament Cancelled .": "إلغاء الدفع.", "Qatar": "قطر", - "Quick Access": "Quick Access", + "Quick Access": "وصول سريع", "Quick Actions": "إجراءات سريعة", - "Quick Message": "Quick Message", + "Quick Message": "رسالة سريعة", "Quiet & Eco-Friendly": "هادية وصديقة للبيئة", "Rate Captain": "قيم الكابتن", "Rate Driver": "قيم الكابتن", "Rate Passenger": "قيم الراكب", - "Rating is": "Rating is", + "Rating is": "التقييم هو", "Rating is ": "التقييم: ", - "Rating is ": "Rating is ", + "Rating is ": "التقييم هو ", "Rayeh Gai": "رايح جاي", "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة مريحة للسفر بين المدن.", - "Reach out to us via": "Contattaci tramite", - "Received empty route data.": "Received empty route data.", + "Reach out to us via": "تواصل معنا عبر", + "Received empty route data.": "تم استلام بيانات مسار فارغة.", "Recent Places": "الأماكن الأخيرة", "Recharge my Account": "شحن حسابي", - "Record": "Record", + "Record": "تسجيل", "Record saved": "انحفظ التسجيل", - "Record your trips to see them here.": "Record your trips to see them here.", + "Record your trips to see them here.": "سجل رحلاتك لعرضها هنا.", "Recorded Trips (Voice & AI Analysis)": "مشاوير مسجلة", "Recorded Trips for Safety": "مشاوير مسجلة للأمان", - "Refresh Map": "刷新地图", + "Refresh Map": "تحديث الخريطة", "Refuse Order": "رفض الطلب", "Register": "تسجيل", - "Register as Driver": "سجل كابتن", "Register Captin": "تسجيل كابتن", "Register Driver": "تسجيل كابتن", - "registration failed": "فشل التسجيل.", - "reject your order.": "rechazó tu pedido.", - "rejected": "rechazado", - "Rejected Orders Count": "Rejected Orders Count", + "Register as Driver": "سجل كابتن", + "Rejected Orders Count": "عدد الطلبات المرفوضة", "Religion": "الديانة", - "remaining": "restante", - "Remove waypoint": "Remove waypoint", - "Report": "Report", + "Remove waypoint": "إزالة نقطة التوقف", + "Report": "تقرير", "Resend Code": "إعادة إرسال", - "Resend code": "Reenviar código", - "reviews": "تقييم", - "Reward Claimed": "Reward Claimed", - "Reward Earned": "Reward Earned", - "Reward Status": "Reward Status", + "Resend code": "إعادة إرسال الرمز", + "Reward Claimed": "تم استلام المكافأة", + "Reward Earned": "تم كسب مكافأة", + "Reward Status": "حالة المكافأة", "Ride Management": "إدارة المشاوير", "Ride Summaries": "ملخص المشاوير", "Ride Summary": "ملخص المشوار", "Ride Today : ": "مشوار اليوم: ", "Ride Wallet": "محفظة المشوار", - "rides": "viajes", "Rides": "مشاوير", "Rouats of Trip": "مسارات المشوار", - "Route": "Route", - "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "Route": "المسار", "Route Not Found": "الطريق غير معروف", - "safe_and_comfortable": "استمتع بمشوار آمن.", + "Route and prices have been calculated successfully!": "تم حساب المسار والأسعار بنجاح!", + "SOS": "الطوارئ", + "SOS Phone": "رقم الطوارئ", + "SYP": "ليرة سورية", "Safety & Security": "الأمان", "Saudi Arabia": "السعودية", - "Save": "Save", - "Save Changes": "Save Changes", + "Save": "حفظ", + "Save Changes": "حفظ التغييرات", "Save Credit Card": "حفظ البطاقة", - "Save Name": "Save Name", + "Save Name": "حفظ الاسم", "Saved Sucssefully": "تم الحفظ", "Scan Driver License": "امسح الرخصة", - "Scan Id": "مسح الهوية", "Scan ID MklGoogle": "مسح الهوية MklGoogle", - "Scan QR": "Scan QR", - "Scan QR Code": "Scan QR Code", - "Scheduled Time:": "Hora programada:", + "Scan Id": "مسح الهوية", + "Scan QR": "مسح QR", + "Scan QR Code": "مسح رمز QR", + "Scheduled Time:": "الوقت المجدول:", "Scooter": "سكوتر", - "Search country": "Search country", - "Search for a starting point": "Search for a starting point", - "Search for another driver": "寻找其他司机", + "Search country": "ابحث عن الدولة", + "Search for a starting point": "ابحث عن نقطة البداية", + "Search for another driver": "البحث عن سائق آخر", "Search for waypoint": "ابحث عن نقطة توقف", - "Search for your destination": "ابحث عن وجهتك", "Search for your Start point": "ابحث عن نقطة البداية", - "Searching for nearby drivers...": "正在寻找附近的司机...", + "Search for your destination": "ابحث عن وجهتك", + "Searching for nearby drivers...": "جاري البحث عن سائقين قريبين...", "Searching for the nearest captain...": "جاري البحث عن أقرب كابتن...", - "seconds": "ثانية", - "Secure": "Secure", + "Secure": "آمن", "Security Warning": "⚠️ تنبيه أمني", - "security_warning": "security_warning", "See you on the road!": "نشوفك بالدرب!", - "Select Appearance": "Select Appearance", - "Select betweeen types": "Select betweeen types", + "Select Appearance": "اختر المظهر", "Select Country": "اختر الدولة", "Select Date": "اختر التاريخ", - "Select date and time of trip": "Seleccionar fecha y hora del viaje", - "Select Education": "Select Education", - "Select Gender": "Select Gender", - "Select one message": "اختر رسالة", + "Select Education": "اختر مستوى التعليم", + "Select Gender": "اختر الجنس", "Select Order Type": "اختر نوع الطلب", "Select Payment Amount": "اختر المبلغ", - "Select recorded trip": "اختر مشوار مسجل", - "Select This Ride": "Select This Ride", + "Select This Ride": "اختر هذه الرحلة", "Select Time": "اختر الوقت", "Select Waiting Hours": "اختر ساعات الانتظار", "Select Your Country": "اختر دولتك", + "Select betweeen types": "اختر بين الأنواع", + "Select date and time of trip": "اختر تاريخ ووقت الرحلة", + "Select one message": "اختر رسالة", + "Select recorded trip": "اختر مشوار مسجل", "Select your destination": "اختر وجهتك", "Select your preferred language for the app interface.": "اختر لغة التطبيق.", "Selected Date": "التاريخ المحدد", "Selected Date and Time": "التاريخ والوقت", + "Selected Time": "الوقت المحدد", "Selected driver": "الكابتن المختار", "Selected file:": "الملف المختار:", - "Selected Time": "الوقت المحدد", - "Send a custom message": "أرسل رسالة", - "Send Email": "Send Email", + "Send Email": "إرسال بريد إلكتروني", + "Send Intaleq app to him": "Send Intaleq app to him", "Send Invite": "إرسال دعوة", - "send otp button": "أرسل كود التحقق", + "Send SOS": "إرسال طوارئ (SOS)", "Send Siro app to him": "أرسل له تطبيق سيرو", - "Send SOS": "Send SOS", - "Send to Driver Again": "Enviar al conductor nuevamente", "Send Verfication Code": "أرسل الرمز", "Send Verification Code": "أرسل كود التحقق", - "Send WhatsApp Message": "Send WhatsApp Message", - "Server Error": "Server Error", - "Server error": "Server error", - "server error try again": "خطأ في السيرفر، حاول مرة ثانية.", - "Server error. Please try again.": "Server error. Please try again.", + "Send WhatsApp Message": "إرسال رسالة واتساب", + "Send a custom message": "أرسل رسالة", + "Send to Driver Again": "إرسال إلى السائق مرة أخرى", + "Server Error": "خطأ في الخادم", + "Server error": "خطأ في الخادم", + "Server error. Please try again.": "خطأ في الخادم. يرجى المحاولة مرة أخرى.", "Session expired. Please log in again.": "الجلسة انتهت. سجل دخولك مرة ثانية.", - "Set as Home": "Set as Home", - "Set as Stop": "Set as Stop", - "Set as Work": "Set as Work", - "Set Destination": "Set Destination", - "Set Location on Map": "Establecer ubicación en el mapa", - "Set Phone Number": "Set Phone Number", - "Set pickup location": "حدد موقع الانطلاق", + "Set Destination": "تحديد الوجهة", + "Set Location on Map": "تعيين الموقع على الخريطة", + "Set Phone Number": "تعيين رقم الهاتف", "Set Wallet Phone Number": "حط رقم للمحفظة", + "Set as Home": "تعيين كمنزل", + "Set as Stop": "تعيين كنقطة توقف", + "Set as Work": "تعيين كعمل", + "Set pickup location": "حدد موقع الانطلاق", "Setting": "إعدادات", "Settings": "الإعدادات", "Sex is ": "الجنس: ", - "Share": "Share", + "Share": "مشاركة", "Share App": "شارك التطبيق", - "Share this code with your friends and earn rewards when they use it!": "شارك الكود واكسب!", - "Share Trip": "Share Trip", + "Share Trip": "مشاركة الرحلة", "Share Trip Details": "شارك تفاصيل المشوار", + "Share this code with your friends and earn rewards when they use it!": "شارك الكود واكسب!", "Share with friends and earn rewards": "شارك مع ربعك واكسب", - "Share your experience to help us improve...": "Share your experience to help us improve...", - "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "Share your experience to help us improve...": "شارك تجربتك لمساعدتنا في التحسين...", "Show Invitations": "عرض الدعوات", - "Show latest promo": "عرض الخصومات", "Show Promos": "عرض الخصومات", "Show Promos to Charge": "عروض الشحن", + "Show latest promo": "عرض الخصومات", "Showing": "عرض", "Sign In by Apple": "دخول بـ Apple", "Sign In by Google": "دخول بـ Google", - "Sign in for a seamless experience": "Inicia sesión para una experiencia sin interrupciones", - "Sign in to continue": "Sign in to continue", - "Sign in with Apple": "Iniciar sesión con Apple", - "Sign In with Google": "Iniciar sesión con Google", - "Sign in with Google for easier email and name entry": "ادخل بقوقل أسهل", + "Sign In with Google": "تسجيل الدخول عبر جوجل", "Sign Out": "تسجيل خروج", - "similar": "مطابق", - "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Sign in for a seamless experience": "سجّل الدخول لتجربة سلسة", + "Sign in to continue": "سجل الدخول للمتابعة", + "Sign in with Apple": "تسجيل الدخول عبر آبل", + "Sign in with Google for easier email and name entry": "ادخل بقوقل أسهل", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "ما عليك سوى فتح تطبيق سيرو وإدخال وجهتك والضغط على \"طلب رحلة\". سيقوم التطبيق بتوصيلك بسائق قريب.", "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "افتح التطبيق، حدد وجهتك، واطلب المشوار.", "Siro": "سيرو", "Siro Balance": "رصيد سيرو", + "Siro LLC": "شركة سيرو", + "Siro Over": "انتهى المشوار", + "Siro Passenger": "راكب سيرو", + "Siro Support": "دعم سيرو", + "Siro Wallet": "محفظة سيرو", "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:": "سيرو تطبيق مشاوير مصمم لأمانك وميزانيتك. نوصلك بكباتن ثقة.", "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.": "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.", - "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 es la aplicación de transporte compartido más segura y confiable diseñada especialmente para pasajeros en Siria. Brindamos una experiencia de viaje cómoda, respetuosa y asequible con características que priorizan su seguridad y conveniencia. Nuestros capitanes de confianza están verificados, asegurados y respaldados por el mantenimiento regular del automóvil realizado por los mejores ingenieros. También ofrecemos servicios de apoyo en carretera para asegurarnos de que cada viaje sea sencillo y sin preocupaciones. Con Siro, disfruta de calidad, seguridad y tranquilidad cada vez que viaja.", + "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.": "سيرو هو تطبيق مشاركة الرحلات الأكثر أماناً وموثوقية المصمم خصيصاً للركاب في سوريا. نحن نقدم تجربة رحلة مريحة ومحترمة وبأسعار معقولة مع الميزات التي تعطي الأولوية لسلامتك وراحتك.", + "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 LLC": "شركة سيرو", "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 Over": "انتهى المشوار", - "Siro Passenger": "Siro Passenger", "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 Support": "Supporto Siro", - "Siro Wallet": "محفظة سيرو", - "Siro's Response": "Respuesta de Siro", - "Something went wrong. Please try again.": "Something went wrong. Please try again.", - "Sorry 😔": "抱歉 😔", - "Sorry, there are no cars available of this type right now.": "抱歉,目前没有此类车型。", - "SOS": "SOS", - "SOS Phone": "رقم الطوارئ", + "Siro's Response": "رد سيرو", + "Something went wrong. Please try again.": "حدث خطأ ما. يرجى المحاولة مرة أخرى.", + "Sorry 😔": "المعذرة 😔", + "Sorry, there are no cars available of this type right now.": "المعذرة، لا تتوفر سيارات من هذا النوع حالياً.", "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان واسعة للعوايل والمجموعات. راحة وأمان وتوفير.", "Speaker": "مكبر الصوت", - "Speaking...": "Speaking...", - "Speed Over": "Speed Over", + "Speaking...": "يتحدث...", + "Speed Over": "تجاوز السرعة", "Standard Call": "اتصال عادي", - "Start Point": "Start Point", + "Start Point": "نقطة الانطلاق", "Start Record": "ابدأ التسجيل", "Start the Ride": "ابدأ المشوار", - "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", "Statistics": "الإحصائيات", - "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stay calm. We are here to help.": "ابق هادئاً. نحن هنا للمساعدة.", + "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 Siro app.": "خطوات طلب مشوار بتطبيق سيرو.", - "Stop": "Stop", - "Submit": "Enviar", + "Stop": "توقف", + "Submit": "إرسال", "Submit ": "إرسال ", - "Submit a Complaint": "رفع شكوى", "Submit Complaint": "إرسال الشكوى", "Submit Question": "أرسل سؤال", - "Submit Rating": "Submit Rating", + "Submit Rating": "إرسال التقييم", + "Submit a Complaint": "رفع شكوى", "Submit rating": "إرسال التقييم", "Success": "تم", - "Support & Info": "Support & Info", - "Support is Away": "Il supporto è attualmente assente", - "Support is currently Online": "Il supporto è attualmente online", + "Support & Info": "الدعم والمعلومات", + "Support is Away": "الدعم غير متصل حالياً", + "Support is currently Online": "الدعم متصل حالياً", "Switch Rider": "تغيير الراكب", - "SYP": "叙利亚镑", - "Syria": "叙利亚", - "Syria': return 'SYP": "Syria': return 'SYP", + "Syria": "سوريا", + "Syria': return 'SYP": "Syria': return 'ليرة سورية", "Syria'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.": "خدمة مشاركة مشاوير رائدة في الخليج.", - "System Default": "System Default", - "Take a Photo": "Take a Photo", + "System Default": "افتراضي النظام", "Take Image": "صور", "Take Picture Of Driver License Card": "صور الرخصة", "Take Picture Of ID Card": "صور الهوية", + "Take a Photo": "التقاط صورة", "Tap on the promo code to copy it!": "اضغط ع الكود عشان تنسخه!", - "Tap to apply your discount": "Tap to apply your discount", - "Tap to search your destination": "Tap to search your destination", + "Tap to apply your discount": "اضغط لتطبيق الخصم الخاص بك", + "Tap to search your destination": "اضغط للبحث عن وجهتك", "Target": "الهدف", "Tariff": "التعرفة", "Tariffs": "التعرفة", "Tax Expiry Date": "تاريخ انتهاء الضريبة", - "Terms of Use": "Términos de uso", - "terms of use": "شروط الاستخدام", - "Terms of Use & Privacy Notice": "Términos de uso y aviso de privacidad", + "Terms of Use": "شروط الاستخدام", + "Terms of Use & Privacy Notice": "شروط الاستخدام وإشعار الخصوصية", "Thanks": "شكراً", - "the 300 points equal 300 L.E": "300 نقطة بـ 300 ر.س", - "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 نقطة تساوي 300 ر.س لك\\nرح اكسب فلوسك", - "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 ر.س", - "the 500 points equal 30 JOD for you \\nSo go and gain your money": "الـ 500 نقطة بـ 30 ر.س لك\\nروح اكسب فلوسك", + "The Driver Will be in your location soon .": "الكابتن بيوصلك قريب.", "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "الملف الصوتي لم يتم رفعه بعد.\\\\nهل تريد الإرسال بدونه؟", - "The audio file is not uploaded yet.\\nDo you want to submit without it?": "El archivo de audio aún no se ha subido.\\n¿Quiere enviarlo sin él?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "لم يتم رفع ملف الصوت بعد.\nهل تريد الإرسال بدونه؟", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", "The distance less than 500 meter.": "المسافة أقل من 500 متر.", "The driver accept your order for": "الكابتن قبل بـ", - "The driver accepted your order for": "El conductor aceptó tu pedido para", + "The driver accepted your order for": "السائق قبل طلبك مقابل", "The driver accepted your trip": "الكابتن قبل مشوارك", "The driver canceled your ride.": "الكابتن ألغى مشوارك.", - "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "司机因紧急情况取消了行程。\\n您想立即寻找其他司机吗?", - "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "ألغى السائق الرحلة لسبب طارئ.\nهل تريد البحث عن سائق آخر فوراً؟", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?", + "The driver cancelled the trip.": "ألغى السائق الرحلة.", "The driver on your way": "الكابتن جايك", "The driver waiting you in picked location .": "الكابتن ينتظرك في الموقع.", "The driver waitting you in picked location .": "الكابتن ينتظرك.", - "The Driver Will be in your location soon .": "الكابتن بيوصلك قريب.", "The drivers are reviewing your request": "الكباتن يشوفون طلبك", "The email or phone number is already registered.": "الإيميل أو الرقم مسجل.", "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "الاسم في خلو السوابق ما يطابق الرخصة.", @@ -1305,60 +1153,58 @@ final Map ar_jo = { "The payment was not approved. Please try again.": "الدفع ما انقبل. جرب مرة ثانية.", "The price may increase if the route changes.": "ممكن يزيد السعر لو تغير الطريق.", "The promotion period has ended.": "خلصت فترة العرض.", - "The reason is": "La razón es", + "The reason is": "السبب هو", "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "بدأ المشوار! تقدر تكلم الطوارئ، تشارك رحلتك، أو تسجل صوت.", - "There is no Car or Driver in your area.": "您所在的区域没有车辆或司机。", + "There is no Car or Driver in your area.": "لا توجد سيارة أو سائق في منطقتك.", "There is no data yet.": "ما في بيانات.", "There is no help Question here": "ما في سؤال مساعدة", "There is no notification yet": "ما في إشعارات", "There no Driver Aplly your order sorry for that ": "ماحد قبل طلبك، المعذرة", "There's heavy traffic here. Can you suggest an alternate pickup point?": "زحمة هنا. تقدر تغير موقع الركوب؟", - "This action cannot be undone.": "This action cannot be undone.", - "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This action cannot be undone.": "لا يمكن التراجع عن هذا الإجراء.", + "This action is permanent and cannot be undone.": "هذا الإجراء دائم ولا يمكن التراجع عنه.", "This amount for all trip I get from Passengers": "هذا المبلغ من كل الركاب", "This amount for all trip I get from Passengers and Collected For me in": "المبلغ المجمع لي في", "This is a scheduled notification.": "هذا إشعار مجدول.", - "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for delivery or a motorcycle.": "هذا للتوصيل أو دراجة نارية.", "This is for scooter or a motorcycle.": "هذا للسكوتر أو الدباب.", - "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This is the total number of rejected orders per day after accepting the orders": "هذا هو العدد الإجمالي للطلبات المرفوضة يومياً بعد قبول الطلبات", "This phone number has already been invited.": "هالرقم قد أرسلنا له دعوة.", "This price is": "هالسعر هو", "This price is fixed even if the route changes for the driver.": "السعر ثابت حتى لو تغير الطريق.", "This price may be changed": "السعر ممكن يتغير", - "This ride is already applied by another driver.": "Este viaje ya ha sido aplicado por otro conductor.", + "This ride is already applied by another driver.": "تم التقدم لهذه الرحلة بالفعل من قبل سائق آخر.", "This ride is already taken by another driver.": "المشوار راح لكابتن ثاني.", "This ride type allows changes, but the price may increase": "تقدر تغير بس السعر بيزيد", "This ride type does not allow changes to the destination or additional stops": "ما تقدر تغير الوجهة أو توقف", "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "مشوار مباشر بسعر ثابت. الكابتن يلتزم بالمسار.", "This trip is for women only": "المشوار للنساء فقط", - "this will delete all files from your device": "بيمسح كل الملفات من جهازك", - "Time": "Time", + "Time": "الوقت", "Time to arrive": "وقت الوصول", "Tip is ": "الإكرامية: ", - "To :": "To :", + "To :": "إلى :", "To : ": "إلى: ", - "to arrive you.": "to arrive you.", + "To Home": "إلى المنزل", + "To Work": "إلى العمل", "To become a passenger, you must review and agree to the ": "عشان تصير راكب، لازم توافق على ", + "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 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 change Language the App": "Para cambiar el idioma de la aplicación", + "To change Language the App": "لتغيير لغة التطبيق", "To change some Settings": "لتغيير الإعدادات", "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 give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "عشان نخدمك صح، نبي نعرف موقعك. بنستخدمه عشان نلقى لك كباتن قريبين.", - "To Home": "A casa", + "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 Siro support directly.": "للتسجيل زر موقعنا.", "To use Wallet charge it": "عشان تستخدم المحفظة اشحنها", - "To Work": "Al trabajo", "Today's Promos": "عروض اليوم", - "token change": "تغيير الرمز", - "token updated": "تحدث الرمز", - "Top up Balance": "Top up Balance", - "Top up Balance to continue": "Top up Balance to continue", + "Top up Balance": "شحن الرصيد", + "Top up Balance to continue": "شحن الرصيد للمتابعة", "Top up Wallet": "شحن المحفظة", "Top up Wallet to continue": "اشحن المحفظة عشان تكمل", "Total Amount:": "المبلغ الكلي:", "Total Budget from trips by\\nCredit card is ": "إجمالي الدخل بالبطاقة: ", + "Total Budget from trips by\nCredit card is ": "Total Budget from trips by\nCredit card is ", "Total Budget from trips is ": "إجمالي الدخل: ", - "Total budgets on month": "ميزانية الشهر", "Total Connection Duration:": "مدة الاتصال:", "Total Cost": "التكلفة الكلية", "Total Cost is ": "التكلفة الكلية: ", @@ -1366,56 +1212,57 @@ final Map ar_jo = { "Total For You is ": "لك: ", "Total From Passenger is ": "المجموع من الراكب: ", "Total Hours on month": "ساعات الشهر", - "Total Invites": "Total Invites", + "Total Invites": "إجمالي الدعوات", "Total Points is": "مجموع النقاط", + "Total Price": "السعر الإجمالي", + "Total budgets on month": "ميزانية الشهر", "Total points is ": "مجموع النقاط ", - "Total Price": "Total Price", "Total price from ": "السعر الكلي من ", "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "تنقل بسيارة كهربائية حديثة وهادية. خيار فخم وصديق للبيئة.", - "Trip booked successfully": "Trip booked successfully", "Trip Cancelled": "المشوار تكنسل", "Trip Cancelled. The cost of the trip will be added to your wallet.": "تم إلغاء المشوار. المبلغ رجع لمحفظتك.", - "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Viaje cancelado. El costo del viaje se deducirá de tu billetera.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "تم إلغاء الرحلة. سيتم خصم تكلفة الرحلة من محفظتك.", + "Trip Monitor": "مراقب الرحلة", + "Trip Monitoring": "متابعة المشوار", + "Trip Status:": "حالة الرحلة:", + "Trip booked successfully": "تم حجز الرحلة بنجاح", "Trip finished": "انتهت الرحلة", - "Trip finished ": "Trip finished ", + "Trip finished ": "انتهت الرحلة ", "Trip has Steps": "الرحلة فيها وقفات", "Trip is Begin": "بدأ المشوار", - "Trip Monitor": "Monitor de viaje", - "Trip Monitoring": "متابعة المشوار", - "Trip Status:": "Estado del viaje:", - "Trip updated successfully": "Viaje actualizado con éxito", - "trips": "مشاوير", + "Trip updated successfully": "تم تحديث الرحلة بنجاح", "Trips recorded": "المشاوير المسجلة", - "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \$trips / \$target": "الرحلات: \$trips / \$target", "Trusted driver": "كابتن موثوق", "Turkey": "تركيا", - "type here": "اكتب هنا", "Type here Place": "اكتب المكان", "Type something...": "اكتب شي...", "Type your Email": "اكتب إيميلك", "Type your message": "اكتب رسالتك", - "Type your message...": "Type your message...", + "Type your message...": "اكتب رسالتك...", + "USA": "أمريكا", "Uncompromising Security": "أمان تام", - "unknown": "unknown", - "Unknown Driver": "Conductor desconocido", - "Unknown Location": "Unknown Location", + "Unknown Driver": "سائق غير معروف", + "Unknown Location": "موقع غير معروف", "Update": "تحديث", - "Update Available": "Actualización disponible", + "Update Available": "يتوفر تحديث", "Update Education": "تحديث التعليم", "Update Gender": "تحديث الجنس", - "Update Name": "Update Name", - "upgrade price": "aumentar el precio", + "Update Name": "تحديث الاسم", "Uploaded": "تم الرفع", - "USA": "أمريكا", + "Use Touch ID or Face ID to confirm payment": "استخدم البصمة لتأكيد الدفع", "Use code:": "استخدم الكود:", "Use my invitation code to get a special gift on your first ride!": "استخدم كودي عشان يجيك هدية بأول مشوار!", "Use my referral code:": "استخدم كود الدعوة:", - "Use Touch ID or Face ID to confirm payment": "استخدم البصمة لتأكيد الدفع", "User does not exist.": "المستخدم مو موجود.", - "User does not have a wallet #1652": "El usuario no tiene una billetera #1652", - "User not found": "Usuario no encontrado", + "User does not have a wallet #1652": "المستخدم لا يملك محفظة #1652", + "User not found": "لم يتم العثور على المستخدم", "User with this phone number or email already exists.": "هالرقم أو الإيميل مسجل من قبل.", "Uses cellular network": "يستخدم شبكة الهاتف", + "VIN": "رقم الهيكل", + "VIN :": "رقم الهيكل:", + "VIN is": "رقم الهيكل:", + "VIP Order": "طلب VIP", "Valid Until:": "صالح لين:", "Van": "عائلية (فان)", "Van for familly": "فان للعائلة", @@ -1424,153 +1271,144 @@ final Map ar_jo = { "Vehicle Details Front": "تفاصيل المركبة (أمام)", "Vehicle Options": "خيارات السيارات", "Verification Code": "رمز التحقق", + "Verified Passenger": "راكب موثق", "Verified driver": "كابتن موثق", - "Verified Passenger": "Verified Passenger", "Verify": "تأكيد", - "verify and continue button": "تحقق وكمال", "Verify Email": "تأكيد الإيميل", "Verify Email For Driver": "تأكيد إيميل الكابتن", "Verify OTP": "تأكيد الرمز", - "verify your number title": "تحقق من رقمك", - "Vibration": "Vibración", + "Vibration": "الاهتزاز", "Vibration feedback for all buttons": "اهتزاز لكل الأزرار", - "View Map": "View Map", + "View Map": "عرض الخريطة", "View your past transactions": "شوف عملياتك السابقة", - "VIN": "رقم الهيكل", - "VIN :": "رقم الهيكل:", - "VIN is": "رقم الهيكل:", - "VIP Order": "طلب VIP", - "Visit our website or contact Siro support for information on driver registration and requirements.": "زور موقعنا أو كلم الدعم.", "Visit Website/Contact Support": "الموقع / الدعم", - "Voice Call": "Chiamata vocale", + "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 Siro support for information on driver registration and requirements.": "زور موقعنا أو كلم الدعم.", + "Voice Call": "مكالمة صوتية", "Voice call over internet": "مكالمة صوتية عبر الإنترنت", - "wait 1 minute to receive message": "انتظر دقيقة توصلك الرسالة", - "wait 1 minute to recive message": "wait 1 minute to recive message", - "Wait for the trip to start first": "Wait for the trip to start first", + "Wait for the trip to start first": "انتظر حتى تبدأ الرحلة أولاً", + "Waiting VIP": "بانتظار VIP", "Waiting for Captin ...": "بانتظار الكابتن...", "Waiting for Driver ...": "بانتظار الكابتن...", - "Waiting for trips": "Waiting for trips", + "Waiting for trips": "بانتظار الرحلات", "Waiting for your location": "ننتظر موقعك", - "Waiting VIP": "Esperando VIP", - "Waiting...": "Waiting...", + "Waiting...": "انتظار...", "Wallet": "المحفظة", - "wallet due to a previous trip.": "billetera debido a un viaje anterior.", "Wallet is blocked": "المحفظة موقوفة", "Wallet!": "المحفظة!", - "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", - "Warning": "Warning", + "Warning": "تحذير", + "Warning: Intaleqing detected!": "Warning: Intaleqing detected!", "Warning: Siroing detected!": "تحذير: سرعة عالية!", "Warning: Speeding detected!": "تنبيه: سرعة عالية!", - "Waypoint has been set successfully": "Waypoint has been set successfully", - "We apologize 😔": "我们深表歉意 😔", - "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", + "Waypoint has been set successfully": "تم تحديد نقطة التوقف بنجاح", + "We Are Sorry That we dont have cars in your Location!": "آسفين، ما في سيارات حولك!", + "We apologize 😔": "المعذرة 😔", + "We are looking for a captain but the price may increase to let a captain accept": "نحن نبحث عن كابتن ولكن قد يزيد السعر ليقبل كابتن", "We are process picture please wait ": "نعالج الصورة، انتظر شوي", "We are search for nearst driver": "ندور أقرب كابتن", "We are searching for the nearest driver": "ندور أقرب كابتن", "We are searching for the nearest driver to you": "ندور لك أقرب كابتن", - "We Are Sorry That we dont have cars in your Location!": "آسفين، ما في سيارات حولك!", "We connect you with the nearest drivers for faster pickups and quicker journeys.": "نوصلك بأقرب كباتن عشان ما تتأخر.", "We couldn't find a valid route to this destination. Please try selecting a different point.": "ما لقينا طريق للوجهة هذي. جرب تختار نقطة ثانية.", "We have sent a verification code to your mobile number:": "طرشنا لك رمز التحقق على جوالك:", "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ما لقينا كباتن للحين. فكر تزيد السعر عشان يوافقون أسرع.", - "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 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 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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "We noticed the speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "لاحظنا أن السرعة تتجاوز 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 أرقام لإيميلك", - "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", - "We use location to get accurate and nearest passengers for you": "Usamos la ubicación para obtener pasajeros precisos y cercanos para ti", - "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "Usamos tu ubicación precisa para encontrar el conductor disponible más cercano y proporcionar información precisa de recogida y dejada. Puedes gestionar esto en Configuración.", + "We use location to get accurate and nearest driver for you": "نستخدم الموقع للحصول على السائق الأقرب والأكثر دقة لك", + "We use location to get accurate and nearest passengers for you": "نستخدم الموقع للحصول على ركاب دقيقين وقريبين لك", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "نستخدم موقعك الدقيق للعثور على أقرب سائق متاح وتوفير معلومات دقيقة للاستلام والتنزيل. يمكنك إدارة هذا في الإعدادات.", "We will look for a new driver.\\nPlease wait.": "بنشوف لك كابتن ثاني.\\nانتظر لاهنت.", - "We're here to help you 24/7": "Siamo qui per aiutarti 24/7", - "Welcome Back": "Welcome Back", + "We will look for a new driver.\nPlease wait.": "We will look for a new driver.\nPlease wait.", + "We're here to help you 24/7": "نحن هنا لمساعدتك على مدار الساعة 24/7", + "Welcome Back": "مرحباً بعودتك", "Welcome Back!": "هلا بك من جديد!", - "welcome to siro": "حياك في سيرو", + "Welcome to Intaleq!": "Welcome to Intaleq!", "Welcome to Siro!": "حياك الله في سيرو!", - "welcome user": "يا هلا، @firstName!", - "welcome_message": "أهلاً بك في سيرو!", "What are the requirements to become a driver?": "وش الشروط؟", + "What safety measures does Intaleq offer?": "What safety measures does Intaleq offer?", "What safety measures does Siro offer?": "وش إجراءات الأمان؟", "What types of vehicles are available?": "وش أنواع السيارات؟", - "WhatsApp": "WhatsApp", + "WhatsApp": "واتساب", "WhatsApp Location Extractor": "جلب الموقع من واتساب", - "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", "When": "متى", "Where are you going?": "وين رايح؟", - "Where are you, sir?": "¿Dónde estás, señor?", + "Where are you, sir?": "أين أنت، سيدي؟", "Where to": "وين الوجهة؟", "Where you want go ": "وين تبي تروح ", + "Why Choose Intaleq?": "Why Choose Intaleq?", "Why Choose Siro?": "ليش سيرو؟", - "Why do you want to cancel?": "Why do you want to cancel?", - "with license plate": "with license plate", + "Why do you want to cancel?": "لماذا تريد الإلغاء؟", + "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 Siro, you can get a ride to your destination in minutes.": "مع سيرو، توصل وجهتك بدقايق.", - "with type": "con tipo", - "witout zero": "witout zero", "Work": "الدوام", "Work & Contact": "العمل والتواصل", - "Work Saved": "Trabajo guardado", - "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work Saved": "تم حفظ العمل", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 صباحاً إلى 16:00 مساءً.\nيمكنك إرسال رسالة واتساب أو بريد إلكتروني.", "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "الدوام من 12 لـ 7.\\nأرسل واتساب أو إيميل.", - "Working Hours:": "Orario di lavoro:", - "write Color for your car": "اكتب اللون", - "write Expiration Date for your car": "اكتب تاريخ الانتهاء", - "write Make for your car": "اكتب الشركة", - "write Model for your car": "اكتب الموديل", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.", + "Working Hours:": "أوقات العمل:", "Write note": "اكتب ملاحظة", - "write vin for your car": "اكتب رقم الهيكل", - "write Year for your car": "اكتب السنة", - "Wrong pickup location": "上车地点错误", + "Wrong pickup location": "موقع ركوب خاطئ", "Year": "السنة", - "year :": "السنة:", "Year is": "السنة:", - "Yes": "Yes", - "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "是的,您可以在特定条件下(例如分配司机前)取消行程。详情请参阅 Siro 取消政策。", + "Yes": "نعم", + "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 Siro 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 are Delete": "أنت بتحذف", - "You are not in near to passenger location": "أنت بعيد عن الراكب", - "You are Stopped": "أنت موقوف", "You Are Stopped For this Day !": "توقفت اليوم!", - "You can buy points from your budget": "تقدر تشتري نقاط من رصيدك", + "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي وتأخذ حقك من", + "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي إذا تأخر الكابتن", + "You Dont Have Any amount in": "ما عندك رصيد في", + "You Dont Have Any places yet !": "ما عندك أماكن!", + "You Have": "عندك", + "You Have Tips": "عندك إكرامية", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "رفضت 3 مشاوير اليوم.\\nنشوفك بكره!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!", + "You Should be select reason.": "لازم تختار سبب.", + "You Should choose rate figure": "لازم تختار تقييم", + "You are Delete": "أنت بتحذف", + "You are Stopped": "أنت موقوف", + "You are not in near to passenger location": "أنت بعيد عن الراكب", "You can buy Points to let you online\\nby this list below": "اشتر نقاط عشان تكون متصل\\nمن القائمة", + "You can buy Points to let you online\nby this list below": "You can buy Points to let you online\nby this list below", + "You can buy points from your budget": "تقدر تشتري نقاط من رصيدك", "You can call or record audio during this trip.": "تقدر تتصل أو تسجل صوت خلال المشوار.", "You can call or record audio of this trip": "تقدر تتصل أو تسجل صوت", - "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي إذا تأخر الكابتن", "You can cancel Ride now": "تقدر تلغي الحين", "You can cancel trip": "تقدر تكنسل", - "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي وتأخذ حقك من", "You can change the Country to get all features": "غير الدولة عشان كل الميزات", - "You can change the destination by long-pressing any point on the map": "Puedes cambiar el destino manteniendo presionado cualquier punto en el mapa", + "You can change the destination by long-pressing any point on the map": "يمكنك تغيير الوجهة بالضغط المطول على أي نقطة على الخريطة", "You can change the language of the app": "تغيير اللغة", "You can change the vibration feedback for all buttons": "تقدر تغير اهتزاز الأزرار", "You can claim your gift once they complete 2 trips.": "تقدر تأخذ الهدية إذا كملوا مشوارين.", "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "عن طريق الشات في التطبيق.", - "You can contact us during working hours from 10:00 - 16:00.": "Puede contactarnos durante el horario laboral de 10:00 a 16:00.", + "You can contact us during working hours from 10:00 - 16:00.": "يمكنك الاتصال بنا خلال ساعات العمل من 10:00 إلى 16:00.", "You can contact us during working hours from 12:00 - 19:00.": "كلمناه من 12 لـ 7.", "You can decline a request without any cost": "تقدر ترفض بدون تكلفة", - "You can only use one device at a time. This device will now be set as your active device.": "Solo puedes usar un dispositivo a la vez. Este dispositivo se establecerá ahora como tu dispositivo activo.", + "You can only use one device at a time. This device will now be set as your active device.": "يمكنك استخدام جهاز واحد فقط في كل مرة. سيتم الآن تعيين هذا الجهاز كجهازك النشط.", "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "ادفع كاش أو بطاقة.", "You can resend in": "تقدر تعيد الإرسال بعد", + "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 Siro 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 upgrade price to may driver accept your order": "يمكنك رفع السعر ليقبل السائق طلبك", "You can't continue with us .\\nYou should renew Driver license": "ما تقدر تكمل معنا.\\nلازم تجدد الرخصة", - "you canceled order": "cancelaste el pedido", - "You canceled VIP trip": "Cancelaste el viaje VIP", + "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": "لقد ألغيت رحلة VIP", "You deserve the gift": "تستاهل الهدية", "You dont Add Emergency Phone Yet!": "ما ضفت رقم طوارئ!", - "You Dont Have Any amount in": "ما عندك رصيد في", - "You Dont Have Any places yet !": "ما عندك أماكن!", "You dont have Points": "ما عندك نقاط", - "you gain": "كسبت", - "You Have": "عندك", - "you have a negative balance of": "tienes un saldo negativo de", "You have already received your gift for inviting": "قد استلمت هديتك على هالدعوة", "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", "You have already used this promo code.": "استخدمت هالكود من قبل.", - "You have been successfully referred!": "You have been successfully referred!", + "You have been successfully referred!": "تمت إحالتك بنجاح!", "You have call from driver": "عندك اتصال من الكابتن", "You have copied the promo code.": "نسخت كود الخصم.", "You have earned 20": "كسبت 20", @@ -1578,64 +1416,297 @@ final Map ar_jo = { "You have got a gift for invitation": "جتك هدية عشان الدعوة", "You have in account": "عندك بالحساب", "You have promo!": "عندك خصم!", - "You Have Tips": "عندك إكرامية", - "You must be charge your Account": "لازم تشحن حسابك", - "you must insert token code": "you must insert token code", - "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق لتغيير اللغة.", "You must Verify email !.": "لازم تأكد الإيميل!", - "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "رفضت 3 مشاوير اليوم.\\nنشوفك بكره!", - "You Should be select reason.": "لازم تختار سبب.", - "You Should choose rate figure": "لازم تختار تقييم", + "You must be charge your Account": "لازم تشحن حسابك", + "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق لتغيير اللغة.", "You should have upload it .": "لازم ترفعها طال عمرك.", - "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", - "You should restart app to change language": "Debes reiniciar la aplicación para cambiar el idioma", + "You should ideintify your gender for this type of trip!": "يجب تحديد جنسك لهذا النوع من الرحلات!", + "You should restart app to change language": "يجب عليك إعادة تشغيل التطبيق لتغيير اللغة", "You should select one": "لازم تختار واحد", "You should select your country": "اختر دولتك", "You trip distance is": "مسافة المشوار:", "You will arrive to your destination after ": "بتوصل بعد ", "You will arrive to your destination after timer end.": "بتوصل بعد انتهاء المؤقت.", - "You will be charged for the cost of the driver coming to your location.": "Se te cobrará el costo del conductor que viene a tu ubicación.", + "You will be charged for the cost of the driver coming to your location.": "سيتم محاسبتك على تكلفة وصول السائق إلى موقعك.", "You will be pay the cost to driver or we will get it from you on next trip": "بتدفع للكابتن أو نأخذها منك المشوار الجاي", "You will be thier in": "بتوصل خلال", "You will choose allow all the time to be ready receive orders": "اختر 'السماح طوال الوقت' لاستقبال الطلبات", "You will choose one of above !": "اختر واحد من اللي فوق!", - "You will choose one of above!": "You will choose one of above!", + "You will choose one of above!": "ستختار واحداً مما سبق!", "You will get cost of your work for this trip": "بتاخذ حق مشوارك", - "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 receive a code in SMS message": "بيجيك كود برسالة نصية", "You will receive a code in WhatsApp Messenger": "بيجيك كود ع الواتساب", "You will recieve code in sms message": "بيجيك كود في رسالة", "Your Account is Deleted": "انحذف حسابك", - "Your are far from passenger location": "أنت بعيد عن الراكب", "Your Budget less than needed": "رصيدك أقل من المطلوب", "Your Choice, Our Priority": "اختيارك يهمنا", - "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your Journey Begins Here": "رحلتك تبدأ من هنا", + "Your QR Code": "رمز QR الخاص بك", + "Your Rewards": "مكافآتك", + "Your Ride Duration is ": "مدة المشوار: ", + "Your Wallet balance is ": "رصيدك بالمحفظة: ", + "Your are far from passenger location": "أنت بعيد عن الراكب", + "Your complaint has been submitted.": "تم تقديم شكواك.", "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "بتمسح بياناتك بعد أسبوعين\\nوما تقدر ترجع بعد شهر", - "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", - "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", - "Your email address": "Tu dirección de correo electrónico", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "سيتم مسح بياناتك بعد أسبوعين\nو لن تتمكن من العودة لاستخدام التطبيق بعد شهر", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ", + "Your device appears to be compromised. The app will now close.": "يبدو أن جهازك مخترق. سيتم الآن إغلاق التطبيق.", + "Your email address": "عنوان بريدك الإلكتروني", "Your fee is ": "أجرتك: ", "Your invite code was successfully applied!": "تم تطبيق كود الدعوة!", - "Your Journey Begins Here": "Tu viaje comienza aquí", "Your journey starts here": "مشوارك يبدأ هنا", "Your name": "اسمك", "Your order is being prepared": "طلبك يتجهز", "Your order sent to drivers": "أرسلنا طلبك للكباتن", - "Your password": "Tu contraseña", + "Your password": "كلمة المرور الخاصة بك", "Your past trips will appear here.": "مشاويرك السابقة بتطلع هنا.", - "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment is being processed and your wallet will be updated shortly.": "يتم معالجة دفعتك وسيتم تحديث محفظتك قريباً.", "Your personal invitation code is:": "كود الدعوة حقك:", - "Your QR Code": "Your QR Code", - "Your Rewards": "Your Rewards", - "Your Ride Duration is ": "مدة المشوار: ", - "your ride is Accepted": "مشوارك انقبل", - "your ride is applied": "انطلب مشوارك", "Your trip cost is": "تكلفة مشوارك:", "Your trip distance is": "مسافة مشوارك:", - "Your trip is scheduled": "Tu viaje está programado", - "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", - "Your Wallet balance is ": "رصيدك بالمحفظة: ", + "Your trip is scheduled": "رحلتك مجدولة", + "Your valuable feedback helps us improve our service quality.": "تعليقاتك القيمة تساعدنا في تحسين جودة خدمتنا.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'أكمل", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'تم الحفظ بنجاح", + "\${'Age": "\${'العمر", + "\${'Balance:": "\${'الرصيد:", + "\${'Car": "\${'السيارة", + "\${'Car Plate is ": "\${'لوحة السيارة هي ", + "\${'Claim your 20 LE gift for inviting": "\${'احصل على هدية بقيمة 20 جنيه لدعوة", + "\${'Code": "\${'الرمز", + "\${'Color": "\${'اللون", + "\${'Color is ": "\${'اللون هو ", + "\${'Cost Duration": "\${'تكلفة المدة", + "\${'DISCOUNT": "\${'خصم", + "\${'Date of Birth is": "\${'تاريخ الميلاد هو", + "\${'Distance is": "\${'المسافة هي", + "\${'Duration is": "\${'المدة هي", + "\${'Email is": "\${'البريد الإلكتروني هو", + "\${'Expiration Date ": "\${'تاريخ انتهاء الصلاحية ", + "\${'Fee is": "\${'الرسوم هي", + "\${'How was your trip with": "\${'كيف كانت رحلتك مع", + "\${'Keep it up!": "\${'استمر في ذلك!", + "\${'Make is ": "\${'الماركة هي ", + "\${'Model is": "\${'الموديل هو", + "\${'Negative Balance:": "\${'رصيد سالب:", + "\${'Pay": "\${'دفع", + "\${'Phone Number is": "\${'رقم الهاتف هو", + "\${'Plate": "\${'اللوحة", + "\${'Please enter": "\${'الرجاء إدخال", + "\${'Rides": "\${'الرحلات", + "\${'Selected Date and Time": "\${'التاريخ والوقت المحددين", + "\${'Selected driver": "\${'السائق المحدد", + "\${'Sex is ": "\${'الجنس هو ", + "\${'Showing": "\${'عرض", + "\${'Stop": "\${'توقف", + "\${'Tip is": "\${'الإكرامية هي ", + "\${'Tip is ": "\${'الإكرامية هي ", + "\${'Total price to ": "\${'السعر الإجمالي إلى ", + "\${'Update": "\${'تحديث", + "\${'VIN is": "\${'رقم الهيكل (VIN) هو", + "\${'Valid Until:": "\${'صالح لغاية:", + "\${'We have sent a verification code to your mobile number:": "\${'لقد أرسلنا رمز التحقق إلى رقم هاتفك:", + "\${'Where to": "\${'إلى أين", + "\${'Year is": "\${'السنة هي", + "\${'You are Delete": "\${'لقد قمت بحذف", + "\${'You can resend in": "\${'يمكنك إعادة الإرسال خلال", + "\${'You have a balance of": "\${'لديك رصيد بقيمة", + "\${'You have a negative balance of": "\${'لديك رصيد سالب بقيمة", + "\${'You have call from Passenger": "\${'لديك مكالمة من الراكب", + "\${'You have call from driver": "\${'لديك مكالمة من السائق", + "\${'You will be thier in": "\${'ستكون هناك خلال", + "\${'Your Ride Duration is ": "\${'مدة رحلتك هي ", + "\${'Your fee is ": "\${'رسومك هي ", + "\${'Your trip distance is": "\${'مسافة رحلتك هي", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\$\${' tips\nTotal is", + "\${'you have a negative balance of": "\${'لديك رصيد سالب بقيمة", + "\${'you will pay to Driver": "\${'ستدفع للسائق", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} رصيد", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'رصيد", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'كم", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'رحلات", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'تقييمات", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'دقيقة", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'تم الحفظ بنجاح", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nونهتم بالأسعار تكون مناسبة.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "accepted": "مقبولة", + "accepted your order at price": "تم قبول طلبك بالسعر", + "addHome' ? 'Add Home": "addHome' ? 'إضافة المنزل", + "addWork' ? 'Add Work": "addWork' ? 'إضافة العمل", + "agreement subtitle": "للمتابعة، وافق على الشروط والخصوصية.", + "airport": "المطار", + "an error occurred": "صار خطأ غير متوقع: @error", + "and I have a trip on": "وعندي مشوار على", + "and acknowledge our": "وتقر بـ", + "and acknowledge our Privacy Policy.": "وأوافق على سياسة الخصوصية الخاصة بنا.", + "and acknowledge the": "وأوافق على", + "app_description": "سيرو تطبيق آمن وموثوق.", + "arrival time to reach your point": "وقت الوصول لنقطتك", + "as the driver.": "كسائق.", + "before": "قبل", + "begin": "بدء", + "by": "بواسطة", + "cancelled": "ملغي", + "carType'] ?? 'Car": "carType'] ?? 'سيارة", + "change device": "تغيير الجهاز", + "committed_to_safety": "نهتم بسلامتك.", + "complete profile subtitle": "كمل بياناتك عشان تبدأ", + "complete registration button": "إتمام التسجيل", + "complete, you can claim your gift": "اكتمل، اطلب هديتك", + "contacts. Others were hidden because they don't have a phone number.": "جهة اتصال. الباقي مخفي عشان ما عندهم أرقام.", + "contacts. Others were hidden because they don\\'t have a phone number.": "جهات الاتصال. تم إخفاء الآخرين لأنهم لا يملكون رقم هاتف.", + "copied to clipboard": "تم النسخ إلى الحافظة", + "created time": "وقت الإنشاء", + "deleted": "تم الحذف", + "distance is": "المسافة هي", + "driverName'] ?? 'Captain": "driverName'] ?? 'الكابتن", + "driver_license": "رخصة_قيادة", + "due to a previous trip.": "بسبب رحلة سابقة.", + "duration is": "المدة:", + "e.g. 0912345678": "مثال: 0912345678", + "email optional label": "الإيميل (اختياري)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'مرحباً", + "endName'] ?? 'Destination": "endName'] ?? 'الوجهة", + "enter otp validation": "دخل الكود (5 أرقام)", + "face detect": "التحقق من الوجه", + "failed to send otp": "فشل إرسال الرمز.", + "first name label": "الاسم الأول", + "first name required": "الاسم الأول مطلوب", + "for": "لـ", + "for your first registration!": "لتسجيلك الأول!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 3:00", + "from 23:59 till 05:30": "من 11:59 م لـ 5:30 ص", + "from 3 times Take Attention": "من 3 مرات، انتبه", + "from your favorites": "من مفضلاتك", + "from your list": "من قائمتك", + "get_a_ride": "مع سيرو، الموتر يجيك بدقايق.", + "get_to_destination": "وصل وجهتك بسرعة.", + "go to your passenger location before\\nPassenger cancel trip": "رح لموقع الراكب قبل يكنسل", + "go to your passenger location before\nPassenger cancel trip": "go to your passenger location before\nPassenger cancel trip", + "has completed": "كمل", + "hour": "ساعة", + "i agree": "موافق", + "if you don't have account": "ما عندك حساب", + "if you dont have account": "إذا ما عندك حساب", + "if you want help you can email us here": "تبي مساعدة؟ راسلنا", + "image verified": "الصورة تمام", + "in your": "في", + "insert amount": "دخل المبلغ", + "insert sos phone": "أدخل رقم الطوارئ", + "is calling you": "عم يتصل فيك", + "is driving a": "يقود", + "is driving a ": "يسوق ", + "is reviewing your order. They may need more information or a higher price.": "يقوم بمراجعة طلبك. قد يحتاجون إلى مزيد من المعلومات أو سعر أعلى.", + "joined": "انضم", + "label': 'Dark Mode": "label': 'الوضع الداكن", + "label': 'Light Mode": "label': 'الوضع الفاتح", + "label': 'System Default": "label': 'افتراضي النظام", + "last name label": "اسم العائلة", + "last name required": "اسم العائلة مطلوب", + "login or register subtitle": "دخل رقم جوالك للدخول أو التسجيل", + "m": "د", + "message From Driver": "رسالة من الكابتن", + "message From passenger": "رسالة من الراكب", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'حدث خطأ غير معروف في الخادم", + "message'] ?? 'Claim failed": "message'] ?? 'فشل الاستلام", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'فشل في إنشاء الفاتورة", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'كود خصم غير صالح", + "min": "دقيقة", + "min added to fare": "دقائق مضافة إلى الأجرة", + "model :": "الموديل:", + "my location": "موقعي", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'موقع غير معروف", + "not similar": "غير مطابق", + "of": "من", + "one last step title": "خطوة أخيرة", + "otp sent subtitle": "أرسلنا كود من 5 أرقام على\\n@phoneNumber", + "otp sent success": "تم إرسال الرمز للواتساب.", + "otp verification failed": "رمز التحقق غلط.", + "passenger agreement": "اتفاقية الراكب", + "pending": "قيد الانتظار", + "phone not verified": "الهاتف غير مؤكد", + "phone number label": "رقم الجوال", + "phone number required": "مطلوب رقم الجوال", + "please go to picker location exactly": "رح لموقع الركوب بالضبط", + "please order now": "اطلب الحين", + "please wait till driver accept your order": "انتظر الكابتن يقبل", + "price is": "السعر:", + "privacy policy": "سياسة الخصوصية.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'الملف الشخصي", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "فشل التسجيل.", + "reject your order.": "رفض طلبك.", + "rejected": "مرفوض", + "remaining": "المتبقي", + "reviews": "تقييم", + "rides": "الرحلات", + "safe_and_comfortable": "استمتع بمشوار آمن.", + "seconds": "ثانية", + "security_warning": "تحذير أمني", + "send otp button": "أرسل كود التحقق", + "server error try again": "خطأ في السيرفر، حاول مرة ثانية.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'مشاركة التطبيق", + "similar": "مطابق", + "startName'] ?? 'Start Point": "startName'] ?? 'نقطة الانطلاق", + "terms of use": "شروط الاستخدام", + "the 300 points equal 300 L.E": "300 نقطة بـ 300 ر.س", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 نقطة تساوي 300 ر.س لك\\nرح اكسب فلوسك", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "the 300 points equal 300 L.E for you \nSo go and gain your money", + "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 ر.س", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "الـ 500 نقطة بـ 30 ر.س لك\\nروح اكسب فلوسك", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "the 500 points equal 30 JOD for you \nSo go and gain your money", + "this will delete all files from your device": "بيمسح كل الملفات من جهازك", + "to arrive you.": "للوصول إليك.", + "token change": "تغيير الرمز", + "token updated": "تحدث الرمز", + "trips": "مشاوير", + "type here": "اكتب هنا", + "unknown": "غير معروف", + "upgrade price": "رفع السعر", + "verify and continue button": "تحقق وكمال", + "verify your number title": "تحقق من رقمك", + "wait 1 minute to receive message": "انتظر دقيقة توصلك الرسالة", + "wait 1 minute to recive message": "انتظر دقيقة واحدة لتلقي الرسالة", + "wallet due to a previous trip.": "محفظة بسبب رحلة سابقة.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'المحفظة", + "welcome to intaleq": "welcome to intaleq", + "welcome to siro": "حياك في سيرو", + "welcome user": "يا هلا، @firstName!", + "welcome_message": "أهلاً بك في سيرو!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'مرحباً", + "with license plate": "مع لوحة الترخيص", + "with type": "مع النوع", + "witout zero": "بدون صفر", + "write Color for your car": "اكتب اللون", + "write Expiration Date for your car": "اكتب تاريخ الانتهاء", + "write Make for your car": "اكتب الشركة", + "write Model for your car": "اكتب الموديل", + "write Year for your car": "اكتب السنة", + "write vin for your car": "اكتب رقم الهيكل", + "year :": "السنة:", + "you canceled order": "لقد ألغيت الطلب", + "you gain": "كسبت", + "you have a negative balance of": "لديك رصيد سلبي بقيمة", + "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 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 Siro Wallet": "بتدفع حق وقت الكابتن، شوف محفظتك في سيرو", + "your ride is Accepted": "مشوارك انقبل", + "your ride is applied": "انطلب مشوارك", "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", "ُExpire Date": "تاريخ الانتهاء", "⚠️ You need to choose an amount!": "⚠️ لازم تختار مبلغ!", diff --git a/siro_rider/lib/controller/local/ar_sy.dart b/siro_rider/lib/controller/local/ar_sy.dart index 49e857c..587df88 100644 --- a/siro_rider/lib/controller/local/ar_sy.dart +++ b/siro_rider/lib/controller/local/ar_sy.dart @@ -1,151 +1,74 @@ final Map ar_sy = { - " \$index": " \$index", - " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", - " and acknowledge our Privacy Policy.": " وتقر بسياسة الخصوصية.", - " and acknowledge the ": " y reconozco los ", - " as the driver.": " ككابتن.", " I am currently located at ": " أنا حالياً في ", " I am using": " أنا استخدم", " If you need to reach me, please contact the driver directly at": " إذا بغيتني، كلم الكابتن على", - " in your": " in your", - " in your wallet": " بمحفظتك", - " is ON for this month": " متصل هالشهر", - " joined": " joined", " KM": " كم", " Minutes": " دقائق", " Next as Cash !": " التالي كاش!", - " tips\\nTotal is": " إكرامية\\nالمجموع", - " to arrive you.": " عشان يوصلك.", - " to ride with": " عشان اركب مع", - " wallet due to a previous trip.": " wallet due to a previous trip.", - " with license plate ": " لوحتها ", " You Earn today is ": " دخلك اليوم: ", " You Have in": " عندك في", - "\"": "\"", - "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", - "\$countPoint \${'LE": "\$countPoint \${'LE", - "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", - "\$firstName \$lastName": "\$firstName \$lastName", - "\$passengerName \${'has completed": "\$passengerName \${'has completed", - "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", - "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", - "\${\"Car Color:": "\${\"Car Color:", - "\${\"Where you want go ": "\${\"Where you want go ", - "\${\"Working Hours:": "\${\"Working Hours:", - "\${'\${'Hi! This is": "\${'\${'Hi! This is", - "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", - "\${'Age": "\${'Age", - "\${'Balance:": "\${'Balance:", - "\${'Car": "\${'Car", - "\${'Car Plate is ": "\${'Car Plate is ", - "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", - "\${'Code": "\${'Code", - "\${'Color": "\${'Color", - "\${'Color is ": "\${'Color is ", - "\${'Cost Duration": "\${'Cost Duration", - "\${'Date of Birth is": "\${'Date of Birth is", - "\${'DISCOUNT": "\${'DISCOUNT", - "\${'Distance is": "\${'Distance is", - "\${'Duration is": "\${'Duration is", - "\${'Email is": "\${'Email is", - "\${'Expiration Date ": "\${'Expiration Date ", - "\${'Fee is": "\${'Fee is", - "\${'How was your trip with": "\${'How was your trip with", - "\${'Keep it up!": "\${'Keep it up!", - "\${'Make is ": "\${'Make is ", - "\${'Model is": "\${'Model is", - "\${'Negative Balance:": "\${'Negative Balance:", - "\${'Pay": "\${'Pay", - "\${'Phone Number is": "\${'Phone Number is", - "\${'Plate": "\${'Plate", - "\${'Please enter": "\${'Please enter", - "\${'Rides": "\${'Rides", - "\${'Selected Date and Time": "\${'Selected Date and Time", - "\${'Selected driver": "\${'Selected driver", - "\${'Sex is ": "\${'Sex is ", - "\${'Showing": "\${'Showing", - "\${'Stop": "\${'Stop", - "\${'Tip is": "\${'Tip is", - "\${'Tip is ": "\${'Tip is ", - "\${'Total price to ": "\${'Total price to ", - "\${'Update": "\${'Update", - "\${'Valid Until:": "\${'Valid Until:", - "\${'VIN is": "\${'VIN is", - "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", - "\${'Where to": "\${'Where to", - "\${'Year is": "\${'Year is", - "\${'You are Delete": "\${'You are Delete", - "\${'You can resend in": "\${'You can resend in", - "\${'You have a balance of": "\${'You have a balance of", - "\${'You have a negative balance of": "\${'You have a negative balance of", - "\${'you have a negative balance of": "\${'you have a negative balance of", - "\${'You have call from driver": "\${'You have call from driver", - "\${'You have call from Passenger": "\${'You have call from Passenger", - "\${'You will be thier in": "\${'You will be thier in", - "\${'you will pay to Driver": "\${'you will pay to Driver", - "\${'Your fee is ": "\${'Your fee is ", - "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", - "\${'Your trip distance is": "\${'Your trip distance is", - "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", - "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", - "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", - "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", - "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", - "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", - "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", - "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", - "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " وتقر بسياسة الخصوصية.", + " and acknowledge the ": " وتقر بـ ", + " as the driver.": " ككابتن.", + " in your": " في محفظتك", + " in your wallet": " بمحفظتك", + " is ON for this month": " متصل هالشهر", + " joined": " انضم", + " tips\\nTotal is": " إكرامية\\nالمجموع", + " tips\nTotal is": " tips\nTotal is", + " to arrive you.": " عشان يوصلك.", + " to ride with": " عشان اركب مع", + " wallet due to a previous trip.": " المحفظة بسبب رحلة سابقة.", + " with license plate ": " لوحتها ", "--": "--", - ". I am at least 18 years old.": ". Tengo al menos 18 años.", - "0.05 \${'JOD": "0.05 \${'JOD", - "0.47 \${'JOD": "0.47 \${'JOD", - "1 \${'JOD": "1 \${'JOD", - "1 \${'LE": "1 \${'LE", - "1 Passenger": "1 Passenger", + ". I am at least 18 years old.": ". عمري 18 سنة أو أكثر.", + "0.05 \${'JOD": "0.05 \${'د.أ", + "0.47 \${'JOD": "0.47 \${'د.أ", + "1 Passenger": "راكب واحد", + "1 \${'JOD": "1 \${'د.أ", + "1 \${'LE": "1 \${'ل.م", "1. Describe Your Issue": "١. وش المشكلة؟", "10 and get 4% discount": "10 وخذ خصم 4%", "100 and get 11% discount": "100 وخذ خصم 11%", - "10000 \${'LE": "10000 \${'LE", - "100000 \${'LE": "100000 \${'LE", - "15 \${'LE": "15 \${'LE", - "15000 \${'LE": "15000 \${'LE", - "2 Passengers": "2 Passengers", + "10000 \${'LE": "10000 \${'جنيه", + "100000 \${'LE": "100000 \${'جنيه", + "15 \${'LE": "15 \${'ل.م", + "15000 \${'LE": "15000 \${'ل.م", + "2 Passengers": "راكبان", "2. Attach Recorded Audio": "٢. أرفق تسجيل صوتي", - "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", - "20 \${'LE": "20 \${'LE", + "2. Attach Recorded Audio (Optional)": "2. أرفق التسجيل الصوتي (اختياري)", + "20 \${'LE": "20 \${'ل.م", "20 and get 6% discount": "20 وخذ خصم 6%", - "200 \${'JOD": "200 \${'JOD", - "20000 \${'LE": "20000 \${'LE", + "200 \${'JOD": "200 \${'د.أ", + "20000 \${'LE": "20000 \${'جنيه", + "3 Passengers": "٣ ركاب", "3 digit": "3 أرقام", - "3 Passengers": "3 Passengers", "3. Review Details & Response": "٣. مراجعة التفاصيل والرد", "3000 LE": "3000 ر.س", - "4 Passengers": "4 Passengers", + "4 Passengers": "٤ ركاب", "40 and get 8% discount": "40 وخذ خصم 8%", - "40000 \${'LE": "40000 \${'LE", + "40000 \${'LE": "40000 \${'جنيه", "5 digit": "5 أرقام", - "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nونهتم بالأسعار تكون مناسبة.", - "A new version of the app is available. Please update to the latest version.": "Hay una nueva versión de la aplicación disponible. Por favor, actualiza a la última versión.", + "A new version of the app is available. Please update to the latest version.": "يتوفر إصدار جديد من التطبيق. يرجى التحديث إلى أحدث إصدار.", "A trip with a prior reservation, allowing you to choose the best captains and cars.": "مشوار بحجز مسبق، يمديك تختار أفضل الكباتن والسيارات.", - "About Siro": "Informazioni su Siro", + "AI Page": "صفحة الذكاء الاصطناعي", + "About Intaleq": "About Intaleq", + "About Siro": "عن سيرو", "About Us": "من نحن", "Accept": "قبول", "Accept Order": "قبول الطلب", "Accept Ride's Terms & Review Privacy Notice": "الموافقة على الشروط", - "accepted": "aceptado", "Accepted Ride": "المشوار مقبول", - "Accepted your order": "Tu pedido ha sido aceptado", - "accepted your order at price": "aceptó tu pedido al precio de", - "Account": "Account", - "Actions": "Actions", + "Accepted your order": "قبل طلبك", + "Account": "الحساب", + "Actions": "إجراءات", "Active Duration:": "المدة الفعلية:", - "Active Users": "Active Users", - "Add a new waypoint stop": "Add a new waypoint stop", - "Add a Stop": "Add a Stop", + "Active Users": "المستخدمين النشطين", "Add Card": "إضافة بطاقة", "Add Credit Card": "إضافة بطاقة ائتمان", - "Add funds using our secure methods": "ضيف رصيد بطرق آمنة", "Add Home": "إضافة البيت", "Add Location": "إضافة موقع", "Add Location 1": "إضافة موقع 1", @@ -155,79 +78,71 @@ final Map ar_sy = { "Add Payment Method": "إضافة طريقة دفع", "Add Phone": "إضافة رقم", "Add Promo": "ضيف خصم", - "Add SOS Phone": "Añadir teléfono SOS", + "Add SOS Phone": "أضف رقم طوارئ", "Add Stops": "إضافة وقفات", - "Add wallet phone you use": "Añade el teléfono de la billetera que usas", - "Add Work": "Añadir trabajo", - "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "Add Work": "أضف العمل", + "Add a Stop": "أضف محطة", + "Add a new waypoint stop": "إضافة نقطة توقف جديدة", + "Add funds using our secure methods": "ضيف رصيد بطرق آمنة", + "Add wallet phone you use": "أضف رقم المحفظة اللي عم تستخدمه", "Address": "العنوان", "Address: ": "العنوان:", - "addWork' ? 'Add Work": "addWork' ? 'Add Work", "Admin DashBoard": "لوحة التحكم", - "Advanced Tools": "Advanced Tools", + "Advanced Tools": "أدوات متقدمة", "Affordable for Everyone": "أسعار تناسب الكل", "After this period\\nYou can't cancel!": "بعد هالوقت\\nما تقدر تلغي!", - "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", - "Age is": "Age is", + "After this period\\nYou can\\'t cancel!": "بعد هذه الفترة\nلا يمكنك الإلغاء!", + "After this period\nYou can't cancel!": "After this period\nYou can't cancel!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "العمر هو", "Age is ": "العمر: ", - "Age is ": "Age is ", - "agreement subtitle": "للمتابعة، وافق على الشروط والخصوصية.", - "AI Page": "صفحة الذكاء الاصطناعي", - "airport": "aeropuerto", - "Alert": "Alert", + "Age is ": "العمر هو ", + "Alert": "تنبيه", "Alerts": "تنبيهات", - "Align QR Code within the frame": "Align QR Code within the frame", + "Align QR Code within the frame": "قم بمحاذاة رمز QR داخل الإطار", "Allow Location Access": "السماح بالوصول للموقع", "Already have an account? Login": "هل لديك حساب بالفعل؟ تسجيل الدخول", - "An error occurred": "An error occurred", - "an error occurred": "صار خطأ غير متوقع: @error", + "An OTP has been sent to your number.": "تم إرسال رمز التحقق لرقمك.", + "An error occurred": "حدث خطأ", "An error occurred during the payment process.": "خطأ في الدفع.", "An error occurred while picking contacts:": "صار خطأ وحنا نختار الأسماء:", "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", - "An OTP has been sent to your number.": "An OTP has been sent to your number.", "An unexpected error occurred. Please try again.": "صار خطأ غير متوقع. حاول مرة ثانية.", - "and acknowledge our": "وتقر بـ", - "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", - "and acknowledge the": "y reconozco el", - "and I have a trip on": "وعندي مشوار على", - "App Tester Login": "App Tester Login", + "App Tester Login": "تسجيل دخول مختبر التطبيق", "App with Passenger": "التطبيق مع الراكب", - "app_description": "سيرو تطبيق آمن وموثوق.", - "Appearance": "Appearance", + "Appearance": "المظهر", "Applied": "تم التقديم", - "Apply": "Aplicar", + "Apply": "تطبيق", "Apply Order": "قبول الطلب", - "Apply Promo Code": "Aplicar código de promoción", + "Apply Promo Code": "طبّق كود الخصم", "Approaching your area. Should be there in 3 minutes.": "قربت منك. 3 دقايق وأكون عندك.", + "Are You sure to ride to": "متأكد تبي تروح لـ", + "Are you Sure to LogOut?": "بتسجل خروج؟", "Are you sure to cancel?": "متأكد تبي تلغي؟", "Are you sure to delete recorded files": "متأكد تبي تحذف الملفات؟", "Are you sure to delete this location?": "متأكد تبي تحذف هالموقع؟", "Are you sure to delete your account?": "متأكد تبي تحذف حسابك؟", - "Are you Sure to LogOut?": "بتسجل خروج؟", - "Are You sure to ride to": "متأكد تبي تروح لـ", - "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", - "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure you want to delete this file?": "هل أنت متأكد من رغبتك في حذف هذا الملف؟", + "Are you sure you want to logout?": "متأكد إنك بدك تطلع من الحساب؟", "Are you sure? This action cannot be undone.": "متأكد؟ ما تقدر تتراجع بعدين.", - "Are you want to change": "¿Quieres cambiar?", + "Are you want to change": "بدك تغير", "Are you want to go this site": "تبي تروح هالمكان؟", "Are you want to go to this site": "تبي تروح هنا؟", "Are you want to wait drivers to accept your order": "تبي تنتظر الكباتن؟", "Arrival time": "وقت الوصول", - "arrival time to reach your point": "وقت الوصول لنقطتك", - "Arrived": "Arrived", - "as the driver.": "as the driver.", + "Arrived": "وصل", "Associate Degree": "دبلوم", "Attach this audio file?": "ترفق هالملف الصوتي؟", - "Attention": "Atención", - "Audio file not attached": "Archivo de audio no adjunto", - "Audio Recording": "Audio Recording", + "Attention": "انتباه", + "Audio Recording": "تسجيل صوتي", + "Audio file not attached": "لا يوجد ملف صوتي مرفق", "Audio uploaded successfully.": "تم رفع الصوت.", "Available for rides": "متاح للمشاوير", "Average of Hours of": "معدل الساعات", - "Awaiting response...": "Esperando respuesta...", + "Awaiting response...": "عم نستنى الرد...", "Awfar Car": "سيارة توفير", "Bachelor's Degree": "بكالوريوس", - "Back": "Atrás", + "Back": "رجوع", "Bahrain": "البحرين", "Balance": "الرصيد", "Balance limit exceeded": "تجاوزت حد الرصيد", @@ -235,36 +150,38 @@ final Map ar_sy = { "Balance:": "الرصيد:", "Be Slowly": "على مهلك", "Be sure for take accurate images please\\nYou have": "تأكد إن الصورة واضحة\\nعندك", + "Be sure for take accurate images please\nYou have": "Be sure for take accurate images please\nYou have", "Be sure to use it quickly! This code expires at": "استعجل عليه! الكود ينتهي في", "Because we are near, you have the flexibility to choose the ride that works best for you.": "لك الحرية في الاختيار.", - "before": "قبل", "Before we start, please review our terms.": "قبل نبدأ، راجع شروطنا لاهنت.", - "begin": "begin", - "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Mejor opción para un coche cómodo con una ruta flexible y puntos de parada. Este aeropuerto ofrece entrada con visa a este precio.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "أحسن خيار لسيارة مريحة بطريق مرن ومحطات توقف. هذا المطار بيوفر تأشيرة دخول بهالسعر.", "Best choice for cities": "أفضل خيار للمدن", "Best choice for comfort car and flexible route and stops point": "أفضل خيار لسيارة مريحة ومسار مرن", "Birth Date": "تاريخ الميلاد", - "Bonus gift": "Regalo de bonificación", + "Bonus gift": "هدية بونص", "BookingFee": "رسوم الحجز", "Bottom Bar Example": "مثال الشريط السفلي", "But you have a negative salary of": "بس عليك سالب بقيمة", - "by": "por", "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "باختيار 'أوافق'، أقر بأني قريت الشروط وعمري 18 وفوق.", - "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "Al seleccionar \\\"Acepto\\\" a continuación, confirmo que he leído y acepto los", - "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "Al seleccionar \\\"Acepto\\\" a continuación, confirmo que he leído y acepto los ", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "باختيار \"أوافق\" أدناه، أؤكد أنني قرأت وأوافق على ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "باختيار \"أوافق\" أدناه، أؤكد أنني قرأت وأوافق على ", "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "باختيار \\\"أوافق\\\"، أكون وافقت على الشروط و ", - "Call": "Call", + "CODE": "الكود", + "Call": "اتصل", "Call Connected": "تم فتح الاتصال", "Call End": "انتهاء المكالمة", - "Call Ended": "Call Ended", + "Call Ended": "انتهت المكالمة", "Call Income": "مكالمة واردة", "Call Income from Driver": "اتصال من الكابتن", "Call Income from Passenger": "مكالمة من الراكب", - "Call left": "Call left", "Call Left": "مكالمات باقية", "Call Options": "خيارات الاتصال", "Call Page": "صفحة الاتصال", - "Call Support": "Call Support", + "Call Support": "اتصل بالدعم", + "Call left": "اتصال متبقي", "Calling": "عم نتصل بـ", "Camera Access Denied.": "ما في وصول للكاميرا.", "Camera not initialized yet": "الكاميرا لسه", @@ -277,285 +194,264 @@ final Map ar_sy = { "Cancel Trip": "إلغاء المشوار", "Cancel Trip from driver": "إلغاء من الكابتن", "Canceled": "ملغي", - "cancelled": "cancelled", "Cannot apply further discounts.": "ما تقدر تخصم أكثر.", "Captain": "الكابتن", - "Capture an Image of Your car license back": "صور استمارة السيارة (قفا)", - "Capture an Image of Your car license front": "صور استمارة السيارة (وجه)", "Capture an Image of Your Criminal Record": "صور صحيفة خلو السوابق", "Capture an Image of Your Driver License": "صور رخصتك", "Capture an Image of Your Driver's License": "صور رخصتك", "Capture an Image of Your ID Document Back": "صور ظهر الهوية", "Capture an Image of Your ID Document front": "صور الهوية (وجه)", + "Capture an Image of Your car license back": "صور استمارة السيارة (قفا)", + "Capture an Image of Your car license front": "صور استمارة السيارة (وجه)", "Car": "سيارة", - "Car Color:": "Color del coche:", + "Car Color:": "لون السيارة:", "Car Details": "تفاصيل السيارة", "Car License Card": "استمارة السيارة", - "Car Make:": "Marca del coche:", - "Car Model:": "Modelo del coche:", + "Car Make:": "ماركة السيارة:", + "Car Model:": "موديل السيارة:", "Car Plate is ": "اللوحة: ", - "Car Plate:": "Matrícula del coche:", + "Car Plate:": "لوحة السيارة:", "Card Number": "رقم البطاقة", "CardID": "رقم البطاقة", - "carType'] ?? 'Car": "carType'] ?? 'Car", "Cash": "كاش", "Change Country": "تغيير الدولة", - "change device": "cambiar dispositivo", "Change Home location ?": "تغيير موقع المنزل؟", - "Change Photo": "Change Photo", - "Change Ride": "Cambiar viaje", - "Change Route": "Cambiar ruta", + "Change Photo": "تغيير الصورة", + "Change Ride": "تغيير الرحلة", + "Change Route": "تغيير الطريق", "Change Work location ?": "تغيير موقع العمل؟", - "Changed my mind": "我改变了主意", + "Changed my mind": "غيرت رأيي", "Chassis": "رقم الشاصي", - "Chat with us anytime": "Chatta con noi in qualsiasi momento", + "Chat with us anytime": "تحدث معنا في أي وقت", "Check back later for new offers!": "شيك بعدين يمكن فيه عروض!", + "Choose Language": "اختر اللغة", "Choose a contact option": "اختر طريقة تواصل", "Choose between those Type Cars": "اختر نوع السيارة", - "Choose from contact": "Choose from contact", - "Choose from Gallery": "Choose from Gallery", + "Choose from Gallery": "اختر من المعرض", "Choose from Map": "اختر من الخريطة", + "Choose from contact": "اختر من جهات الاتصال", "Choose how you want to call the driver": "اختر طريقة الاتصال بالكابتن", - "Choose Language": "اختر اللغة", "Choose the trip option that perfectly suits your needs and preferences.": "اختر اللي يناسبك.", "Choose who this order is for": "الطلب لمين؟", - "Choose your ride": "Elige tu viaje", + "Choose your ride": "اختر رحلتك", "City": "المدينة", "Claim your 20 LE gift for inviting": "اطلب هديتك (20 ريال) للدعوة", - "Click here point": "Haz clic aquí", - "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click here point": "اضغط هون", "Click here to Show it in Map": "اضغط للعرض على الخريطة", - "Click to track the trip": "Click to track the trip", + "Click here to begin your trip\\n\\nGood luck, ": "انقر هنا لبدء رحلتك\n\nبالتوفيق، ", + "Click to track the trip": "انقر لتتبع الرحلة", "Close": "إغلاق", - "Close panel": "Close panel", + "Close panel": "إغلاق اللوحة", "Closest & Cheapest": "الأقرب والأرخص", "Closest to You": "الأقرب لك", - "CODE": "验证码", - "Code": "代码", + "Code": "الكود", "Code not approved": "الكود مرفوض", "Color": "اللون", "Color is ": "اللون: ", "Comfort": "مريح", "Comfort choice": "خيار الراحة", - "Coming": "Coming", - "committed_to_safety": "نهتم بسلامتك.", + "Coming": "قادم", "Communication": "التواصل", "Complaint": "شكوى", "Complaint cannot be filed for this ride. It may not have been completed or started.": "ما تقدر ترفع شكوى على هالمشوار. يمكن ما كمل أو ما بدأ.", - "Complaint data saved successfully": "Datos de la queja guardados con éxito", - "Complete Payment": "Complete Payment", - "complete profile subtitle": "كمل بياناتك عشان تبدأ", - "complete registration button": "إتمام التسجيل", - "Complete your profile": "Complete your profile", - "complete, you can claim your gift": "اكتمل، اطلب هديتك", + "Complaint data saved successfully": "تم حفظ بيانات الشكوى بنجاح", + "Complete Payment": "إتمام الدفع", + "Complete your profile": "أكمل ملفك الشخصي", "Confirm": "تأكيد", "Confirm & Find a Ride": "أكد ودور كابتن", "Confirm Attachment": "تأكيد الإرفاق", - "Confirm Cancellation": "Confirm Cancellation", - "Confirm Pick-up Location": "Confirmar ubicación de recogida", - "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Cancellation": "تأكيد الإلغاء", + "Confirm Pick-up Location": "تأكيد موقع الالتقاط", + "Confirm Pickup Location": "تأكيد موقع الركوب", "Confirm Selection": "تأكيد الاختيار", - "Confirm Trip": "Confirmar viaje", + "Confirm Trip": "تأكيد الرحلة", "Confirm your Email": "أكد إيميلك", "Connected": "متصل", "Connecting...": "عم يتم الاتصال...", - "Connection Error": "连接错误", - "Connection failed. Please try again.": "Connection failed. Please try again.", + "Connection Error": "خطأ في الاتصال", + "Connection failed. Please try again.": "فشل الاتصال. يرجى المحاولة مرة أخرى.", "Contact Options": "خيارات التواصل", - "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", - "Contact permission is required to pick contacts": "نحتاج صلاحية الأسماء.", "Contact Support": "تواصل مع الدعم", "Contact Us": "اتصل بنا", + "Contact permission is permanently denied. Please enable it in settings to continue.": "صلاحية الوصول لجهات الاتصال مرفوضة نهائياً. يرجى تفعيلها من الإعدادات للمتابعة.", + "Contact permission is required to pick contacts": "نحتاج صلاحية الأسماء.", "Contact us for any questions on your order.": "تواصل معنا لو عندك سؤال.", "Contacts Loaded": "تم تحميل الأسماء", - "contacts. Others were hidden because they don't have a phone number.": "جهة اتصال. الباقي مخفي عشان ما عندهم أرقام.", - "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", "Continue": "متابعة", - "copied to clipboard": "copiado al portapapeles", "Copy": "نسخ", "Copy Code": "نسخ الكود", "Copy this Promo to use it in your Ride!": "انسخ الكود واستخدمه!", "Cost Duration": "تكلفة الوقت", "Cost Of Trip IS ": "تكلفة المشوار: ", - "Could not add invite": "Could not add invite", - "Could not create ride. Please try again.": "Could not create ride. Please try again.", - "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Could not add invite": "لم نتمكن من إضافة الدعوة", + "Could not create ride. Please try again.": "لم نتمكن من إنشاء الرحلة. يرجى المحاولة مرة أخرى.", + "Country Picker Page Placeholder": "البحث عن البلد", "Counts of Hours on days": "عدد الساعات بالأيام", "Create Wallet to receive your money": "أنشئ محفظة لاستلام فلوسك", - "created time": "وقت الإنشاء", "Criminal Document Required": "صحيفة خلو السوابق مطلوبة", "Criminal Record": "خلو السوابق", - "Crop Photo": "Crop Photo", + "Crop Photo": "قص الصورة", "Cropper": "قص الصورة", "Current Balance": "الرصيد الحالي", "Current Location": "الموقع الحالي", - "Customer MSISDN doesn’t have customer wallet": "El MSISDN del cliente no tiene billetera", + "Customer MSISDN doesn’t have customer wallet": "رقم هاتف العميل لا يحتوي على محفظة عميل", "Customer not found": "العميل غير موجود", "Customer phone is not active": "جوال العميل مو شغال", - "Dark Mode": "Dark Mode", + "DISCOUNT": "خصم", + "Dark Mode": "الوضع الداكن", "Date": "التاريخ", - "Date and Time Picker": "Selector de fecha y hora", + "Date and Time Picker": "اختيار التاريخ والوقت", "Date of Birth is": "تاريخ الميلاد:", "Date of Birth: ": "تاريخ الميلاد:", "Days": "أيام", - "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Estimado ,\\n\\n 🚀 ¡Acabo de comenzar un viaje emocionante y me gustaría compartir los detalles de mi trayecto y mi ubicación actual contigo en tiempo real! Por favor, descarga la aplicación Siro. Te permitirá ver los detalles de mi viaje y mi última ubicación.\\n\\n 👉 Enlace de descarga: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n ¡Espero mantenerte cerca durante mi aventura!\\n\\n Siro ,", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "مرحباً،\n\n 🚀 لقد بدأت للتو رحلة مشوقة وأود مشاركة تفاصيل رحلتي وموقعي الحالي معك في الوقت الفعلي! يرجى تحميل تطبيق سيرو. سيتيح لك عرض تفاصيل رحلتي وموقعي الأخير.\n\n 👉 رابط التحميل: \n أندرويد [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n آي أو إس [https://getapp.cc/app/6458734951]\n\n أتطلع إلى البقاء على تواصل معك خلال رحلتي!\n\n سيرو،", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", "Decline": "رفض", - "Delete": "Delete", - "Delete Account": "Delete Account", - "Delete All": "Delete All", - "Delete All Recordings?": "Delete All Recordings?", + "Delete": "حذف", + "Delete Account": "حذف الحساب", + "Delete All": "حذف الكل", + "Delete All Recordings?": "حذف جميع التسجيلات؟", "Delete My Account": "حذف حسابي", "Delete Permanently": "حذف نهائي", - "Delete Recording?": "Delete Recording?", - "deleted": "eliminado", + "Delete Recording?": "حذف التسجيل؟", "Deleted": "انحذف", "Destination": "الوصول", - "Destination selected": "Destino seleccionado", - "Destination Set": "Destination Set", + "Destination Set": "تم تحديد الوجهة", + "Destination selected": "تم اختيار الوجهة", "Detect Your Face ": "تحقق من وجهك", - "Device Change Detected": "Cambio de dispositivo detectado", - "Direct talk with our team": "Parla direttamente con il nostro team", - "DISCOUNT": "خصم", + "Device Change Detected": "تم اكتشاف تغيير الجهاز", + "Direct talk with our team": "تحدث مباشرة مع فريقنا", "Displacement": "سعة المحرك", - "Distance": "Distance", + "Distance": "المسافة", + "Distance To Passenger is ": "المسافة للراكب: ", "Distance from Passenger to destination is ": "المسافة للوجهة: ", - "distance is": "المسافة هي", "Distance is ": "المسافة: ", "Distance of the Ride is ": "مسافة المشوار: ", - "Distance To Passenger is ": "المسافة للراكب: ", "Do you have an invitation code from another driver?": "عندك كود دعوة من كابتن ثاني؟", "Do you want to change Home location": "تغير موقع البيت؟", "Do you want to change Work location": "تغير موقع الدوام؟", "Do you want to pay Tips for this Driver": "تبي تعطي الكابتن إكرامية؟", - "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Do you want to send an emergency message to your SOS contact?": "هل تريد إرسال رسالة طوارئ إلى جهة اتصال الطوارئ الخاصة بك؟", "Doctoral Degree": "دكتوراه", "Document Number: ": "رقم الوثيقة:", "Documents check": "فحص المستندات", - "Don't Cancel": "不要取消", + "Don't Cancel": "لا تلغِ", "Don't forget your personal belongings.": "لا تنسى أغراضك.", - "Don't forget your ride!": "¡No olvides tu viaje!", + "Don't forget your ride!": "لا تنسَ رحلتك!", "Don't have an account? Register": "ليس لديك حساب؟ تسجيل", "Done": "تم", "Don’t forget your personal belongings.": "انتبه لأغراضك الشخصية.", - "Double tap to open search or enter destination": "Double tap to open search or enter destination", - "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", - "Download the app now:": "حمل التطبيق:", - "Download the Siro app now and enjoy your ride!": "حمل تطبيق سيرو واستمتع بمشوارك!", + "Double tap to open search or enter destination": "انقر مرتين لفتح البحث أو إدخال الوجهة", + "Double tap to set or change this waypoint on the map": "انقر مرتين لتحديد أو تغيير نقطة التوقف هذه على الخريطة", + "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 Siro Driver app now and earn rewards!": "حمل تطبيق كابتن سيرو واكسب مكافآت!", - "Drawing route on map...": "Drawing route on map...", + "Download the Siro app now and enjoy your ride!": "حمل تطبيق سيرو واستمتع بمشوارك!", + "Download the app now:": "حمل التطبيق:", + "Drawing route on map...": "عم نرسم الطريق على الخريطة...", "Driver": "كابتن", "Driver Accepted the Ride for You": "الكابتن قبل المشوار عشانك", - "Driver already has 2 trips within the specified period.": "الكابتن عنده مشوارين بهالوقت.", "Driver Applied the Ride for You": "الكابتن قدم الطلب لك", - "Driver asked me to cancel": "司机要求我取消订单", "Driver Cancelled Your Trip": "الكابتن كنسل الرحلة", "Driver Car Plate": "لوحة الكابتن", "Driver Finish Trip": "الكابتن خلص المشوار", "Driver Is Going To Passenger": "الكابتن متوجه للراكب", - "Driver is Going To You": "Driver is Going To You", - "Driver is on the way": "الكابتن بالطريق", - "Driver is taking too long": "司机来得太慢了", - "Driver is waiting at pickup.": "الكابتن ينتظرك عند نقطة الركوب.", - "Driver joined the channel": "الكابتن دخل الشات", - "Driver left the channel": "الكابتن طلع من الشات", - "Driver List": "Lista de conductores", + "Driver List": "قائمة السائقين", "Driver Name": "اسم الكابتن", - "Driver Name:": "Nombre del conductor:", - "Driver Phone": "Driver Phone", - "Driver phone": "جوال الكابتن", - "Driver Phone:": "Teléfono del conductor:", - "Driver Referral": "Driver Referral", + "Driver Name:": "اسم السائق:", + "Driver Phone": "هاتف السائق", + "Driver Phone:": "رقم السائق:", + "Driver Referral": "إحالة السائق", "Driver Registration": "تسجيل الكابتن", "Driver Registration & Requirements": "تسجيل الكباتن", "Driver Wallet": "محفظة الكابتن", + "Driver already has 2 trips within the specified period.": "الكابتن عنده مشوارين بهالوقت.", + "Driver asked me to cancel": "طلب مني السائق الإلغاء", + "Driver is Going To You": "السائق في طريقه إليك", + "Driver is on the way": "الكابتن بالطريق", + "Driver is taking too long": "السائق يتأخر كثيراً", + "Driver is waiting at pickup.": "الكابتن ينتظرك عند نقطة الركوب.", + "Driver joined the channel": "الكابتن دخل الشات", + "Driver left the channel": "الكابتن طلع من الشات", + "Driver phone": "جوال الكابتن", "Driver's License": "رخصة القيادة", - "driver_license": "رخصة_قيادة", - "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", "Drivers License Class": "فئة الرخصة", "Drivers License Class: ": "فئة الرخصة:", - "due to a previous trip.": "due to a previous trip.", - "duration is": "المدة:", - "Duration is": "المدة:", - "Duration of the Ride is ": "مدة المشوار: ", - "Duration of Trip is ": "مدة المشوار: ", "Duration To Passenger is ": "الوقت للراكب: ", - "e.g. 0912345678": "e.g. 0912345678", + "Duration is": "المدة:", + "Duration of Trip is ": "مدة المشوار: ", + "Duration of the Ride is ": "مدة المشوار: ", + "EGP": "ج.م", "Edit Profile": "تعديل الملف", "Edit Your data": "تعديل بياناتك", "Education": "التعليم", - "EGP": "EGP", "Egypt": "مصر", - "Egypt' ? 'LE": "Egypt' ? 'LE", - "Egypt': return 'EGP": "Egypt': return 'EGP", + "Egypt' ? 'LE": "Egypt' ? 'جنيه", + "Egypt': return 'EGP": "Egypt': return 'ج.م", "Electric": "كهربائية", - "Email": "Correo electrónico", - "Email is": "الإيميل:", - "email optional label": "الإيميل (اختياري)", - "Email Support": "Supporto via email", + "Email": "البريد الإلكتروني", + "Email Support": "الدعم عبر البريد الإلكتروني", "Email Us": "راسلنا", "Email Wrong": "الإيميل غلط", + "Email is": "الإيميل:", "Email you inserted is Wrong.": "الإيميل اللي كتبته غلط.", - "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", - "Emergency Mode Triggered": "Emergency Mode Triggered", - "Emergency SOS": "Emergency SOS", + "Emergency Mode Triggered": "تم تفعيل وضع الطوارئ", + "Emergency SOS": "طوارئ SOS", "Employment Type": "نوع الوظيفة", "Enable Location": "تفعيل الموقع", - "Enable Location Access": "Habilitar acceso a la ubicación", + "Enable Location Access": "تفعيل الوصول للموقع", "End": "إنهاء", "End Ride": "إنهاء المشوار", - "endName'] ?? 'Destination": "endName'] ?? 'Destination", "Enjoy a safe and comfortable ride.": "استمتع بمشوار آمن ومريح.", "Enjoy competitive prices across all trip options, making travel accessible.": "أسعار منافسة.", - "Enter a password": "Enter a password", - "Enter a valid email": "Ingresa un correo electrónico válido", + "Enter Your First Name": "دخل اسمك الأول", + "Enter a password": "أدخل كلمة المرور", + "Enter a valid email": "أدخل بريد إلكتروني صحيح", "Enter driver's phone": "رقم الكابتن", - "enter otp validation": "دخل الكود (5 أرقام)", "Enter phone": "دخل الرقم", "Enter promo code": "دخل الكود", "Enter promo code here": "اكتب الكود هنا", "Enter the 3-digit code": "أدخل الكود المكون من ٣ أرقام", - "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the 5-digit code": "أدخل الكود المكون من 5 أرقام", "Enter the promo code and get": "دخل الكود واحصل على", - "Enter your City": "Enter your City", - "Enter your code below to apply the discount.": "Ingrese su código a continuación para aplicar el descuento.", - "Enter your complaint here": "Ingresa tu queja aquí", + "Enter your City": "أدخل مدينتك", + "Enter your Note": "اكتب ملاحظة", + "Enter your Password": "أدخل كلمة المرور", + "Enter your code below to apply the discount.": "أدخل كودك تحت عشان تطبق الخصم.", + "Enter your complaint here": "أدخل شكواك هون", "Enter your complaint here...": "اكتب شكواك هنا...", "Enter your email address": "دخل إيميلك", "Enter your feedback here": "اكتب ملاحظتك", "Enter your first name": "دخل اسمك", - "Enter Your First Name": "دخل اسمك الأول", "Enter your last name": "دخل اسم العائلة", - "Enter your Note": "اكتب ملاحظة", - "Enter your Password": "Enter your Password", - "Enter your password": "Ingresa tu contraseña", + "Enter your password": "أدخل كلمة المرور", "Enter your phone number": "دخل رقمك", - "Enter your promo code": "Ingresa tu código de promoción", + "Enter your promo code": "أدخل كود الخصم بتاعك", "Error": "خطأ", - "Error uploading proof": "Error uploading proof", - "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error uploading proof": "خطأ في رفع الإثبات", + "Error', 'An application error occurred.": "خطأ', 'حدث خطأ في التطبيق.", "Error: \${snapshot.error}": "Error: \${snapshot.error}", "Evening": "مساء", + "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 Siro app": "عروض حصرية دائماً مع سيرو", "Expiration Date": "تاريخ الانتهاء", "Expiration Date ": "تاريخ الانتهاء: ", "Expiry Date": "تاريخ الانتهاء", "Expiry Date: ": "تاريخ الانتهاء:", - "face detect": "التحقق من الوجه", "Face Detection Result": "نتيجة التحقق", - "Failed": "Failed", - "Failed to book trip: ": "Failed to book trip: ", + "Failed": "فشل", + "Failed to book trip: ": "فشل حجز الرحلة: ", "Failed to book trip: \$e": "Failed to book trip: \$e", "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", - "Failed to get location": "Failed to get location", - "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", - "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", - "Failed to search, please try again later": "搜索失败,请稍后重试", - "Failed to send OTP": "Failed to send OTP", - "failed to send otp": "فشل إرسال الرمز.", - "Failed to upload photo": "Failed to upload photo", - "Fast matching": "Fast matching", + "Failed to get location": "فشل في الحصول على الموقع", + "Failed to initiate call session. Please try again.": "فشل بدء جلسة الاتصال. يرجى المحاولة مرة أخرى.", + "Failed to initiate payment. Please try again.": "فشل بدء الدفع. يرجى المحاولة مرة أخرى.", + "Failed to search, please try again later": "فشل البحث، يرجى المحاولة مرة أخرى لاحقاً", + "Failed to send OTP": "فشل إرسال رمز التحقق", + "Failed to upload photo": "فشل رفع الصورة", + "Fast matching": "مطابقة سريعة", "Fastest Complaint Response": "استجابة سريعة للشكاوى", - "Favorite Places": "Lugares favoritos", + "Favorite Places": "الأماكن المفضلة", "Fee is": "السعر:", "Feed Back": "رأيك", "Feedback": "ملاحظات", @@ -563,98 +459,88 @@ final Map ar_sy = { "Female": "أنثى", "Find answers to common questions": "إجابات الأسئلة", "Finish Monitor": "إنهاء المتابعة", - "Finished": "Finished", + "Finished": "انتهت", "First Name": "الاسم الأول", "First name": "الاسم الأول", - "first name label": "الاسم الأول", - "first name required": "الاسم الأول مطلوب", - "Fixed Price": "Fixed Price", + "Fixed Price": "سعر ثابت", "Flag-down fee": "فتح الباب", - "for": "لـ", - "For App Reviewers / Testers": "For App Reviewers / Testers", + "For App Reviewers / Testers": "لمراجعي / مختبري التطبيق", "For Drivers": "للكباتن", - "For official inquiries": "Per richieste ufficiali", - "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Para viajes de velocidad y entrega, el precio se calcula dinámicamente. Para viajes de confort, el precio se basa en el tiempo y la distancia.", + "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", + "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 your first registration!": "لتسجيلك الأول!", - "Found another transport": "找到了其他交通工具", + "For official inquiries": "للاستفسارات الرسمية", + "Found another transport": "وجدت وسيلة نقل أخرى", "Free Call": "مكالمة مجانية", "Frequently Asked Questions": "الأسئلة المتكررة", "Frequently Questions": "الأسئلة الشائعة", "From": "من", - "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30", - "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 3:00", - "from 23:59 till 05:30": "من 11:59 م لـ 5:30 ص", - "from 3 times Take Attention": "من 3 مرات، انتبه", "From :": "من:", "From : ": "من: ", "From : Current Location": "من: موقعك الحالي", - "from your favorites": "de tus favoritos", - "from your list": "من قائمتك", - "From:": "Desde:", + "From:": "من:", "Fuel": "الوقود", "Full Name (Marital)": "الاسم الكامل", "FullName": "الاسم الكامل", + "GPS Required Allow !.": "شغل الـ GPS!", "Gender": "الجنس", - "General": "General", - "Get": "Obtener", - "Get a discount on your first Siro ride!": "لك خصم على أول مشوار في سيرو!", + "General": "عام", + "Get": "احصل على", "Get Details of Trip": "تفاصيل المشوار", "Get Direction": "الاتجاهات", + "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!", + "Get a discount on your first Siro ride!": "لك خصم على أول مشوار في سيرو!", "Get it Now!": "خذها الحين!", "Get to your destination quickly and easily.": "وصل وجهتك بسرعة وسهولة.", - "get_a_ride": "مع سيرو، الموتر يجيك بدقايق.", - "get_to_destination": "وصل وجهتك بسرعة.", "Getting Started": "البداية", "Gift Already Claimed": "أخذت الهدية من قبل", "Go To Favorite Places": "للأماكن المفضلة", "Go to next step\\nscan Car License.": "الخطوة الجاية\\nمسح الاستمارة.", + "Go to next step\nscan Car License.": "Go to next step\nscan Car License.", "Go to passenger Location now": "رح لموقع الراكب الحين", - "Go to this location": "رح لهالموقع", "Go to this Target": "روح للهدف", - "go to your passenger location before\\nPassenger cancel trip": "رح لموقع الراكب قبل يكنسل", - "GPS Required Allow !.": "شغل الـ GPS!", - "Grant": "Grant", + "Go to this location": "رح لهالموقع", + "Grant": "منح الصلاحية", "H and": "س و", - "has completed": "كمل", - "Have a Promo Code?": "Have a Promo Code?", + "Have a Promo Code?": "هل لديك كود خصم؟", "Have a promo code?": "عندك كود خصم؟", "Heading your way now. Please be ready.": "جايك بالطريق. خلك جاهز.", "Height: ": "الطول:", "Hello this is Captain": "هلا، معك الكابتن", "Hello this is Driver": "هلا، أنا الكابتن", + "Hello! I'm inviting you to try Intaleq.": "Hello! I'm inviting you to try Intaleq.", "Hello! I'm inviting you to try Siro.": "هلا! أدعوك تجرب تطبيق سيرو.", - "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", - "Hello, I'm at the agreed-upon location": "Hola, estoy en la ubicación acordada", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "مرحباً! أدعوك لتجربة تطبيق سيرو.", + "Hello, I'm at the agreed-upon location": "مرحباً، أنا في الموقع المتفق عليه", "Help Details": "تفاصيل المساعدة", "Helping Center": "مركز المساعدة", "Here recorded trips audio": "تسجيلات المشاوير هنا", "Hi": "هلا", - "Hi ,I Arrive your location": "Hi ,I Arrive your location", - "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I Arrive your location": "مرحباً، لقد وصلت إلى موقعك", + "Hi ,I Arrive your site": "هلا، وصلت لموقعك", "Hi ,I will go now": "هلا، أنا بطلع الحين", "Hi! This is": "هلا! هذا", - "Hi, Where to": "Hi, Where to", + "Hi, Where to": "أهلاً، وين بدك تروح؟", "Hi, Where to ": "هلا، لوين؟", - "Hi, Where to ": "Hi, Where to ", + "Hi, Where to ": "مرحباً، إلى أين؟ ", "High School Diploma": "ثانوي", "History of Trip": "سجل المشاوير", - "Home": "Home", - "Home Page": "Página de inicio", - "Home Saved": "Casa guardada", - "hour": "ساعة", + "Home": "الرئيسية", + "Home Page": "الصفحة الرئيسية", + "Home Saved": "تم حفظ المنزل", "How can I pay for my ride?": "كيف أدفع؟", "How can I register as a driver?": "كيف أسجل كابتن؟", "How do I communicate with the other party (passenger/driver)?": "كيف أتواصل؟", "How do I request a ride?": "كيف أطلب مشوار؟", "How many hours would you like to wait?": "كم ساعة تبي تنتظر؟", - "How much longer will you be?": "¿Cuánto tiempo más tardarás?", - "I added the wrong pick-up/drop-off location": "الموقع غلط", + "How much longer will you be?": "قديش بعدك بتأخر؟", "I Agree": "أوافق", - "i agree": "موافق", - "I am currently located at": "I am currently located at", - "I arrive you": "وصلت", "I Arrive your site": "وصلت موقعك", + "I added the wrong pick-up/drop-off location": "الموقع غلط", + "I am currently located at": "أنا موجود حالياً بـ", + "I arrive you": "وصلت", "I cant register in your app in face detection ": "مو قادر أسجل بسبب بصمة الوجه", "I don't have a reason": "ما عندي سبب", "I don't need a ride anymore": "ما عاد أحتاج مشوار", @@ -663,24 +549,19 @@ final Map ar_sy = { "I was just trying the application": "أجرب التطبيق بس", "I will go now": "بمشي الحين", "I will slow down": "بهدي السرعة", - "I'm Safe": "I'm Safe", + "I'm Safe": "أنا بأمان", "I'm waiting for you": "أنا أنتظرك", - "I've been trying to reach you but your phone is off.": "He estado intentando contactarte pero tu teléfono está apagado.", + "I've been trying to reach you but your phone is off.": "كنت أحاول الوصول إليك ولكن هاتفك مغلق.", "ID Documents Back": "ظهر الهوية", "ID Documents Front": "وجه الهوية", - "if you don't have account": "ما عندك حساب", - "if you dont have account": "إذا ما عندك حساب", "If you in Car Now. Press Start The Ride": "إذا ركبت، اضغط ابدأ المشوار", "If you need assistance, contact us": "تحتاج مساعدة؟ كلمنا", - "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you need to reach me, please contact the driver directly at": "إذا بدك تتواصل معي، اتصل بالسائق مباشرة على", "If you want add stop click here": "تبي تضيف وقفة اضغط هنا", - "if you want help you can email us here": "تبي مساعدة؟ راسلنا", - "If you want order to another person": "Si quieres pedir para otra persona", + "If you want order to another person": "إذا بدك تطلب لشخص تاني", "If you want to make Google Map App run directly when you apply order": "تبي قوقل ماب يفتح علطول؟", + "Image Upload Failed": "فشل رفع الصورة", "Image detecting result is ": "نتيجة الفحص: ", - "Image Upload Failed": "Image Upload Failed", - "image verified": "الصورة تمام", - "in your": "en tu", "In-App VOIP Calls": "مكالمات صوتية بالتطبيق", "Including Tax": "شامل الضريبة", "Incorrect sms code": "⚠️ رمز التحقق غلط. حاول مرة ثانية.", @@ -689,249 +570,240 @@ final Map ar_sy = { "Increase Your Trip Fee (Optional)": "زيد سعر المشوار (اختياري)", "Increasing the fare might attract more drivers. Would you like to increase the price?": "لو زودت السعر ممكن يجيك كابتن أسرع. تبي تزيد السعر؟", "Insert": "إدخال", - "insert amount": "دخل المبلغ", "Insert Emergincy Number": "دخل رقم الطوارئ", - "insert sos phone": "insert sos phone", - "Insert SOS Phone": "Insertar teléfono SOS", - "Insert Wallet phone number": "Ingresa el número de teléfono de la billetera", + "Insert SOS Phone": "أدخل رقم طوارئ", + "Insert Wallet phone number": "أدخل رقم هاتف المحفظة", "Insert Your Promo Code": "حط كود الخصم", "Inspection Date": "تاريخ الفحص الدوري", "InspectionResult": "نتيجة الفحص", + "Intaleq": "Intaleq", + "Intaleq Balance": "Intaleq Balance", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Intaleq Over", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq Support", + "Intaleq Wallet": "Intaleq Wallet", + "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", "Invalid MPIN": "رمز خطأ", "Invalid OTP": "كود غلط", - "Invalid QR Code": "Invalid QR Code", - "Invalid QR Code format": "Invalid QR Code format", + "Invalid QR Code": "رمز QR غير صالح", + "Invalid QR Code format": "صيغة رمز QR غير صالحة", "Invitation Used": "الدعوة مستخدمة", - "Invitations Sent": "Invitations Sent", - "Invite": "Invite", + "Invitations Sent": "تم إرسال الدعوات", + "Invite": "ادعُ", "Invite sent successfully": "أرسلنا الدعوة", - "is calling you": "عم يتصل فيك", - "is driving a": "is driving a", - "is driving a ": "يسوق ", - "is reviewing your order. They may need more information or a higher price.": "está revisando tu pedido. Pueden necesitar más información o un precio más alto.", "Is the Passenger in your Car ?": "الراكب معك؟", "Issue Date": "تاريخ الإصدار", "IssueDate": "تاريخ الإصدار", "JOD": "ر.س", "Join": "انضمام", - "Join a channel": "Join a channel", + "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!", "Join Siro as a driver using my referral code!": "سجل كابتن في سيرو بكود الدعوة حقي!", - "joined": "انضم", + "Join a channel": "الانضمام إلى القناة", "Jordan": "الأردن", - "Keep it up!": "كفو عليك!", "KM": "كم", + "Keep it up!": "كفو عليك!", "Kuwait": "الكويت", - "label': 'Dark Mode": "label': 'Dark Mode", - "label': 'Light Mode": "label': 'Light Mode", - "label': 'System Default": "label': 'System Default", + "LE": "ر.س", "Lady": "نواعم", "Lady Captain for girls": "كابتن سيدة للبنات", "Lady Captains Available": "كباتن سيدات", "Language": "اللغة", "Language Options": "خيارات اللغة", - "Last Name": "Last Name", + "Last Name": "اسم العائلة", "Last name": "اسم العائلة", - "last name label": "اسم العائلة", - "last name required": "اسم العائلة مطلوب", "Latest Recent Trip": "آخر مشوار", - "LE": "ر.س", - "Learn more about our app and mission": "Aprende más sobre nuestra aplicación y misión", + "Learn more about our app and mission": "تعرف أكثر عن تطبيقنا ورسالتنا", "Leave": "مغادرة", - "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Leave a detailed comment (Optional)": "اترك تعليق مفصل (اختياري)", "Lets check Car license ": "نشيك الاستمارة", "Lets check License Back Face": "نشيك ظهر الرخصة", "License Categories": "فئات الرخصة", "License Type": "نوع الرخصة", - "Light Mode": "Light Mode", + "Light Mode": "الوضع الفاتح", "Link a phone number for transfers": "اربط رقم للتحويلات", - "Listen": "Listen", - "Location": "Location", + "Listen": "استماع", + "Location": "الموقع", "Location Link": "رابط الموقع", - "Location Received": "Location Received", + "Location Received": "تم استلام الموقع", "Log Off": "تسجيل خروج", "Log Out Page": "صفحة الخروج", - "Login": "Iniciar sesión", + "Login": "تسجيل الدخول", "Login Captin": "دخول الكابتن", "Login Driver": "دخول كابتن", - "login or register subtitle": "دخل رقم جوالك للدخول أو التسجيل", - "Logout": "Logout", + "Logout": "تسجيل خروج", "Lowest Price Achieved": "أقل سعر", - "m": "د", "Made :": "الصنع:", "Make": "الشركة المصنعة", "Make is ": "الشركة:", "Male": "رجل", - "Map Error": "Map Error", + "Map Error": "خطأ في الخريطة", "Map Passenger": "خريطة الراكب", "Marital Status": "الحالة الاجتماعية", "Master's Degree": "ماجستير", "Maximum fare": "أعلى سعر", - "Message": "Message", - "message From Driver": "رسالة من الكابتن", - "message From passenger": "رسالة من الراكب", - "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", - "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", - "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", - "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", - "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", - "min": "min", - "min added to fare": "min added to fare", + "Message": "رسالة", + "Microphone permission is required for voice calls": "مطلوب صلاحية الميكروفون للمكالمات الصوتية", "Minimum fare": "أقل سعر", "Minute": "دقيقة", "Mishwar Vip": "مشوار VIP", "Model": "الموديل", - "model :": "الموديل:", "Model is": "الموديل:", "Morning": "صباح", "Most Secure Methods": "طرق آمنة", - "Move map to select destination": "Move map to select destination", - "Move map to set start location": "Move map to set start location", - "Move map to set stop": "Move map to set stop", - "Move map to your home location": "Move map to your home location", - "Move map to your pickup point": "Move map to your pickup point", - "Move map to your work location": "Move map to your work location", + "Move map to select destination": "حرك الخريطة لاختيار الوجهة", + "Move map to set start location": "حرك الخريطة لتحديد موقع الانطلاق", + "Move map to set stop": "حرك الخريطة لتحديد نقطة التوقف", + "Move map to your home location": "حرك الخريطة إلى موقع منزلك", + "Move map to your pickup point": "حرك الخريطة إلى نقطة الركوب", + "Move map to your work location": "حرك الخريطة إلى موقع عملك", "Move the map to adjust the pin": "حرك الخريطة عشان تظبط الموقع", "Mute": "كتم الصوت", "My Balance": "رصيدي", "My Card": "بطاقتي", "My Cared": "بطاقاتي", - "My current location is:": "موقعي الحالي:", - "my location": "موقعي", - "My location is correct. You can search for me using the navigation app": "Mi ubicación es correcta. Puedes buscarme usando la aplicación de navegación.", "My Profile": "ملفي", + "My current location is:": "موقعي الحالي:", + "My location is correct. You can search for me using the navigation app": "موقعي صحيح. تقدر تبحث عليي بتطبيق الملاحة", "MyLocation": "موقعي", - "N/A": "N/A", + "N/A": "غير متاح", "Name": "الاسم", "Name (Arabic)": "الاسم (عربي)", "Name (English)": "الاسم (إنجليزي)", "Name :": "الاسم:", "Name in arabic": "الاسم بالعربي", "Name of the Passenger is ": "اسم الراكب: ", - "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", "National ID": "رقم الهوية", "National Number": "رقم الهوية", "NationalID": "رقم الهوية/الإقامة", - "Nearby": "Nearby", - "Nearest Car": "Coche más cercano", + "Nearby": "قريب", + "Nearest Car": "أقرب سيارة", "Nearest Car for you about ": "أقرب سيارة لك بعد ", - "Nearest Car: ~": "Coche más cercano: ~", - "Need assistance? Contact us": "¿Necesitas ayuda? Contáctanos", - "Network error occurred": "Network error occurred", + "Nearest Car: ~": "أقرب سيارة: ~", + "Need assistance? Contact us": "بدك مساعدة؟ تواصل معنا", + "Network error occurred": "حدث خطأ في الشبكة", "Next": "التالي", "Night": "ليل", "No": "لا", "No ,still Waiting.": "لا، لسه أنتظر.", - "No accepted orders? Try raising your trip fee to attract riders.": "ماحد قبل؟ ارفع السعر.", - "No audio files found.": "ما لقينا ملفات صوتية.", - "No Captain Accepted Your Order": "Ningún capitán aceptó tu pedido", + "No Captain Accepted Your Order": "ما في كابتن قبل طلبك", "No Car in your site. Sorry!": "ما في سيارة عندك. المعذرة!", "No Car or Driver Found in your area.": "ما لقينا سيارة أو كابتن حولك.", - "No cars nearby": "No hay coches cerca", - "No contacts available": "No contacts available", + "No Drivers Found": "لم يتم العثور على سائقين", + "No I want": "لا أبي", + "No Notifications": "لا توجد إشعارات", + "No Promo for today .": "ما في عروض اليوم.", + "No Recordings Found": "لم يتم العثور على تسجيلات", + "No Response yet.": "ما في رد للحين.", + "No Rides now!": "لا توجد رحلات الآن!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة؟ عادي! كلم الكابتن من التطبيق.", + "No accepted orders? Try raising your trip fee to attract riders.": "ماحد قبل؟ ارفع السعر.", + "No audio files found.": "ما لقينا ملفات صوتية.", + "No cars nearby": "ما في سيارات قريبة", + "No contacts available": "لا توجد جهات اتصال متاحة", "No contacts found": "ما لقينا جهات اتصال", "No contacts with phone numbers were found on your device.": "ما في أرقام بجهازك.", "No driver accepted my request": "ماحد قبل طلبي", "No drivers accepted your request yet": "ماحد قبل طلبك لسه", - "No drivers available": "No hay conductores disponibles", - "No drivers available at the moment. Please try again later.": "No hay conductores disponibles en este momento. Por favor, inténtalo de nuevo más tarde.", - "No Drivers Found": "未找到司机", - "No drivers found at the moment.\\nPlease try again later.": "目前未找到司机。\\n请稍后重试。", + "No drivers available": "ما في سائقين متاحين", + "No drivers available at the moment. Please try again later.": "ما في سائقين متاحين هلق. تفضّل جرّب مرة تانية لاحقاً.", + "No drivers found at the moment.\\nPlease try again later.": "لم يتم العثور على سائقين حالياً.\nيرجى المحاولة مرة أخرى لاحقاً.", + "No drivers found at the moment.\nPlease try again later.": "No drivers found at the moment.\nPlease try again later.", "No face detected": "ما تعرفنا على الوجه", - "No favorite places yet!": "¡Aún no tienes lugares favoritos!", - "No i want": "No i want", - "No I want": "لا أبي", + "No favorite places yet!": "ما في أماكن مفضلة لسا!", + "No i want": "لأ، أنا بدّي", "No image selected yet": "ما اخترت صورة", "No invitation found yet!": "ما فيه دعوات!", - "No notification data found.": "No notification data found.", - "No Notifications": "No Notifications", + "No notification data found.": "لم يتم العثور على بيانات إشعارات.", "No one accepted? Try increasing the fare.": "ماحد قبل؟ جرب تزيد السعر.", "No passenger found for the given phone number": "ما لقينا راكب بهالرقم", - "No Promo for today .": "ما في عروض اليوم.", "No promos available right now.": "ما فيه عروض حالياً.", - "No Recordings Found": "No Recordings Found", - "No Response yet.": "ما في رد للحين.", "No ride found yet": "ما لقينا مشوار", - "No Rides now!": "No Rides now!", - "No routes available for this destination.": "No routes available for this destination.", - "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة؟ عادي! كلم الكابتن من التطبيق.", - "No trip data available": "No hay datos de viaje disponibles", + "No routes available for this destination.": "لا توجد طرق متاحة لهذه الوجهة.", + "No trip data available": "ما في بيانات رحلة متاحة", "No trip history found": "ما فيه سجل مشاوير", "No trip yet found": "ما لقينا مشوار", - "No user found": "No user found", + "No user found": "لم يتم العثور على مستخدم", "No user found for the given phone number": "ما لقينا مستخدم بهالرقم", "No wallet record found": "ما لقينا سجل للمحفظة", "No, I don't have a code": "لا، ما عندي", - "No, I want to cancel this trip": "No, quiero cancelar este viaje", + "No, I want to cancel this trip": "لأ، بدّي ألغي هالرحلة", "No, thanks": "لا، شكراً", - "No,I want": "No,I want", - "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "No,I want": "لأ، أنا بدّي", + "No.Iwant Cancel Trip.": "لا، أريد إلغاء الرحلة.", "Not Connected": "غير متصل", "Not set": "مو محدد", - "not similar": "غير مطابق", - "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", - "Notice": "Notice", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "ملاحظة: إذا لم يتم إدخال رمز البلد، سيتم حفظه كـ سوري (+963).", + "Notice": "تنبيه", "Notifications": "الإشعارات", - "Now move the map to your pickup point": "Now move the map to your pickup point", - "Now select start pick": "Ahora selecciona el punto de inicio", - "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "Now move the map to your pickup point": "الآن حرك الخريطة إلى نقطة الركوب الخاصة بك", + "Now select start pick": "هلق اختر نقطة البداية", + "Now set the pickup point for the other person": "الآن حدد نقطة الركوب للشخص الآخر", + "OK": "تمام", "Occupation": "المهنة", - "of": "من", - "OK": "OK", "Ok": "تم", "Ok , See you Tomorrow": "تمام، أشوفك بكره", "Ok I will go now.": "أبشر، رايح له الحين.", "Old and affordable, perfect for budget rides.": "اقتصادية ومناسبة للميزانية.", - "On Trip": "On Trip", - "one last step title": "خطوة أخيرة", - "Open": "Open", - "Open destination search": "Open destination search", - "Open in Google Maps": "Open in Google Maps", + "On Trip": "في الرحلة", + "Open": "فتح", "Open Settings": "افتح الإعدادات", + "Open destination search": "فتح بحث الوجهات", + "Open in Google Maps": "فتح في خرائط جوجل", "Or pay with Cash instead": "أو ادفع كاش", "Order": "طلب", - "Order Accepted": "Pedido aceptado", + "Order Accepted": "تم قبول الطلب", "Order Applied": "تم الطلب", - "Order Cancelled": "Pedido cancelado", + "Order Cancelled": "تم إلغاء الطلب", "Order Cancelled by Passenger": "الطلب تكنسل من الراكب", + "Order Details Intaleq": "Order Details Intaleq", "Order Details Siro": "تفاصيل الطلب", - "Order for myself": "اطلب لنفسي", - "Order for someone else": "اطلب لغيرك", "Order History": "سجل الطلبات", "Order Request Page": "صفحة الطلب", - "Order Under Review": "Pedido en revisión", - "Order VIP Canceld": "Order VIP Canceld", + "Order Under Review": "الطلب قيد المراجعة", + "Order VIP Canceld": "تم إلغاء الطلب المميز VIP", + "Order for myself": "اطلب لنفسي", + "Order for someone else": "اطلب لغيرك", "OrderId": "رقم الطلب", "OrderVIP": "طلب VIP", "Origin": "الانطلاق", "Other": "غير ذلك", - "otp sent subtitle": "أرسلنا كود من 5 أرقام على\\n@phoneNumber", - "otp sent success": "تم إرسال الرمز للواتساب.", - "otp verification failed": "رمز التحقق غلط.", "Our dedicated customer service team ensures swift resolution of any issues.": "فريقنا يحل مشاكلك بسرعة.", "Owner Name": "اسم المالك", - "Passenger": "Passenger", - "passenger agreement": "اتفاقية الراكب", - "Passenger cancel order": "Passenger cancel order", + "Passenger": "الراكب", "Passenger Cancel Trip": "الراكب ألغى المشوار", - "Passenger cancelled order": "El pasajero canceló el pedido", + "Passenger Name is ": "اسم الراكب: ", + "Passenger Referral": "إحالة الراكب", + "Passenger cancel order": "ألغى الراكب الطلب", + "Passenger cancelled order": "الراكب ألغى الطلب", "Passenger come to you": "الراكب جايك", "Passenger name : ": "اسم الراكب: ", - "Passenger Name is ": "اسم الراكب: ", - "Passenger Referral": "Passenger Referral", - "Password": "Contraseña", + "Password": "كلمة المرور", "Password must br at least 6 character.": "كلمة المرور 6 حروف ع الأقل.", + "Paste WhatsApp location link": "حط رابط موقع الواتساب", "Paste location link here": "الصق الرابط هنا", "Paste the code here": "الصق الكود", - "Paste WhatsApp location link": "حط رابط موقع الواتساب", - "Pay": "Pagar", - "Pay by Cliq": "Pay by Cliq", - "Pay by MTN Wallet": "Pay by MTN Wallet", - "Pay by Sham Cash": "Pay by Sham Cash", - "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay": "ادفع", + "Pay by Cliq": "الدفع عبر كليك (Cliq)", + "Pay by MTN Wallet": "الدفع عبر محفظة MTN", + "Pay by Sham Cash": "الدفع عبر شام كاش", + "Pay by Syriatel Wallet": "الدفع عبر محفظة سيريتل", "Pay directly to the captain": "ادفع للكابتن كاش", "Pay from my budget": "ادفع من رصيدي", "Pay with Credit Card": "ادفع بالبطاقة", - "Pay with PayPal": "Pay with PayPal", + "Pay with PayPal": "الدفع عبر باي بال", "Pay with Wallet": "ادفع بالمحفظة", "Pay with Your": "ادفع بـ", "Pay with Your PayPal": "ادفع بـ PayPal", @@ -941,359 +813,335 @@ final Map ar_sy = { "Payment Options": "خيارات الدفع", "Payment Successful": "الدفع ناجح", "Payments": "الدفع", - "pending": "pendiente", "Perfect for adventure seekers who want to experience something new and exciting": "لمحبي المغامرة", "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالي للي يبون سيارات جديدة وحرية اختيار الطريق", + "Permission Required": "الصلاحية مطلوبة", "Permission denied": "ما في صلاحية", - "Permission Required": "Permission Required", "Personal Information": "المعلومات الشخصية", - "Phone": "Phone", - "phone not verified": "phone not verified", - "Phone Number": "Phone Number", - "Phone Number Check": "Phone Number Check", + "Phone": "رقم الهاتف", + "Phone Number": "رقم الهاتف", + "Phone Number Check": "فحص رقم الهاتف", "Phone Number is": "الجوال:", - "Phone number is verified before": "El número de teléfono ya ha sido verificado", - "Phone number isn't an Egyptian phone number": "El número de teléfono no es un número egipcio", - "phone number label": "رقم الجوال", - "Phone number must be exactly 11 digits long": "El número de teléfono debe tener exactamente 11 dígitos", - "phone number required": "مطلوب رقم الجوال", - "Phone number seems too short": "Phone number seems too short", - "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", - "Phone Wallet Saved Successfully": "Billetera telefónica guardada con éxito", - "Pick destination on map": "Pick destination on map", + "Phone Wallet Saved Successfully": "تم حفظ رقم المحفظة بنجاح", + "Phone number is verified before": "رقم الهاتف موثق من قبل", + "Phone number isn't an Egyptian phone number": "رقم الهاتف ليس رقماً مصرياً", + "Phone number must be exactly 11 digits long": "رقم الهاتف لازم يكون بالضبط 11 رقم", + "Phone number seems too short": "يبدو أن رقم الهاتف قصير جداً", + "Phone verified. Please complete registration.": "تم تأكيد الهاتف. يرجى إكمال التسجيل.", + "Pick destination on map": "اختر الوجهة على الخريطة", "Pick from map": "اختر من الخريطة", - "Pick from map destination": "Elige el destino en el mapa", - "Pick location on map": "Pick location on map", - "Pick on map": "Pick on map", - "Pick or Tap to confirm": "Elige o toca para confirmar", - "Pick start point on map": "Pick start point on map", + "Pick from map destination": "اختر الوجهة من الخريطة", + "Pick location on map": "اختر الموقع على الخريطة", + "Pick on map": "اختر على الخريطة", + "Pick or Tap to confirm": "اختر أو اضغط للتأكيد", + "Pick start point on map": "اختر نقطة الانطلاق على الخريطة", "Pick your destination from Map": "حدد وجهتك من الخريطة", "Pick your ride location on the map - Tap to confirm": "حدد موقعك ع الخريطة - اضغط للتأكيد", - "Plan Your Route": "Plan Your Route", + "Plan Your Route": "خطط لمسارك", "Plate": "لوحة", "Plate Number": "رقم اللوحة", - "Please add contacts to your phone.": "Please add contacts to your phone.", - "Please check your internet and try again.": "Please check your internet and try again.", - "Please check your internet connection": "请检查您的网络连接", - "Please don't be late": "Por favor, no llegues tarde", - "Please don't be late, I'm waiting for you at the specified location.": "Por favor, no llegues tarde, te estoy esperando en la ubicación especificada.", + "Please Try anther time ": "جرب وقت ثاني", + "Please Wait If passenger want To Cancel!": "انتظر يمكن الراكب يلغي!", + "Please add contacts to your phone.": "يرجى إضافة جهات اتصال إلى هاتفك.", + "Please check your internet and try again.": "يرجى التحقق من الإنترنت والمحاولة مرة أخرى.", + "Please check your internet connection": "يرجى التحقق من اتصالك بالإنترنت", + "Please don't be late": "يرجى عدم التأخر", + "Please don't be late, I'm waiting for you at the specified location.": "يرجى عدم التأخر، أنا بانتظارك في الموقع المحدد.", "Please enter": "الرجاء إدخال", + "Please enter Your Email.": "دخل الإيميل لاهنت.", + "Please enter Your Password.": "دخل كلمة المرور.", "Please enter a correct phone": "دخل رقم جوال صح", - "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a description of the issue.": "تفضّل أدخل وصفاً للمشكلة.", "Please enter a phone number": "دخل رقم جوال", "Please enter a valid 16-digit card number": "دخل رقم بطاقة صح (16 رقم)", - "Please enter a valid email.": "Please enter a valid email.", - "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid email.": "تفضّل أدخل بريد إلكتروني صحيح.", + "Please enter a valid phone number.": "تفضّل أدخل رقم هاتف صحيح.", "Please enter a valid promo code": "دخل كود صحيح", - "Please enter phone number": "Please enter phone number", + "Please enter phone number": "يرجى إدخال رقم الهاتف", + "Please enter the CVV code": "كود CVV", "Please enter the cardholder name": "اسم صاحب البطاقة", "Please enter the complete 6-digit code.": "دخل الرمز كامل (6 أرقام).", - "Please enter the CVV code": "كود CVV", "Please enter the expiry date": "تاريخ الانتهاء", - "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter the number without the leading 0": "يرجى إدخال الرقم بدون الصفر الأولي", "Please enter your City.": "دخل مدينتك.", - "Please enter your complaint.": "Por favor, ingresa tu queja.", - "Please enter Your Email.": "دخل الإيميل لاهنت.", + "Please enter your Question.": "اكتب سؤالك.", + "Please enter your complaint.": "تفضّل أدخل شكواك.", "Please enter your feedback.": "اكتب ملاحظتك لاهنت.", "Please enter your first name.": "دخل الاسم الأول.", "Please enter your last name.": "دخل اسم العائلة.", - "Please enter Your Password.": "دخل كلمة المرور.", - "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number": "يرجى إدخال رقم هاتفك", "Please enter your phone number.": "دخل رقم الجوال.", - "Please enter your Question.": "اكتب سؤالك.", "Please go to Car Driver": "تفضل عند الكابتن", - "Please go to Car now": "Please go to Car now", + "Please go to Car now": "تفضّل روح للسيارة هلق", "Please go to Car now ": "روح للسيارة الحين", - "please go to picker location exactly": "رح لموقع الركوب بالضبط", "Please help! Contact me as soon as possible.": "فزعة! كلمني بسرعة.", "Please make sure not to leave any personal belongings in the car.": "تأكد إنك ما نسيت شي في السيارة.", + "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 Siro app": "تأكد إن أغراضك معك وإن الباقي رجع للمحفظة قبل تنزل. شكراً لاستخدامك سيرو.", - "please order now": "اطلب الحين", - "Please paste the transfer message": "Please paste the transfer message", + "Please paste the transfer message": "يرجى لصق رسالة التحويل", "Please put your licence in these border": "حط الرخصة داخل الإطار", - "Please select a reason first": "Please select a reason first", - "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", - "Please slow down": "Please slow down", + "Please select a reason first": "يرجى اختيار سبب أولاً", + "Please set a valid SOS phone number.": "يرجى تعيين رقم طوارئ صالح.", + "Please slow down": "يرجى تخفيف السرعة", "Please stay on the picked point.": "خليك في الموقع المحدد لا هنت.", - "Please try again in a few moments": "Por favor, inténtalo de nuevo en unos momentos", - "Please Try anther time ": "جرب وقت ثاني", + "Please try again in a few moments": "تفضّل جرّب مرة تانية بعد شوي", "Please verify your identity": "تحقق من هويتك", "Please wait for the passenger to enter the car before starting the trip.": "انتظر الراكب يركب قبل تبدأ.", - "Please Wait If passenger want To Cancel!": "انتظر يمكن الراكب يلغي!", - "please wait till driver accept your order": "انتظر الكابتن يقبل", - "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", - "Please write the reason...": "请填写原因...", + "Please wait while we prepare your trip.": "تفضّل استنى شوي لحتى نجهّز رحلتك.", + "Please write the reason...": "يرجى كتابة السبب...", "Point": "نقطة", "Potential security risks detected. The application may not function correctly.": "اكتشفنا مخاطر أمنية. يمكن التطبيق ما يشتغل صح.", - "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", - "Pre-booking": "Reserva anticipada", - "Preferences": "Preferences", - "Price": "Precio", - "price is": "السعر:", - "Price of trip": "Precio del viaje", - "Privacy Notice": "Aviso de privacidad", - "privacy policy": "سياسة الخصوصية.", + "Potential security risks detected. The application will close in @seconds seconds.": "تم اكتشاف مخاطر أمنية محتملة. التطبيق رح يقفل خلال @seconds ثانية.", + "Pre-booking": "حجز مسبق", + "Preferences": "التفضيلات", + "Price": "السعر", + "Price of trip": "سعر الرحلة", + "Privacy Notice": "إشعار الخصوصية", "Privacy Policy": "سياسة الخصوصية", "Professional driver": "كابتن محترف", "Profile": "الملف الشخصي", - "Profile photo updated": "Profile photo updated", - "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "Profile photo updated": "تم تحديث صورة الملف الشخصي", "Promo": "كود خصم", "Promo Already Used": "الكود مستخدم", "Promo Code": "كود الخصم", "Promo Code Accepted": "انقبل الكود", - "Promo code copied to clipboard!": "نسخت الكود!", "Promo Copied!": "تم نسخ الكود!", "Promo End !": "انتهى العرض!", "Promo Ended": "انتهى العرض", - "Promo Error": "Promo Error", - "Promo', 'Show latest promo": "Promo', 'Show latest promo", - "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "Promo Error": "خطأ في الرمز الترويجي", + "Promo code copied to clipboard!": "نسخت الكود!", + "Promo', 'Show latest promo": "Promo', 'عرض أحدث العروض", "Promos": "العروض", - "Promos For Today": "Promociones para hoy", + "Promos For Today": "عروض اليوم", "Pyament Cancelled .": "إلغاء الدفع.", "Qatar": "قطر", - "Quick Access": "Quick Access", + "Quick Access": "وصول سريع", "Quick Actions": "إجراءات سريعة", - "Quick Message": "Quick Message", + "Quick Message": "رسالة سريعة", "Quiet & Eco-Friendly": "هادية وصديقة للبيئة", "Rate Captain": "قيم الكابتن", "Rate Driver": "قيم الكابتن", "Rate Passenger": "قيم الراكب", - "Rating is": "Rating is", + "Rating is": "التقييم هو", "Rating is ": "التقييم: ", - "Rating is ": "Rating is ", + "Rating is ": "التقييم هو ", "Rayeh Gai": "رايح جاي", "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة مريحة للسفر بين المدن.", - "Reach out to us via": "Contattaci tramite", - "Received empty route data.": "Received empty route data.", + "Reach out to us via": "تواصل معنا عبر", + "Received empty route data.": "تم استلام بيانات مسار فارغة.", "Recent Places": "الأماكن الأخيرة", "Recharge my Account": "شحن حسابي", - "Record": "Record", + "Record": "تسجيل", "Record saved": "انحفظ التسجيل", - "Record your trips to see them here.": "Record your trips to see them here.", + "Record your trips to see them here.": "سجل رحلاتك لعرضها هنا.", "Recorded Trips (Voice & AI Analysis)": "مشاوير مسجلة", "Recorded Trips for Safety": "مشاوير مسجلة للأمان", - "Refresh Map": "刷新地图", + "Refresh Map": "تحديث الخريطة", "Refuse Order": "رفض الطلب", "Register": "تسجيل", - "Register as Driver": "سجل كابتن", "Register Captin": "تسجيل كابتن", "Register Driver": "تسجيل كابتن", - "registration failed": "فشل التسجيل.", - "reject your order.": "rechazó tu pedido.", - "rejected": "rechazado", - "Rejected Orders Count": "Rejected Orders Count", + "Register as Driver": "سجل كابتن", + "Rejected Orders Count": "عدد الطلبات المرفوضة", "Religion": "الديانة", - "remaining": "restante", - "Remove waypoint": "Remove waypoint", - "Report": "Report", + "Remove waypoint": "إزالة نقطة التوقف", + "Report": "تقرير", "Resend Code": "إعادة إرسال", - "Resend code": "Reenviar código", - "reviews": "تقييم", - "Reward Claimed": "Reward Claimed", - "Reward Earned": "Reward Earned", - "Reward Status": "Reward Status", + "Resend code": "إعادة إرسال الكود", + "Reward Claimed": "تم استلام المكافأة", + "Reward Earned": "تم كسب مكافأة", + "Reward Status": "حالة المكافأة", "Ride Management": "إدارة المشاوير", "Ride Summaries": "ملخص المشاوير", "Ride Summary": "ملخص المشوار", "Ride Today : ": "مشوار اليوم: ", "Ride Wallet": "محفظة المشوار", - "rides": "viajes", "Rides": "مشاوير", "Rouats of Trip": "مسارات المشوار", - "Route": "Route", - "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "Route": "المسار", "Route Not Found": "الطريق غير معروف", - "safe_and_comfortable": "استمتع بمشوار آمن.", + "Route and prices have been calculated successfully!": "تم حساب المسار والأسعار بنجاح!", + "SOS": "طوارئ", + "SOS Phone": "رقم الطوارئ", + "SYP": "ل.س", "Safety & Security": "الأمان", "Saudi Arabia": "السعودية", - "Save": "Save", - "Save Changes": "Save Changes", + "Save": "حفظ", + "Save Changes": "حفظ التغييرات", "Save Credit Card": "حفظ البطاقة", - "Save Name": "Save Name", + "Save Name": "حفظ الاسم", "Saved Sucssefully": "تم الحفظ", "Scan Driver License": "امسح الرخصة", - "Scan Id": "مسح الهوية", "Scan ID MklGoogle": "مسح الهوية MklGoogle", - "Scan QR": "Scan QR", - "Scan QR Code": "Scan QR Code", - "Scheduled Time:": "Hora programada:", + "Scan Id": "مسح الهوية", + "Scan QR": "مسح QR", + "Scan QR Code": "مسح رمز QR", + "Scheduled Time:": "الوقت المحدد:", "Scooter": "سكوتر", - "Search country": "Search country", - "Search for a starting point": "Search for a starting point", - "Search for another driver": "寻找其他司机", + "Search country": "ابحث عن بلد", + "Search for a starting point": "ابحث عن نقطة بداية", + "Search for another driver": "البحث عن سائق آخر", "Search for waypoint": "ابحث عن نقطة توقف", - "Search for your destination": "ابحث عن وجهتك", "Search for your Start point": "ابحث عن نقطة البداية", - "Searching for nearby drivers...": "正在寻找附近的司机...", + "Search for your destination": "ابحث عن وجهتك", + "Searching for nearby drivers...": "جاري البحث عن سائقين قريبين...", "Searching for the nearest captain...": "جاري البحث عن أقرب كابتن...", - "seconds": "ثانية", - "Secure": "Secure", + "Secure": "آمن", "Security Warning": "⚠️ تنبيه أمني", - "security_warning": "security_warning", "See you on the road!": "نشوفك بالدرب!", - "Select Appearance": "Select Appearance", - "Select betweeen types": "Select betweeen types", + "Select Appearance": "اختر المظهر", "Select Country": "اختر الدولة", "Select Date": "اختر التاريخ", - "Select date and time of trip": "Seleccionar fecha y hora del viaje", - "Select Education": "Select Education", - "Select Gender": "Select Gender", - "Select one message": "اختر رسالة", + "Select Education": "اختر مستوى التعليم", + "Select Gender": "اختر الجنس", "Select Order Type": "اختر نوع الطلب", "Select Payment Amount": "اختر المبلغ", - "Select recorded trip": "اختر مشوار مسجل", - "Select This Ride": "Select This Ride", + "Select This Ride": "اختر هالرحلة", "Select Time": "اختر الوقت", "Select Waiting Hours": "اختر ساعات الانتظار", "Select Your Country": "اختر دولتك", + "Select betweeen types": "اختر بين الأنواع", + "Select date and time of trip": "اختر تاريخ ووقت الرحلة", + "Select one message": "اختر رسالة", + "Select recorded trip": "اختر مشوار مسجل", "Select your destination": "اختر وجهتك", "Select your preferred language for the app interface.": "اختر لغة التطبيق.", "Selected Date": "التاريخ المحدد", "Selected Date and Time": "التاريخ والوقت", + "Selected Time": "الوقت المحدد", "Selected driver": "الكابتن المختار", "Selected file:": "الملف المختار:", - "Selected Time": "الوقت المحدد", - "Send a custom message": "أرسل رسالة", - "Send Email": "Send Email", + "Send Email": "أرسل بريد", + "Send Intaleq app to him": "Send Intaleq app to him", "Send Invite": "إرسال دعوة", - "send otp button": "أرسل كود التحقق", + "Send SOS": "إرسال طوارئ (SOS)", "Send Siro app to him": "أرسل له تطبيق سيرو", - "Send SOS": "Send SOS", - "Send to Driver Again": "Enviar al conductor nuevamente", "Send Verfication Code": "أرسل الرمز", "Send Verification Code": "أرسل كود التحقق", - "Send WhatsApp Message": "Send WhatsApp Message", - "Server Error": "Server Error", - "Server error": "Server error", - "server error try again": "خطأ في السيرفر، حاول مرة ثانية.", - "Server error. Please try again.": "Server error. Please try again.", + "Send WhatsApp Message": "أرسل رسالة واتساب", + "Send a custom message": "أرسل رسالة", + "Send to Driver Again": "أرسل للسائق مرة تانية", + "Server Error": "خطأ في الخادم", + "Server error": "خطأ في الخادم", + "Server error. Please try again.": "خطأ بالخادم. تفضّل جرّب مرة تانية.", "Session expired. Please log in again.": "الجلسة انتهت. سجل دخولك مرة ثانية.", - "Set as Home": "Set as Home", - "Set as Stop": "Set as Stop", - "Set as Work": "Set as Work", - "Set Destination": "Set Destination", - "Set Location on Map": "Establecer ubicación en el mapa", - "Set Phone Number": "Set Phone Number", - "Set pickup location": "حدد موقع الانطلاق", + "Set Destination": "تحديد الوجهة", + "Set Location on Map": "حدد الموقع على الخريطة", + "Set Phone Number": "حدد رقم الهاتف", "Set Wallet Phone Number": "حط رقم للمحفظة", + "Set as Home": "تعيين كمنزل", + "Set as Stop": "تعيين كنقطة توقف", + "Set as Work": "تعيين كعمل", + "Set pickup location": "حدد موقع الانطلاق", "Setting": "إعدادات", "Settings": "الإعدادات", "Sex is ": "الجنس: ", - "Share": "Share", + "Share": "مشاركة", "Share App": "شارك التطبيق", - "Share this code with your friends and earn rewards when they use it!": "شارك الكود واكسب!", - "Share Trip": "Share Trip", + "Share Trip": "مشاركة الرحلة", "Share Trip Details": "شارك تفاصيل المشوار", + "Share this code with your friends and earn rewards when they use it!": "شارك الكود واكسب!", "Share with friends and earn rewards": "شارك مع ربعك واكسب", - "Share your experience to help us improve...": "Share your experience to help us improve...", - "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "Share your experience to help us improve...": "شارك تجربتك عشان تساعدنا نتحسّن...", "Show Invitations": "عرض الدعوات", - "Show latest promo": "عرض الخصومات", "Show Promos": "عرض الخصومات", "Show Promos to Charge": "عروض الشحن", + "Show latest promo": "عرض الخصومات", "Showing": "عرض", "Sign In by Apple": "دخول بـ Apple", "Sign In by Google": "دخول بـ Google", - "Sign in for a seamless experience": "Inicia sesión para una experiencia sin interrupciones", - "Sign in to continue": "Sign in to continue", - "Sign in with Apple": "Iniciar sesión con Apple", - "Sign In with Google": "Iniciar sesión con Google", - "Sign in with Google for easier email and name entry": "ادخل بقوقل أسهل", + "Sign In with Google": "تسجيل الدخول بجوجل", "Sign Out": "تسجيل خروج", - "similar": "مطابق", - "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Sign in for a seamless experience": "سجل دخول لتجربة سلسة", + "Sign in to continue": "سجل الدخول للمتابعة", + "Sign in with Apple": "تسجيل الدخول بآبل", + "Sign in with Google for easier email and name entry": "ادخل بقوقل أسهل", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "ما عليك سوى فتح تطبيق سيرو وإدخال وجهتك والضغط على \"طلب رحلة\". سيقوم التطبيق بتوصيلك بسائق قريب.", "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "افتح التطبيق، حدد وجهتك، واطلب المشوار.", "Siro": "سيرو", "Siro Balance": "رصيد سيرو", + "Siro LLC": "شركة سيرو", + "Siro Over": "انتهى المشوار", + "Siro Passenger": "راكب سيرو", + "Siro Support": "دعم سيرو", + "Siro Wallet": "محفظة سيرو", "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:": "سيرو تطبيق مشاوير مصمم لأمانك وميزانيتك. نوصلك بكباتن ثقة.", "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.": "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.", - "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 es la aplicación de transporte compartido más segura y confiable diseñada especialmente para pasajeros en Siria. Brindamos una experiencia de viaje cómoda, respetuosa y asequible con características que priorizan su seguridad y conveniencia. Nuestros capitanes de confianza están verificados, asegurados y respaldados por el mantenimiento regular del automóvil realizado por los mejores ingenieros. También ofrecemos servicios de apoyo en carretera para asegurarnos de que cada viaje sea sencillo y sin preocupaciones. Con Siro, disfruta de calidad, seguridad y tranquilidad cada vez que viaja.", + "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.": "سيرو هو تطبيق مشاركة الرحلات الأكثر أماناً وموثوقية المصمم خصيصاً للركاب في سوريا. نحن نقدم تجربة رحلة مريحة ومحترمة وبأسعار معقولة مع الميزات التي تعطي الأولوية لسلامتك وراحتك.", + "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 LLC": "شركة سيرو", "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 Over": "انتهى المشوار", - "Siro Passenger": "Siro Passenger", "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 Support": "Supporto Siro", - "Siro Wallet": "محفظة سيرو", - "Siro's Response": "Respuesta de Siro", - "Something went wrong. Please try again.": "Something went wrong. Please try again.", - "Sorry 😔": "抱歉 😔", - "Sorry, there are no cars available of this type right now.": "抱歉,目前没有此类车型。", - "SOS": "SOS", - "SOS Phone": "رقم الطوارئ", + "Siro's Response": "رد سيرو", + "Something went wrong. Please try again.": "صار شي غلط. جرب مرة تانية.", + "Sorry 😔": "المعذرة 😔", + "Sorry, there are no cars available of this type right now.": "المعذرة، لا تتوفر سيارات من هذا النوع حالياً.", "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان واسعة للعوايل والمجموعات. راحة وأمان وتوفير.", "Speaker": "مكبر الصوت", - "Speaking...": "Speaking...", - "Speed Over": "Speed Over", + "Speaking...": "يتحدث...", + "Speed Over": "تجاوز السرعة", "Standard Call": "اتصال عادي", - "Start Point": "Start Point", + "Start Point": "نقطة الانطلاق", "Start Record": "ابدأ التسجيل", "Start the Ride": "ابدأ المشوار", - "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", "Statistics": "الإحصائيات", - "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Stay calm. We are here to help.": "ابق هادئاً. نحن هنا للمساعدة.", + "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 Siro app.": "خطوات طلب مشوار بتطبيق سيرو.", - "Stop": "Stop", - "Submit": "Enviar", + "Stop": "توقف", + "Submit": "إرسال", "Submit ": "إرسال ", - "Submit a Complaint": "رفع شكوى", "Submit Complaint": "إرسال الشكوى", "Submit Question": "أرسل سؤال", - "Submit Rating": "Submit Rating", + "Submit Rating": "إرسال تقييم", + "Submit a Complaint": "رفع شكوى", "Submit rating": "إرسال التقييم", "Success": "تم", - "Support & Info": "Support & Info", - "Support is Away": "Il supporto è attualmente assente", - "Support is currently Online": "Il supporto è attualmente online", + "Support & Info": "الدعم والمعلومات", + "Support is Away": "الدعم غير متصل حالياً", + "Support is currently Online": "الدعم متصل حالياً", "Switch Rider": "تغيير الراكب", - "SYP": "叙利亚镑", - "Syria": "叙利亚", - "Syria': return 'SYP": "Syria': return 'SYP", + "Syria": "سوريا", + "Syria': return 'SYP": "Syria': return 'ل.س", "Syria'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.": "خدمة مشاركة مشاوير رائدة في الخليج.", - "System Default": "System Default", - "Take a Photo": "Take a Photo", + "System Default": "افتراضي النظام", "Take Image": "صور", "Take Picture Of Driver License Card": "صور الرخصة", "Take Picture Of ID Card": "صور الهوية", + "Take a Photo": "التقاط صورة", "Tap on the promo code to copy it!": "اضغط ع الكود عشان تنسخه!", - "Tap to apply your discount": "Tap to apply your discount", - "Tap to search your destination": "Tap to search your destination", + "Tap to apply your discount": "اضغط لتطبيق الخصم الخاص بك", + "Tap to search your destination": "اضغط للبحث عن وجهتك", "Target": "الهدف", "Tariff": "التعرفة", "Tariffs": "التعرفة", "Tax Expiry Date": "تاريخ انتهاء الضريبة", - "Terms of Use": "Términos de uso", - "terms of use": "شروط الاستخدام", - "Terms of Use & Privacy Notice": "Términos de uso y aviso de privacidad", + "Terms of Use": "شروط الاستخدام", + "Terms of Use & Privacy Notice": "شروط الاستخدام وإشعار الخصوصية", "Thanks": "شكراً", - "the 300 points equal 300 L.E": "300 نقطة بـ 300 ر.س", - "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 نقطة تساوي 300 ر.س لك\\nرح اكسب فلوسك", - "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 ر.س", - "the 500 points equal 30 JOD for you \\nSo go and gain your money": "الـ 500 نقطة بـ 30 ر.س لك\\nروح اكسب فلوسك", + "The Driver Will be in your location soon .": "الكابتن بيوصلك قريب.", "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "الملف الصوتي لم يتم رفعه بعد.\\\\nهل تريد الإرسال بدونه؟", - "The audio file is not uploaded yet.\\nDo you want to submit without it?": "El archivo de audio aún no se ha subido.\\n¿Quiere enviarlo sin él?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "الملف الصوتي ما انرفع لسا.\nبدك ترسل من دونه؟", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", "The distance less than 500 meter.": "المسافة أقل من 500 متر.", "The driver accept your order for": "الكابتن قبل بـ", - "The driver accepted your order for": "El conductor aceptó tu pedido para", + "The driver accepted your order for": "السائق قبل طلبك بـ", "The driver accepted your trip": "الكابتن قبل مشوارك", "The driver canceled your ride.": "الكابتن ألغى مشوارك.", - "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "司机因紧急情况取消了行程。\\n您想立即寻找其他司机吗?", - "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "ألغى السائق الرحلة لسبب طارئ.\nهل تريد البحث عن سائق آخر فوراً؟", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?", + "The driver cancelled the trip.": "ألغى السائق الرحلة.", "The driver on your way": "الكابتن جايك", "The driver waiting you in picked location .": "الكابتن ينتظرك في الموقع.", "The driver waitting you in picked location .": "الكابتن ينتظرك.", - "The Driver Will be in your location soon .": "الكابتن بيوصلك قريب.", "The drivers are reviewing your request": "الكباتن يشوفون طلبك", "The email or phone number is already registered.": "الإيميل أو الرقم مسجل.", "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "الاسم في خلو السوابق ما يطابق الرخصة.", @@ -1305,60 +1153,58 @@ final Map ar_sy = { "The payment was not approved. Please try again.": "الدفع ما انقبل. جرب مرة ثانية.", "The price may increase if the route changes.": "ممكن يزيد السعر لو تغير الطريق.", "The promotion period has ended.": "خلصت فترة العرض.", - "The reason is": "La razón es", + "The reason is": "السبب هو", "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "بدأ المشوار! تقدر تكلم الطوارئ، تشارك رحلتك، أو تسجل صوت.", - "There is no Car or Driver in your area.": "您所在的区域没有车辆或司机。", + "There is no Car or Driver in your area.": "لا توجد سيارة أو سائق في منطقتك.", "There is no data yet.": "ما في بيانات.", "There is no help Question here": "ما في سؤال مساعدة", "There is no notification yet": "ما في إشعارات", "There no Driver Aplly your order sorry for that ": "ماحد قبل طلبك، المعذرة", "There's heavy traffic here. Can you suggest an alternate pickup point?": "زحمة هنا. تقدر تغير موقع الركوب؟", - "This action cannot be undone.": "This action cannot be undone.", - "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This action cannot be undone.": "لا يمكن التراجع عن هذا الإجراء.", + "This action is permanent and cannot be undone.": "هذا الإجراء دائم ولا يمكن التراجع عنه.", "This amount for all trip I get from Passengers": "هذا المبلغ من كل الركاب", "This amount for all trip I get from Passengers and Collected For me in": "المبلغ المجمع لي في", "This is a scheduled notification.": "هذا إشعار مجدول.", - "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for delivery or a motorcycle.": "هالتوصيل أو للموتوسيكل.", "This is for scooter or a motorcycle.": "هذا للسكوتر أو الدباب.", - "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This is the total number of rejected orders per day after accepting the orders": "هالعدد الكلي للطلبات المرفوضة باليوم بعد ما انقبلت", "This phone number has already been invited.": "هالرقم قد أرسلنا له دعوة.", "This price is": "هالسعر هو", "This price is fixed even if the route changes for the driver.": "السعر ثابت حتى لو تغير الطريق.", "This price may be changed": "السعر ممكن يتغير", - "This ride is already applied by another driver.": "Este viaje ya ha sido aplicado por otro conductor.", + "This ride is already applied by another driver.": "هالرحلة قدم عليها سائق تاني من قبل.", "This ride is already taken by another driver.": "المشوار راح لكابتن ثاني.", "This ride type allows changes, but the price may increase": "تقدر تغير بس السعر بيزيد", "This ride type does not allow changes to the destination or additional stops": "ما تقدر تغير الوجهة أو توقف", "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "مشوار مباشر بسعر ثابت. الكابتن يلتزم بالمسار.", "This trip is for women only": "المشوار للنساء فقط", - "this will delete all files from your device": "بيمسح كل الملفات من جهازك", - "Time": "Time", + "Time": "الوقت", "Time to arrive": "وقت الوصول", "Tip is ": "الإكرامية: ", - "To :": "To :", + "To :": "إلى :", "To : ": "إلى: ", - "to arrive you.": "to arrive you.", + "To Home": "للمنزل", + "To Work": "للعمل", "To become a passenger, you must review and agree to the ": "عشان تصير راكب، لازم توافق على ", + "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 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 change Language the App": "Para cambiar el idioma de la aplicación", + "To change Language the App": "عشان تغير لغة التطبيق", "To change some Settings": "لتغيير الإعدادات", "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 give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "عشان نخدمك صح، نبي نعرف موقعك. بنستخدمه عشان نلقى لك كباتن قريبين.", - "To Home": "A casa", + "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 Siro support directly.": "للتسجيل زر موقعنا.", "To use Wallet charge it": "عشان تستخدم المحفظة اشحنها", - "To Work": "Al trabajo", "Today's Promos": "عروض اليوم", - "token change": "تغيير الرمز", - "token updated": "تحدث الرمز", - "Top up Balance": "Top up Balance", - "Top up Balance to continue": "Top up Balance to continue", + "Top up Balance": "شحن الرصيد", + "Top up Balance to continue": "اشحن الرصيد عشان تكمل", "Top up Wallet": "شحن المحفظة", "Top up Wallet to continue": "اشحن المحفظة عشان تكمل", "Total Amount:": "المبلغ الكلي:", "Total Budget from trips by\\nCredit card is ": "إجمالي الدخل بالبطاقة: ", + "Total Budget from trips by\nCredit card is ": "Total Budget from trips by\nCredit card is ", "Total Budget from trips is ": "إجمالي الدخل: ", - "Total budgets on month": "ميزانية الشهر", "Total Connection Duration:": "مدة الاتصال:", "Total Cost": "التكلفة الكلية", "Total Cost is ": "التكلفة الكلية: ", @@ -1366,56 +1212,57 @@ final Map ar_sy = { "Total For You is ": "لك: ", "Total From Passenger is ": "المجموع من الراكب: ", "Total Hours on month": "ساعات الشهر", - "Total Invites": "Total Invites", + "Total Invites": "إجمالي الدعوات", "Total Points is": "مجموع النقاط", + "Total Price": "السعر الإجمالي", + "Total budgets on month": "ميزانية الشهر", "Total points is ": "مجموع النقاط ", - "Total Price": "Total Price", "Total price from ": "السعر الكلي من ", "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "تنقل بسيارة كهربائية حديثة وهادية. خيار فخم وصديق للبيئة.", - "Trip booked successfully": "Trip booked successfully", "Trip Cancelled": "المشوار تكنسل", "Trip Cancelled. The cost of the trip will be added to your wallet.": "تم إلغاء المشوار. المبلغ رجع لمحفظتك.", - "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Viaje cancelado. El costo del viaje se deducirá de tu billetera.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "تم إلغاء الرحلة. رح تنخصم تكلفة الرحلة من محفظتك.", + "Trip Monitor": "مراقب الرحلة", + "Trip Monitoring": "متابعة المشوار", + "Trip Status:": "حالة الرحلة:", + "Trip booked successfully": "تم حجز الرحلة بنجاح", "Trip finished": "انتهت الرحلة", - "Trip finished ": "Trip finished ", + "Trip finished ": "انتهت الرحلة ", "Trip has Steps": "الرحلة فيها وقفات", "Trip is Begin": "بدأ المشوار", - "Trip Monitor": "Monitor de viaje", - "Trip Monitoring": "متابعة المشوار", - "Trip Status:": "Estado del viaje:", - "Trip updated successfully": "Viaje actualizado con éxito", - "trips": "مشاوير", + "Trip updated successfully": "تم تحديث الرحلة بنجاح", "Trips recorded": "المشاوير المسجلة", - "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trips: \$trips / \$target": "الرحلات: \$trips / \$target", "Trusted driver": "كابتن موثوق", "Turkey": "تركيا", - "type here": "اكتب هنا", "Type here Place": "اكتب المكان", "Type something...": "اكتب شي...", "Type your Email": "اكتب إيميلك", "Type your message": "اكتب رسالتك", - "Type your message...": "Type your message...", + "Type your message...": "اكتب رسالتك...", + "USA": "أمريكا", "Uncompromising Security": "أمان تام", - "unknown": "unknown", - "Unknown Driver": "Conductor desconocido", - "Unknown Location": "Unknown Location", + "Unknown Driver": "سائق غير معروف", + "Unknown Location": "موقع غير معروف", "Update": "تحديث", - "Update Available": "Actualización disponible", + "Update Available": "في تحديث جديد", "Update Education": "تحديث التعليم", "Update Gender": "تحديث الجنس", - "Update Name": "Update Name", - "upgrade price": "aumentar el precio", + "Update Name": "تحديث الاسم", "Uploaded": "تم الرفع", - "USA": "أمريكا", + "Use Touch ID or Face ID to confirm payment": "استخدم البصمة لتأكيد الدفع", "Use code:": "استخدم الكود:", "Use my invitation code to get a special gift on your first ride!": "استخدم كودي عشان يجيك هدية بأول مشوار!", "Use my referral code:": "استخدم كود الدعوة:", - "Use Touch ID or Face ID to confirm payment": "استخدم البصمة لتأكيد الدفع", "User does not exist.": "المستخدم مو موجود.", - "User does not have a wallet #1652": "El usuario no tiene una billetera #1652", - "User not found": "Usuario no encontrado", + "User does not have a wallet #1652": "المستخدم ما عندو محفظة #1652", + "User not found": "ما لقينا المستخدم", "User with this phone number or email already exists.": "هالرقم أو الإيميل مسجل من قبل.", "Uses cellular network": "يستخدم شبكة الهاتف", + "VIN": "رقم الهيكل", + "VIN :": "رقم الهيكل:", + "VIN is": "رقم الهيكل:", + "VIP Order": "طلب VIP", "Valid Until:": "صالح لين:", "Van": "عائلية (فان)", "Van for familly": "فان للعائلة", @@ -1424,153 +1271,144 @@ final Map ar_sy = { "Vehicle Details Front": "تفاصيل المركبة (أمام)", "Vehicle Options": "خيارات السيارات", "Verification Code": "رمز التحقق", + "Verified Passenger": "راكب موثق", "Verified driver": "كابتن موثق", - "Verified Passenger": "Verified Passenger", "Verify": "تأكيد", - "verify and continue button": "تحقق وكمال", "Verify Email": "تأكيد الإيميل", "Verify Email For Driver": "تأكيد إيميل الكابتن", "Verify OTP": "تأكيد الرمز", - "verify your number title": "تحقق من رقمك", - "Vibration": "Vibración", + "Vibration": "اهتزاز", "Vibration feedback for all buttons": "اهتزاز لكل الأزرار", - "View Map": "View Map", + "View Map": "عرض الخريطة", "View your past transactions": "شوف عملياتك السابقة", - "VIN": "رقم الهيكل", - "VIN :": "رقم الهيكل:", - "VIN is": "رقم الهيكل:", - "VIP Order": "طلب VIP", - "Visit our website or contact Siro support for information on driver registration and requirements.": "زور موقعنا أو كلم الدعم.", "Visit Website/Contact Support": "الموقع / الدعم", - "Voice Call": "Chiamata vocale", + "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 Siro support for information on driver registration and requirements.": "زور موقعنا أو كلم الدعم.", + "Voice Call": "مكالمة صوتية", "Voice call over internet": "مكالمة صوتية عبر الإنترنت", - "wait 1 minute to receive message": "انتظر دقيقة توصلك الرسالة", - "wait 1 minute to recive message": "wait 1 minute to recive message", - "Wait for the trip to start first": "Wait for the trip to start first", + "Wait for the trip to start first": "انتظر حتى تبدأ الرحلة أولاً", + "Waiting VIP": "انتظار VIP", "Waiting for Captin ...": "بانتظار الكابتن...", "Waiting for Driver ...": "بانتظار الكابتن...", - "Waiting for trips": "Waiting for trips", + "Waiting for trips": "بانتظار الرحلات", "Waiting for your location": "ننتظر موقعك", - "Waiting VIP": "Esperando VIP", - "Waiting...": "Waiting...", + "Waiting...": "انتظار...", "Wallet": "المحفظة", - "wallet due to a previous trip.": "billetera debido a un viaje anterior.", "Wallet is blocked": "المحفظة موقوفة", "Wallet!": "المحفظة!", - "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", - "Warning": "Warning", + "Warning": "تحذير", + "Warning: Intaleqing detected!": "Warning: Intaleqing detected!", "Warning: Siroing detected!": "تحذير: سرعة عالية!", "Warning: Speeding detected!": "تنبيه: سرعة عالية!", - "Waypoint has been set successfully": "Waypoint has been set successfully", - "We apologize 😔": "我们深表歉意 😔", - "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", + "Waypoint has been set successfully": "تم تحديد نقطة التوقف بنجاح", + "We Are Sorry That we dont have cars in your Location!": "آسفين، ما في سيارات حولك!", + "We apologize 😔": "المعذرة 😔", + "We are looking for a captain but the price may increase to let a captain accept": "عم نبحث عن كابتن بس السعر ممكن يزيد عشان يقبل كابتن", "We are process picture please wait ": "نعالج الصورة، انتظر شوي", "We are search for nearst driver": "ندور أقرب كابتن", "We are searching for the nearest driver": "ندور أقرب كابتن", "We are searching for the nearest driver to you": "ندور لك أقرب كابتن", - "We Are Sorry That we dont have cars in your Location!": "آسفين، ما في سيارات حولك!", "We connect you with the nearest drivers for faster pickups and quicker journeys.": "نوصلك بأقرب كباتن عشان ما تتأخر.", "We couldn't find a valid route to this destination. Please try selecting a different point.": "ما لقينا طريق للوجهة هذي. جرب تختار نقطة ثانية.", "We have sent a verification code to your mobile number:": "طرشنا لك رمز التحقق على جوالك:", "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ما لقينا كباتن للحين. فكر تزيد السعر عشان يوافقون أسرع.", - "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 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 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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "We noticed the speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "لاحظنا أن السرعة تتجاوز 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 أرقام لإيميلك", - "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", - "We use location to get accurate and nearest passengers for you": "Usamos la ubicación para obtener pasajeros precisos y cercanos para ti", - "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "Usamos tu ubicación precisa para encontrar el conductor disponible más cercano y proporcionar información precisa de recogida y dejada. Puedes gestionar esto en Configuración.", + "We use location to get accurate and nearest driver for you": "نستخدم الموقع للحصول على السائق الأقرب والأكثر دقة لك", + "We use location to get accurate and nearest passengers for you": "بنستخدم موقعك عشان نلاقي أدق وأقرب ركاب لك", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "بنستخدم موقعك الدقيق عشان نلاقي أقرب سائق متاح ونعطيك معلومات دقيقة للالتقاط والتنزيل. تقدر تدير هالشي بالإعدادات.", "We will look for a new driver.\\nPlease wait.": "بنشوف لك كابتن ثاني.\\nانتظر لاهنت.", - "We're here to help you 24/7": "Siamo qui per aiutarti 24/7", - "Welcome Back": "Welcome Back", + "We will look for a new driver.\nPlease wait.": "We will look for a new driver.\nPlease wait.", + "We're here to help you 24/7": "نحن هنا لمساعدتك على مدار الساعة 24/7", + "Welcome Back": "مرحباً بعودتك", "Welcome Back!": "هلا بك من جديد!", - "welcome to siro": "حياك في سيرو", + "Welcome to Intaleq!": "Welcome to Intaleq!", "Welcome to Siro!": "حياك الله في سيرو!", - "welcome user": "يا هلا، @firstName!", - "welcome_message": "أهلاً بك في سيرو!", "What are the requirements to become a driver?": "وش الشروط؟", + "What safety measures does Intaleq offer?": "What safety measures does Intaleq offer?", "What safety measures does Siro offer?": "وش إجراءات الأمان؟", "What types of vehicles are available?": "وش أنواع السيارات؟", - "WhatsApp": "WhatsApp", + "WhatsApp": "واتساب", "WhatsApp Location Extractor": "جلب الموقع من واتساب", - "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", "When": "متى", "Where are you going?": "وين رايح؟", - "Where are you, sir?": "¿Dónde estás, señor?", + "Where are you, sir?": "وينك يا سيدي؟", "Where to": "وين الوجهة؟", "Where you want go ": "وين تبي تروح ", + "Why Choose Intaleq?": "Why Choose Intaleq?", "Why Choose Siro?": "ليش سيرو؟", - "Why do you want to cancel?": "Why do you want to cancel?", - "with license plate": "with license plate", + "Why do you want to cancel?": "لماذا تريد الإلغاء؟", + "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 Siro, you can get a ride to your destination in minutes.": "مع سيرو، توصل وجهتك بدقايق.", - "with type": "con tipo", - "witout zero": "witout zero", "Work": "الدوام", "Work & Contact": "العمل والتواصل", - "Work Saved": "Trabajo guardado", - "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work Saved": "تم حفظ العمل", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "وقت العمل من 10:00 ص لـ 4:00 م.\nتقدر ترسل رسالة واتساب أو بريد إلكتروني.", "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "الدوام من 12 لـ 7.\\nأرسل واتساب أو إيميل.", - "Working Hours:": "Orario di lavoro:", - "write Color for your car": "اكتب اللون", - "write Expiration Date for your car": "اكتب تاريخ الانتهاء", - "write Make for your car": "اكتب الشركة", - "write Model for your car": "اكتب الموديل", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.", + "Working Hours:": "أوقات العمل:", "Write note": "اكتب ملاحظة", - "write vin for your car": "اكتب رقم الهيكل", - "write Year for your car": "اكتب السنة", - "Wrong pickup location": "上车地点错误", + "Wrong pickup location": "موقع ركوب خاطئ", "Year": "السنة", - "year :": "السنة:", "Year is": "السنة:", - "Yes": "Yes", - "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Siro cancellation policy for details.": "是的,您可以在特定条件下(例如分配司机前)取消行程。详情请参阅 Siro 取消政策。", + "Yes": "إي", + "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 Siro 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 are Delete": "أنت بتحذف", - "You are not in near to passenger location": "أنت بعيد عن الراكب", - "You are Stopped": "أنت موقوف", "You Are Stopped For this Day !": "توقفت اليوم!", - "You can buy points from your budget": "تقدر تشتري نقاط من رصيدك", + "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي وتأخذ حقك من", + "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي إذا تأخر الكابتن", + "You Dont Have Any amount in": "ما عندك رصيد في", + "You Dont Have Any places yet !": "ما عندك أماكن!", + "You Have": "عندك", + "You Have Tips": "عندك إكرامية", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "رفضت 3 مشاوير اليوم.\\nنشوفك بكره!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!", + "You Should be select reason.": "لازم تختار سبب.", + "You Should choose rate figure": "لازم تختار تقييم", + "You are Delete": "أنت بتحذف", + "You are Stopped": "أنت موقوف", + "You are not in near to passenger location": "أنت بعيد عن الراكب", "You can buy Points to let you online\\nby this list below": "اشتر نقاط عشان تكون متصل\\nمن القائمة", + "You can buy Points to let you online\nby this list below": "You can buy Points to let you online\nby this list below", + "You can buy points from your budget": "تقدر تشتري نقاط من رصيدك", "You can call or record audio during this trip.": "تقدر تتصل أو تسجل صوت خلال المشوار.", "You can call or record audio of this trip": "تقدر تتصل أو تسجل صوت", - "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي إذا تأخر الكابتن", "You can cancel Ride now": "تقدر تلغي الحين", "You can cancel trip": "تقدر تكنسل", - "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي وتأخذ حقك من", "You can change the Country to get all features": "غير الدولة عشان كل الميزات", - "You can change the destination by long-pressing any point on the map": "Puedes cambiar el destino manteniendo presionado cualquier punto en el mapa", + "You can change the destination by long-pressing any point on the map": "تقدر تغير الوجهة بالضغط المطوّل على أي نقطة بالخريطة", "You can change the language of the app": "تغيير اللغة", "You can change the vibration feedback for all buttons": "تقدر تغير اهتزاز الأزرار", "You can claim your gift once they complete 2 trips.": "تقدر تأخذ الهدية إذا كملوا مشوارين.", "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "عن طريق الشات في التطبيق.", - "You can contact us during working hours from 10:00 - 16:00.": "Puede contactarnos durante el horario laboral de 10:00 a 16:00.", + "You can contact us during working hours from 10:00 - 16:00.": "تقدر تتواصل معنا بساعات العمل من 10:00 لـ 16:00.", "You can contact us during working hours from 12:00 - 19:00.": "كلمناه من 12 لـ 7.", "You can decline a request without any cost": "تقدر ترفض بدون تكلفة", - "You can only use one device at a time. This device will now be set as your active device.": "Solo puedes usar un dispositivo a la vez. Este dispositivo se establecerá ahora como tu dispositivo activo.", + "You can only use one device at a time. This device will now be set as your active device.": "تقدر تستخدم جهاز واحد بوقت واحد. هالجهاز رح يصير جهازك النشط هلق.", "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "ادفع كاش أو بطاقة.", "You can resend in": "تقدر تعيد الإرسال بعد", + "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 Siro 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 upgrade price to may driver accept your order": "تقدر ترفع السعر عشان يقبل سائق طلبك", "You can't continue with us .\\nYou should renew Driver license": "ما تقدر تكمل معنا.\\nلازم تجدد الرخصة", - "you canceled order": "cancelaste el pedido", - "You canceled VIP trip": "Cancelaste el viaje VIP", + "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": "ألغيت رحلة VIP", "You deserve the gift": "تستاهل الهدية", "You dont Add Emergency Phone Yet!": "ما ضفت رقم طوارئ!", - "You Dont Have Any amount in": "ما عندك رصيد في", - "You Dont Have Any places yet !": "ما عندك أماكن!", "You dont have Points": "ما عندك نقاط", - "you gain": "كسبت", - "You Have": "عندك", - "you have a negative balance of": "tienes un saldo negativo de", "You have already received your gift for inviting": "قد استلمت هديتك على هالدعوة", "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", "You have already used this promo code.": "استخدمت هالكود من قبل.", - "You have been successfully referred!": "You have been successfully referred!", + "You have been successfully referred!": "تمت إحالتك بنجاح!", "You have call from driver": "عندك اتصال من الكابتن", "You have copied the promo code.": "نسخت كود الخصم.", "You have earned 20": "كسبت 20", @@ -1578,64 +1416,297 @@ final Map ar_sy = { "You have got a gift for invitation": "جتك هدية عشان الدعوة", "You have in account": "عندك بالحساب", "You have promo!": "عندك خصم!", - "You Have Tips": "عندك إكرامية", - "You must be charge your Account": "لازم تشحن حسابك", - "you must insert token code": "you must insert token code", - "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق لتغيير اللغة.", "You must Verify email !.": "لازم تأكد الإيميل!", - "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "رفضت 3 مشاوير اليوم.\\nنشوفك بكره!", - "You Should be select reason.": "لازم تختار سبب.", - "You Should choose rate figure": "لازم تختار تقييم", + "You must be charge your Account": "لازم تشحن حسابك", + "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق لتغيير اللغة.", "You should have upload it .": "لازم ترفعها طال عمرك.", - "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", - "You should restart app to change language": "Debes reiniciar la aplicación para cambiar el idioma", + "You should ideintify your gender for this type of trip!": "يجب تحديد جنسك لهذا النوع من الرحلات!", + "You should restart app to change language": "لازم تعيد تشغيل التطبيق عشان تغير اللغة", "You should select one": "لازم تختار واحد", "You should select your country": "اختر دولتك", "You trip distance is": "مسافة المشوار:", "You will arrive to your destination after ": "بتوصل بعد ", "You will arrive to your destination after timer end.": "بتوصل بعد انتهاء المؤقت.", - "You will be charged for the cost of the driver coming to your location.": "Se te cobrará el costo del conductor que viene a tu ubicación.", + "You will be charged for the cost of the driver coming to your location.": "رح يتحسب عليك تكلفة وصول السائق لموقعك.", "You will be pay the cost to driver or we will get it from you on next trip": "بتدفع للكابتن أو نأخذها منك المشوار الجاي", "You will be thier in": "بتوصل خلال", "You will choose allow all the time to be ready receive orders": "اختر 'السماح طوال الوقت' لاستقبال الطلبات", "You will choose one of above !": "اختر واحد من اللي فوق!", - "You will choose one of above!": "You will choose one of above!", + "You will choose one of above!": "ستختار واحداً مما سبق!", "You will get cost of your work for this trip": "بتاخذ حق مشوارك", - "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 receive a code in SMS message": "بيجيك كود برسالة نصية", "You will receive a code in WhatsApp Messenger": "بيجيك كود ع الواتساب", "You will recieve code in sms message": "بيجيك كود في رسالة", "Your Account is Deleted": "انحذف حسابك", - "Your are far from passenger location": "أنت بعيد عن الراكب", "Your Budget less than needed": "رصيدك أقل من المطلوب", "Your Choice, Our Priority": "اختيارك يهمنا", - "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your Journey Begins Here": "رحلتك بلشت من هون", + "Your QR Code": "رمز QR الخاص بك", + "Your Rewards": "مكافآتك", + "Your Ride Duration is ": "مدة المشوار: ", + "Your Wallet balance is ": "رصيدك بالمحفظة: ", + "Your are far from passenger location": "أنت بعيد عن الراكب", + "Your complaint has been submitted.": "تم إرسال شكواك.", "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "بتمسح بياناتك بعد أسبوعين\\nوما تقدر ترجع بعد شهر", - "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", - "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", - "Your email address": "Tu dirección de correo electrónico", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "بياناتك رح تنمسح بعد أسبوعين\nوما رح تقدر ترجع تستخدم التطبيق بعد شهر", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ", + "Your device appears to be compromised. The app will now close.": "يبدو أن جهازك مخترق. سيتم إغلاق التطبيق الآن.", + "Your email address": "عنوان بريدك الإلكتروني", "Your fee is ": "أجرتك: ", "Your invite code was successfully applied!": "تم تطبيق كود الدعوة!", - "Your Journey Begins Here": "Tu viaje comienza aquí", "Your journey starts here": "مشوارك يبدأ هنا", "Your name": "اسمك", "Your order is being prepared": "طلبك يتجهز", "Your order sent to drivers": "أرسلنا طلبك للكباتن", - "Your password": "Tu contraseña", + "Your password": "كلمة مرورك", "Your past trips will appear here.": "مشاويرك السابقة بتطلع هنا.", - "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your payment is being processed and your wallet will be updated shortly.": "يتم معالجة دفعتك وسيتم تحديث محفظتك قريباً.", "Your personal invitation code is:": "كود الدعوة حقك:", - "Your QR Code": "Your QR Code", - "Your Rewards": "Your Rewards", - "Your Ride Duration is ": "مدة المشوار: ", - "your ride is Accepted": "مشوارك انقبل", - "your ride is applied": "انطلب مشوارك", "Your trip cost is": "تكلفة مشوارك:", "Your trip distance is": "مسافة مشوارك:", - "Your trip is scheduled": "Tu viaje está programado", - "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", - "Your Wallet balance is ": "رصيدك بالمحفظة: ", + "Your trip is scheduled": "رحلتك مجدولة", + "Your valuable feedback helps us improve our service quality.": "تعليقك القيم بيساعدنا نحسّن جودة خدمتنا.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'أكمل", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'تم الحفظ بنجاح", + "\${'Age": "\${'العمر", + "\${'Balance:": "\${'الرصيد:", + "\${'Car": "\${'السيارة", + "\${'Car Plate is ": "\${'لوحة السيارة هي ", + "\${'Claim your 20 LE gift for inviting": "\${'احصل على هدية بقيمة 20 جنيه لدعوة", + "\${'Code": "\${'الرمز", + "\${'Color": "\${'اللون", + "\${'Color is ": "\${'اللون هو ", + "\${'Cost Duration": "\${'تكلفة المدة", + "\${'DISCOUNT": "\${'خصم", + "\${'Date of Birth is": "\${'تاريخ الميلاد هو", + "\${'Distance is": "\${'المسافة هي", + "\${'Duration is": "\${'المدة هي", + "\${'Email is": "\${'البريد الإلكتروني هو", + "\${'Expiration Date ": "\${'تاريخ انتهاء الصلاحية ", + "\${'Fee is": "\${'الرسوم هي", + "\${'How was your trip with": "\${'كيف كانت رحلتك مع", + "\${'Keep it up!": "\${'استمر في ذلك!", + "\${'Make is ": "\${'الماركة هي ", + "\${'Model is": "\${'الموديل هو", + "\${'Negative Balance:": "\${'رصيد سالب:", + "\${'Pay": "\${'دفع", + "\${'Phone Number is": "\${'رقم الهاتف هو", + "\${'Plate": "\${'اللوحة", + "\${'Please enter": "\${'الرجاء إدخال", + "\${'Rides": "\${'الرحلات", + "\${'Selected Date and Time": "\${'التاريخ والوقت المحددين", + "\${'Selected driver": "\${'السائق المحدد", + "\${'Sex is ": "\${'الجنس هو ", + "\${'Showing": "\${'عرض", + "\${'Stop": "\${'توقف", + "\${'Tip is": "\${'الإكرامية هي ", + "\${'Tip is ": "\${'الإكرامية هي ", + "\${'Total price to ": "\${'السعر الإجمالي إلى ", + "\${'Update": "\${'تحديث", + "\${'VIN is": "\${'رقم الهيكل (VIN) هو", + "\${'Valid Until:": "\${'صالح لغاية:", + "\${'We have sent a verification code to your mobile number:": "\${'لقد أرسلنا رمز تحقق إلى رقم هاتفك:", + "\${'Where to": "\${'إلى أين", + "\${'Year is": "\${'السنة هي", + "\${'You are Delete": "\${'لقد قمت بحذف", + "\${'You can resend in": "\${'يمكنك إعادة الإرسال خلال", + "\${'You have a balance of": "\${'لديك رصيد بقيمة", + "\${'You have a negative balance of": "\${'لديك رصيد سالب بقيمة", + "\${'You have call from Passenger": "\${'لديك مكالمة من الراكب", + "\${'You have call from driver": "\${'لديك مكالمة من السائق", + "\${'You will be thier in": "\${'ستكون هناك خلال", + "\${'Your Ride Duration is ": "\${'مدة رحلتك هي ", + "\${'Your fee is ": "\${'رسومك هي ", + "\${'Your trip distance is": "\${'مسافة رحلتك هي", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\$\${' tips\nTotal is", + "\${'you have a negative balance of": "\${'لديك رصيد سالب بقيمة", + "\${'you will pay to Driver": "\${'ستدفع للسائق", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} رصيد", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'رصيد", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'كم", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'رحلات", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'تقييمات", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'دقيقة", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'تم الحفظ بنجاح", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nونهتم بالأسعار تكون مناسبة.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "accepted": "مقبول", + "accepted your order at price": "قبل طلبك بسعر", + "addHome' ? 'Add Home": "addHome' ? 'إضافة المنزل", + "addWork' ? 'Add Work": "addWork' ? 'إضافة العمل", + "agreement subtitle": "للمتابعة، وافق على الشروط والخصوصية.", + "airport": "المطار", + "an error occurred": "صار خطأ غير متوقع: @error", + "and I have a trip on": "وعندي مشوار على", + "and acknowledge our": "وتقر بـ", + "and acknowledge our Privacy Policy.": "ونوافق على سياسة الخصوصية.", + "and acknowledge the": "ونوافق على", + "app_description": "سيرو تطبيق آمن وموثوق.", + "arrival time to reach your point": "وقت الوصول لنقطتك", + "as the driver.": "كسائق.", + "before": "قبل", + "begin": "بدء", + "by": "بواسطة", + "cancelled": "ملغي", + "carType'] ?? 'Car": "carType'] ?? 'سيارة", + "change device": "تغيير الجهاز", + "committed_to_safety": "نهتم بسلامتك.", + "complete profile subtitle": "كمل بياناتك عشان تبدأ", + "complete registration button": "إتمام التسجيل", + "complete, you can claim your gift": "اكتمل، اطلب هديتك", + "contacts. Others were hidden because they don't have a phone number.": "جهة اتصال. الباقي مخفي عشان ما عندهم أرقام.", + "contacts. Others were hidden because they don\\'t have a phone number.": "جهات الاتصال. تم إخفاء الآخرين لأنهم لا يملكون رقم هاتف.", + "copied to clipboard": "تم النسخ للحافظة", + "created time": "وقت الإنشاء", + "deleted": "تم الحذف", + "distance is": "المسافة هي", + "driverName'] ?? 'Captain": "driverName'] ?? 'الكابتن", + "driver_license": "رخصة_قيادة", + "due to a previous trip.": "بسبب رحلة سابقة.", + "duration is": "المدة:", + "e.g. 0912345678": "مثال: 0912345678", + "email optional label": "الإيميل (اختياري)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'مرحباً", + "endName'] ?? 'Destination": "endName'] ?? 'الوجهة", + "enter otp validation": "دخل الكود (5 أرقام)", + "face detect": "التحقق من الوجه", + "failed to send otp": "فشل إرسال الرمز.", + "first name label": "الاسم الأول", + "first name required": "الاسم الأول مطلوب", + "for": "لـ", + "for your first registration!": "لتسجيلك الأول!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 3:00", + "from 23:59 till 05:30": "من 11:59 م لـ 5:30 ص", + "from 3 times Take Attention": "من 3 مرات، انتبه", + "from your favorites": "من مفضلاتك", + "from your list": "من قائمتك", + "get_a_ride": "مع سيرو، الموتر يجيك بدقايق.", + "get_to_destination": "وصل وجهتك بسرعة.", + "go to your passenger location before\\nPassenger cancel trip": "رح لموقع الراكب قبل يكنسل", + "go to your passenger location before\nPassenger cancel trip": "go to your passenger location before\nPassenger cancel trip", + "has completed": "كمل", + "hour": "ساعة", + "i agree": "موافق", + "if you don't have account": "ما عندك حساب", + "if you dont have account": "إذا ما عندك حساب", + "if you want help you can email us here": "تبي مساعدة؟ راسلنا", + "image verified": "الصورة تمام", + "in your": "بـ", + "insert amount": "دخل المبلغ", + "insert sos phone": "أدخل رقم الطوارئ", + "is calling you": "عم يتصل فيك", + "is driving a": "عم يسوق", + "is driving a ": "يسوق ", + "is reviewing your order. They may need more information or a higher price.": "عم يراجع طلبك. ممكن يحتاجوا معلومات أكثر أو سعر أعلى.", + "joined": "انضم", + "label': 'Dark Mode": "label': 'الوضع الداكن", + "label': 'Light Mode": "label': 'الوضع الفاتح", + "label': 'System Default": "label': 'افتراضي النظام", + "last name label": "اسم العائلة", + "last name required": "اسم العائلة مطلوب", + "login or register subtitle": "دخل رقم جوالك للدخول أو التسجيل", + "m": "د", + "message From Driver": "رسالة من الكابتن", + "message From passenger": "رسالة من الراكب", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'حدث خطأ غير معروف في الخادم", + "message'] ?? 'Claim failed": "message'] ?? 'فشل استلام المكافأة", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'فشل إنشاء الفاتورة", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'كود خصم غير صالح", + "min": "دقيقة", + "min added to fare": "دقائق مضافة إلى الأجرة", + "model :": "الموديل:", + "my location": "موقعي", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'موقع غير معروف", + "not similar": "غير مطابق", + "of": "من", + "one last step title": "خطوة أخيرة", + "otp sent subtitle": "أرسلنا كود من 5 أرقام على\\n@phoneNumber", + "otp sent success": "تم إرسال الرمز للواتساب.", + "otp verification failed": "رمز التحقق غلط.", + "passenger agreement": "اتفاقية الراكب", + "pending": "قيد الانتظار", + "phone not verified": "الهاتف غير مؤكد", + "phone number label": "رقم الجوال", + "phone number required": "مطلوب رقم الجوال", + "please go to picker location exactly": "رح لموقع الركوب بالضبط", + "please order now": "اطلب الحين", + "please wait till driver accept your order": "انتظر الكابتن يقبل", + "price is": "السعر:", + "privacy policy": "سياسة الخصوصية.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'الملف الشخصي", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "فشل التسجيل.", + "reject your order.": "رفض طلبك.", + "rejected": "مرفوض", + "remaining": "المتبقي", + "reviews": "تقييم", + "rides": "الرحلات", + "safe_and_comfortable": "استمتع بمشوار آمن.", + "seconds": "ثانية", + "security_warning": "تحذير أمني", + "send otp button": "أرسل كود التحقق", + "server error try again": "خطأ في السيرفر، حاول مرة ثانية.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'مشاركة التطبيق", + "similar": "مطابق", + "startName'] ?? 'Start Point": "startName'] ?? 'نقطة الانطلاق", + "terms of use": "شروط الاستخدام", + "the 300 points equal 300 L.E": "300 نقطة بـ 300 ر.س", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "300 نقطة تساوي 300 ر.س لك\\nرح اكسب فلوسك", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "the 300 points equal 300 L.E for you \nSo go and gain your money", + "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 ر.س", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "الـ 500 نقطة بـ 30 ر.س لك\\nروح اكسب فلوسك", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "the 500 points equal 30 JOD for you \nSo go and gain your money", + "this will delete all files from your device": "بيمسح كل الملفات من جهازك", + "to arrive you.": "ليوصل لعندك.", + "token change": "تغيير الرمز", + "token updated": "تحدث الرمز", + "trips": "مشاوير", + "type here": "اكتب هنا", + "unknown": "غير معروف", + "upgrade price": "رفع السعر", + "verify and continue button": "تحقق وكمال", + "verify your number title": "تحقق من رقمك", + "wait 1 minute to receive message": "انتظر دقيقة توصلك الرسالة", + "wait 1 minute to recive message": "انتظر دقيقة واحدة لتلقي الرسالة", + "wallet due to a previous trip.": "المحفظة بسبب رحلة سابقة.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'المحفظة", + "welcome to intaleq": "welcome to intaleq", + "welcome to siro": "حياك في سيرو", + "welcome user": "يا هلا، @firstName!", + "welcome_message": "أهلاً بك في سيرو!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'مرحباً", + "with license plate": "لوحة أرقام", + "with type": "بالنوع", + "witout zero": "بدون صفر", + "write Color for your car": "اكتب اللون", + "write Expiration Date for your car": "اكتب تاريخ الانتهاء", + "write Make for your car": "اكتب الشركة", + "write Model for your car": "اكتب الموديل", + "write Year for your car": "اكتب السنة", + "write vin for your car": "اكتب رقم الهيكل", + "year :": "السنة:", + "you canceled order": "ألغيت الطلب", + "you gain": "كسبت", + "you have a negative balance of": "عندك رصيد سلبي بقيمة", + "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 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 Siro Wallet": "بتدفع حق وقت الكابتن، شوف محفظتك في سيرو", + "your ride is Accepted": "مشوارك انقبل", + "your ride is applied": "انطلب مشوارك", "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", "ُExpire Date": "تاريخ الانتهاء", "⚠️ You need to choose an amount!": "⚠️ لازم تختار مبلغ!", diff --git a/siro_rider/lib/controller/local/de.dart b/siro_rider/lib/controller/local/de.dart new file mode 100644 index 0000000..c0e9e3f --- /dev/null +++ b/siro_rider/lib/controller/local/de.dart @@ -0,0 +1,1715 @@ +final Map de = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": "Ich befinde mich derzeit an ", + " I am using": " ich benutze", + " If you need to reach me, please contact the driver directly at": " Wenn Sie mich erreichen müssen, kontaktieren Sie bitte den Fahrer direkt unter", + " KM": " KM", + " Minutes": " Minuten", + " Next as Cash !": " Weiter bar!", + " You Earn today is ": " Sie haben heute verdient ", + " You Have in": " Sie haben in", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " und erkennen unsere Datenschutzrichtlinie an.", + " and acknowledge the ": " und erkenne die ", + " as the driver.": " als Fahrer.", + " in your": " in your", + " in your wallet": "in Ihrem Portemonnaie", + " is ON for this month": " ist diesen Monat aktiviert", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " Trinkgeld\nGesamtbetrag ist", + " to arrive you.": "um zu Ihnen zu gelangen.", + " to ride with": " um mitzufahren", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " mit dem Nummernschild ", + "--": "--", + ". I am at least 18 years old.": ". Ich bin mindestens 18 Jahre alt.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "1. Beschreiben Sie Ihr Problem", + "10 and get 4% discount": "10 und erhalten Sie 4% Rabatt", + "100 and get 11% discount": "100 und erhalten Sie 11% Rabatt", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "2. Aufgenommenes Audio anhängen", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 und erhalten Sie 6% Rabatt", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "3. Details & Antwort prüfen", + "3000 LE": "3000 LE", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 und erhalten Sie 8% Rabatt", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5-stellig", + "A new version of the app is available. Please update to the latest version.": "Eine neue Version der App ist verfügbar. Bitte aktualisieren Sie auf die neueste Version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Eine Fahrt mit Vorabreservierung, die es Ihnen ermöglicht, die besten Kapitäne und Autos auszuwählen.", + "AI Page": "KI-Seite", + "About Intaleq": "About Intaleq", + "About Siro": "About Siro", + "About Us": "Über uns", + "Accept": "Accept", + "Accept Order": "Bestellung annehmen", + "Accept Ride's Terms & Review Privacy Notice": "Akzeptieren Sie die Nutzungsbedingungen und überprüfen Sie die Datenschutzerklärung", + "Accepted Ride": "Fahrt angenommen", + "Accepted your order": "Ihre Bestellung wurde angenommen", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "Aktive Dauer:", + "Active Users": "Active Users", + "Add Card": "Karte hinzufügen", + "Add Credit Card": "Kreditkarte hinzufügen", + "Add Home": "Zuhause hinzufügen", + "Add Location": "Standort hinzufügen", + "Add Location 1": "Standort 1 hinzufügen", + "Add Location 2": "Standort 2 hinzufügen", + "Add Location 3": "Standort 3 hinzufügen", + "Add Location 4": "Standort 4 hinzufügen", + "Add Payment Method": "Zahlungsmethode hinzufügen", + "Add Phone": "Telefon hinzufügen", + "Add Promo": "Promotion hinzufügen", + "Add SOS Phone": "SOS-Telefon hinzufügen", + "Add Stops": "Stopps hinzufügen", + "Add Work": "Arbeit hinzufügen", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "Add funds using our secure methods", + "Add wallet phone you use": "Fügen Sie das Telefon-Portemonnaie hinzu, das Sie verwenden", + "Address": "Adresse", + "Address: ": "Adresse: ", + "Admin DashBoard": "Admin-Dashboard", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "Erschwinglich für alle", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "Nach diesem Zeitraum\nkönnen Sie nicht mehr stornieren!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "Alter ist ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "Benachrichtigungen", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "Standortzugriff erlauben", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "Während des Zahlungsvorgangs ist ein Fehler aufgetreten.", + "An error occurred while picking contacts:": "Beim Auswählen von Kontakten ist ein Fehler aufgetreten:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "Ein unerwarteter Fehler ist aufgetreten. Bitte versuchen Sie es erneut.", + "App Tester Login": "App Tester Login", + "App with Passenger": "App mit Fahrgast", + "Appearance": "Appearance", + "Applied": "Angewandt", + "Apply": "Anwenden", + "Apply Order": "Bestellung anwenden", + "Apply Promo Code": "Promo-Code anwenden", + "Approaching your area. Should be there in 3 minutes.": "Nähern Sie sich Ihrem Gebiet. Sollte in 3 Minuten da sein.", + "Are You sure to ride to": "Sind Sie sicher, dass Sie fahren möchten nach", + "Are you Sure to LogOut?": "Sind Sie sicher, dass Sie sich abmelden möchten?", + "Are you sure to cancel?": "Sind Sie sicher, dass Sie stornieren möchten?", + "Are you sure to delete recorded files": "Sind Sie sicher, dass Sie die aufgezeichneten Dateien löschen möchten?", + "Are you sure to delete this location?": "Sind Sie sicher, dass Sie diesen Ort löschen möchten?", + "Are you sure to delete your account?": "Sind Sie sicher, dass Sie Ihr Konto löschen möchten?", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "Sind Sie sicher? Diese Aktion kann nicht rückgängig gemacht werden.", + "Are you want to change": "Möchten Sie ändern", + "Are you want to go this site": "Möchten Sie zu dieser Seite gehen?", + "Are you want to go to this site": "Möchten Sie zu dieser Seite gehen?", + "Are you want to wait drivers to accept your order": "Möchten Sie warten, bis Fahrer Ihre Bestellung annehmen?", + "Arrival time": "Ankunftszeit", + "Arrived": "Arrived", + "Associate Degree": "Associate Degree", + "Attach this audio file?": "Diese Audiodatei anhängen?", + "Attention": "Achtung", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audiodatei nicht angehängt", + "Audio uploaded successfully.": "Audio erfolgreich hochgeladen.", + "Available for rides": "Verfügbar für Fahrten", + "Average of Hours of": "Durchschnitt der Stunden von", + "Awaiting response...": "Warten auf Antwort...", + "Awfar Car": "Awfar Auto", + "Bachelor's Degree": "Bachelor-Abschluss", + "Back": "Zurück", + "Bahrain": "Bahrain", + "Balance": "Guthaben", + "Balance limit exceeded": "Balance limit exceeded", + "Balance not enough": "Balance not enough", + "Balance:": "Guthaben:", + "Be Slowly": "Langsam sein", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "Bitte achten Sie darauf, genaue Bilder aufzunehmen\nSie haben", + "Be sure to use it quickly! This code expires at": "Nutzen Sie ihn schnell! Dieser Code läuft ab am", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Weil wir in der Nähe sind, haben Sie die Flexibilität, die Fahrt zu wählen, die am besten zu Ihnen passt.", + "Before we start, please review our terms.": "Bevor wir beginnen, lesen Sie bitte unsere Bedingungen.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Beste Wahl für ein komfortables Auto mit einer flexiblen Route und Haltepunkten. Dieser Flughafen bietet Visa-Einreise zu diesem Preis.", + "Best choice for cities": "Beste Wahl für Städte", + "Best choice for comfort car and flexible route and stops point": "Beste Wahl für ein komfortables Auto und eine flexible Route mit Haltepunkten", + "Birth Date": "Geburtsdatum", + "Bonus gift": "Bonusgeschenk", + "BookingFee": "Buchungsgebühr", + "Bottom Bar Example": "Beispiel für die untere Leiste", + "But you have a negative salary of": "Aber Sie haben ein negatives Gehalt von", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Durch Auswahl von 'Ich stimme zu' bestätige ich, dass ich die Nutzungsbedingungen gelesen habe und ihnen zustimme sowie die Datenschutzerklärung zur Kenntnis genommen habe. Ich bin mindestens 18 Jahre alt.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "Durch die Auswahl von \"Ich stimme zu\" bestätige ich, dass ich die", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "Durch Auswahl von „Ich stimme zu“ bestätige ich, dass ich die folgenden Bedingungen gelesen habe und ihnen zustimme: ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Durch die Auswahl von \"Ich stimme zu\" bestätige ich, dass ich die Nutzungsbedingungen gelesen und akzeptiert habe und die ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "CODE", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "Anrufende", + "Call Ended": "Call Ended", + "Call Income": "Eingehender Anruf", + "Call Income from Driver": "Eingehender Anruf vom Fahrer", + "Call Income from Passenger": "Eingehender Anruf vom Fahrgast", + "Call Left": "Verbleibender Anruf", + "Call Options": "Call Options", + "Call Page": "Anrufseite", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "Kamerazugriff verweigert.", + "Camera not initialized yet": "Kamera noch nicht initialisiert", + "Camera not initilaized yet": "Kamera noch nicht initialisiert", + "Can I cancel my ride?": "Kann ich meine Fahrt stornieren?", + "Can we know why you want to cancel Ride ?": "Können wir erfahren, warum Sie die Fahrt stornieren möchten?", + "Cancel": "Abbrechen", + "Cancel Ride": "Cancel Ride", + "Cancel Search": "Suche abbrechen", + "Cancel Trip": "Fahrt stornieren", + "Cancel Trip from driver": "Fahrt vom Fahrer stornieren", + "Canceled": "Storniert", + "Cannot apply further discounts.": "Weitere Rabatte können nicht angewendet werden.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Machen Sie ein Bild Ihres Strafregisters", + "Capture an Image of Your Driver License": "Machen Sie ein Bild Ihres Führerscheins", + "Capture an Image of Your Driver's License": "Foto vom Führerschein machen", + "Capture an Image of Your ID Document Back": "Machen Sie ein Bild der Rückseite Ihres Ausweisdokuments", + "Capture an Image of Your ID Document front": "Machen Sie ein Bild der Vorderseite Ihres Ausweisdokuments", + "Capture an Image of Your car license back": "Machen Sie ein Bild der Rückseite Ihrer Fahrzeuglizenz", + "Capture an Image of Your car license front": "Foto von der Vorderseite des Fahrzeugscheins machen", + "Car": "Auto", + "Car Color:": "Autofarbe:", + "Car Details": "Autodetails", + "Car License Card": "Fahrzeuglizenzkarte", + "Car Make:": "Automarke:", + "Car Model:": "Automodell:", + "Car Plate is ": "Das Nummernschild ist ", + "Car Plate:": "Nummernschild:", + "Card Number": "Kartennummer", + "CardID": "Karten-ID", + "Cash": "Bargeld", + "Change Country": "Land ändern", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Fahrt ändern", + "Change Route": "Route ändern", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "Ich habe es mir anders überlegt", + "Chassis": "Chassis", + "Chat with us anytime": "Chat with us anytime", + "Check back later for new offers!": "Schauen Sie später für neue Angebote vorbei!", + "Choose Language": "Sprache auswählen", + "Choose a contact option": "Wählen Sie eine Kontaktoption", + "Choose between those Type Cars": "Wählen Sie zwischen diesen Autotypen", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "Aus der Karte auswählen", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "Wählen Sie die Fahrtoption, die perfekt zu Ihren Bedürfnissen und Vorlieben passt.", + "Choose who this order is for": "Wählen Sie, für wen diese Bestellung ist", + "Choose your ride": "Wählen Sie Ihre Fahrt", + "City": "Stadt", + "Claim your 20 LE gift for inviting": "Fordern Sie Ihr 20 LE Geschenk für die Einladung an", + "Click here point": "Klicken Sie hier", + "Click here to Show it in Map": "Klicken Sie hier, um es auf der Karte anzuzeigen", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "Schließen", + "Close panel": "Close panel", + "Closest & Cheapest": "Nächstgelegen & Günstigst", + "Closest to You": "Am nächsten bei Ihnen", + "Code": "Code", + "Code not approved": "Code nicht genehmigt", + "Color": "Farbe", + "Color is ": "Farbe ist ", + "Comfort": "Comfort", + "Comfort choice": "Comfort-Option", + "Coming": "Coming", + "Communication": "Kommunikation", + "Complaint": "Beschwerde", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Für diese Fahrt kann keine Beschwerde eingereicht werden. Sie wurde möglicherweise noch nicht abgeschlossen oder gestartet.", + "Complaint data saved successfully": "Beschwerdedaten erfolgreich gespeichert", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "Bestätigen", + "Confirm & Find a Ride": "Bestätigen & Fahrt finden", + "Confirm Attachment": "Anhang bestätigen", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Abholort bestätigen", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "Auswahl bestätigen", + "Confirm Trip": "Fahrt bestätigen", + "Confirm your Email": "E-Mail bestätigen", + "Connected": "Verbunden", + "Connecting...": "Connecting...", + "Connection Error": "Verbindungsfehler", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "Kontaktoptionen", + "Contact Support": "Support kontaktieren", + "Contact Us": "Kontaktieren Sie uns", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "Kontaktberechtigung ist erforderlich, um Kontakte auszuwählen", + "Contact us for any questions on your order.": "Kontaktieren Sie uns bei Fragen zu Ihrer Bestellung.", + "Contacts Loaded": "Contacts Loaded", + "Continue": "Weiter", + "Copy": "Kopieren", + "Copy Code": "Code kopieren", + "Copy this Promo to use it in your Ride!": "Kopieren Sie diese Promotion, um sie in Ihrer Fahrt zu verwenden!", + "Cost Duration": "Kostendauer", + "Cost Of Trip IS ": "Die Fahrtkosten betragen ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "Anzahl der Stunden pro Tag", + "Create Wallet to receive your money": "Erstellen Sie ein Portemonnaie, um Ihr Geld zu erhalten", + "Criminal Document Required": "Führungszeugnis erforderlich", + "Criminal Record": "Strafregister", + "Crop Photo": "Crop Photo", + "Cropper": "Zuschneider", + "Current Balance": "Current Balance", + "Current Location": "Aktueller Standort", + "Customer MSISDN doesn’t have customer wallet": "MSISDN des Kunden hat keine Geldbörse", + "Customer not found": "Customer not found", + "Customer phone is not active": "Customer phone is not active", + "DISCOUNT": "RABATT", + "Dark Mode": "Dark Mode", + "Date": "Datum", + "Date and Time Picker": "Datum- und Uhrzeitauswahl", + "Date of Birth is": "Geburtsdatum ist", + "Date of Birth: ": "Geburtsdatum: ", + "Days": "Tage", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Sehr geehrte/r ,\n\n 🚀 Ich habe gerade eine aufregende Reise begonnen und möchte die Details meiner Reise und meinen aktuellen Standort in Echtzeit mit Ihnen teilen! Bitte laden Sie die Intaleq-App herunter. Sie ermöglicht Ihnen, meine Reisedetails und meinen letzten Standort einzusehen.\n\n 👉 Download-Link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n Ich freue mich darauf, Sie während meines Abenteuers nah bei mir zu haben!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "Mein Konto löschen", + "Delete Permanently": "Dauerhaft löschen", + "Delete Recording?": "Delete Recording?", + "Deleted": "Gelöscht", + "Destination": "Ziel", + "Destination Set": "Destination Set", + "Destination selected": "Ziel ausgewählt", + "Detect Your Face ": "Erkennen Sie Ihr Gesicht ", + "Device Change Detected": "Gerätewechsel erkannt", + "Direct talk with our team": "Direct talk with our team", + "Displacement": "Hubraum", + "Distance": "Distance", + "Distance To Passenger is ": "Entfernung bis zum Fahrgast ist ", + "Distance from Passenger to destination is ": "Die Entfernung vom Fahrgast zum Ziel beträgt ", + "Distance is ": "Entfernung ist ", + "Distance of the Ride is ": "Die Entfernung der Fahrt beträgt ", + "Do you have an invitation code from another driver?": "Haben Sie einen Einladungscode von einem anderen Fahrer?", + "Do you want to change Home location": "Möchten Sie den Wohnort ändern?", + "Do you want to change Work location": "Möchten Sie den Arbeitsort ändern?", + "Do you want to pay Tips for this Driver": "Möchten Sie Trinkgeld für diesen Fahrer bezahlen?", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "Doktortitel", + "Document Number: ": "Dokumentennummer: ", + "Documents check": "Dokumentenprüfung", + "Don't Cancel": "Nicht abbrechen", + "Don't forget your personal belongings.": "Vergessen Sie Ihre persönlichen Gegenstände nicht.", + "Don't forget your ride!": "Vergessen Sie Ihre Fahrt nicht!", + "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.", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "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 Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro 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", + "Driver Accepted the Ride for You": "Der Fahrer hat die Fahrt für Sie angenommen", + "Driver Applied the Ride for You": "Der Fahrer hat die Fahrt für Sie übernommen", + "Driver Cancelled Your Trip": "Fahrer hat Ihre Fahrt storniert", + "Driver Car Plate": "Fahrer-Nummernschild", + "Driver Finish Trip": "Fahrer beendet die Fahrt", + "Driver Is Going To Passenger": "Fahrer ist auf dem Weg zum Fahrgast", + "Driver List": "Fahrerliste", + "Driver Name": "Fahrername", + "Driver Name:": "Fahrername:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Fahrertelefon:", + "Driver Referral": "Driver Referral", + "Driver Registration": "Fahrerregistrierung", + "Driver Registration & Requirements": "Fahrerregistrierung & Anforderungen", + "Driver Wallet": "Fahrer-Portemonnaie", + "Driver already has 2 trips within the specified period.": "Der Fahrer hat bereits 2 Fahrten innerhalb des angegebenen Zeitraums.", + "Driver asked me to cancel": "Fahrer hat mich gebeten zu stornieren", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "Der Fahrer ist unterwegs", + "Driver is taking too long": "Der Fahrer braucht zu lange", + "Driver is waiting at pickup.": "Der Fahrer wartet am Abholpunkt.", + "Driver joined the channel": "Der Fahrer ist dem Kanal beigetreten", + "Driver left the channel": "Der Fahrer hat den Kanal verlassen", + "Driver phone": "Fahrertelefon", + "Driver's License": "Führerschein", + "Drivers License Class": "Führerscheinklasse", + "Drivers License Class: ": "Führerscheinklasse: ", + "Duration To Passenger is ": "Dauer bis zum Fahrgast ist ", + "Duration is": "Dauer ist", + "Duration of Trip is ": "Dauer der Fahrt ist ", + "Duration of the Ride is ": "Die Dauer der Fahrt beträgt ", + "EGP": "EGP", + "Edit Profile": "Profil bearbeiten", + "Edit Your data": "Bearbeiten Sie Ihre Daten", + "Education": "Bildung", + "Egypt": "Ägypten", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "Electric", + "Email": "E-Mail", + "Email Support": "Email Support", + "Email Us": "Senden Sie uns eine E-Mail", + "Email Wrong": "E-Mail falsch", + "Email is": "E-Mail ist", + "Email you inserted is Wrong.": "Die von Ihnen eingegebene E-Mail ist falsch.", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "Beschäftigungsart", + "Enable Location": "Standort aktivieren", + "Enable Location Access": "Standortzugriff aktivieren", + "End": "End", + "End Ride": "Fahrt beenden", + "Enjoy a safe and comfortable ride.": "Genießen Sie eine sichere und komfortable Fahrt.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Genießen Sie wettbewerbsfähige Preise für alle Fahrtoptionen, die Reisen zugänglich machen.", + "Enter Your First Name": "Geben Sie Ihren Vornamen ein", + "Enter a password": "Enter a password", + "Enter a valid email": "Geben Sie eine gültige E-Mail-Adresse ein", + "Enter driver's phone": "Fahrertelefon eingeben", + "Enter phone": "Telefon eingeben", + "Enter promo code": "Promo-Code eingeben", + "Enter promo code here": "Geben Sie den Promo-Code hier ein", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "Geben Sie den Promo-Code ein und erhalten Sie", + "Enter your City": "Enter your City", + "Enter your Note": "Geben Sie Ihre Notiz ein", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Geben Sie unten Ihren Code ein, um den Rabatt anzuwenden.", + "Enter your complaint here": "Geben Sie Ihre Beschwerde hier ein", + "Enter your complaint here...": "Geben Sie hier Ihre Beschwerde ein...", + "Enter your email address": "Geben Sie Ihre E-Mail-Adresse ein", + "Enter your feedback here": "Geben Sie Ihr Feedback hier ein", + "Enter your first name": "Geben Sie Ihren Vornamen ein", + "Enter your last name": "Geben Sie Ihren Nachnamen ein", + "Enter your password": "Geben Sie Ihr Passwort ein", + "Enter your phone number": "Geben Sie Ihre Telefonnummer ein", + "Enter your promo code": "Geben Sie Ihren Promo-Code ein", + "Error": "Fehler", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "Abend", + "Exclusive offers and discounts always with the Intaleq app": "Exklusive Angebote und Rabatte immer mit der Intaleq-App", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "Ablaufdatum", + "Expiration Date ": "Ablaufdatum ", + "Expiry Date": "Ablaufdatum", + "Expiry Date: ": "Ablaufdatum: ", + "Face Detection Result": "Ergebnis der Gesichtserkennung", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "Suche fehlgeschlagen, bitte versuchen Sie es später noch einmal", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "Schnellste Beschwerdeantwort", + "Favorite Places": "Lieblingsorte", + "Fee is": "Gebühr ist", + "Feed Back": "Feedback", + "Feedback": "Feedback", + "Feedback data saved successfully": "Feedback-Daten erfolgreich gespeichert", + "Female": "Weiblich", + "Find answers to common questions": "Finden Sie Antworten auf häufig gestellte Fragen", + "Finish Monitor": "Monitor beenden", + "Finished": "Finished", + "First Name": "Vorname", + "First name": "Vorname", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Grundpreis", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "Für Fahrer", + "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Für Schnell- und Lieferfahrten wird der Preis dynamisch berechnet. Für Komfortfahrten basiert der Preis auf Zeit und Entfernung.", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Für Schnell- und Rollerfahrten wird der Preis dynamisch berechnet. Für Komfortfahrten basiert der Preis auf Zeit und Entfernung.", + "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "For official inquiries", + "Found another transport": "Ich habe ein anderes Transportmittel gefunden", + "Free Call": "Free Call", + "Frequently Asked Questions": "Häufig gestellte Fragen", + "Frequently Questions": "Häufige Fragen", + "From": "Von", + "From :": "Von :", + "From : ": "Von : ", + "From : Current Location": "Von : Aktueller Standort", + "From:": "Von:", + "Fuel": "Kraftstoff", + "Full Name (Marital)": "Vollständiger Name (Familienstand)", + "FullName": "Vollständiger Name", + "GPS Required Allow !.": "GPS erforderlich, erlauben!.", + "Gender": "Geschlecht", + "General": "General", + "Get": "Erhalten", + "Get Details of Trip": "Fahrtdetails erhalten", + "Get Direction": "Route erhalten", + "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "Holen Sie es sich jetzt!", + "Get to your destination quickly and easily.": "Erreichen Sie Ihr Ziel schnell und einfach.", + "Getting Started": "Erste Schritte", + "Gift Already Claimed": "Geschenk bereits beansprucht", + "Go To Favorite Places": "Zu Lieblingsorten gehen", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "Gehen Sie zum nächsten Schritt\nscannen Sie die Fahrzeuglizenz.", + "Go to passenger Location now": "Gehen Sie jetzt zum Standort des Fahrgasts", + "Go to this Target": "Gehen Sie zu diesem Ziel", + "Go to this location": "Gehen Sie zu diesem Ort", + "Grant": "Grant", + "H and": "Stunden und", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "Haben Sie einen Promo-Code?", + "Heading your way now. Please be ready.": "Jetzt auf dem Weg zu Ihnen. Bitte seien Sie bereit.", + "Height: ": "Größe: ", + "Hello this is Captain": "Hallo, das ist Kapitän", + "Hello this is Driver": "Hallo, das ist der Fahrer", + "Hello! I'm inviting you to try Intaleq.": "Hallo! Ich lade Sie ein, Intaleq auszuprobieren.", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hallo, ich bin am vereinbarten Ort", + "Help Details": "Hilfedetails", + "Helping Center": "Hilfezentrum", + "Here recorded trips audio": "Hier sind die Audioaufnahmen der Fahrten", + "Hi": "Hallo", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Hallo, ich werde jetzt gehen", + "Hi! This is": "Hallo! Das ist", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "Hallo, wohin ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "Abitur", + "History of Trip": "Fahrtverlauf", + "Home": "Home", + "Home Page": "Startseite", + "Home Saved": "Zuhause gespeichert", + "How can I pay for my ride?": "Wie kann ich meine Fahrt bezahlen?", + "How can I register as a driver?": "Wie kann ich mich als Fahrer registrieren?", + "How do I communicate with the other party (passenger/driver)?": "Wie kommuniziere ich mit der anderen Partei (Fahrgast/Fahrer)?", + "How do I request a ride?": "Wie buche ich eine Fahrt?", + "How many hours would you like to wait?": "Wie viele Stunden möchten Sie warten?", + "How much longer will you be?": "Wie viel länger werden Sie brauchen?", + "I Agree": "Ich stimme zu", + "I Arrive your site": "Ich bin an Ihrem Standort angekommen", + "I added the wrong pick-up/drop-off location": "Ich habe den falschen Abhol-/Absetzort hinzugefügt", + "I am currently located at": "I am currently located at", + "I arrive you": "Ich komme zu Ihnen", + "I cant register in your app in face detection ": "Ich kann mich in Ihrer App nicht mit Gesichtserkennung registrieren ", + "I don't have a reason": "Ich habe keinen Grund", + "I don't need a ride anymore": "Ich brauche keine Fahrt mehr", + "I want to order for myself": "Ich möchte für mich selbst bestellen", + "I want to order for someone else": "Ich möchte für jemand anderen bestellen", + "I was just trying the application": "Ich habe die Anwendung nur ausprobiert", + "I will go now": "Ich werde jetzt gehen", + "I will slow down": "Ich werde langsamer fahren", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "Ich warte auf Sie", + "I've been trying to reach you but your phone is off.": "Ich habe versucht, Sie zu erreichen, aber Ihr Telefon ist ausgeschaltet.", + "ID Documents Back": "Rückseite der Ausweisdokumente", + "ID Documents Front": "Vorderseite der Ausweisdokumente", + "If you in Car Now. Press Start The Ride": "Wenn Sie jetzt im Auto sind. Drücken Sie Fahrt starten", + "If you need assistance, contact us": "Wenn Sie Hilfe benötigen, kontaktieren Sie uns", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Wenn Sie einen Stopp hinzufügen möchten, klicken Sie hier", + "If you want order to another person": "Wenn Sie für eine andere Person bestellen möchten", + "If you want to make Google Map App run directly when you apply order": "Wenn Sie möchten, dass die Google Map App direkt ausgeführt wird, wenn Sie eine Bestellung aufgeben", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "Das Ergebnis der Bilderkennung ist ", + "In-App VOIP Calls": "VOIP-Anrufe in der App", + "Including Tax": "Inklusive Steuer", + "Incorrect sms code": "Incorrect sms code", + "Increase Fare": "Increase Fare", + "Increase Fee": "Preis erhöhen", + "Increase Your Trip Fee (Optional)": "Erhöhen Sie Ihre Fahrpreise (optional)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Increasing the fare might attract more drivers. Would you like to increase the price?", + "Insert": "Einfügen", + "Insert Emergincy Number": "Notrufnummer einfügen", + "Insert SOS Phone": "SOS-Telefon einfügen", + "Insert Wallet phone number": "Geben Sie die Telefonnummer des Portemonnaies ein", + "Insert Your Promo Code": "Geben Sie Ihren Promo-Code ein", + "Inspection Date": "Inspektionsdatum", + "InspectionResult": "Inspektionsergebnis", + "Intaleq": "Geschwindigkeit", + "Intaleq Balance": "Intaleq Balance", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Geschwindigkeitsüberschreitung", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq Support", + "Intaleq Wallet": "Intaleq Geldbörse", + "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 ist eine Mitfahr-App, die mit Blick auf Ihre Sicherheit und Erschwinglichkeit entwickelt wurde. Wir verbinden Sie mit zuverlässigen Fahrern in Ihrer Nähe und sorgen für eine bequeme und stressfreie Reiseerfahrung.\n\nHier sind einige der wichtigsten Funktionen, die uns auszeichnen:", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq setzt sich für Sicherheit ein, und alle unsere Kapitäne werden sorgfältig überprüft.", + "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 ist die erste Ridesharing-App in Syrien, die Sie mit den nächsten Fahrern verbindet, um ein schnelles und bequemes Reiseerlebnis zu ermöglichen.", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq ist die Mitfahr-App, die sicher, zuverlässig und zugänglich ist.", + "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 ist die sicherste und zuverlässigste Fahrgemeinschafts-App, die speziell für Fahrgäste in Syrien entwickelt wurde. Wir bieten ein komfortables, respektvolles und erschwingliches Fahrerlebnis mit Funktionen, die Ihre Sicherheit und Bequemlichkeit in den Vordergrund stellen. Unsere vertrauenswürdigen Kapitäne sind verifiziert, versichert und werden durch regelmäßige Fahrzeugwartung durch erstklassige Ingenieure unterstützt. Wir bieten auch Pannenhilfe an, damit jede Fahrt reibungslos und sorgenfrei verläuft. Mit Intaleq genießen Sie jedes Mal Qualität, Sicherheit und Sorgenfreiheit.", + "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 ist die sicherste Mitfahr-App, die viele Funktionen für sowohl Kapitäne als auch Fahrgäste einführt. Wir bieten die niedrigste Kommissionsrate von nur 8%, um sicherzustellen, dass Sie den besten Wert für Ihre Fahrten erhalten. Unsere App beinhaltet Versicherungen für die besten Kapitäne, regelmäßige Wartung der Autos durch Top-Ingenieure und Dienstleistungen vor Ort, um ein respektvolles und hochwertiges Erlebnis für alle Nutzer zu gewährleisten.", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq bietet eine Vielzahl von Optionen, darunter Economy, Komfort und Luxus, die Ihren Bedürfnissen und Ihrem Budget entsprechen.", + "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 bietet eine Vielzahl von Fahrzeugoptionen, die Ihren Bedürfnissen entsprechen, darunter Economy, Komfort und Luxus. Wählen Sie die Option, die am besten zu Ihrem Budget und Ihrer Passagierzahl passt.", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq bietet mehrere Zahlungsmethoden für Ihre Bequemlichkeit. Wählen Sie zwischen Barzahlung oder Kredit-/Debitkartenzahlung während der Fahrtbestätigung.", + "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 bietet verschiedene Sicherheitsfunktionen, darunter Fahrerverifizierung, In-App-Fahrtverfolgung, Notfallkontaktoptionen und die Möglichkeit, Ihren Fahrtstatus mit vertrauenswürdigen Kontakten zu teilen.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq priorisiert Ihre Sicherheit. Wir bieten Funktionen wie Fahrerverifizierung, In-App-Fahrtverfolgung und Notfallkontaktoptionen.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq bietet eine In-App-Chat-Funktion, die es Ihnen ermöglicht, während Ihrer Fahrt mit Ihrem Fahrer oder Fahrgast zu kommunizieren.", + "Intaleq's Response": "Antwort von Intaleq", + "Invalid MPIN": "Ungültiger MPIN", + "Invalid OTP": "Ungültiger OTP", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "Einladung verwendet", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "Einladung erfolgreich gesendet", + "Is the Passenger in your Car ?": "Ist der Fahrgast in Ihrem Auto?", + "Issue Date": "Ausstellungsdatum", + "IssueDate": "Ausstellungsdatum", + "JOD": "JOD", + "Join": "Beitreten", + "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "Jordanien", + "KM": "KM", + "Keep it up!": "Weiter so!", + "Kuwait": "Kuwait", + "LE": "LE", + "Lady": "Lady", + "Lady Captain for girls": "Fahrerin für Frauen", + "Lady Captains Available": "Kapitäninnen verfügbar", + "Language": "Sprache", + "Language Options": "Sprachoptionen", + "Last Name": "Last Name", + "Last name": "Nachname", + "Latest Recent Trip": "Letzte kürzliche Fahrt", + "Learn more about our app and mission": "Erfahren Sie mehr über unsere App und Mission", + "Leave": "Verlassen", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "Lassen Sie uns die Fahrzeuglizenz überprüfen ", + "Lets check License Back Face": "Lassen Sie uns die Rückseite des Führerscheins überprüfen", + "License Categories": "Lizenzkategorien", + "License Type": "Lizenztyp", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "Link a phone number for transfers", + "Listen": "Listen", + "Location": "Location", + "Location Link": "Standortlink", + "Location Received": "Location Received", + "Log Off": "Abmelden", + "Log Out Page": "Abmeldeseite", + "Login": "Anmelden", + "Login Captin": "Kapitän anmelden", + "Login Driver": "Fahrer anmelden", + "Logout": "Logout", + "Lowest Price Achieved": "Niedrigster Preis erreicht", + "Made :": "Hergestellt :", + "Make": "Marke", + "Make is ": "Marke ist ", + "Male": "Männlich", + "Map Error": "Map Error", + "Map Passenger": "Karte Fahrgast", + "Marital Status": "Familienstand", + "Master's Degree": "Master-Abschluss", + "Maximum fare": "Höchsttarif", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Mindesttarif", + "Minute": "Minute", + "Mishwar Vip": "Mishwar Vip", + "Model": "Modell", + "Model is": "Modell ist", + "Morning": "Morgen", + "Most Secure Methods": "Sicherste Methoden", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "Karte bewegen, um die Nadel anzupassen", + "Mute": "Mute", + "My Balance": "Mein Guthaben", + "My Card": "Meine Karte", + "My Cared": "Meine Karten", + "My Profile": "Mein Profil", + "My current location is:": "Mein aktueller Standort ist:", + "My location is correct. You can search for me using the navigation app": "Mein Standort ist korrekt. Sie können mich über die Navigations-App suchen.", + "MyLocation": "Mein Standort", + "N/A": "N/A", + "Name": "Name", + "Name (Arabic)": "Name (Arabisch)", + "Name (English)": "Name (Englisch)", + "Name :": "Name :", + "Name in arabic": "Name auf Arabisch", + "Name of the Passenger is ": "Der Name des Fahrgasts ist ", + "National ID": "Nationale ID", + "National Number": "Nationale Nummer", + "NationalID": "Nationale ID", + "Nearby": "Nearby", + "Nearest Car": "Nächstes Auto", + "Nearest Car for you about ": "Nächstes Auto für Sie in etwa ", + "Nearest Car: ~": "Nächstes Auto: ~", + "Need assistance? Contact us": "Brauchen Sie Hilfe? Kontaktieren Sie uns", + "Network error occurred": "Network error occurred", + "Next": "Weiter", + "Night": "Nacht", + "No": "Nein", + "No ,still Waiting.": "Nein, noch warten.", + "No Captain Accepted Your Order": "Kein Kapitän hat Ihre Bestellung angenommen", + "No Car in your site. Sorry!": "Kein Auto in Ihrer Region. Entschuldigung!", + "No Car or Driver Found in your area.": "Kein Auto oder Fahrer in Ihrer Region gefunden.", + "No Drivers Found": "Keine Fahrer gefunden", + "No I want": "Nein, ich möchte", + "No Notifications": "No Notifications", + "No Promo for today .": "Keine Promotion für heute.", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "Noch keine Antwort.", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Keine SIM-Karte, kein Problem! Rufen Sie Ihren Fahrer direkt über unsere App an. Wir verwenden fortschrittliche Technologie, um Ihre Privatsphäre zu gewährleisten.", + "No accepted orders? Try raising your trip fee to attract riders.": "Keine angenommenen Bestellungen? Versuchen Sie, Ihre Fahrpreise zu erhöhen, um Fahrer anzulocken.", + "No audio files found.": "Keine Audiodateien gefunden.", + "No cars nearby": "Keine Autos in der Nähe", + "No contacts available": "No contacts available", + "No contacts found": "Keine Kontakte gefunden", + "No contacts with phone numbers were found on your device.": "Auf Ihrem Gerät wurden keine Kontakte mit Telefonnummern gefunden.", + "No driver accepted my request": "Kein Fahrer hat meine Anfrage angenommen", + "No drivers accepted your request yet": "No drivers accepted your request yet", + "No drivers available": "Keine Fahrer verfügbar", + "No drivers available at the moment. Please try again later.": "Derzeit sind keine Fahrer verfügbar. Bitte versuchen Sie es später erneut.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "Derzeit wurden keine Fahrer gefunden.\nBitte versuchen Sie es später noch einmal.", + "No face detected": "Kein Gesicht erkannt", + "No favorite places yet!": "Noch keine Lieblingsorte!", + "No i want": "No i want", + "No image selected yet": "Noch kein Bild ausgewählt", + "No invitation found yet!": "Noch keine Einladung gefunden!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "Niemand hat angenommen? Versuchen Sie, den Fahrpreis zu erhöhen.", + "No passenger found for the given phone number": "Kein Fahrgast für die angegebene Telefonnummer gefunden", + "No promos available right now.": "Derzeit sind keine Promos verfügbar.", + "No ride found yet": "Noch keine Fahrt gefunden", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "Keine Fahrtdaten verfügbar", + "No trip history found": "Keine Fahrthistorie gefunden", + "No trip yet found": "Noch keine Fahrt gefunden", + "No user found": "No user found", + "No user found for the given phone number": "Kein Benutzer für die angegebene Telefonnummer gefunden", + "No wallet record found": "Kein Portemonnaie-Eintrag gefunden", + "No, I don't have a code": "Nein, ich habe keinen Code", + "No, I want to cancel this trip": "Nein, ich möchte diese Fahrt stornieren", + "No, thanks": "Nein, danke", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "Nicht verbunden", + "Not set": "Nicht festgelegt", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "Benachrichtigungen", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Wählen Sie nun den Startpunkt aus", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "Beruf", + "Ok": "Ok", + "Ok , See you Tomorrow": "Ok, bis morgen", + "Ok I will go now.": "Ok, ich werde jetzt gehen.", + "Old and affordable, perfect for budget rides.": "Alt und erschwinglich, perfekt für preiswerte Fahrten.", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "Einstellungen öffnen", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "Oder zahlen Sie stattdessen bar", + "Order": "Bestellung", + "Order Accepted": "Bestellung angenommen", + "Order Applied": "Bestellung übernommen", + "Order Cancelled": "Bestellung storniert", + "Order Cancelled by Passenger": "Bestellung vom Fahrgast storniert", + "Order Details Intaleq": "Bestelldetails Geschwindigkeit", + "Order Details Siro": "Order Details Siro", + "Order History": "Bestellverlauf", + "Order Request Page": "Bestellanfrageseite", + "Order Under Review": "Bestellung in Überprüfung", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "Für mich selbst bestellen", + "Order for someone else": "Für jemand anderen bestellen", + "OrderId": "Bestell-ID", + "OrderVIP": "VIP-Bestellung", + "Origin": "Ursprung", + "Other": "Andere", + "Our dedicated customer service team ensures swift resolution of any issues.": "Unser engagiertes Kundenservice-Team sorgt für eine schnelle Lösung aller Probleme.", + "Owner Name": "Name des Eigentümers", + "Passenger": "Passenger", + "Passenger Cancel Trip": "Fahrgast hat die Fahrt storniert", + "Passenger Name is ": "Fahrgastname ist ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Der Fahrgast hat die Bestellung storniert", + "Passenger come to you": "Fahrgast kommt zu Ihnen", + "Passenger name : ": "Fahrgastname : ", + "Password": "Passwort", + "Password must br at least 6 character.": "Das Passwort muss mindestens 6 Zeichen lang sein.", + "Paste WhatsApp location link": "Fügen Sie den WhatsApp-Standortlink ein", + "Paste location link here": "Fügen Sie den Standortlink hier ein", + "Paste the code here": "Fügen Sie den Code hier ein", + "Pay": "Bezahlen", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Direkt beim Kapitän bezahlen", + "Pay from my budget": "Aus meinem Budget bezahlen", + "Pay with Credit Card": "Mit Kreditkarte bezahlen", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "Mit Portemonnaie bezahlen", + "Pay with Your": "Bezahlen Sie mit Ihrem", + "Pay with Your PayPal": "Mit Ihrem PayPal bezahlen", + "Payment Failed": "Zahlung fehlgeschlagen", + "Payment History": "Payment History", + "Payment Method": "Zahlungsmethode", + "Payment Options": "Zahlungsoptionen", + "Payment Successful": "Zahlung erfolgreich", + "Payments": "Zahlungen", + "Perfect for adventure seekers who want to experience something new and exciting": "Perfekt für Abenteurer, die etwas Neues und Aufregendes erleben möchten", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfekt für Fahrgäste, die die neuesten Automodelle suchen und die Freiheit haben möchten, jede gewünschte Route zu wählen", + "Permission Required": "Permission Required", + "Permission denied": "Berechtigung verweigert", + "Personal Information": "Persönliche Informationen", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Telefonnummer ist", + "Phone Wallet Saved Successfully": "Telefon-Portemonnaie erfolgreich gespeichert", + "Phone number is verified before": "Die Telefonnummer wurde bereits verifiziert", + "Phone number isn't an Egyptian phone number": "Die Telefonnummer ist keine ägyptische Telefonnummer", + "Phone number must be exactly 11 digits long": "Die Telefonnummer muss genau 11 Ziffern lang sein", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "Aus der Karte auswählen", + "Pick from map destination": "Ziel auf der Karte auswählen", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Auswählen oder Tippen, um zu bestätigen", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "Wählen Sie Ihr Ziel aus der Karte aus", + "Pick your ride location on the map - Tap to confirm": "Wählen Sie Ihren Fahrtort auf der Karte aus - Tippen Sie, um zu bestätigen", + "Plan Your Route": "Plan Your Route", + "Plate": "Nummernschild", + "Plate Number": "Nummernschild", + "Please Try anther time ": "Bitte versuchen Sie es zu einem anderen Zeitpunkt ", + "Please Wait If passenger want To Cancel!": "Bitte warten Sie, wenn der Fahrgast stornieren möchte!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "Bitte überprüfen Sie Ihre Internetverbindung", + "Please don't be late": "Bitte seien Sie nicht zu spät", + "Please don't be late, I'm waiting for you at the specified location.": "Bitte seien Sie nicht zu spät, ich warte an dem angegebenen Ort auf Sie.", + "Please enter": "Bitte eingeben", + "Please enter Your Email.": "Bitte geben Sie Ihre E-Mail ein.", + "Please enter Your Password.": "Bitte geben Sie Ihr Passwort ein.", + "Please enter a correct phone": "Bitte geben Sie eine korrekte Telefonnummer ein", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "Bitte geben Sie eine Telefonnummer ein", + "Please enter a valid 16-digit card number": "Bitte geben Sie eine gültige 16-stellige Kartennummer ein", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Bitte geben Sie einen gültigen Promo-Code ein", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Bitte geben Sie den CVV-Code ein", + "Please enter the cardholder name": "Bitte geben Sie den Namen des Karteninhabers ein", + "Please enter the complete 6-digit code.": "Bitte geben Sie den vollständigen 6-stelligen Code ein.", + "Please enter the expiry date": "Bitte geben Sie das Ablaufdatum ein", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Bitte geben Sie Ihre Stadt ein.", + "Please enter your Question.": "Bitte geben Sie Ihre Frage ein.", + "Please enter your complaint.": "Bitte geben Sie Ihre Beschwerde ein.", + "Please enter your feedback.": "Bitte geben Sie Ihr Feedback ein.", + "Please enter your first name.": "Bitte geben Sie Ihren Vornamen ein.", + "Please enter your last name.": "Bitte geben Sie Ihren Nachnamen ein.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Bitte geben Sie Ihre Telefonnummer ein.", + "Please go to Car Driver": "Bitte gehen Sie zum Autofahrer", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "Bitte gehen Sie jetzt zum Auto ", + "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 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": "Bitte stellen Sie sicher, dass Sie alle Ihre persönlichen Gegenstände haben und dass etwaige verbleibende Fahrpreise, falls zutreffend, vor dem Verlassen Ihrem Portemonnaie hinzugefügt wurden. Vielen Dank, dass Sie die Intaleq-App gewählt haben", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "Bitte legen Sie Ihren Führerschein in diesen Rahmen", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "Bitte bleiben Sie am ausgewählten Punkt.", + "Please try again in a few moments": "Bitte versuchen Sie es in einigen Augenblicken erneut", + "Please verify your identity": "Bitte verifizieren Sie Ihre Identität", + "Please wait for the passenger to enter the car before starting the trip.": "Bitte warten Sie, bis der Fahrgast ins Auto steigt, bevor Sie die Fahrt starten.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "Bitte geben Sie den Grund an...", + "Point": "Punkt", + "Potential security risks detected. The application may not function correctly.": "Potenzielle Sicherheitsrisiken erkannt. Die Anwendung funktioniert möglicherweise nicht korrekt.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Vorabbuchung", + "Preferences": "Preferences", + "Price": "Preis", + "Price of trip": "Preis der Fahrt", + "Privacy Notice": "Datenschutzhinweis", + "Privacy Policy": "Datenschutzrichtlinie", + "Professional driver": "Professional driver", + "Profile": "Profil", + "Profile photo updated": "Profile photo updated", + "Promo": "Promo", + "Promo Already Used": "Promotion bereits verwendet", + "Promo Code": "Promo-Code", + "Promo Code Accepted": "Promo-Code akzeptiert", + "Promo Copied!": "Promotion kopiert!", + "Promo End !": "Promotion beendet!", + "Promo Ended": "Promotion beendet", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "Promo-Code in die Zwischenablage kopiert!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "Promotionen", + "Promos For Today": "Promotionen für heute", + "Pyament Cancelled .": "Zahlung storniert .", + "Qatar": "Katar", + "Quick Access": "Quick Access", + "Quick Actions": "Schnelle Aktionen", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "Leise & Umweltfreundlich", + "Rate Captain": "Kapitän bewerten", + "Rate Driver": "Fahrer bewerten", + "Rate Passenger": "Fahrgast bewerten", + "Rating is": "Rating is", + "Rating is ": "Bewertung ist ", + "Rating is ": "Rating is ", + "Rayeh Gai": "Rayeh Gai", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai: Rundreiseservice für bequemes Reisen zwischen Städten, einfach und zuverlässig.", + "Reach out to us via": "Reach out to us via", + "Received empty route data.": "Received empty route data.", + "Recent Places": "Letzte Orte", + "Recharge my Account": "Mein Konto aufladen", + "Record": "Record", + "Record saved": "Aufnahme gespeichert", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "Aufgezeichnete Fahrten (Sprach- & KI-Analyse)", + "Recorded Trips for Safety": "Aufgezeichnete Fahrten für die Sicherheit", + "Refresh Map": "Karte aktualisieren", + "Refuse Order": "Bestellung ablehnen", + "Register": "Registrieren", + "Register Captin": "Kapitän registrieren", + "Register Driver": "Fahrer registrieren", + "Register as Driver": "Als Fahrer registrieren", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Religion", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "Code erneut senden", + "Resend code": "Code erneut senden", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "Fahrtmanagement", + "Ride Summaries": "Fahrtzusammenfassungen", + "Ride Summary": "Fahrtzusammenfassung", + "Ride Today : ": "Fahrt heute : ", + "Ride Wallet": "Fahrt-Portemonnaie", + "Rides": "Fahrten", + "Rouats of Trip": "Routen der Fahrt", + "Route": "Route", + "Route Not Found": "Route Not Found", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "SOS-Telefon", + "SYP": "SYP", + "Safety & Security": "Sicherheit & Schutz", + "Saudi Arabia": "Saudi-Arabien", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "Kreditkarte speichern", + "Save Name": "Save Name", + "Saved Sucssefully": "Erfolgreich gespeichert", + "Scan Driver License": "Führerschein scannen", + "Scan ID MklGoogle": "ID MklGoogle scannen", + "Scan Id": "ID scannen", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Geplante Zeit:", + "Scooter": "Roller", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "Nach einem anderen Fahrer suchen", + "Search for waypoint": "Wegpunkt suchen", + "Search for your Start point": "Suchen Sie Ihren Startpunkt", + "Search for your destination": "Suchen Sie Ihr Ziel", + "Searching for nearby drivers...": "Suche nach Fahrern in der Nähe...", + "Searching for the nearest captain...": "Suche nach dem nächsten Kapitän...", + "Secure": "Secure", + "Security Warning": "Sicherheitswarnung", + "See you on the road!": "Wir sehen uns auf der Straße!", + "Select Appearance": "Select Appearance", + "Select Country": "Land auswählen", + "Select Date": "Datum auswählen", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "Bestelltyp auswählen", + "Select Payment Amount": "Zahlungsbetrag auswählen", + "Select This Ride": "Select This Ride", + "Select Time": "Zeit auswählen", + "Select Waiting Hours": "Wartezeit auswählen", + "Select Your Country": "Wählen Sie Ihr Land aus", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Datum und Uhrzeit der Fahrt auswählen", + "Select one message": "Wählen Sie eine Nachricht", + "Select recorded trip": "Aufgezeichnete Fahrt auswählen", + "Select your destination": "Wählen Sie Ihr Ziel aus", + "Select your preferred language for the app interface.": "Wählen Sie Ihre bevorzugte Sprache für die App-Oberfläche.", + "Selected Date": "Ausgewähltes Datum", + "Selected Date and Time": "Ausgewähltes Datum und Uhrzeit", + "Selected Time": "Ausgewählte Zeit", + "Selected driver": "Ausgewählter Fahrer", + "Selected file:": "Ausgewählte Datei:", + "Send Email": "Send Email", + "Send Intaleq app to him": "Senden Sie ihm die Intaleq-App", + "Send Invite": "Einladung senden", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Verifizierungscode senden", + "Send Verification Code": "Verifizierungscode senden", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Benutzerdefinierte Nachricht senden", + "Send to Driver Again": "Nochmals an den Fahrer senden", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Sitzung abgelaufen. Bitte melden Sie sich erneut an.", + "Set Destination": "Set Destination", + "Set Location on Map": "Ort auf der Karte festlegen", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Set Wallet Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "Abholort festlegen", + "Setting": "Einstellung", + "Settings": "Einstellungen", + "Sex is ": "Geschlecht ist ", + "Share": "Share", + "Share App": "App teilen", + "Share Trip": "Share Trip", + "Share Trip Details": "Fahrtdetails teilen", + "Share this code with your friends and earn rewards when they use it!": "Teilen Sie diesen Code mit Ihren Freunden und verdienen Sie Belohnungen, wenn sie ihn verwenden!", + "Share with friends and earn rewards": "Mit Freunden teilen und Belohnungen verdienen", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Einladungen anzeigen", + "Show Promos": "Promotionen anzeigen", + "Show Promos to Charge": "Promotionen zum Aufladen anzeigen", + "Show latest promo": "Neueste Promotion anzeigen", + "Showing": "Showing", + "Sign In by Apple": "Mit Apple anmelden", + "Sign In by Google": "Mit Google anmelden", + "Sign In with Google": "Mit Google anmelden", + "Sign Out": "Abmelden", + "Sign in for a seamless experience": "Melden Sie sich für ein nahtloses Erlebnis an", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Mit Apple anmelden", + "Sign in with Google for easier email and name entry": "Melden Sie sich mit Google an, um E-Mail und Namen einfacher einzugeben", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Öffnen Sie einfach die Intaleq-App, geben Sie Ihr Ziel ein und tippen Sie auf \"Fahrt anfordern\". Die App verbindet Sie mit einem nahegelegenen Fahrer.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "Entschuldigung 😔", + "Sorry, there are no cars available of this type right now.": "Leider sind derzeit keine Fahrzeuge dieses Typs verfügbar.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Geräumiger Van-Service, ideal für Familien und Gruppen. Komfortables, sicheres und kostengünstiges gemeinsames Reisen.", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "Aufnahme starten", + "Start the Ride": "Fahrt starten", + "Statistics": "Statistiken", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Schritt-für-Schritt-Anleitung, wie Sie eine Fahrt über die Intaleq-App buchen können.", + "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 Siro app.", + "Stop": "Stop", + "Submit": "Einreichen", + "Submit ": "Einreichen ", + "Submit Complaint": "Beschwerde einreichen", + "Submit Question": "Frage einreichen", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "Beschwerde einreichen", + "Submit rating": "Bewertung abschicken", + "Success": "Erfolg", + "Support & Info": "Support & Info", + "Support is Away": "Support is Away", + "Support is currently Online": "Support is currently Online", + "Switch Rider": "Fahrgast wechseln", + "Syria": "Syrien", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "Syriens wegweisender Fahrtdienst, stolz entwickelt von arabischen und lokalen Eigentümern. Wir legen Wert darauf, nah bei Ihnen zu sein – sowohl bei unseren geschätzten Fahrgästen als auch bei unseren engagierten Kapitänen.", + "System Default": "System Default", + "Take Image": "Bild aufnehmen", + "Take Picture Of Driver License Card": "Machen Sie ein Bild Ihrer Führerscheinkarte", + "Take Picture Of ID Card": "Machen Sie ein Bild Ihres Ausweises", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "Tippen Sie auf den Promo-Code, um ihn zu kopieren!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "Ziel", + "Tariff": "Tarif", + "Tariffs": "Tarife", + "Tax Expiry Date": "Steuerablaufdatum", + "Terms of Use": "Nutzungsbedingungen", + "Terms of Use & Privacy Notice": "Nutzungsbedingungen & Datenschutzhinweis", + "Thanks": "Danke", + "The Driver Will be in your location soon .": "Der Fahrer wird bald an Ihrem Standort sein .", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "Die Audiodatei wurde noch nicht hochgeladen.\nMöchten Sie ohne sie senden?", + "The captain is responsible for the route.": "Der Kapitän ist für die Route verantwortlich.", + "The distance less than 500 meter.": "Die Entfernung beträgt weniger als 500 Meter.", + "The driver accept your order for": "Der Fahrer hat Ihre Bestellung für", + "The driver accepted your order for": "Der Fahrer hat Ihre Bestellung für", + "The driver accepted your trip": "Der Fahrer hat Ihre Fahrt angenommen", + "The driver canceled your ride.": "Der Fahrer hat Ihre Fahrt storniert.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "Der Fahrer hat die Fahrt aus einem Notfall abgebrochen.\nMöchten Sie sofort nach einem anderen Fahrer suchen?", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "Der Fahrer ist auf dem Weg zu Ihnen", + "The driver waiting you in picked location .": "Der Fahrer wartet an dem ausgewählten Ort auf Sie.", + "The driver waitting you in picked location .": "Der Fahrer wartet an dem ausgewählten Ort auf Sie .", + "The drivers are reviewing your request": "Die Fahrer überprüfen Ihre Anfrage", + "The email or phone number is already registered.": "Die E-Mail oder Telefonnummer ist bereits registriert.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Der vollständige Name in Ihrem Führungszeugnis stimmt nicht mit dem in Ihrem Führerschein überein. Bitte überprüfen Sie dies und stellen Sie die korrekten Dokumente bereit.", + "The invitation was sent successfully": "Die Einladung wurde erfolgreich versendet", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Die nationale Nummer auf Ihrem Führerschein stimmt nicht mit der in Ihrem Ausweisdokument überein. Bitte überprüfen Sie dies und stellen Sie die korrekten Dokumente bereit.", + "The order Accepted by another Driver": "Die Bestellung wurde von einem anderen Fahrer angenommen", + "The order has been accepted by another driver.": "Die Bestellung wurde von einem anderen Fahrer angenommen.", + "The payment was approved.": "Die Zahlung wurde genehmigt.", + "The payment was not approved. Please try again.": "Die Zahlung wurde nicht genehmigt. Bitte versuchen Sie es erneut.", + "The price may increase if the route changes.": "Der Preis kann steigen, wenn sich die Route ändert.", + "The promotion period has ended.": "Die Promotionsperiode ist beendet.", + "The reason is": "Der Grund ist", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Die Fahrt hat begonnen! Zögern Sie nicht, Notrufnummern zu kontaktieren, Ihre Fahrt zu teilen oder die Sprachaufzeichnung für die Reise zu aktivieren", + "There is no Car or Driver in your area.": "In Ihrer Region gibt es kein Auto oder Fahrer.", + "There is no data yet.": "Es gibt noch keine Daten.", + "There is no help Question here": "Hier gibt es keine Hilfefrage", + "There is no notification yet": "Es gibt noch keine Benachrichtigung", + "There no Driver Aplly your order sorry for that ": "Es hat kein Fahrer Ihre Bestellung angenommen, tut uns leid ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Hier herrscht starker Verkehr. Können Sie einen alternativen Abholpunkt vorschlagen?", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "Dieser Betrag für alle Fahrten, die ich von Fahrgästen erhalte", + "This amount for all trip I get from Passengers and Collected For me in": "Dieser Betrag für alle Fahrten, die ich von Fahrgästen erhalte und für mich gesammelt habe in", + "This is a scheduled notification.": "Dies ist eine geplante Benachrichtigung.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Dies ist für einen Roller oder ein Motorrad.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "Diese Telefonnummer wurde bereits eingeladen.", + "This price is": "Dieser Preis ist", + "This price is fixed even if the route changes for the driver.": "Dieser Preis ist fest, auch wenn sich die Route für den Fahrer ändert.", + "This price may be changed": "Dieser Preis kann geändert werden", + "This ride is already applied by another driver.": "Diese Fahrt wurde bereits von einem anderen Fahrer übernommen.", + "This ride is already taken by another driver.": "Diese Fahrt wurde bereits von einem anderen Fahrer übernommen.", + "This ride type allows changes, but the price may increase": "Dieser Fahrttyp erlaubt Änderungen, aber der Preis kann steigen", + "This ride type does not allow changes to the destination or additional stops": "Dieser Fahrttyp erlaubt keine Änderungen des Ziels oder zusätzliche Stopps", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Diese Fahrt geht direkt von Ihrem Startpunkt zu Ihrem Ziel für einen festen Preis. Der Fahrer muss der geplanten Route folgen.", + "This trip is for women only": "Diese Fahrt ist nur für Frauen", + "Time": "Time", + "Time to arrive": "Ankunftszeit", + "Tip is ": "Trinkgeld ist ", + "To :": "To :", + "To : ": "Nach : ", + "To Home": "Nach Hause", + "To Work": "Zur Arbeit", + "To become a passenger, you must review and agree to the ": "Um Fahrgast zu werden, müssen Sie die folgenden Bedingungen lesen und ihnen zustimmen: ", + "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.": "Um ein Mitfahrfahrer in der Intaleq-App zu werden, müssen Sie Ihren Führerschein, Ihr Ausweisdokument und Ihr Fahrzeugregistrierungsdokument hochladen. Unser KI-System überprüft und verifiziert deren Authentizität in nur 2-3 Minuten. Wenn Ihre Dokumente genehmigt werden, können Sie als Fahrer in der Intaleq-App arbeiten. Bitte beachten Sie, dass die Einreichung betrügerischer Dokumente eine schwerwiegende Straftat darstellt und zu sofortiger Kündigung und rechtlichen Konsequenzen führen kann.", + "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 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 change Language the App": "Um die Sprache der App zu ändern", + "To change some Settings": "Um einige Einstellungen zu ändern", + "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 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 Intaleq support directly.": "Um sich als Fahrer zu registrieren oder mehr über die Anforderungen zu erfahren, besuchen Sie bitte unsere Website oder kontaktieren Sie den Intaleq-Support direkt.", + "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 Siro support directly.", + "To use Wallet charge it": "Um das Portemonnaie zu verwenden, laden Sie es auf", + "Today's Promos": "Heutige Promos", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Top up Wallet", + "Top up Wallet to continue": "Geldbörse aufladen, um fortzufahren", + "Total Amount:": "Gesamtbetrag:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "Das Gesamtbudget aus Fahrten per\nKreditkarte beträgt ", + "Total Budget from trips is ": "Das Gesamtbudget aus Fahrten beträgt ", + "Total Connection Duration:": "Gesamte Verbindungsdauer:", + "Total Cost": "Gesamtkosten", + "Total Cost is ": "Die Gesamtkosten betragen ", + "Total Duration:": "Gesamtdauer:", + "Total For You is ": "Gesamtbetrag für Sie ist ", + "Total From Passenger is ": "Gesamtbetrag vom Fahrgast ist ", + "Total Hours on month": "Gesamtstunden im Monat", + "Total Invites": "Total Invites", + "Total Points is": "Die Gesamtpunktzahl beträgt", + "Total Price": "Total Price", + "Total budgets on month": "Gesamtbudgets des Monats", + "Total points is ": "Die Gesamtpunktzahl beträgt ", + "Total price from ": "Gesamtpreis ab ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Reisen Sie in einem modernen, geräuschlosen Elektroauto. Eine erstklassige, umweltfreundliche Wahl für eine reibungslose Fahrt.", + "Trip Cancelled": "Fahrt storniert", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Fahrt storniert. Die Kosten der Fahrt werden Ihrem Portemonnaie hinzugefügt.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Fahrt storniert. Die Kosten der Fahrt werden von Ihrem Portemonnaie abgezogen.", + "Trip Monitor": "Fahrtmonitor", + "Trip Monitoring": "Fahrtüberwachung", + "Trip Status:": "Fahrtstatus:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "Fahrt beendet", + "Trip finished ": "Trip finished ", + "Trip has Steps": "Die Fahrt hat Schritte", + "Trip is Begin": "Fahrt beginnt", + "Trip updated successfully": "Fahrt erfolgreich aktualisiert", + "Trips recorded": "Fahrten aufgezeichnet", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "Türkei", + "Type here Place": "Geben Sie hier den Ort ein", + "Type something...": "Geben Sie etwas ein...", + "Type your Email": "Geben Sie Ihre E-Mail ein", + "Type your message": "Geben Sie Ihre Nachricht ein", + "Type your message...": "Type your message...", + "USA": "USA", + "Uncompromising Security": "Kompromisslose Sicherheit", + "Unknown Driver": "Unbekannter Fahrer", + "Unknown Location": "Unknown Location", + "Update": "Aktualisieren", + "Update Available": "Update verfügbar", + "Update Education": "Bildung aktualisieren", + "Update Gender": "Geschlecht aktualisieren", + "Update Name": "Update Name", + "Uploaded": "Hochgeladen", + "Use Touch ID or Face ID to confirm payment": "Verwenden Sie Touch ID oder Face ID, um die Zahlung zu bestätigen", + "Use code:": "Use code:", + "Use my invitation code to get a special gift on your first ride!": "Nutzen Sie meinen Einladungscode, um ein besonderes Geschenk bei Ihrer ersten Fahrt zu erhalten!", + "Use my referral code:": "Use my referral code:", + "User does not exist.": "Benutzer existiert nicht.", + "User does not have a wallet #1652": "Der Benutzer hat kein Portemonnaie #1652", + "User not found": "Benutzer nicht gefunden", + "User with this phone number or email already exists.": "Benutzer mit dieser Telefonnummer oder E-Mail existiert bereits.", + "Uses cellular network": "Uses cellular network", + "VIN": "Fahrgestellnummer", + "VIN :": "Fahrgestellnummer :", + "VIN is": "Fahrgestellnummer ist", + "VIP Order": "VIP-Bestellung", + "Valid Until:": "Gültig bis:", + "Van": "Van", + "Van for familly": "Familien-Van", + "Variety of Trip Choices": "Vielfalt der Fahrtoptionen", + "Vehicle Details Back": "Fahrzeugdetails Rückseite", + "Vehicle Details Front": "Fahrzeugdetails Vorderseite", + "Vehicle Options": "Fahrzeugoptionen", + "Verification Code": "Verifizierungscode", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "Verifizieren", + "Verify Email": "E-Mail verifizieren", + "Verify Email For Driver": "E-Mail für Fahrer verifizieren", + "Verify OTP": "Code verifizieren", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Vibrationsfeedback für alle Tasten", + "View Map": "View Map", + "View your past transactions": "View your past transactions", + "Visit Website/Contact Support": "Website besuchen/Support kontaktieren", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Besuchen Sie unsere Website oder kontaktieren Sie den Intaleq-Support für Informationen zur Fahrerregistrierung und den Anforderungen.", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "Voice Call", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Warten auf VIP", + "Waiting for Captin ...": "Warten auf Kapitän ...", + "Waiting for Driver ...": "Warten auf Fahrer ...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Warten auf Ihren Standort", + "Waiting...": "Waiting...", + "Wallet": "Portemonnaie", + "Wallet is blocked": "Wallet is blocked", + "Wallet!": "Portemonnaie!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "Warnung: Geschwindigkeitsüberschreitung erkannt!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Warning: Speeding detected!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "Es tut uns leid, dass wir keine Autos in Ihrer Region haben!", + "We apologize 😔": "Wir bitten um Entschuldigung 😔", + "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", + "We are process picture please wait ": "Wir verarbeiten das Bild, bitte warten Sie ", + "We are search for nearst driver": "Wir suchen den nächstgelegenen Fahrer", + "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 couldn't find a valid route to this destination. Please try selecting a different point.": "We couldn't find a valid route to this destination. Please try selecting a different point.", + "We have sent a verification code to your mobile number:": "Wir haben einen Verifizierungscode an Ihre Handynummer gesendet:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Wir haben noch keine Fahrer gefunden. Erwägen Sie, Ihre Fahrpreise zu erhöhen, um Ihr Angebot für Fahrer attraktiver zu machen.", + "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 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.": "Wir haben festgestellt, dass die Geschwindigkeit 100 km/h überschreitet. Bitte verlangsamen Sie für Ihre Sicherheit. Wenn Sie sich unsicher fühlen, können Sie Ihre Fahrtdetails mit einem Kontakt teilen oder die Polizei über die rote SOS-Taste anrufen.", + "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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "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", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "Wir verwenden den Standort, um genaue und nahegelegene Fahrgäste für Sie zu finden", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "Wir verwenden Ihren genauen Standort, um den nächsten verfügbaren Fahrer zu finden und genaue Abhol- und Absetzinformationen bereitzustellen. Sie können dies in den Einstellungen verwalten.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "Wir werden nach einem neuen Fahrer suchen.\nBitte warten Sie.", + "We're here to help you 24/7": "We're here to help you 24/7", + "Welcome Back": "Welcome Back", + "Welcome Back!": "Willkommen zurück!", + "Welcome to Intaleq!": "Willkommen bei Intaleq!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "Welche Anforderungen gibt es, um Fahrer zu werden?", + "What safety measures does Intaleq offer?": "Welche Sicherheitsmaßnahmen bietet Intaleq?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Welche Fahrzeugtypen sind verfügbar?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "WhatsApp-Standort-Extraktor", + "When": "Wann", + "Where are you going?": "Wohin gehen Sie?", + "Where are you, sir?": "Wo sind Sie, Sir?", + "Where to": "Wohin", + "Where you want go ": "Wohin Sie gehen möchten ", + "Why Choose Intaleq?": "Warum Intaleq wählen?", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "Mit Intaleq können Sie in wenigen Minuten eine Fahrt zu Ihrem Ziel bekommen.", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "Arbeit", + "Work & Contact": "Arbeit & Kontakt", + "Work Saved": "Arbeitsort gespeichert", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "Die Arbeitszeit ist von 12:00 - 19:00 Uhr.\nSie können eine WhatsApp-Nachricht oder E-Mail senden.", + "Working Hours:": "Working Hours:", + "Write note": "Notiz schreiben", + "Wrong pickup location": "Falscher Abholort", + "Year": "Jahr", + "Year is": "Jahr ist", + "Yes": "Yes", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Ja, Sie können Ihre Fahrt unter bestimmten Bedingungen stornieren (z.B. bevor der Fahrer zugewiesen wird). Weitere Details finden Sie in der Stornierungsrichtlinie von Intaleq.", + "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 Siro 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 Are Stopped For this Day !": "Sie sind für diesen Tag gestoppt!", + "You Can Cancel Trip And get Cost of Trip From": "Sie können die Fahrt stornieren und die Fahrtkosten von", + "You Can cancel Ride After Captain did not come in the time": "Sie können die Fahrt stornieren, wenn der Kapitän nicht rechtzeitig gekommen ist", + "You Dont Have Any amount in": "Sie haben keinen Betrag in", + "You Dont Have Any places yet !": "Sie haben noch keine Orte!", + "You Have": "Sie haben", + "You Have Tips": "Sie haben Trinkgeld", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "Sie haben 3 Fahrten an diesem Tag abgelehnt, das ist der Grund \nBis morgen!", + "You Should be select reason.": "Sie sollten einen Grund auswählen.", + "You Should choose rate figure": "Sie sollten eine Bewertungszahl auswählen", + "You are Delete": "Sie löschen", + "You are Stopped": "Sie sind gestoppt", + "You are not in near to passenger location": "Sie sind nicht in der Nähe des Standorts des Fahrgasts", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "Sie können Punkte kaufen, um online zu gehen\nmit dieser Liste unten", + "You can buy points from your budget": "Sie können Punkte aus Ihrem Budget kaufen", + "You can call or record audio during this trip.": "You can call or record audio during this trip.", + "You can call or record audio of this trip": "Sie können anrufen oder das Audio dieser Fahrt aufnehmen", + "You can cancel Ride now": "Sie können die Fahrt jetzt stornieren", + "You can cancel trip": "Sie können die Fahrt stornieren", + "You can change the Country to get all features": "Sie können das Land ändern, um alle Funktionen zu erhalten", + "You can change the destination by long-pressing any point on the map": "Sie können das Ziel ändern, indem Sie einen beliebigen Punkt auf der Karte lange drücken", + "You can change the language of the app": "Sie können die Sprache der App ändern", + "You can change the vibration feedback for all buttons": "Sie können das Vibrationsfeedback für alle Schaltflächen ändern", + "You can claim your gift once they complete 2 trips.": "Sie können Ihr Geschenk anfordern, sobald zwei Fahrten abgeschlossen sind.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Sie können mit Ihrem Fahrer oder Fahrgast über die In-App-Chat-Funktion kommunizieren, sobald eine Fahrt bestätigt ist.", + "You can contact us during working hours from 10:00 - 16:00.": "Sie können uns während der Arbeitszeiten von 10:00 bis 16:00 Uhr kontaktieren.", + "You can contact us during working hours from 12:00 - 19:00.": "Sie können uns während der Arbeitszeiten von 12:00 - 19:00 Uhr kontaktieren.", + "You can decline a request without any cost": "Sie können eine Anfrage ohne Kosten ablehnen", + "You can only use one device at a time. This device will now be set as your active device.": "Sie können nur ein Gerät gleichzeitig verwenden. Dieses Gerät wird nun als Ihr aktives Gerät festgelegt.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Sie können Ihre Fahrt mit Bargeld oder Kredit-/Debitkarte bezahlen. Sie können Ihre bevorzugte Zahlungsmethode vor der Bestätigung Ihrer Fahrt auswählen.", + "You can resend in": "Erneutes Senden möglich in", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Sie können die Intaleq-App mit Ihren Freunden teilen und Belohnungen für Fahrten verdienen, die sie mit Ihrem Code unternehmen", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "Sie können nicht mit uns fortfahren.\nSie sollten Ihren Führerschein erneuern", + "You canceled VIP trip": "Sie haben die VIP-Fahrt storniert", + "You deserve the gift": "Sie verdienen das Geschenk", + "You dont Add Emergency Phone Yet!": "Sie haben noch kein Notfalltelefon hinzugefügt!", + "You dont have Points": "Sie haben keine Punkte", + "You have already received your gift for inviting": "Sie haben Ihr Geschenk für die Einladung bereits erhalten", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "Sie haben diesen Promo-Code bereits verwendet.", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "Sie haben einen Anruf vom Fahrer", + "You have copied the promo code.": "Sie haben den Promo-Code kopiert.", + "You have earned 20": "Sie haben 20 verdient", + "You have finished all times ": "Sie haben alle Zeiten beendet ", + "You have got a gift for invitation": "Sie haben ein Geschenk für die Einladung erhalten", + "You have in account": "Sie haben auf dem Konto", + "You have promo!": "Sie haben eine Promotion!", + "You must Verify email !.": "Sie müssen die E-Mail verifizieren!.", + "You must be charge your Account": "Sie müssen Ihr Konto aufladen", + "You must restart the app to change the language.": "Sie müssen die App neu starten, um die Sprache zu ändern.", + "You should have upload it .": "Sie hätten es hochladen sollen.", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "Sie sollten die App neu starten, um die Sprache zu ändern", + "You should select one": "Sie sollten eines auswählen", + "You should select your country": "Sie sollten Ihr Land auswählen", + "You trip distance is": "Ihre Fahrtstrecke beträgt", + "You will arrive to your destination after ": "Sie werden nach ", + "You will arrive to your destination after timer end.": "Sie werden nach Ablauf des Timers an Ihrem Ziel ankommen.", + "You will be charged for the cost of the driver coming to your location.": "Ihnen werden die Kosten für den Fahrer berechnet, der zu Ihrem Standort kommt.", + "You will be pay the cost to driver or we will get it from you on next trip": "Sie werden die Kosten an den Fahrer zahlen oder wir werden sie bei der nächsten Fahrt von Ihnen einziehen", + "You will be thier in": "Sie werden dort sein in", + "You will choose allow all the time to be ready receive orders": "Sie werden die Erlaubnis jederzeit erteilen, um bereit zu sein, Bestellungen zu empfangen", + "You will choose one of above !": "Sie werden eines der oben genannten auswählen!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "Sie erhalten die Kosten für Ihre Arbeit für diese Fahrt", + "You will receive a code in SMS message": "Sie erhalten einen Code per SMS", + "You will receive a code in WhatsApp Messenger": "Sie erhalten einen Code in WhatsApp Messenger", + "You will recieve code in sms message": "Sie erhalten den Code per SMS", + "Your Account is Deleted": "Ihr Konto wurde gelöscht", + "Your Budget less than needed": "Ihr Budget ist geringer als benötigt", + "Your Choice, Our Priority": "Ihre Wahl, unsere Priorität", + "Your Journey Begins Here": "Ihre Reise beginnt hier", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "Ihre Fahrtdauer beträgt ", + "Your Wallet balance is ": "Ihr Portemonnaie-Guthaben beträgt ", + "Your are far from passenger location": "Sie sind weit vom Standort des Fahrgasts entfernt", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Ihre Daten werden nach 2 Wochen gelöscht\nUnd Sie können die App nach 1 Monat nicht mehr verwenden ", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Ihre E-Mail-Adresse", + "Your fee is ": "Ihre Gebühr ist ", + "Your invite code was successfully applied!": "Ihr Einladungscode wurde erfolgreich angewendet!", + "Your journey starts here": "Ihre Reise beginnt hier", + "Your name": "Ihr Name", + "Your order is being prepared": "Ihre Bestellung wird vorbereitet", + "Your order sent to drivers": "Ihre Bestellung wurde an die Fahrer gesendet", + "Your password": "Ihr Passwort", + "Your past trips will appear here.": "Ihre vergangenen Fahrten werden hier angezeigt.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "Ihr persönlicher Einladungscode lautet:", + "Your trip cost is": "Ihre Fahrtkosten betragen", + "Your trip distance is": "Ihre Fahrtstrecke beträgt", + "Your trip is scheduled": "Ihre Fahrt ist geplant", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nWir legen auch Wert auf Erschwinglichkeit und bieten wettbewerbsfähige Preise, um Ihre Fahrten zugänglich zu machen.", + "accepted": "akzeptiert", + "accepted your order at price": "hat Ihre Bestellung zum Preis von", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "Bedingungen akzeptieren", + "airport": "Flughafen", + "an error occurred": "ein Fehler ist aufgetreten", + "and I have a trip on": "und ich habe eine Fahrt am", + "and acknowledge our": "und bestätigen unsere", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "gelesen und akzeptiert habe und den", + "app_description": "Intaleq ist eine zuverlässige, sichere und zugängliche Mitfahr-App.", + "arrival time to reach your point": "Ankunftszeit, um Ihren Punkt zu erreichen", + "as the driver.": "as the driver.", + "before": "vor", + "begin": "begin", + "by": "von", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "Gerät ändern", + "committed_to_safety": "Intaleq setzt sich für Sicherheit ein, und alle unsere Kapitäne werden sorgfältig überprüft.", + "complete profile subtitle": "Profil vervollständigen", + "complete registration button": "Registrierung abschließen", + "complete, you can claim your gift": "abgeschlossen, Sie können Ihr Geschenk einfordern", + "contacts. Others were hidden because they don't have a phone number.": "contacts. Others were hidden because they don't have a phone number.", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "in die Zwischenablage kopiert", + "created time": "Erstellungszeit", + "deleted": "gelöscht", + "distance is": "Entfernung ist", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "Führerschein", + "due to a previous trip.": "due to a previous trip.", + "duration is": "Dauer ist", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "E-Mail (optional)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "Bitte Code eingeben", + "face detect": "Gesichtserkennung", + "failed to send otp": "Code konnte nicht gesendet werden", + "first name label": "Vorname", + "first name required": "Vorname erforderlich", + "for": "für", + "for your first registration!": "für Ihre erste Registrierung!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "von 07:30 bis 10:30 (Donnerstag, Freitag, Samstag, Montag)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "von 12:00 bis 15:00 (Donnerstag, Freitag, Samstag, Montag)", + "from 23:59 till 05:30": "von 23:59 bis 05:30", + "from 3 times Take Attention": "von 3 Malen, achten Sie darauf", + "from your favorites": "aus Ihren Favoriten", + "from your list": "aus Ihrer Liste", + "get_a_ride": "Mit Intaleq können Sie in wenigen Minuten an Ihr Ziel gelangen.", + "get_to_destination": "Erreichen Sie Ihr Ziel schnell und einfach.", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "gehen Sie zum Standort des Fahrgasts, bevor\n der Fahrgast die Fahrt storniert", + "has completed": "hat abgeschlossen", + "hour": "Stunde", + "i agree": "Ich stimme zu", + "if you don't have account": "wenn Sie kein Konto haben", + "if you dont have account": "Wenn Sie kein Konto haben", + "if you want help you can email us here": "Wenn Sie Hilfe benötigen, können Sie uns hier eine E-Mail senden", + "image verified": "Bild verifiziert", + "in your": "in Ihrem", + "insert amount": "Betrag einfügen", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "fährt ein ", + "is reviewing your order. They may need more information or a higher price.": "überprüft Ihre Bestellung. Möglicherweise benötigen sie mehr Informationen oder einen höheren Preis.", + "joined": "beigetreten", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "Nachname", + "last name required": "Nachname erforderlich", + "login or register subtitle": "Anmelden oder registrieren", + "m": "Minuten", + "message From Driver": "Nachricht vom Fahrer", + "message From passenger": "Nachricht vom Fahrgast", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "Modell :", + "my location": "mein Standort", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "nicht ähnlich", + "of": "of", + "one last step title": "Ein letzter Schritt", + "otp sent subtitle": "Verifizierungscode gesendet", + "otp sent success": "Code erfolgreich gesendet", + "otp verification failed": "Code-Verifizierung fehlgeschlagen", + "passenger agreement": "Fahrgastvereinbarung", + "pending": "ausstehend", + "phone not verified": "phone not verified", + "phone number label": "Telefonnummer", + "phone number required": "Telefonnummer erforderlich", + "please go to picker location exactly": "Bitte gehen Sie genau zum Abholort", + "please order now": "bitte jetzt bestellen", + "please wait till driver accept your order": "Bitte warten Sie, bis der Fahrer Ihre Bestellung annimmt", + "price is": "Preis ist", + "privacy policy": "Datenschutzrichtlinie", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "Registrierung fehlgeschlagen", + "reject your order.": "hat Ihre Bestellung abgelehnt.", + "rejected": "abgelehnt", + "remaining": "verbleibend", + "reviews": "reviews", + "rides": "Fahrten", + "safe_and_comfortable": "Genießen Sie eine sichere und komfortable Fahrt.", + "seconds": "Sekunden", + "security_warning": "security_warning", + "send otp button": "Code senden", + "server error try again": "Serverfehler, versuchen Sie es erneut", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "ähnlich", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "Nutzungsbedingungen", + "the 300 points equal 300 L.E": "300 Punkte entsprechen 300 L.E", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "300 Punkte entsprechen 300 L.E für Sie \nAlso los, verdienen Sie Ihr Geld", + "the 500 points equal 30 JOD": "500 Punkte entsprechen 30 JOD", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "500 Punkte entsprechen 30 JOD für Sie \nAlso los, verdienen Sie Ihr Geld", + "this will delete all files from your device": "Dadurch werden alle Dateien von Ihrem Gerät gelöscht", + "to arrive you.": "to arrive you.", + "token change": "Token-Änderung", + "token updated": "Token aktualisiert", + "trips": "Fahrten", + "type here": "hier eingeben", + "unknown": "unknown", + "upgrade price": "Preis erhöhen", + "verify and continue button": "Verifizieren und fortfahren", + "verify your number title": "Nummer verifizieren", + "wait 1 minute to receive message": "Warten Sie 1 Minute, um die Nachricht zu erhalten", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "Portemonnaie aufgrund einer vorherigen Fahrt.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "Willkommen bei Intaleq", + "welcome to siro": "welcome to siro", + "welcome user": "Willkommen", + "welcome_message": "Willkommen bei Intaleq!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "mit Typ", + "witout zero": "witout zero", + "write Color for your car": "Geben Sie die Farbe Ihres Autos ein", + "write Expiration Date for your car": "Geben Sie das Ablaufdatum Ihres Autos ein", + "write Make for your car": "Geben Sie die Marke Ihres Autos ein", + "write Model for your car": "Geben Sie das Modell Ihres Autos ein", + "write Year for your car": "Geben Sie das Jahr Ihres Autos ein", + "write vin for your car": "Geben Sie die Fahrgestellnummer Ihres Autos ein", + "year :": "Jahr :", + "you canceled order": "Sie haben die Bestellung storniert", + "you gain": "Sie erhalten", + "you have a negative balance of": "Sie haben ein negatives Guthaben von", + "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 Intaleq Wallet": "Sie werden den Fahrer bezahlen, Sie werden die Kosten für die Fahrerzeit bezahlen, sehen Sie in Ihrem Intaleq-Portemonnaie nach", + "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 Siro Wallet", + "your ride is Accepted": "Ihre Fahrt wurde angenommen", + "your ride is applied": "Ihre Fahrt wurde übernommen", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "Ablaufdatum", + "⚠️ You need to choose an amount!": "⚠️ Sie müssen einen Betrag auswählen!", + "💰 Pay with Wallet": "Mit Portemonnaie bezahlen", + "💳 Pay with Credit Card": "💳 Mit Kreditkarte bezahlen", +}; diff --git a/siro_rider/lib/controller/local/el.dart b/siro_rider/lib/controller/local/el.dart new file mode 100644 index 0000000..2cde47a --- /dev/null +++ b/siro_rider/lib/controller/local/el.dart @@ -0,0 +1,1715 @@ +final Map el = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": " Βρίσκομαι στο ", + " I am using": " χρησιμοποιώ", + " If you need to reach me, please contact the driver directly at": " Επικοινωνήστε με τον οδηγό στο", + " KM": " Χλμ", + " Minutes": " Λεπτά", + " Next as Cash !": " Επόμενο με Μετρητά!", + " You Earn today is ": " Κέρδος σήμερα: ", + " You Have in": " Έχετε στο", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " και την Πολιτική Απορρήτου.", + " and acknowledge the ": " and acknowledge the ", + " as the driver.": " ως οδηγό.", + " in your": " in your", + " in your wallet": " στο πορτοφόλι", + " is ON for this month": " είναι ON αυτόν τον μήνα", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " φιλοδώρημα\nΣύνολο", + " to arrive you.": " για να φτάσει.", + " to ride with": " για διαδρομή με", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " με πινακίδα ", + "--": "--", + ". I am at least 18 years old.": ". I am at least 18 years old.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "1. Περιγράψτε το θέμα", + "10 and get 4% discount": "10 και κερδίστε 4% έκπτωση", + "100 and get 11% discount": "100 και κερδίστε 11% έκπτωση", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "2. Επισύναψη Ήχου", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 και κερδίστε 6% έκπτωση", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "3. Έλεγχος Λεπτομερειών", + "3000 LE": "30 €", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 και κερδίστε 8% έκπτωση", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5 ψηφία", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Διαδρομή με κράτηση, επιλογή οδηγών και οχημάτων.", + "AI Page": "Σελίδα AI", + "About Intaleq": "About Intaleq", + "About Siro": "About Siro", + "About Us": "Σχετικά", + "Accept": "Accept", + "Accept Order": "Αποδοχή", + "Accept Ride's Terms & Review Privacy Notice": "Αποδοχή Όρων", + "Accepted Ride": "Αποδεκτή Διαδρομή", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "Ενεργή Διάρκεια:", + "Active Users": "Active Users", + "Add Card": "Προσθήκη Κάρτας", + "Add Credit Card": "Προσθήκη Πιστωτικής", + "Add Home": "Προσθήκη Σπιτιού", + "Add Location": "Προσθήκη Τοποθεσίας", + "Add Location 1": "Προσθήκη Τοποθεσίας 1", + "Add Location 2": "Προσθήκη Τοποθεσίας 2", + "Add Location 3": "Προσθήκη Τοποθεσίας 3", + "Add Location 4": "Προσθήκη Τοποθεσίας 4", + "Add Payment Method": "Προσθήκη Τρόπου Πληρωμής", + "Add Phone": "Προσθήκη Τηλεφώνου", + "Add Promo": "Προσθήκη Προσφοράς", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Προσθήκη Στάσεων", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "Προσθήκη χρημάτων με ασφάλεια", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Διεύθυνση", + "Address: ": "Διεύθυνση: ", + "Admin DashBoard": "Πίνακας Ελέγχου", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "Οικονομικό", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "Μετά από αυτό\nΔεν μπορείτε να ακυρώσετε!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "Ηλικία: ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "Ειδοποιήσεις", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "Να επιτρέπεται η πρόσβαση", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "Σφάλμα πληρωμής.", + "An error occurred while picking contacts:": "Σφάλμα κατά την επιλογή επαφών:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "Προέκυψε απροσδόκητο σφάλμα. Προσπαθήστε ξανά.", + "App Tester Login": "App Tester Login", + "App with Passenger": "Εφαρμογή με Επιβάτη", + "Appearance": "Appearance", + "Applied": "Καταχωρήθηκε", + "Apply": "Apply", + "Apply Order": "Αποδοχή", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "Πλησιάζω. Εκεί σε 3 λεπτά.", + "Are You sure to ride to": "Σίγουρα προς", + "Are you Sure to LogOut?": "Σίγουρα Αποσύνδεση;", + "Are you sure to cancel?": "Σίγουρα ακύρωση;", + "Are you sure to delete recorded files": "Διαγραφή αρχείων;", + "Are you sure to delete this location?": "Σίγουρα θέλετε να διαγράψετε την τοποθεσία;", + "Are you sure to delete your account?": "Σίγουρα διαγραφή;", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "Είστε σίγουροι; Αυτή η ενέργεια δεν αναιρείται.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Θέλετε να πάτε σε αυτό το σημείο;", + "Are you want to go to this site": "Θέλετε να πάτε εδώ;", + "Are you want to wait drivers to accept your order": "Θέλετε να περιμένετε;", + "Arrival time": "Ώρα άφιξης", + "Arrived": "Arrived", + "Associate Degree": "Πτυχίο ΙΕΚ/Κολεγίου", + "Attach this audio file?": "Επισύναψη αυτού του αρχείου;", + "Attention": "Attention", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Επιτυχής μεταφόρτωση.", + "Available for rides": "Διαθέσιμος", + "Average of Hours of": "Μέσος όρος ωρών", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Οικονομικό Όχημα", + "Bachelor's Degree": "Πτυχίο ΑΕΙ", + "Back": "Back", + "Bahrain": "Μπαχρέιν", + "Balance": "Υπόλοιπο", + "Balance limit exceeded": "Υπέρβαση ορίου υπολοίπου", + "Balance not enough": "Ανεπαρκές υπόλοιπο", + "Balance:": "Υπόλοιπο:", + "Be Slowly": "Πιο αργά", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "Βγάλτε καθαρές φωτογραφίες\nΈχετε", + "Be sure to use it quickly! This code expires at": "Χρησιμοποίησέ το γρήγορα! Λήγει στις", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Ευελιξία επιλογής.", + "Before we start, please review our terms.": "Πριν ξεκινήσουμε, δείτε τους όρους μας.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Καλύτερη επιλογή για πόλη", + "Best choice for comfort car and flexible route and stops point": "Άνετο αμάξι, ευέλικτη διαδρομή", + "Birth Date": "Ημ. Γέννησης", + "Bonus gift": "Bonus gift", + "BookingFee": "Κόστος Κράτησης", + "Bottom Bar Example": "Παράδειγμα", + "But you have a negative salary of": "Αρνητικό υπόλοιπο:", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Επιλέγοντας 'Συμφωνώ', αποδέχομαι τους Όρους. Είμαι άνω των 18.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Επιλέγοντας \"Συμφωνώ\", αποδέχομαι τους Όρους Χρήσης και ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "ΚΩΔΙΚΟΣ", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "Τέλος Κλήσης", + "Call Ended": "Call Ended", + "Call Income": "Εισερχόμενη Κλήση", + "Call Income from Driver": "Κλήση από τον Οδηγό", + "Call Income from Passenger": "Κλήση από Επιβάτη", + "Call Left": "Κλήσεις που απομένουν", + "Call Options": "Call Options", + "Call Page": "Σελίδα Κλήσης", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "Άρνηση Πρόσβασης Κάμερας.", + "Camera not initialized yet": "Η κάμερα δεν άνοιξε", + "Camera not initilaized yet": "Κάμερα μη έτοιμη", + "Can I cancel my ride?": "Μπορώ να ακυρώσω;", + "Can we know why you want to cancel Ride ?": "Γιατί ακυρώνετε;", + "Cancel": "Ακύρωση", + "Cancel Ride": "Ακύρωση", + "Cancel Search": "Ακύρωση Αναζήτησης", + "Cancel Trip": "Ακύρωση Διαδρομής", + "Cancel Trip from driver": "Ακύρωση από τον οδηγό", + "Canceled": "Ακυρώθηκε", + "Cannot apply further discounts.": "Δεν υπάρχουν άλλες εκπτώσεις.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Φωτογραφία Ποινικού Μητρώου", + "Capture an Image of Your Driver License": "Φωτογραφία Διπλώματος", + "Capture an Image of Your Driver's License": "Φωτογραφία Διπλώματος", + "Capture an Image of Your ID Document Back": "Φωτογραφία Ταυτότητας (Πίσω)", + "Capture an Image of Your ID Document front": "Φωτογραφία Ταυτότητας (Μπροστά)", + "Capture an Image of Your car license back": "Φωτογραφία Άδειας (Πίσω)", + "Capture an Image of Your car license front": "Φωτογραφία Άδειας Κυκλοφορίας (Μπροστά)", + "Car": "Όχημα", + "Car Color:": "Car Color:", + "Car Details": "Στοιχεία Οχήματος", + "Car License Card": "Άδεια Κυκλοφορίας", + "Car Make:": "Car Make:", + "Car Model:": "Car Model:", + "Car Plate is ": "Πινακίδα: ", + "Car Plate:": "Car Plate:", + "Card Number": "Αριθμός Κάρτας", + "CardID": "Αρ. Κάρτας", + "Cash": "Μετρητά", + "Change Country": "Αλλαγή Χώρας", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "Άλλαξα γνώμη", + "Chassis": "Αριθμός Πλαισίου", + "Chat with us anytime": "Chat with us anytime", + "Check back later for new offers!": "Ελέγξτε ξανά αργότερα!", + "Choose Language": "Επιλογή Γλώσσας", + "Choose a contact option": "Επιλογή επικοινωνίας", + "Choose between those Type Cars": "Επιλογή Τύπου Οχήματος", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "Επιλογή από Χάρτη", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "Επιλέξτε ό,τι σας ταιριάζει.", + "Choose who this order is for": "Για ποιον είναι η διαδρομή;", + "Choose your ride": "Choose your ride", + "City": "Πόλη", + "Claim your 20 LE gift for inviting": "Διεκδικήστε το δώρο 20 € για την πρόσκληση", + "Click here point": "Click here point", + "Click here to Show it in Map": "Προβολή στον Χάρτη", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "Κλείσιμο", + "Close panel": "Close panel", + "Closest & Cheapest": "Κοντινότερο & Φθηνότερο", + "Closest to You": "Δίπλα σας", + "Code": "Κωδικός", + "Code not approved": "Κωδικός μη αποδεκτός", + "Color": "Χρώμα", + "Color is ": "Χρώμα: ", + "Comfort": "Comfort", + "Comfort choice": "Επιλογή Comfort", + "Coming": "Coming", + "Communication": "Επικοινωνία", + "Complaint": "Καταγγελία", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Δεν μπορεί να υποβληθεί καταγγελία για αυτή τη διαδρομή. Ίσως δεν ολοκληρώθηκε ή δεν ξεκίνησε.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "Επιβεβαίωση", + "Confirm & Find a Ride": "Επιβεβαίωση & Εύρεση", + "Confirm Attachment": "Επιβεβαίωση Επισύναψης", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "Επιβεβαίωση", + "Confirm Trip": "Confirm Trip", + "Confirm your Email": "Επιβεβαίωση Email", + "Connected": "Συνδέθηκε", + "Connecting...": "Connecting...", + "Connection Error": "Σφάλμα σύνδεσης", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "Επικοινωνία", + "Contact Support": "Επικοινωνία με Υποστήριξη", + "Contact Us": "Επικοινωνία", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "Απαιτείται άδεια επαφών.", + "Contact us for any questions on your order.": "Επικοινωνήστε για ερωτήσεις.", + "Contacts Loaded": "Οι επαφές φορτώθηκαν", + "Continue": "Συνέχεια", + "Copy": "Αντιγραφή", + "Copy Code": "Αντιγραφή", + "Copy this Promo to use it in your Ride!": "Αντιγράψτε τον κωδικό!", + "Cost Duration": "Κόστος Διάρκειας", + "Cost Of Trip IS ": "Κόστος Διαδρομής: ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "Ώρες ανά ημέρα", + "Create Wallet to receive your money": "Δημιουργία Πορτοφολιού", + "Criminal Document Required": "Απαιτείται Ποινικό Μητρώο", + "Criminal Record": "Ποινικό Μητρώο", + "Crop Photo": "Crop Photo", + "Cropper": "Περικοπή", + "Current Balance": "Τρέχον Υπόλοιπο", + "Current Location": "Τρέχουσα Τοποθεσία", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Ο πελάτης δεν βρέθηκε", + "Customer phone is not active": "Το τηλέφωνο δεν είναι ενεργό", + "DISCOUNT": "ΕΚΠΤΩΣΗ", + "Dark Mode": "Dark Mode", + "Date": "Ημερομηνία", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth is": "Ημ. Γέννησης:", + "Date of Birth: ": "Ημ. Γέννησης: ", + "Days": "Ημέρες", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "Διαγραφή Λογαριασμού", + "Delete Permanently": "Οριστική Διαγραφή", + "Delete Recording?": "Delete Recording?", + "Deleted": "Διαγράφηκε", + "Destination": "Προορισμός", + "Destination Set": "Destination Set", + "Destination selected": "Destination selected", + "Detect Your Face ": "Ανίχνευση Προσώπου ", + "Device Change Detected": "Device Change Detected", + "Direct talk with our team": "Direct talk with our team", + "Displacement": "Κυβισμός", + "Distance": "Distance", + "Distance To Passenger is ": "Απόσταση προς Επιβάτη: ", + "Distance from Passenger to destination is ": "Απόσταση Επιβάτη από προορισμό: ", + "Distance is ": "Απόσταση: ", + "Distance of the Ride is ": "Απόσταση: ", + "Do you have an invitation code from another driver?": "Έχετε κωδικό πρόσκλησης;", + "Do you want to change Home location": "Αλλαγή τοποθεσίας Σπιτιού;", + "Do you want to change Work location": "Αλλαγή τοποθεσίας Εργασίας;", + "Do you want to pay Tips for this Driver": "Θέλετε να δώσετε φιλοδώρημα;", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "Διδακτορικό", + "Document Number: ": "Αριθμός Εγγράφου: ", + "Documents check": "Έλεγχος Εγγράφων", + "Don't Cancel": "Να μην ακυρωθεί", + "Don't forget your personal belongings.": "Μην ξεχάσετε τα προσωπικά σας αντικείμενα.", + "Don't forget your ride!": "Don't forget your ride!", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "Τέλος", + "Don’t forget your personal belongings.": "Μην ξεχάσετε τα αντικείμενά σας.", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Download the Intaleq Driver app now and earn rewards!": "Κατεβάστε την εφαρμογή Οδηγού Intaleq και κερδίστε!", + "Download the Intaleq app now and enjoy your ride!": "Κατεβάστε το Intaleq και απολαύστε τη διαδρομή!", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Κατέβασε την εφαρμογή:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Οδηγός", + "Driver Accepted the Ride for You": "Ο οδηγός αποδέχτηκε τη διαδρομή για εσάς", + "Driver Applied the Ride for You": "Ο οδηγός καταχώρησε τη διαδρομή για εσάς", + "Driver Cancelled Your Trip": "Ο Οδηγός Ακύρωσε τη Διαδρομή", + "Driver Car Plate": "Πινακίδα Οδηγού", + "Driver Finish Trip": "Ο Οδηγός Ολοκλήρωσε τη Διαδρομή", + "Driver Is Going To Passenger": "Ο οδηγός πηγαίνει στον Επιβάτη", + "Driver List": "Driver List", + "Driver Name": "Όνομα Οδηγού", + "Driver Name:": "Driver Name:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Driver Phone:", + "Driver Referral": "Driver Referral", + "Driver Registration": "Εγγραφή", + "Driver Registration & Requirements": "Εγγραφή Οδηγού", + "Driver Wallet": "Πορτοφόλι Οδηγού", + "Driver already has 2 trips within the specified period.": "Ο οδηγός έχει ήδη 2 διαδρομές.", + "Driver asked me to cancel": "Ο οδηγός μου ζήτησε να ακυρώσω", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "Ο οδηγός έρχεται", + "Driver is taking too long": "Ο οδηγός αργεί πολύ", + "Driver is waiting at pickup.": "Ο οδηγός περιμένει.", + "Driver joined the channel": "Ο οδηγός μπήκε στο κανάλι", + "Driver left the channel": "Ο οδηγός βγήκε από το κανάλι", + "Driver phone": "Τηλέφωνο Οδηγού", + "Driver's License": "Δίπλωμα Οδήγησης", + "Drivers License Class": "Κατηγορία", + "Drivers License Class: ": "Κατηγορία Διπλώματος: ", + "Duration To Passenger is ": "Διάρκεια προς Επιβάτη: ", + "Duration is": "Διάρκεια:", + "Duration of Trip is ": "Διάρκεια: ", + "Duration of the Ride is ": "Διάρκεια: ", + "EGP": "EGP", + "Edit Profile": "Επεξεργασία", + "Edit Your data": "Επεξεργασία", + "Education": "Εκπαίδευση", + "Egypt": "Αίγυπτος", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "Ηλεκτρικό", + "Email": "Email", + "Email Support": "Email Support", + "Email Us": "Στείλτε Email", + "Email Wrong": "Λάθος Email", + "Email is": "Email:", + "Email you inserted is Wrong.": "Το email είναι λάθος.", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "Τύπος Απασχόλησης", + "Enable Location": "Ενεργοποίηση Τοποθεσίας", + "Enable Location Access": "Enable Location Access", + "End": "End", + "End Ride": "Τέλος Διαδρομής", + "Enjoy a safe and comfortable ride.": "Απολαύστε ασφαλή διαδρομή.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Ανταγωνιστικές τιμές.", + "Enter Your First Name": "Εισάγετε Όνομα", + "Enter a password": "Enter a password", + "Enter a valid email": "Enter a valid email", + "Enter driver's phone": "Τηλέφωνο οδηγού", + "Enter phone": "Εισαγωγή τηλεφώνου", + "Enter promo code": "Εισάγετε κωδικό", + "Enter promo code here": "Εισάγετε κωδικό εδώ", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "Εισάγετε κωδικό και κερδίστε", + "Enter your City": "Enter your City", + "Enter your Note": "Σχόλιο", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Γράψτε την καταγγελία εδώ...", + "Enter your email address": "Εισάγετε email", + "Enter your feedback here": "Εισάγετε σχόλια", + "Enter your first name": "Εισάγετε όνομα", + "Enter your last name": "Εισάγετε επώνυμο", + "Enter your password": "Enter your password", + "Enter your phone number": "Εισάγετε τηλέφωνο", + "Enter your promo code": "Enter your promo code", + "Error": "Σφάλμα", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "Απόγευμα", + "Exclusive offers and discounts always with the Intaleq app": "Αποκλειστικές προσφορές", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "Ημερομηνία Λήξης", + "Expiration Date ": "Λήξη: ", + "Expiry Date": "Ημ. Λήξης", + "Expiry Date: ": "Λήξη: ", + "Face Detection Result": "Αποτέλεσμα Ανίχνευσης Προσώπου", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "Η αναζήτηση απέτυχε, παρακαλούμε δοκιμάστε ξανά αργότερα", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "Άμεση Ανταπόκριση", + "Favorite Places": "Favorite Places", + "Fee is": "Κόστος: ", + "Feed Back": "Σχόλια", + "Feedback": "Σχόλια", + "Feedback data saved successfully": "Αποθηκεύτηκε", + "Female": "Γυναίκα", + "Find answers to common questions": "Απαντήσεις", + "Finish Monitor": "Τέλος Παρακολούθησης", + "Finished": "Finished", + "First Name": "Όνομα", + "First name": "Όνομα", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Σημαία", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "Για Οδηγούς", + "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 Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "For official inquiries", + "Found another transport": "Βρήκα άλλο μέσο μεταφοράς", + "Free Call": "Free Call", + "Frequently Asked Questions": "Συχνές Ερωτήσεις", + "Frequently Questions": "Συχνές Ερωτήσεις", + "From": "Από", + "From :": "Από:", + "From : ": "Από: ", + "From : Current Location": "Από: Τρέχουσα Τοποθεσία", + "From:": "From:", + "Fuel": "Καύσιμο", + "Full Name (Marital)": "Ονοματεπώνυμο", + "FullName": "Ονοματεπώνυμο", + "GPS Required Allow !.": "Απαιτείται GPS!", + "Gender": "Φύλο", + "General": "General", + "Get": "Get", + "Get Details of Trip": "Λεπτομέρειες", + "Get Direction": "Οδηγίες", + "Get a discount on your first Intaleq ride!": "Έκπτωση στην πρώτη διαδρομή Intaleq!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "Πάρτε το!", + "Get to your destination quickly and easily.": "Φτάστε γρήγορα στον προορισμό.", + "Getting Started": "Ξεκινώντας", + "Gift Already Claimed": "Το δώρο έχει ήδη ληφθεί", + "Go To Favorite Places": "Μετάβαση στα Αγαπημένα", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "Επόμενο βήμα\nσάρωση Άδειας.", + "Go to passenger Location now": "Πηγαίνετε στον Επιβάτη", + "Go to this Target": "Μετάβαση στον Προορισμό", + "Go to this location": "Μετάβαση σε αυτή την τοποθεσία", + "Grant": "Grant", + "H and": "H και", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "Έχετε κωδικό προσφοράς;", + "Heading your way now. Please be ready.": "Έρχομαι. Να είστε έτοιμοι.", + "Height: ": "Ύψος: ", + "Hello this is Captain": "Γεια σας, ο Οδηγός", + "Hello this is Driver": "Γεια σας, ο Οδηγός", + "Hello! I'm inviting you to try Intaleq.": "Γεια! Σε προσκαλώ να δοκιμάσεις το Intaleq.", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hello, I'm at the agreed-upon location", + "Help Details": "Λεπτομέρειες Βοήθειας", + "Helping Center": "Κέντρο Βοήθειας", + "Here recorded trips audio": "Ηχογραφήσεις διαδρομών", + "Hi": "Γεια", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Γεια, ξεκινάω τώρα", + "Hi! This is": "Γεια! Είμαι", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "Γεια, Πού πάτε ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "Απολυτήριο Λυκείου", + "History of Trip": "Ιστορικό", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "How can I pay for my ride?": "Πώς πληρώνω;", + "How can I register as a driver?": "Πώς γίνομαι οδηγός;", + "How do I communicate with the other party (passenger/driver)?": "Πώς επικοινωνώ;", + "How do I request a ride?": "Πώς ζητάω διαδρομή;", + "How many hours would you like to wait?": "Πόσες ώρες αναμονής;", + "How much longer will you be?": "How much longer will you be?", + "I Agree": "Συμφωνώ", + "I Arrive your site": "Έφτασα στο σημείο", + "I added the wrong pick-up/drop-off location": "Λάθος τοποθεσία", + "I am currently located at": "I am currently located at", + "I arrive you": "Έφτασα", + "I cant register in your app in face detection ": "Πρόβλημα με ανίχνευση προσώπου", + "I don't have a reason": "Κανένας λόγος", + "I don't need a ride anymore": "Δεν χρειάζομαι διαδρομή", + "I want to order for myself": "Για εμένα", + "I want to order for someone else": "Για κάποιον άλλον", + "I was just trying the application": "Δοκίμαζα την εφαρμογή", + "I will go now": "Πηγαίνω τώρα", + "I will slow down": "Θα επιβραδύνω", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "Σας περιμένω", + "I've been trying to reach you but your phone is off.": "I've been trying to reach you but your phone is off.", + "ID Documents Back": "Ταυτότητα (Πίσω)", + "ID Documents Front": "Ταυτότητα (Μπροστά)", + "If you in Car Now. Press Start The Ride": "Αν είστε στο όχημα, πατήστε Έναρξη", + "If you need assistance, contact us": "Επικοινωνήστε για βοήθεια", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Για προσθήκη στάσης πατήστε εδώ", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Άμεσο άνοιγμα Google Maps", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "Αποτέλεσμα: ", + "In-App VOIP Calls": "Κλήσεις VOIP", + "Including Tax": "Με ΦΠΑ", + "Incorrect sms code": "⚠️ Λάθος κωδικός SMS. Προσπαθήστε ξανά.", + "Increase Fare": "Αύξηση Ναύλου", + "Increase Fee": "Αύξηση Τιμής", + "Increase Your Trip Fee (Optional)": "Αύξηση Ναύλου (Προαιρετικό)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Η αύξηση του ναύλου μπορεί να προσελκύσει περισσότερους οδηγούς. Θέλετε να αυξήσετε την τιμή;", + "Insert": "Εισαγωγή", + "Insert Emergincy Number": "Εισαγωγή SOS Αριθμού", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Εισαγωγή Κωδικού", + "Inspection Date": "Ημ. ΚΤΕΟ", + "InspectionResult": "Αποτέλεσμα Ελέγχου", + "Intaleq": "Intaleq", + "Intaleq Balance": "Υπόλοιπο Intaleq", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Τέλος Intaleq", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq Support", + "Intaleq Wallet": "Πορτοφόλι Intaleq", + "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 είναι εφαρμογή μετακίνησης με έμφαση στην ασφάλεια.", + "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 συνδέει με τους κοντινότερους οδηγούς.", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Το Intaleq είναι ασφαλές και αξιόπιστο.", + "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 είναι η ασφαλέστερη εφαρμογή. Χαμηλή προμήθεια 8%. Ασφάλεια και συντήρηση.", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Economy, Comfort, Luxury.", + "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.": "Economy, Comfort, Luxury.", + "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.": "Επαλήθευση οδηγού, παρακολούθηση, SOS.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Chat εντός εφαρμογής.", + "Intaleq's Response": "Intaleq's Response", + "Invalid MPIN": "Άκυρο MPIN", + "Invalid OTP": "Άκυρο OTP", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "Πρόσκληση Χρησιμοποιήθηκε", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "Η πρόσκληση στάλθηκε", + "Is the Passenger in your Car ?": "Είναι ο Επιβάτης στο Όχημα;", + "Issue Date": "Ημ. Έκδοσης", + "IssueDate": "Ημ. Έκδοσης", + "JOD": "€", + "Join": "Συμμετοχή", + "Join Intaleq as a driver using my referral code!": "Γίνε οδηγός στο Intaleq με τον κωδικό μου!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "Ιορδανία", + "KM": "Χλμ", + "Keep it up!": "Συνεχίστε έτσι!", + "Kuwait": "Κουβέιτ", + "LE": "€", + "Lady": "Lady (Γυναίκες)", + "Lady Captain for girls": "Γυναίκα Οδηγός για γυναίκες", + "Lady Captains Available": "Γυναίκες Οδηγοί", + "Language": "Γλώσσα", + "Language Options": "Επιλογές Γλώσσας", + "Last Name": "Last Name", + "Last name": "Επώνυμο", + "Latest Recent Trip": "Τελευταία Διαδρομή", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Αποχώρηση", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "Έλεγχος Άδειας ", + "Lets check License Back Face": "Έλεγχος Πίσω Όψης", + "License Categories": "Κατηγορίες", + "License Type": "Τύπος Διπλώματος", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "Σύνδεση τηλεφώνου για μεταφορές", + "Listen": "Listen", + "Location": "Location", + "Location Link": "Σύνδεσμος Τοποθεσίας", + "Location Received": "Location Received", + "Log Off": "Αποσύνδεση", + "Log Out Page": "Αποσύνδεση", + "Login": "Login", + "Login Captin": "Είσοδος Οδηγού", + "Login Driver": "Είσοδος Οδηγού", + "Logout": "Logout", + "Lowest Price Achieved": "Χαμηλότερη Τιμή", + "Made :": "Κατασκευαστής :", + "Make": "Μάρκα", + "Make is ": "Μάρκα: ", + "Male": "Άνδρας", + "Map Error": "Map Error", + "Map Passenger": "Χάρτης Επιβάτη", + "Marital Status": "Οικογενειακή Κατάσταση", + "Master's Degree": "Μεταπτυχιακό", + "Maximum fare": "Μέγιστη χρέωση", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Ελάχιστη χρέωση", + "Minute": "Λεπτό", + "Mishwar Vip": "VIP Διαδρομή", + "Model": "Μοντέλο", + "Model is": "Μοντέλο:", + "Morning": "Πρωί", + "Most Secure Methods": "Ασφαλείς Μέθοδοι", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "Μετακινήστε τον χάρτη", + "Mute": "Mute", + "My Balance": "Το Υπόλοιπό μου", + "My Card": "Η Κάρτα Μου", + "My Cared": "Οι Κάρτες Μου", + "My Profile": "Το Προφίλ μου", + "My current location is:": "Η τοποθεσία μου:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "Η Τοποθεσία Μου", + "N/A": "N/A", + "Name": "Όνομα", + "Name (Arabic)": "Όνομα (Αραβικά)", + "Name (English)": "Όνομα (Αγγλικά)", + "Name :": "Όνομα :", + "Name in arabic": "Όνομα (Τοπικό)", + "Name of the Passenger is ": "Όνομα Επιβάτη: ", + "National ID": "Ταυτότητα", + "National Number": "Αριθμός Ταυτότητας", + "NationalID": "Αριθμός Ταυτότητας", + "Nearby": "Nearby", + "Nearest Car": "Nearest Car", + "Nearest Car for you about ": "Κοντινότερο όχημα σε περίπου ", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Network error occurred": "Network error occurred", + "Next": "Επόμενο", + "Night": "Βράδυ", + "No": "Όχι", + "No ,still Waiting.": "Όχι, αναμονή.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Κανένα όχημα. Συγγνώμη!", + "No Car or Driver Found in your area.": "Δεν βρέθηκε όχημα ή οδηγός.", + "No Drivers Found": "Δεν βρέθηκαν οδηγοί", + "No I want": "Όχι θέλω", + "No Notifications": "No Notifications", + "No Promo for today .": "Καμία Προσφορά σήμερα.", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "Καμία απάντηση.", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Χωρίς SIM; Καλέστε μέσω εφαρμογής.", + "No accepted orders? Try raising your trip fee to attract riders.": "Αυξήστε την προσφορά σας.", + "No audio files found.": "Δεν βρέθηκαν αρχεία ήχου.", + "No cars nearby": "No cars nearby", + "No contacts available": "No contacts available", + "No contacts found": "Δεν βρέθηκαν επαφές", + "No contacts with phone numbers were found on your device.": "Δεν βρέθηκαν επαφές με αριθμούς στη συσκευή.", + "No driver accepted my request": "Κανείς δεν αποδέχτηκε", + "No drivers accepted your request yet": "Κανένας οδηγός δεν αποδέχτηκε ακόμα", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "Δεν βρέθηκαν οδηγοί αυτή τη στιγμή.\nΠαρακαλούμε δοκιμάστε ξανά αργότερα.", + "No face detected": "Δεν ανιχνεύτηκε πρόσωπο", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Δεν επιλέχθηκε εικόνα", + "No invitation found yet!": "Καμία πρόσκληση!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "Κανείς δεν δέχτηκε; Αυξήστε την προσφορά.", + "No passenger found for the given phone number": "Δεν βρέθηκε επιβάτης", + "No promos available right now.": "Δεν υπάρχουν προσφορές τώρα.", + "No ride found yet": "Δεν βρέθηκε διαδρομή", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No trip data available", + "No trip history found": "Δεν βρέθηκε ιστορικό", + "No trip yet found": "Δεν βρέθηκε διαδρομή", + "No user found": "No user found", + "No user found for the given phone number": "Δεν βρέθηκε χρήστης", + "No wallet record found": "Δεν βρέθηκε πορτοφόλι", + "No, I don't have a code": "Όχι", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, thanks": "Όχι, ευχαριστώ", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "Δεν συνδέθηκε", + "Not set": "Δεν ορίστηκε", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "Ειδοποιήσεις", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Now select start pick", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "Επάγγελμα", + "Ok": "ΟΚ", + "Ok , See you Tomorrow": "ΟΚ, τα λέμε αύριο", + "Ok I will go now.": "Εντάξει, πηγαίνω τώρα.", + "Old and affordable, perfect for budget rides.": "Οικονομικό και προσιτό.", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "Ρυθμίσεις", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "Ή πληρώστε με Μετρητά", + "Order": "Αίτημα", + "Order Accepted": "Order Accepted", + "Order Applied": "Το αίτημα υποβλήθηκε", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Ακύρωση από Επιβάτη", + "Order Details Intaleq": "Λεπτομέρειες", + "Order Details Siro": "Order Details Siro", + "Order History": "Ιστορικό Διαδρομών", + "Order Request Page": "Σελίδα Αιτήματος", + "Order Under Review": "Order Under Review", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "Διαδρομή για εμένα", + "Order for someone else": "Διαδρομή για άλλον", + "OrderId": "ID Παραγγελίας", + "OrderVIP": "VIP Αίτημα", + "Origin": "Αφετηρία", + "Other": "Άλλο", + "Our dedicated customer service team ensures swift resolution of any issues.": "Επίλυση θεμάτων άμεσα.", + "Owner Name": "Ιδιοκτήτης", + "Passenger": "Passenger", + "Passenger Cancel Trip": "Ο επιβάτης ακύρωσε τη διαδρομή", + "Passenger Name is ": "Όνομα Επιβάτη: ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger come to you": "Ο επιβάτης έρχεται σε εσάς", + "Passenger name : ": "Όνομα Επιβάτη: ", + "Password": "Password", + "Password must br at least 6 character.": "Τουλάχιστον 6 χαρακτήρες.", + "Paste WhatsApp location link": "Επικολλήστε σύνδεσμο WhatsApp", + "Paste location link here": "Επικολλήστε τον σύνδεσμο εδώ", + "Paste the code here": "Επικόλληση κωδικού", + "Pay": "Pay", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Πληρωμή απευθείας στον οδηγό", + "Pay from my budget": "Πληρωμή από υπόλοιπο", + "Pay with Credit Card": "Πληρωμή με Κάρτα", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "Πληρωμή με Πορτοφόλι", + "Pay with Your": "Πληρωμή με", + "Pay with Your PayPal": "Πληρωμή με PayPal", + "Payment Failed": "Αποτυχία Πληρωμής", + "Payment History": "Ιστορικό Πληρωμών", + "Payment Method": "Τρόπος Πληρωμής", + "Payment Options": "Επιλογές Πληρωμής", + "Payment Successful": "Επιτυχής Πληρωμή", + "Payments": "Πληρωμές", + "Perfect for adventure seekers who want to experience something new and exciting": "Για όσους ψάχνουν περιπέτεια", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Ιδανικό για νέα μοντέλα και ελευθερία διαδρομής", + "Permission Required": "Permission Required", + "Permission denied": "Άρνηση πρόσβασης", + "Personal Information": "Προσωπικά Στοιχεία", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Τηλέφωνο:", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is verified before": "Phone number is verified before", + "Phone number isn't an Egyptian phone number": "Phone number isn't an Egyptian phone number", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "Επιλογή από χάρτη", + "Pick from map destination": "Pick from map destination", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "Προορισμός από Χάρτη", + "Pick your ride location on the map - Tap to confirm": "Επιλέξτε σημείο στον χάρτη - Πατήστε για επιβεβαίωση", + "Plan Your Route": "Plan Your Route", + "Plate": "Πινακίδα", + "Plate Number": "Αριθμός Πινακίδας", + "Please Try anther time ": "Προσπαθήστε ξανά ", + "Please Wait If passenger want To Cancel!": "Περιμένετε μήπως ακυρώσει ο επιβάτης!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "Παρακαλούμε ελέγξτε τη σύνδεσή σας στο διαδίκτυο", + "Please don't be late": "Please don't be late", + "Please don't be late, I'm waiting for you at the specified location.": "Please don't be late, I'm waiting for you at the specified location.", + "Please enter": "Εισάγετε", + "Please enter Your Email.": "Παρακαλώ εισάγετε Email.", + "Please enter Your Password.": "Εισάγετε Κωδικό.", + "Please enter a correct phone": "Εισάγετε σωστό τηλέφωνο", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "Εισάγετε τηλέφωνο", + "Please enter a valid 16-digit card number": "Εισάγετε έγκυρο αριθμό κάρτας", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Εισάγετε έγκυρο κωδικό", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Κωδικός CVV", + "Please enter the cardholder name": "Όνομα κατόχου", + "Please enter the complete 6-digit code.": "Παρακαλώ εισάγετε τον πλήρη 6ψήφιο κωδικό.", + "Please enter the expiry date": "Ημερομηνία λήξης", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Εισάγετε Πόλη.", + "Please enter your Question.": "Εισάγετε Ερώτηση.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Παρακαλώ εισάγετε σχόλια.", + "Please enter your first name.": "Παρακαλώ εισάγετε όνομα.", + "Please enter your last name.": "Παρακαλώ εισάγετε επώνυμο.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Παρακαλώ εισάγετε τηλέφωνο.", + "Please go to Car Driver": "Παρακαλώ πηγαίνετε στον Οδηγό", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "Πηγαίνετε στο όχημα τώρα ", + "Please help! Contact me as soon as possible.": "Βοήθεια! Επικοινωνήστε άμεσα.", + "Please make sure not to leave any personal belongings in the car.": "Βεβαιωθείτε ότι δεν αφήσατε προσωπικά αντικείμενα στο αμάξι.", + "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": "Βεβαιωθείτε ότι πήρατε τα πράγματά σας και ότι τυχόν ρέστα προστέθηκαν στο πορτοφόλι σας. Ευχαριστούμε που επιλέξατε το Intaleq.", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "Τοποθετήστε το δίπλωμα στο πλαίσιο", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "Παρακαλώ μείνετε στο επιλεγμένο σημείο.", + "Please try again in a few moments": "Please try again in a few moments", + "Please verify your identity": "Επαλήθευση ταυτότητας", + "Please wait for the passenger to enter the car before starting the trip.": "Περιμένετε να μπει ο επιβάτης.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "Παρακαλώ γράψτε τον λόγο...", + "Point": "Πόντος", + "Potential security risks detected. The application may not function correctly.": "Εντοπίστηκαν πιθανοί κίνδυνοι ασφαλείας. Η εφαρμογή ενδέχεται να μην λειτουργεί σωστά.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Preferences": "Preferences", + "Price": "Price", + "Price of trip": "Price of trip", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Πολιτική Απορρήτου", + "Professional driver": "Professional driver", + "Profile": "Προφίλ", + "Profile photo updated": "Profile photo updated", + "Promo": "Προσφορά", + "Promo Already Used": "Χρησιμοποιήθηκε ήδη", + "Promo Code": "Κωδικός Προσφοράς", + "Promo Code Accepted": "Κωδικός Δεκτός", + "Promo Copied!": "Αντιγράφηκε!", + "Promo End !": "Τέλος Προσφοράς!", + "Promo Ended": "Η Προσφορά Έληξε", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "Αντιγράφηκε!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "Προσφορές", + "Promos For Today": "Promos For Today", + "Pyament Cancelled .": "Πληρωμή Ακυρώθηκε.", + "Qatar": "Κατάρ", + "Quick Access": "Quick Access", + "Quick Actions": "Γρήγορες Ενέργειες", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "Ήσυχο & Οικολογικό", + "Rate Captain": "Βαθμολογία Οδηγού", + "Rate Driver": "Βαθμολογία Οδηγού", + "Rate Passenger": "Βαθμολογία Επιβάτη", + "Rating is": "Rating is", + "Rating is ": "Βαθμολογία: ", + "Rating is ": "Rating is ", + "Rayeh Gai": "Μετ' επιστροφής", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Μετ' επιστροφής: Άνετο ταξίδι μεταξύ πόλεων.", + "Reach out to us via": "Reach out to us via", + "Received empty route data.": "Received empty route data.", + "Recent Places": "Πρόσφατα Μέρη", + "Recharge my Account": "Φόρτιση", + "Record": "Record", + "Record saved": "Αποθηκεύτηκε", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "Καταγεγραμμένες Διαδρομές", + "Recorded Trips for Safety": "Καταγεγραμμένες Διαδρομές", + "Refresh Map": "Ανανέωση χάρτη", + "Refuse Order": "Απόρριψη", + "Register": "Εγγραφή", + "Register Captin": "Εγγραφή Οδηγού", + "Register Driver": "Εγγραφή Οδηγού", + "Register as Driver": "Εγγραφή ως Οδηγός", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Θρήσκευμα", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "Επαναποστολή Κωδικού", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "Διαχείριση", + "Ride Summaries": "Συνόψεις", + "Ride Summary": "Σύνοψη", + "Ride Today : ": "Διαδρομή Σήμερα: ", + "Ride Wallet": "Πορτοφόλι", + "Rides": "Διαδρομές", + "Rouats of Trip": "Διαδρομές", + "Route": "Route", + "Route Not Found": "Η διαδρομή δεν βρέθηκε", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "Τηλέφωνο SOS", + "SYP": "SYP", + "Safety & Security": "Ασφάλεια", + "Saudi Arabia": "Σαουδική Αραβία", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "Αποθήκευση Κάρτας", + "Save Name": "Save Name", + "Saved Sucssefully": "Αποθηκεύτηκε Επιτυχώς", + "Scan Driver License": "Σάρωση Διπλώματος", + "Scan ID MklGoogle": "Σάρωση Ταυτότητας", + "Scan Id": "Σάρωση Ταυτότητας", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Σκούτερ", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "Αναζήτηση για άλλον οδηγό", + "Search for waypoint": "Στάση", + "Search for your Start point": "Σημείο εκκίνησης", + "Search for your destination": "Αναζήτηση προορισμού", + "Searching for nearby drivers...": "Αναζήτηση για οδηγούς κοντά...", + "Searching for the nearest captain...": "Αναζήτηση κοντινότερου οδηγού...", + "Secure": "Secure", + "Security Warning": "⚠️ Προειδοποίηση Ασφαλείας", + "See you on the road!": "Τα λέμε στον δρόμο!", + "Select Appearance": "Select Appearance", + "Select Country": "Επιλογή Χώρας", + "Select Date": "Επιλογή Ημερομηνίας", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "Επιλογή Τύπου Διαδρομής", + "Select Payment Amount": "Επιλογή Ποσού", + "Select This Ride": "Select This Ride", + "Select Time": "Επιλογή Ώρας", + "Select Waiting Hours": "Ώρες Αναμονής", + "Select Your Country": "Επιλογή Χώρας", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Select date and time of trip", + "Select one message": "Επιλογή μηνύματος", + "Select recorded trip": "Επιλογή διαδρομής", + "Select your destination": "Επιλογή προορισμού", + "Select your preferred language for the app interface.": "Επιλέξτε γλώσσα εφαρμογής.", + "Selected Date": "Επιλεγμένη Ημερομηνία", + "Selected Date and Time": "Επιλογή", + "Selected Time": "Επιλεγμένη Ώρα", + "Selected driver": "Επιλεγμένος οδηγός", + "Selected file:": "Επιλεγμένο αρχείο:", + "Send Email": "Send Email", + "Send Intaleq app to him": "Αποστολή εφαρμογής", + "Send Invite": "Αποστολή Πρόσκλησης", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Αποστολή Κωδικού", + "Send Verification Code": "Αποστολή Κωδικού", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Προσαρμοσμένο μήνυμα", + "Send to Driver Again": "Send to Driver Again", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Η συνεδρία έληξε. Συνδεθείτε ξανά.", + "Set Destination": "Set Destination", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Ορισμός Τηλεφώνου Πορτοφολιού", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "Ορισμός παραλαβής", + "Setting": "Ρύθμιση", + "Settings": "Ρυθμίσεις", + "Sex is ": "Φύλο: ", + "Share": "Share", + "Share App": "Κοινοποίηση Εφαρμογής", + "Share Trip": "Share Trip", + "Share Trip Details": "Κοινοποίηση Λεπτομερειών", + "Share this code with your friends and earn rewards when they use it!": "Μοιραστείτε και κερδίστε!", + "Share with friends and earn rewards": "Μοιραστείτε με φίλους και κερδίστε", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Προβολή Προσκλήσεων", + "Show Promos": "Εμφάνιση Προσφορών", + "Show Promos to Charge": "Προσφορές Φόρτισης", + "Show latest promo": "Εμφάνιση τελευταίων προσφορών", + "Showing": "Εμφάνιση", + "Sign In by Apple": "Είσοδος με Apple", + "Sign In by Google": "Είσοδος με Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Αποσύνδεση", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "Είσοδος με Google", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Ανοίξτε την εφαρμογή, εισάγετε προορισμό, πατήστε Αίτημα.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "Συγγνώμη 😔", + "Sorry, there are no cars available of this type right now.": "Λυπούμαστε, αλλά δεν υπάρχουν διαθέσιμα αυτοκίνητα αυτού του τύπου αυτή τη στιγμή.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Ευρύχωρο βαν, ιδανικό για οικογένειες. Άνετο, ασφαλές και οικονομικό.", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "Έναρξη Εγγραφής", + "Start the Ride": "Έναρξη", + "Statistics": "Στατιστικά", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "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 Siro app.": "Step-by-step instructions on how to request a ride through the Siro app.", + "Stop": "Stop", + "Submit": "Submit", + "Submit ": "Υποβολή ", + "Submit Complaint": "Υποβολή", + "Submit Question": "Υποβολή Ερώτησης", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "Υποβολή Καταγγελίας", + "Submit rating": "Υποβολή", + "Success": "Επιτυχία", + "Support & Info": "Support & Info", + "Support is Away": "Support is Away", + "Support is currently Online": "Support is currently Online", + "Switch Rider": "Αλλαγή Επιβάτη", + "Syria": "Συρία", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "Πρωτοποριακή υπηρεσία στην Ελλάδα.", + "System Default": "System Default", + "Take Image": "Λήψη Φωτογραφίας", + "Take Picture Of Driver License Card": "Φωτογραφία Διπλώματος", + "Take Picture Of ID Card": "Φωτογραφία Ταυτότητας", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "Πατήστε για αντιγραφή!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "Στόχος", + "Tariff": "Τιμοκατάλογος", + "Tariffs": "Χρεώσεις", + "Tax Expiry Date": "Λήξη Τελών", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thanks": "Ευχαριστώ", + "The Driver Will be in your location soon .": "Ο Οδηγός φτάνει σύντομα.", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", + "The captain is responsible for the route.": "Ο οδηγός είναι υπεύθυνος για τη διαδρομή.", + "The distance less than 500 meter.": "Απόσταση κάτω από 500μ.", + "The driver accept your order for": "Ο οδηγός δέχτηκε για", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "Ο οδηγός αποδέχτηκε τη διαδρομή σας", + "The driver canceled your ride.": "Ο οδηγός ακύρωσε τη διαδρομή σας.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "Ο οδηγός ακύρωσε τη διαδρομή για έκτακτο λόγο.\nΘέλετε να αναζητήσετε άλλον οδηγό αμέσως;", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "Ο οδηγός έρχεται", + "The driver waiting you in picked location .": "Ο οδηγός περιμένει στο σημείο.", + "The driver waitting you in picked location .": "Ο οδηγός περιμένει.", + "The drivers are reviewing your request": "Εξέταση αιτήματος", + "The email or phone number is already registered.": "Το email ή τηλέφωνο χρησιμοποιείται.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Το όνομα στο Ποινικό Μητρώο δεν ταιριάζει με το δίπλωμα.", + "The invitation was sent successfully": "Η πρόσκληση στάλθηκε", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Ο αριθμός ταυτότητας δεν ταιριάζει.", + "The order Accepted by another Driver": "Το αίτημα έγινε δεκτό από άλλον Οδηγό", + "The order has been accepted by another driver.": "Το αίτημα έγινε αποδεκτό από άλλον οδηγό.", + "The payment was approved.": "Εγκρίθηκε.", + "The payment was not approved. Please try again.": "Η πληρωμή δεν εγκρίθηκε. Προσπαθήστε ξανά.", + "The price may increase if the route changes.": "Η τιμή μπορεί να αυξηθεί.", + "The promotion period has ended.": "Η προσφορά έληξε.", + "The reason is": "The reason is", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Η διαδρομή ξεκίνησε! Μοιραστείτε την ή ηχογραφήστε.", + "There is no Car or Driver in your area.": "Δεν υπάρχει αυτοκίνητο ή οδηγός στην περιοχή σας.", + "There is no data yet.": "Δεν υπάρχουν δεδομένα.", + "There is no help Question here": "Δεν υπάρχει ερώτηση βοήθειας", + "There is no notification yet": "Καμία ειδοποίηση", + "There no Driver Aplly your order sorry for that ": "Κανείς δεν δέχτηκε, συγγνώμη ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Κίνηση. Άλλο σημείο παραλαβής;", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "Ποσό από Επιβάτες", + "This amount for all trip I get from Passengers and Collected For me in": "Ποσό που εισπράχθηκε", + "This is a scheduled notification.": "Προγραμματισμένη ειδοποίηση.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Για σκούτερ ή μοτοσυκλέτα.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "Αυτός ο αριθμός έχει ήδη προσκληθεί.", + "This price is": "Η τιμή είναι", + "This price is fixed even if the route changes for the driver.": "Σταθερή τιμή.", + "This price may be changed": "Η τιμή μπορεί να αλλάξει", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Η διαδρομή αναλήφθηκε.", + "This ride type allows changes, but the price may increase": "Αλλαγές επιτρέπονται, η τιμή ίσως αυξηθεί", + "This ride type does not allow changes to the destination or additional stops": "Χωρίς αλλαγές/στάσεις", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Απευθείας διαδρομή, σταθερή τιμή.", + "This trip is for women only": "Μόνο για γυναίκες", + "Time": "Time", + "Time to arrive": "Ώρα άφιξης", + "Tip is ": "Φιλοδώρημα: ", + "To :": "To :", + "To : ": "Προς: ", + "To Home": "To Home", + "To Work": "To Work", + "To become a passenger, you must review and agree to the ": "Πρέπει να συμφωνήσετε με τους ", + "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.": "Ανεβάστε δίπλωμα, ταυτότητα, άδεια κυκλοφορίας. Έλεγχος σε 2-3 λεπτά.", + "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 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 change Language the App": "To change Language the App", + "To change some Settings": "Αλλαγή Ρυθμίσεων", + "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 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 Intaleq support directly.": "Επικοινωνήστε για εγγραφή.", + "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 Siro support directly.", + "To use Wallet charge it": "Φορτίστε το πορτοφόλι", + "Today's Promos": "Σημερινές Προσφορές", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Φόρτιση Πορτοφολιού", + "Top up Wallet to continue": "Φορτίστε το Πορτοφόλι για συνέχεια", + "Total Amount:": "Συνολικό Ποσό:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "Σύνολο εσόδων (Κάρτα): ", + "Total Budget from trips is ": "Σύνολο εσόδων: ", + "Total Connection Duration:": "Διάρκεια Σύνδεσης:", + "Total Cost": "Συνολικό Κόστος", + "Total Cost is ": "Συνολικό Κόστος: ", + "Total Duration:": "Συνολική Διάρκεια:", + "Total For You is ": "Σύνολο για Εσάς: ", + "Total From Passenger is ": "Σύνολο από Επιβάτη: ", + "Total Hours on month": "Σύνολο Ωρών μήνα", + "Total Invites": "Total Invites", + "Total Points is": "Σύνολο Πόντων", + "Total Price": "Total Price", + "Total budgets on month": "Σύνολο μήνα", + "Total points is ": "Σύνολο πόντων: ", + "Total price from ": "Συνολική τιμή από ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Ταξιδέψτε με σύγχρονο, αθόρυβο ηλεκτρικό αυτοκίνητο. Premium και οικολογική επιλογή.", + "Trip Cancelled": "Διαδρομή Ακυρώθηκε", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Η διαδρομή ακυρώθηκε. Το κόστος θα προστεθεί στο πορτοφόλι σας.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Παρακολούθηση Διαδρομής", + "Trip Status:": "Trip Status:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "Η διαδρομή έληξε", + "Trip finished ": "Trip finished ", + "Trip has Steps": "Διαδρομή με Στάσεις", + "Trip is Begin": "Η διαδρομή ξεκινά", + "Trip updated successfully": "Trip updated successfully", + "Trips recorded": "Καταγεγραμμένες", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "Τουρκία", + "Type here Place": "Πληκτρολογήστε μέρος", + "Type something...": "Γράψτε κάτι...", + "Type your Email": "Πληκτρολογήστε το Email", + "Type your message": "Γράψτε μήνυμα", + "Type your message...": "Type your message...", + "USA": "ΗΠΑ", + "Uncompromising Security": "Ασφάλεια", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Ενημέρωση", + "Update Available": "Update Available", + "Update Education": "Ενημέρωση Εκπαίδευσης", + "Update Gender": "Ενημέρωση Φύλου", + "Update Name": "Update Name", + "Uploaded": "Μεταφορτώθηκε", + "Use Touch ID or Face ID to confirm payment": "Χρήση Touch ID ή Face ID", + "Use code:": "Χρήση κωδικού:", + "Use my invitation code to get a special gift on your first ride!": "Χρησιμοποίησε τον κωδικό μου για δώρο στην πρώτη διαδρομή!", + "Use my referral code:": "Χρησιμοποιήστε τον κωδικό μου:", + "User does not exist.": "Ο χρήστης δεν υπάρχει.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User with this phone number or email already exists.": "Υπάρχει ήδη χρήστης με αυτό το τηλέφωνο ή email.", + "Uses cellular network": "Uses cellular network", + "VIN": "Πλαίσιο", + "VIN :": "Πλαίσιο :", + "VIN is": "Πλαίσιο:", + "VIP Order": "VIP Αίτημα", + "Valid Until:": "Ισχύει έως:", + "Van": "Van", + "Van for familly": "Βαν για οικογένεια", + "Variety of Trip Choices": "Ποικιλία", + "Vehicle Details Back": "Στοιχεία Οχήματος (Πίσω)", + "Vehicle Details Front": "Στοιχεία Οχήματος (Μπροστά)", + "Vehicle Options": "Επιλογές Οχήματος", + "Verification Code": "Κωδικός Επαλήθευσης", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "Επαλήθευση", + "Verify Email": "Επαλήθευση Email", + "Verify Email For Driver": "Επαλήθευση Email Οδηγού", + "Verify OTP": "Επαλήθευση OTP", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Δόνηση για όλα τα κουμπιά", + "View Map": "View Map", + "View your past transactions": "Δείτε τις προηγούμενες συναλλαγές", + "Visit Website/Contact Support": "Ιστοσελίδα/Υποστήριξη", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Επισκεφτείτε την ιστοσελίδα ή επικοινωνήστε.", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "Voice Call", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "Αναμονή Οδηγού...", + "Waiting for Driver ...": "Αναμονή Οδηγού...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Αναμονή τοποθεσίας", + "Waiting...": "Waiting...", + "Wallet": "Πορτοφόλι", + "Wallet is blocked": "Το πορτοφόλι έχει αποκλειστεί", + "Wallet!": "Πορτοφόλι!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "Προειδοποίηση: Υπερβολική ταχύτητα!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Προειδοποίηση: Εντοπίστηκε υπερβολική ταχύτητα!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "Λυπούμαστε, κανένα όχημα στην περιοχή!", + "We apologize 😔": "Ζητάμε συγγνώμη 😔", + "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", + "We are process picture please wait ": "Επεξεργασία εικόνας, περιμένετε ", + "We are search for nearst driver": "Αναζήτηση οδηγού", + "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 couldn't find a valid route to this destination. Please try selecting a different point.": "Δεν βρέθηκε έγκυρη διαδρομή. Παρακαλώ επιλέξτε άλλο σημείο.", + "We have sent a verification code to your mobile number:": "Στείλαμε έναν κωδικό επαλήθευσης στο κινητό σας:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Δεν βρέθηκαν οδηγοί. Σκεφτείτε να αυξήσετε την τιμή για να γίνει πιο ελκυστική η προσφορά.", + "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 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 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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "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ψήφιο κωδικό", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "Αναζητούμε νέο οδηγό.\nΠαρακαλώ περιμένετε.", + "We're here to help you 24/7": "We're here to help you 24/7", + "Welcome Back": "Welcome Back", + "Welcome Back!": "Καλώς ήρθατε ξανά!", + "Welcome to Intaleq!": "Καλώς ήρθατε στο Intaleq!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "Απαιτήσεις οδηγού;", + "What safety measures does Intaleq offer?": "Μέτρα ασφαλείας;", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Τι οχήματα υπάρχουν;", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "Εξαγωγή Τοποθεσίας WhatsApp", + "When": "Όταν", + "Where are you going?": "Πού πηγαίνετε;", + "Where are you, sir?": "Where are you, sir?", + "Where to": "Πού πάτε;", + "Where you want go ": "Πού θέλετε να πάτε ", + "Why Choose Intaleq?": "Γιατί Intaleq;", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "Βρείτε διαδρομή σε λεπτά.", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "Εργασία", + "Work & Contact": "Εργασία & Επικοινωνία", + "Work Saved": "Work Saved", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "Ώρες 12:00 - 19:00.\nΣτείλτε WhatsApp ή email.", + "Working Hours:": "Working Hours:", + "Write note": "Σημείωση", + "Wrong pickup location": "Λάθος τοποθεσία παραλαβής", + "Year": "Έτος", + "Year is": "Έτος:", + "Yes": "Yes", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Ναι, μπορείτε να ακυρώσετε τη διαδρομή σας υπό ορισμένες προϋποθέσεις (π.χ. πριν την ανάθεση οδηγού). Δείτε την πολιτική ακύρωσης του Intaleq για λεπτομέρειες.", + "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 Siro 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 Are Stopped For this Day !": "Αποκλεισμός για σήμερα!", + "You Can Cancel Trip And get Cost of Trip From": "Ακύρωση και λήψη κόστους από", + "You Can cancel Ride After Captain did not come in the time": "Ακύρωση αν ο οδηγός αργήσει", + "You Dont Have Any amount in": "Δεν έχετε υπόλοιπο στο", + "You Dont Have Any places yet !": "Κανένα μέρος ακόμα!", + "You Have": "Έχετε", + "You Have Tips": "Έχετε φιλοδώρημα", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "Απορρίψατε 3 διαδρομές.\nΤα λέμε αύριο!", + "You Should be select reason.": "Επιλέξτε λόγο.", + "You Should choose rate figure": "Επιλέξτε βαθμολογία", + "You are Delete": "Διαγραφή", + "You are Stopped": "Αποκλεισμός", + "You are not in near to passenger location": "Δεν είστε κοντά στον επιβάτη", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "Αγορά Πόντων για online", + "You can buy points from your budget": "Αγορά πόντων από υπόλοιπο", + "You can call or record audio during this trip.": "Μπορείτε να καλέσετε ή να ηχογραφήσετε κατά τη διαδρομή.", + "You can call or record audio of this trip": "Μπορείτε να καλέσετε ή να ηχογραφήσετε", + "You can cancel Ride now": "Μπορείτε να ακυρώσετε", + "You can cancel trip": "Μπορείτε να ακυρώσετε", + "You can change the Country to get all features": "Αλλάξτε Χώρα για όλα τα χαρακτηριστικά", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Αλλαγή γλώσσας εφαρμογής", + "You can change the vibration feedback for all buttons": "Αλλαγή δόνησης κουμπιών", + "You can claim your gift once they complete 2 trips.": "Μπορείτε να πάρετε το δώρο αφού ολοκληρώσουν 2 διαδρομές.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Μέσω chat.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Επικοινωνήστε 12:00 - 19:00.", + "You can decline a request without any cost": "Απόρριψη χωρίς χρέωση", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Μετρητά ή Κάρτα.", + "You can resend in": "Επαναποστολή σε", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Μοιραστείτε και κερδίστε.", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "Πρέπει να ανανεώσετε το δίπλωμα", + "You canceled VIP trip": "You canceled VIP trip", + "You deserve the gift": "Αξίζετε το δώρο", + "You dont Add Emergency Phone Yet!": "Δεν προσθέσατε τηλέφωνο έκτακτης ανάγκης!", + "You dont have Points": "Δεν έχετε Πόντους", + "You have already received your gift for inviting": "Έχετε ήδη λάβει το δώρο σας", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "Χρησιμοποιήσατε τον κωδικό.", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "Κλήση από οδηγό", + "You have copied the promo code.": "Αντιγράψατε τον κωδικό.", + "You have earned 20": "Κερδίσατε 20", + "You have finished all times ": "Τέλος προσπαθειών", + "You have got a gift for invitation": "Έχετε ένα δώρο πρόσκλησης", + "You have in account": "Έχετε στον λογαριασμό", + "You have promo!": "Έχετε προσφορά!", + "You must Verify email !.": "Επαληθεύστε το email!", + "You must be charge your Account": "Φορτίστε τον λογαριασμό", + "You must restart the app to change the language.": "Επανεκκίνηση για αλλαγή γλώσσας.", + "You should have upload it .": "Πρέπει να το ανεβάσετε.", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Επιλέξτε ένα", + "You should select your country": "Επιλέξτε χώρα", + "You trip distance is": "Απόσταση: ", + "You will arrive to your destination after ": "Άφιξη σε ", + "You will arrive to your destination after timer end.": "Άφιξη μετά το πέρας του χρόνου.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Πληρωμή στον οδηγό ή στην επόμενη διαδρομή", + "You will be thier in": "Θα είστε εκεί σε", + "You will choose allow all the time to be ready receive orders": "Επιλέξτε 'Πάντα' για λήψη παραγγελιών", + "You will choose one of above !": "Επιλέξτε ένα!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "Θα πληρωθείτε για τη διαδρομή", + "You will receive a code in SMS message": "Θα λάβετε SMS", + "You will receive a code in WhatsApp Messenger": "Θα λάβετε κωδικό στο WhatsApp", + "You will recieve code in sms message": "Θα λάβετε SMS με κωδικό", + "Your Account is Deleted": "Ο Λογαριασμός Διαγράφηκε", + "Your Budget less than needed": "Υπόλοιπο χαμηλότερο του απαιτούμενου", + "Your Choice, Our Priority": "Προτεραιότητά μας", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "Διάρκεια: ", + "Your Wallet balance is ": "Το υπόλοιπο του πορτοφολιού είναι ", + "Your are far from passenger location": "Είστε μακριά από τον επιβάτη", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Τα δεδομένα θα διαγραφούν σε 2 εβδομάδες.", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Your email address", + "Your fee is ": "Η χρέωση είναι ", + "Your invite code was successfully applied!": "Εφαρμόστηκε επιτυχώς!", + "Your journey starts here": "Το ταξίδι ξεκινά εδώ", + "Your name": "Το όνομά σας", + "Your order is being prepared": "Προετοιμασία", + "Your order sent to drivers": "Απεστάλη στους οδηγούς", + "Your password": "Your password", + "Your past trips will appear here.": "Οι προηγούμενες διαδρομές θα εμφανιστούν εδώ.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "Ο κωδικός πρόσκλησής σου:", + "Your trip cost is": "Κόστος διαδρομής", + "Your trip distance is": "Απόσταση διαδρομής:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nΠροσιτές τιμές για όλους.", + "accepted": "accepted", + "accepted your order at price": "accepted your order at price", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "Αποδοχή Όρων Χρήσης και Πολιτικής Απορρήτου.", + "airport": "airport", + "an error occurred": "Προέκυψε σφάλμα: @error", + "and I have a trip on": "και έχω διαδρομή στο", + "and acknowledge our": "και την", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Ασφαλής μετακίνηση.", + "arrival time to reach your point": "ώρα άφιξης στο σημείο", + "as the driver.": "as the driver.", + "before": "πριν", + "begin": "begin", + "by": "by", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "change device", + "committed_to_safety": "Δέσμευση στην ασφάλεια.", + "complete profile subtitle": "Ολοκληρώστε το προφίλ σας για να ξεκινήσετε", + "complete registration button": "Ολοκλήρωση Εγγραφής", + "complete, you can claim your gift": "ολοκληρώθηκε, λάβετε το δώρο", + "contacts. Others were hidden because they don't have a phone number.": "επαφές. Οι άλλες αποκρύφθηκαν γιατί δεν έχουν αριθμό.", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copied to clipboard", + "created time": "ώρα δημιουργίας", + "deleted": "deleted", + "distance is": "απόσταση είναι", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "δίπλωμα_οδήγησης", + "due to a previous trip.": "due to a previous trip.", + "duration is": "διάρκεια είναι", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "Email (Προαιρετικό)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "Εισάγετε τον 5ψήφιο κωδικό OTP", + "face detect": "Ανίχνευση Προσώπου", + "failed to send otp": "Αποτυχία αποστολής OTP.", + "first name label": "Όνομα", + "first name required": "Απαιτείται όνομα", + "for": "για", + "for your first registration!": "για την πρώτη εγγραφή!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 - 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 - 15:00", + "from 23:59 till 05:30": "23:59 - 05:30", + "from 3 times Take Attention": "από 3 φορές, Προσοχή", + "from your favorites": "from your favorites", + "from your list": "από τη λίστα", + "get_a_ride": "Βρείτε διαδρομή.", + "get_to_destination": "Φτάστε στον προορισμό.", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "Πηγαίνετε στον επιβάτη πριν ακυρώσει", + "has completed": "ολοκλήρωσε", + "hour": "ώρα", + "i agree": "συμφωνώ", + "if you don't have account": "αν δεν έχετε λογαριασμό", + "if you dont have account": "αν δεν έχετε λογαριασμό", + "if you want help you can email us here": "Στείλτε μας email για βοήθεια", + "image verified": "επαληθεύτηκε", + "in your": "in your", + "insert amount": "εισαγωγή ποσού", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "οδηγεί ", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "joined": "μπήκε", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "Επώνυμο", + "last name required": "Απαιτείται επώνυμο", + "login or register subtitle": "Εισάγετε τον αριθμό κινητού για είσοδο ή εγγραφή", + "m": "λ", + "message From Driver": "Μήνυμα από τον Οδηγό", + "message From passenger": "Μήνυμα από τον επιβάτη", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "Μοντέλο :", + "my location": "τοποθεσία μου", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "Μη παρόμοιο", + "of": "από", + "one last step title": "Ένα τελευταίο βήμα", + "otp sent subtitle": "Ένας 5ψήφιος κωδικός στάλθηκε στο\n@phoneNumber", + "otp sent success": "Ο κωδικός στάλθηκε στο WhatsApp.", + "otp verification failed": "Η επαλήθευση OTP απέτυχε.", + "passenger agreement": "συμφωνία επιβάτη", + "pending": "pending", + "phone not verified": "phone not verified", + "phone number label": "Αριθμός Τηλεφώνου", + "phone number required": "Απαιτείται αριθμός τηλεφώνου", + "please go to picker location exactly": "πηγαίνετε ακριβώς στο σημείο παραλαβής", + "please order now": "Κάντε αίτημα τώρα", + "please wait till driver accept your order": "περιμένετε την αποδοχή", + "price is": "τιμή είναι", + "privacy policy": "πολιτική απορρήτου.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "Η εγγραφή απέτυχε.", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "safe_and_comfortable": "Ασφάλεια και άνεση.", + "seconds": "δευτερόλεπτα", + "security_warning": "security_warning", + "send otp button": "Αποστολή Κωδικού OTP", + "server error try again": "Σφάλμα διακομιστή, προσπαθήστε ξανά.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "Παρόμοιο", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "όρους χρήσης", + "the 300 points equal 300 L.E": "300 πόντοι = 300 €", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "300 πόντοι = 300 €\nΚερδίστε χρήματα", + "the 500 points equal 30 JOD": "500 πόντοι ισούνται με 30 €", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "500 πόντοι = 30 €\nΚερδίστε χρήματα", + "this will delete all files from your device": "διαγραφή όλων των αρχείων", + "to arrive you.": "to arrive you.", + "token change": "Αλλαγή Token", + "token updated": "token ενημερώθηκε", + "trips": "διαδρομές", + "type here": "γράψτε εδώ", + "unknown": "unknown", + "upgrade price": "upgrade price", + "verify and continue button": "Επαλήθευση και Συνέχεια", + "verify your number title": "Επαληθεύστε τον αριθμό σας", + "wait 1 minute to receive message": "περιμένετε 1 λεπτό", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "wallet due to a previous trip.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "Καλώς ήρθατε στο Intaleq", + "welcome to siro": "welcome to siro", + "welcome user": "Καλώς ήρθες, @firstName!", + "welcome_message": "Καλώς ήρθατε στο Intaleq!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "εισάγετε χρώμα", + "write Expiration Date for your car": "εισάγετε ημερομηνία λήξης", + "write Make for your car": "εισάγετε μάρκα", + "write Model for your car": "εισάγετε μοντέλο", + "write Year for your car": "εισάγετε έτος", + "write vin for your car": "εισάγετε πλαίσιο", + "year :": "Έτος :", + "you canceled order": "you canceled order", + "you gain": "κερδίσατε", + "you have a negative balance of": "you have a negative balance of", + "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 Intaleq Wallet": "Θα πληρώσετε για τον χρόνο του οδηγού, δείτε το Πορτοφόλι Intaleq", + "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 Siro Wallet", + "your ride is Accepted": "Η διαδρομή έγινε δεκτή", + "your ride is applied": "η διαδρομή καταχωρήθηκε", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "Ημ. Λήξης", + "⚠️ You need to choose an amount!": "⚠️ Επιλέξτε ποσό!", + "💰 Pay with Wallet": "💰 Πληρωμή με Πορτοφόλι", + "💳 Pay with Credit Card": "💳 Πληρωμή με Κάρτα", +}; diff --git a/siro_rider/lib/controller/local/es.dart b/siro_rider/lib/controller/local/es.dart new file mode 100644 index 0000000..3478f7d --- /dev/null +++ b/siro_rider/lib/controller/local/es.dart @@ -0,0 +1,1715 @@ +final Map es = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": "Actualmente estoy ubicado en ", + " I am using": " estoy usando", + " If you need to reach me, please contact the driver directly at": " Si necesitas contactarme, por favor contacta al conductor directamente al", + " KM": " KM", + " Minutes": " Minutos", + " Next as Cash !": " ¡Siguiente como efectivo!", + " You Earn today is ": " Lo que ganaste hoy es ", + " You Have in": " Tienes en", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " y reconozca nuestra política de privacidad.", + " and acknowledge the ": " y reconozco los ", + " as the driver.": " como el conductor.", + " in your": " in your", + " in your wallet": "en tu billetera", + " is ON for this month": " está activo este mes", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " propinas\nEl total es", + " to arrive you.": "para llegar a ti.", + " to ride with": " para viajar con", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " con matrícula ", + "--": "--", + ". I am at least 18 years old.": ". Tengo al menos 18 años.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "1. Describa su problema", + "10 and get 4% discount": "10 y obtén un 4% de descuento", + "100 and get 11% discount": "100 y obtén un 11% de descuento", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "2. Adjuntar audio grabado", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 y obtén un 6% de descuento", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "3. Revisar detalles y respuesta", + "3000 LE": "3000 LE", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 y obtén un 8% de descuento", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5 dígitos", + "A new version of the app is available. Please update to the latest version.": "Hay una nueva versión de la aplicación disponible. Por favor, actualiza a la última versión.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Un viaje con reserva previa, que te permite elegir a los mejores capitanes y coches.", + "AI Page": "Página de IA", + "About Intaleq": "About Intaleq", + "About Siro": "About Siro", + "About Us": "Sobre nosotros", + "Accept": "Accept", + "Accept Order": "Aceptar pedido", + "Accept Ride's Terms & Review Privacy Notice": "Acepta los términos del viaje y revisa el aviso de privacidad", + "Accepted Ride": "Viaje aceptado", + "Accepted your order": "Tu pedido ha sido aceptado", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "Duración activa:", + "Active Users": "Active Users", + "Add Card": "Añadir tarjeta", + "Add Credit Card": "Añadir tarjeta de crédito", + "Add Home": "Añadir casa", + "Add Location": "Añadir ubicación", + "Add Location 1": "Añadir ubicación 1", + "Add Location 2": "Añadir ubicación 2", + "Add Location 3": "Añadir ubicación 3", + "Add Location 4": "Añadir ubicación 4", + "Add Payment Method": "Añadir método de pago", + "Add Phone": "Añadir teléfono", + "Add Promo": "Añadir promoción", + "Add SOS Phone": "Añadir teléfono SOS", + "Add Stops": "Añadir paradas", + "Add Work": "Añadir trabajo", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "Add funds using our secure methods", + "Add wallet phone you use": "Añade el teléfono de la billetera que usas", + "Address": "Dirección", + "Address: ": "Dirección: ", + "Admin DashBoard": "Panel de administración", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "Asequible para todos", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "¡Después de este período\nno puedes cancelar!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "La edad es ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "Alertas", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "Permitir acceso a la ubicación", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "Ocurrió un error durante el proceso de pago.", + "An error occurred while picking contacts:": "Ocurrió un error al seleccionar los contactos:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "Ocurrió un error inesperado. Inténtalo de nuevo.", + "App Tester Login": "App Tester Login", + "App with Passenger": "Aplicación con pasajero", + "Appearance": "Appearance", + "Applied": "Aplicado", + "Apply": "Aplicar", + "Apply Order": "Aplicar pedido", + "Apply Promo Code": "Aplicar código de promoción", + "Approaching your area. Should be there in 3 minutes.": "Acercándome a tu área. Debería estar allí en 3 minutos.", + "Are You sure to ride to": "¿Estás seguro de viajar a", + "Are you Sure to LogOut?": "¿Estás seguro de cerrar sesión?", + "Are you sure to cancel?": "¿Estás seguro de cancelar?", + "Are you sure to delete recorded files": "¿Estás seguro de eliminar los archivos grabados?", + "Are you sure to delete this location?": "¿Estás seguro de eliminar esta ubicación?", + "Are you sure to delete your account?": "¿Estás seguro de eliminar tu cuenta?", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "¿Estás seguro? Esta acción no se puede deshacer.", + "Are you want to change": "¿Quieres cambiar?", + "Are you want to go this site": "¿Quieres ir a este sitio?", + "Are you want to go to this site": "¿Quieres ir a este sitio?", + "Are you want to wait drivers to accept your order": "¿Quieres esperar a que los conductores acepten tu pedido?", + "Arrival time": "Hora de llegada", + "Arrived": "Arrived", + "Associate Degree": "Título de asociado", + "Attach this audio file?": "¿Adjuntar este archivo de audio?", + "Attention": "Atención", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Archivo de audio no adjunto", + "Audio uploaded successfully.": "Audio subido con éxito.", + "Available for rides": "Disponible para viajes", + "Average of Hours of": "Promedio de horas de", + "Awaiting response...": "Esperando respuesta...", + "Awfar Car": "Coche Awfar", + "Bachelor's Degree": "Licenciatura", + "Back": "Atrás", + "Bahrain": "Baréin", + "Balance": "Saldo", + "Balance limit exceeded": "Balance limit exceeded", + "Balance not enough": "Balance not enough", + "Balance:": "Saldo:", + "Be Slowly": "Ser lento", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "Por favor, asegúrate de tomar imágenes precisas\nTienes", + "Be sure to use it quickly! This code expires at": "¡Asegúrate de usarlo rápido! Este código vence a las", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Porque estamos cerca, tienes la flexibilidad de elegir el viaje que mejor funcione para ti.", + "Before we start, please review our terms.": "Antes de comenzar, revise nuestros términos.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Mejor opción para un coche cómodo con una ruta flexible y puntos de parada. Este aeropuerto ofrece entrada con visa a este precio.", + "Best choice for cities": "Mejor opción para ciudades", + "Best choice for comfort car and flexible route and stops point": "Mejor opción para un coche cómodo y una ruta flexible con puntos de parada", + "Birth Date": "Fecha de nacimiento", + "Bonus gift": "Regalo de bonificación", + "BookingFee": "Tarifa de reserva", + "Bottom Bar Example": "Ejemplo de barra inferior", + "But you have a negative salary of": "Pero tienes un salario negativo de", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Al seleccionar 'Estoy de acuerdo' a continuación, declaro que he revisado y acepto los Términos de uso y reconozco el Aviso de privacidad. Tengo al menos 18 años.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "Al seleccionar \"Acepto\" a continuación, confirmo que he leído y acepto los", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "Al seleccionar \"Acepto\" a continuación, confirmo que he leído y acepto los ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Al seleccionar \"Acepto\" a continuación, he revisado y acepto los Términos de uso y reconozco el ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "CÓDIGO", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "Fin de la llamada", + "Call Ended": "Call Ended", + "Call Income": "Llamada entrante", + "Call Income from Driver": "Llamada entrante del conductor", + "Call Income from Passenger": "Llamada entrante del pasajero", + "Call Left": "Llamada restante", + "Call Options": "Call Options", + "Call Page": "Página de llamada", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "Acceso a la cámara denegado.", + "Camera not initialized yet": "La cámara aún no se ha inicializado", + "Camera not initilaized yet": "La cámara aún no se ha inicializado", + "Can I cancel my ride?": "¿Puedo cancelar mi viaje?", + "Can we know why you want to cancel Ride ?": "¿Podemos saber por qué quieres cancelar el viaje?", + "Cancel": "Cancelar", + "Cancel Ride": "Cancel Ride", + "Cancel Search": "Cancelar búsqueda", + "Cancel Trip": "Cancelar viaje", + "Cancel Trip from driver": "Cancelar viaje por el conductor", + "Canceled": "Cancelado", + "Cannot apply further discounts.": "No se pueden aplicar más descuentos.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Captura una imagen de tu registro criminal", + "Capture an Image of Your Driver License": "Captura una imagen de tu licencia de conducir", + "Capture an Image of Your Driver's License": "Capturar una imagen de su licencia de conducir", + "Capture an Image of Your ID Document Back": "Captura una imagen de la parte trasera de tu documento de identidad", + "Capture an Image of Your ID Document front": "Captura una imagen de la parte frontal de tu documento de identidad", + "Capture an Image of Your car license back": "Captura una imagen de la parte trasera de tu licencia de coche", + "Capture an Image of Your car license front": "Capturar una imagen del frente de su licencia de auto", + "Car": "Coche", + "Car Color:": "Color del coche:", + "Car Details": "Detalles del coche", + "Car License Card": "Tarjeta de licencia de coche", + "Car Make:": "Marca del coche:", + "Car Model:": "Modelo del coche:", + "Car Plate is ": "La placa del coche es ", + "Car Plate:": "Matrícula del coche:", + "Card Number": "Número de tarjeta", + "CardID": "ID de la tarjeta", + "Cash": "Efectivo", + "Change Country": "Cambiar país", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Cambiar viaje", + "Change Route": "Cambiar ruta", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "He cambiado de opinión", + "Chassis": "Chasis", + "Chat with us anytime": "Chat with us anytime", + "Check back later for new offers!": "¡Vuelve más tarde para ver nuevas ofertas!", + "Choose Language": "Elegir idioma", + "Choose a contact option": "Elige una opción de contacto", + "Choose between those Type Cars": "Elige entre esos tipos de coches", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "Elegir del mapa", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "Elige la opción de viaje que mejor se adapte a tus necesidades y preferencias.", + "Choose who this order is for": "Elige para quién es este pedido", + "Choose your ride": "Elige tu viaje", + "City": "Ciudad", + "Claim your 20 LE gift for inviting": "Reclama tu regalo de 20 LE por invitar", + "Click here point": "Haz clic aquí", + "Click here to Show it in Map": "Haz clic aquí para mostrarlo en el mapa", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "Cerrar", + "Close panel": "Close panel", + "Closest & Cheapest": "Más cercano y más barato", + "Closest to You": "Más cerca de ti", + "Code": "Código", + "Code not approved": "Código no aprobado", + "Color": "Color", + "Color is ": "El color es ", + "Comfort": "Comfort", + "Comfort choice": "Opción Confort", + "Coming": "Coming", + "Communication": "Comunicación", + "Complaint": "Queja", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "No se puede presentar una queja por este viaje. Es posible que no se haya completado o iniciado.", + "Complaint data saved successfully": "Datos de la queja guardados con éxito", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "Confirmar", + "Confirm & Find a Ride": "Confirmar y encontrar un viaje", + "Confirm Attachment": "Confirmar archivo adjunto", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirmar ubicación de recogida", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "Confirmar selección", + "Confirm Trip": "Confirmar viaje", + "Confirm your Email": "Confirma tu correo electrónico", + "Connected": "Conectado", + "Connecting...": "Connecting...", + "Connection Error": "Error de conexión", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "Opciones de contacto", + "Contact Support": "Contactar con soporte", + "Contact Us": "Contáctanos", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "Se requiere permiso de contactos para elegir contactos", + "Contact us for any questions on your order.": "Contáctanos si tienes preguntas sobre tu pedido.", + "Contacts Loaded": "Contacts Loaded", + "Continue": "Continuar", + "Copy": "Copiar", + "Copy Code": "Copiar código", + "Copy this Promo to use it in your Ride!": "¡Copia esta promoción para usarla en tu viaje!", + "Cost Duration": "Duración del costo", + "Cost Of Trip IS ": "El costo del viaje es ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "Cantidad de horas por día", + "Create Wallet to receive your money": "Crea una billetera para recibir tu dinero", + "Criminal Document Required": "Se requiere antecedente penal", + "Criminal Record": "Registro criminal", + "Crop Photo": "Crop Photo", + "Cropper": "Recortador", + "Current Balance": "Current Balance", + "Current Location": "Ubicación actual", + "Customer MSISDN doesn’t have customer wallet": "El MSISDN del cliente no tiene billetera", + "Customer not found": "Customer not found", + "Customer phone is not active": "Customer phone is not active", + "DISCOUNT": "DESCUENTO", + "Dark Mode": "Dark Mode", + "Date": "Fecha", + "Date and Time Picker": "Selector de fecha y hora", + "Date of Birth is": "La fecha de nacimiento es", + "Date of Birth: ": "Fecha de nacimiento: ", + "Days": "Días", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Estimado ,\n\n 🚀 ¡Acabo de comenzar un viaje emocionante y me gustaría compartir los detalles de mi trayecto y mi ubicación actual contigo en tiempo real! Por favor, descarga la aplicación Intaleq. Te permitirá ver los detalles de mi viaje y mi última ubicación.\n\n 👉 Enlace de descarga: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n ¡Espero mantenerte cerca durante mi aventura!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "Eliminar mi cuenta", + "Delete Permanently": "Eliminar permanentemente", + "Delete Recording?": "Delete Recording?", + "Deleted": "Eliminado", + "Destination": "Destino", + "Destination Set": "Destination Set", + "Destination selected": "Destino seleccionado", + "Detect Your Face ": "Detecta tu cara ", + "Device Change Detected": "Cambio de dispositivo detectado", + "Direct talk with our team": "Direct talk with our team", + "Displacement": "Cilindrada", + "Distance": "Distance", + "Distance To Passenger is ": "La distancia hasta el pasajero es ", + "Distance from Passenger to destination is ": "La distancia del pasajero al destino es ", + "Distance is ": "La distancia es ", + "Distance of the Ride is ": "La distancia del viaje es ", + "Do you have an invitation code from another driver?": "¿Tienes un código de invitación de otro conductor?", + "Do you want to change Home location": "¿Quieres cambiar la ubicación del hogar?", + "Do you want to change Work location": "¿Quieres cambiar la ubicación del trabajo?", + "Do you want to pay Tips for this Driver": "¿Quieres pagar propinas a este conductor?", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "Doctorado", + "Document Number: ": "Número de documento: ", + "Documents check": "Verificación de documentos", + "Don't Cancel": "No cancelar", + "Don't forget your personal belongings.": "No olvide sus pertenencias personales.", + "Don't forget your ride!": "¡No olvides tu viaje!", + "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.", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "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 Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro 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", + "Driver Accepted the Ride for You": "El conductor aceptó el viaje por ti", + "Driver Applied the Ride for You": "El conductor aplicó el viaje por ti", + "Driver Cancelled Your Trip": "El conductor canceló su viaje", + "Driver Car Plate": "Placa del coche del conductor", + "Driver Finish Trip": "El conductor finalizó el viaje", + "Driver Is Going To Passenger": "El conductor va hacia el pasajero", + "Driver List": "Lista de conductores", + "Driver Name": "Nombre del conductor", + "Driver Name:": "Nombre del conductor:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Teléfono del conductor:", + "Driver Referral": "Driver Referral", + "Driver Registration": "Registro de conductores", + "Driver Registration & Requirements": "Registro y requisitos del conductor", + "Driver Wallet": "Billetera del conductor", + "Driver already has 2 trips within the specified period.": "El conductor ya tiene 2 viajes dentro del período especificado.", + "Driver asked me to cancel": "El conductor me pidió que cancelara", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "El conductor está en camino", + "Driver is taking too long": "El conductor tarda demasiado", + "Driver is waiting at pickup.": "El conductor está esperando en el punto de recogida.", + "Driver joined the channel": "El conductor se unió al canal", + "Driver left the channel": "El conductor dejó el canal", + "Driver phone": "Teléfono del conductor", + "Driver's License": "Licencia de conducir", + "Drivers License Class": "Clase de licencia de conducir", + "Drivers License Class: ": "Clase de licencia de conducir: ", + "Duration To Passenger is ": "La duración hasta el pasajero es ", + "Duration is": "La duración es", + "Duration of Trip is ": "La duración del viaje es ", + "Duration of the Ride is ": "La duración del viaje es ", + "EGP": "EGP", + "Edit Profile": "Editar perfil", + "Edit Your data": "Edita tus datos", + "Education": "Educación", + "Egypt": "Egipto", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "Electric", + "Email": "Correo electrónico", + "Email Support": "Email Support", + "Email Us": "Envíanos un correo electrónico", + "Email Wrong": "Correo electrónico incorrecto", + "Email is": "El correo electrónico es", + "Email you inserted is Wrong.": "El correo electrónico que ingresaste es incorrecto.", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "Tipo de empleo", + "Enable Location": "Habilitar ubicación", + "Enable Location Access": "Habilitar acceso a la ubicación", + "End": "End", + "End Ride": "Finalizar viaje", + "Enjoy a safe and comfortable ride.": "Disfruta de un viaje seguro y cómodo.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Disfruta de precios competitivos en todas las opciones de viaje, haciendo que los viajes sean accesibles.", + "Enter Your First Name": "Ingresa tu nombre", + "Enter a password": "Enter a password", + "Enter a valid email": "Ingresa un correo electrónico válido", + "Enter driver's phone": "Ingresar teléfono del conductor", + "Enter phone": "Ingresar teléfono", + "Enter promo code": "Ingresar código de promoción", + "Enter promo code here": "Ingresa el código de promoción aquí", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "Ingresa el código de promoción y obtén", + "Enter your City": "Enter your City", + "Enter your Note": "Ingresa tu nota", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Ingrese su código a continuación para aplicar el descuento.", + "Enter your complaint here": "Ingresa tu queja aquí", + "Enter your complaint here...": "Ingrese su queja aquí...", + "Enter your email address": "Ingresa tu dirección de correo electrónico", + "Enter your feedback here": "Ingresa tu retroalimentación aquí", + "Enter your first name": "Ingresa tu nombre", + "Enter your last name": "Ingresa tu apellido", + "Enter your password": "Ingresa tu contraseña", + "Enter your phone number": "Ingresa tu número de teléfono", + "Enter your promo code": "Ingresa tu código de promoción", + "Error": "Error", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "Tarde", + "Exclusive offers and discounts always with the Intaleq app": "Ofertas exclusivas y descuentos siempre con la aplicación Intaleq", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "Fecha de vencimiento", + "Expiration Date ": "Fecha de vencimiento ", + "Expiry Date": "Fecha de vencimiento", + "Expiry Date: ": "Fecha de vencimiento: ", + "Face Detection Result": "Resultado de detección facial", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "Error en la búsqueda, inténtelo de nuevo más tarde", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "Respuesta más rápida a las quejas", + "Favorite Places": "Lugares favoritos", + "Fee is": "La tarifa es", + "Feed Back": "Retroalimentación", + "Feedback": "Retroalimentación", + "Feedback data saved successfully": "Datos de retroalimentación guardados con éxito", + "Female": "Mujer", + "Find answers to common questions": "Encuentra respuestas a preguntas comunes", + "Finish Monitor": "Finalizar monitor", + "Finished": "Finished", + "First Name": "Nombre", + "First name": "Nombre", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Tarifa base", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "Para conductores", + "For Intaleq and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Para viajes de velocidad y entrega, el precio se calcula dinámicamente. Para viajes de confort, el precio se basa en el tiempo y la distancia.", + "For Intaleq and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "Para viajes de velocidad y scooter, el precio se calcula dinámicamente. Para viajes de confort, el precio se basa en el tiempo y la distancia.", + "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "For official inquiries", + "Found another transport": "Encontré otro transporte", + "Free Call": "Free Call", + "Frequently Asked Questions": "Preguntas frecuentes", + "Frequently Questions": "Preguntas frecuentes", + "From": "Desde", + "From :": "Desde :", + "From : ": "Desde : ", + "From : Current Location": "Desde : Ubicación actual", + "From:": "Desde:", + "Fuel": "Combustible", + "Full Name (Marital)": "Nombre completo (estado civil)", + "FullName": "Nombre completo", + "GPS Required Allow !.": "¡GPS requerido, permitir!.", + "Gender": "Género", + "General": "General", + "Get": "Obtener", + "Get Details of Trip": "Obtener detalles del viaje", + "Get Direction": "Obtener dirección", + "Get a discount on your first Intaleq ride!": "Get a discount on your first Intaleq ride!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "¡Consíguelo ahora!", + "Get to your destination quickly and easily.": "Llega a tu destino de manera rápida y sencilla.", + "Getting Started": "Cómo empezar", + "Gift Already Claimed": "Regalo ya reclamado", + "Go To Favorite Places": "Ir a lugares favoritos", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "Ve al siguiente paso\nescanea la licencia del coche.", + "Go to passenger Location now": "Ir ahora a la ubicación del pasajero", + "Go to this Target": "Ir a este objetivo", + "Go to this location": "Ir a esta ubicación", + "Grant": "Grant", + "H and": "Horas y", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "¿Tienes un código promocional?", + "Heading your way now. Please be ready.": "En camino hacia ti ahora. Por favor, estate listo.", + "Height: ": "Altura: ", + "Hello this is Captain": "Hola, este es el capitán", + "Hello this is Driver": "Hola, este es el conductor", + "Hello! I'm inviting you to try Intaleq.": "¡Hola! Te invito a probar Intaleq.", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hola, estoy en la ubicación acordada", + "Help Details": "Detalles de ayuda", + "Helping Center": "Centro de ayuda", + "Here recorded trips audio": "Aquí están los audios de los viajes grabados", + "Hi": "Hola", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Hola, iré ahora", + "Hi! This is": "¡Hola! Este es", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "Hola, a dónde ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "Diploma de bachillerato", + "History of Trip": "Historial de viajes", + "Home": "Home", + "Home Page": "Página de inicio", + "Home Saved": "Casa guardada", + "How can I pay for my ride?": "¿Cómo puedo pagar mi viaje?", + "How can I register as a driver?": "¿Cómo puedo registrarme como conductor?", + "How do I communicate with the other party (passenger/driver)?": "¿Cómo me comunico con la otra parte (pasajero/conductor)?", + "How do I request a ride?": "¿Cómo solicito un viaje?", + "How many hours would you like to wait?": "¿Cuántas horas te gustaría esperar?", + "How much longer will you be?": "¿Cuánto tiempo más tardarás?", + "I Agree": "Acepto", + "I Arrive your site": "Llego a tu sitio", + "I added the wrong pick-up/drop-off location": "Agregué la ubicación de recogida/dejada incorrecta", + "I am currently located at": "I am currently located at", + "I arrive you": "Llego a ti", + "I cant register in your app in face detection ": "No puedo registrarme en tu aplicación con detección facial ", + "I don't have a reason": "No tengo una razón", + "I don't need a ride anymore": "Ya no necesito un viaje", + "I want to order for myself": "Quiero pedir para mí", + "I want to order for someone else": "Quiero pedir para alguien más", + "I was just trying the application": "Solo estaba probando la aplicación", + "I will go now": "Iré ahora", + "I will slow down": "Reduciré la velocidad", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "Te estoy esperando", + "I've been trying to reach you but your phone is off.": "He estado intentando contactarte pero tu teléfono está apagado.", + "ID Documents Back": "Parte trasera de los documentos de identidad", + "ID Documents Front": "Parte frontal de los documentos de identidad", + "If you in Car Now. Press Start The Ride": "Si estás en el coche ahora. Presiona Iniciar el viaje", + "If you need assistance, contact us": "Si necesitas ayuda, contáctanos", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Si quieres añadir una parada, haz clic aquí", + "If you want order to another person": "Si quieres pedir para otra persona", + "If you want to make Google Map App run directly when you apply order": "Si quieres que la aplicación Google Map se ejecute directamente cuando aplicas un pedido", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "El resultado de la detección de imagen es ", + "In-App VOIP Calls": "Llamadas VOIP en la aplicación", + "Including Tax": "Incluyendo impuesto", + "Incorrect sms code": "Incorrect sms code", + "Increase Fare": "Increase Fare", + "Increase Fee": "Aumentar tarifa", + "Increase Your Trip Fee (Optional)": "Aumenta la tarifa de tu viaje (Opcional)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Increasing the fare might attract more drivers. Would you like to increase the price?", + "Insert": "Insertar", + "Insert Emergincy Number": "Insertar número de emergencia", + "Insert SOS Phone": "Insertar teléfono SOS", + "Insert Wallet phone number": "Ingresa el número de teléfono de la billetera", + "Insert Your Promo Code": "Inserta tu código de promoción", + "Inspection Date": "Fecha de inspección", + "InspectionResult": "Resultado de la inspección", + "Intaleq": "Velocidad", + "Intaleq Balance": "Intaleq Balance", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Exceso de velocidad", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq Support", + "Intaleq Wallet": "Billetera Intaleq", + "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 es una aplicación de viajes compartidos diseñada pensando en tu seguridad y asequibilidad. Te conectamos con conductores confiables en tu área, asegurando una experiencia de viaje conveniente y sin estrés.\n\nAquí hay algunas de las características clave que nos diferencian:", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq se compromete con la seguridad, y todos nuestros capitanes son cuidadosamente seleccionados y verificados.", + "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 es la primera aplicación de transporte compartido en Siria, diseñada para conectarlo con los conductores más cercanos para una experiencia de viaje rápida y conveniente.", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq es la aplicación de viajes compartidos que es segura, confiable y accesible.", + "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 es la aplicación de transporte compartido más segura y confiable diseñada especialmente para pasajeros en Siria. Brindamos una experiencia de viaje cómoda, respetuosa y asequible con características que priorizan su seguridad y conveniencia. Nuestros capitanes de confianza están verificados, asegurados y respaldados por el mantenimiento regular del automóvil realizado por los mejores ingenieros. También ofrecemos servicios de apoyo en carretera para asegurarnos de que cada viaje sea sencillo y sin preocupaciones. Con Intaleq, disfruta de calidad, seguridad y tranquilidad cada vez que viaja.", + "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 es la aplicación de viajes compartidos más segura que introduce muchas características tanto para capitanes como para pasajeros. Ofrecemos la tasa de comisión más baja de solo el 8%, asegurando que obtengas el mejor valor por tus viajes. Nuestra aplicación incluye seguro para los mejores capitanes, mantenimiento regular de coches con los mejores ingenieros y servicios en carretera para garantizar una experiencia respetuosa y de alta calidad para todos los usuarios.", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq ofrece una variedad de opciones, incluyendo Economía, Confort y Lujo, para adaptarse a tus necesidades y presupuesto.", + "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 ofrece una variedad de opciones de vehículos para adaptarse a tus necesidades, incluyendo economía, confort y lujo. Elige la opción que mejor se ajuste a tu presupuesto y número de pasajeros.", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq ofrece múltiples métodos de pago para tu conveniencia. Elige entre pago en efectivo o con tarjeta de crédito/débito durante la confirmación del viaje.", + "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 ofrece varias características de seguridad, incluyendo verificación del conductor, seguimiento del viaje en la aplicación, opciones de contacto de emergencia y la capacidad de compartir el estado de tu viaje con contactos de confianza.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq prioriza tu seguridad. Ofrecemos funciones como verificación del conductor, seguimiento del viaje en la aplicación y opciones de contacto de emergencia.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq ofrece funcionalidad de chat en la aplicación para que puedas comunicarte con tu conductor o pasajero durante tu viaje.", + "Intaleq's Response": "Respuesta de Intaleq", + "Invalid MPIN": "MPIN inválido", + "Invalid OTP": "OTP inválido", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "Invitación utilizada", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "Invitación enviada con éxito", + "Is the Passenger in your Car ?": "¿El pasajero está en tu coche?", + "Issue Date": "Fecha de emisión", + "IssueDate": "Fecha de emisión", + "JOD": "JOD", + "Join": "Unirse", + "Join Intaleq as a driver using my referral code!": "Join Intaleq as a driver using my referral code!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "Jordania", + "KM": "KM", + "Keep it up!": "¡Sigue así!", + "Kuwait": "Kuwait", + "LE": "LE", + "Lady": "Lady", + "Lady Captain for girls": "Conductora para chicas", + "Lady Captains Available": "Capitanas disponibles", + "Language": "Idioma", + "Language Options": "Opciones de idioma", + "Last Name": "Last Name", + "Last name": "Apellido", + "Latest Recent Trip": "Último viaje reciente", + "Learn more about our app and mission": "Aprende más sobre nuestra aplicación y misión", + "Leave": "Salir", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "Vamos a verificar la licencia del coche ", + "Lets check License Back Face": "Vamos a verificar la parte trasera de la licencia", + "License Categories": "Categorías de licencia", + "License Type": "Tipo de licencia", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "Link a phone number for transfers", + "Listen": "Listen", + "Location": "Location", + "Location Link": "Enlace de ubicación", + "Location Received": "Location Received", + "Log Off": "Cerrar sesión", + "Log Out Page": "Página de cierre de sesión", + "Login": "Iniciar sesión", + "Login Captin": "Iniciar sesión como capitán", + "Login Driver": "Iniciar sesión como conductor", + "Logout": "Logout", + "Lowest Price Achieved": "Precio más bajo alcanzado", + "Made :": "Hecho :", + "Make": "Marca", + "Make is ": "La marca es ", + "Male": "Hombre", + "Map Error": "Map Error", + "Map Passenger": "Mapa del pasajero", + "Marital Status": "Estado civil", + "Master's Degree": "Maestría", + "Maximum fare": "Tarifa máxima", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Tarifa mínima", + "Minute": "Minuto", + "Mishwar Vip": "Mishwar Vip", + "Model": "Modelo", + "Model is": "El modelo es", + "Morning": "Mañana", + "Most Secure Methods": "Métodos más seguros", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "Mueve el mapa para ajustar el pin", + "Mute": "Mute", + "My Balance": "Mi saldo", + "My Card": "Mi tarjeta", + "My Cared": "Mis tarjetas", + "My Profile": "Mi perfil", + "My current location is:": "Mi ubicación actual es:", + "My location is correct. You can search for me using the navigation app": "Mi ubicación es correcta. Puedes buscarme usando la aplicación de navegación.", + "MyLocation": "Mi ubicación", + "N/A": "N/A", + "Name": "Nombre", + "Name (Arabic)": "Nombre (árabe)", + "Name (English)": "Nombre (inglés)", + "Name :": "Nombre :", + "Name in arabic": "Nombre en árabe", + "Name of the Passenger is ": "El nombre del pasajero es ", + "National ID": "Identificación nacional", + "National Number": "Número nacional", + "NationalID": "Identificación nacional", + "Nearby": "Nearby", + "Nearest Car": "Coche más cercano", + "Nearest Car for you about ": "El coche más cercano para ti en aproximadamente ", + "Nearest Car: ~": "Coche más cercano: ~", + "Need assistance? Contact us": "¿Necesitas ayuda? Contáctanos", + "Network error occurred": "Network error occurred", + "Next": "Siguiente", + "Night": "Noche", + "No": "No", + "No ,still Waiting.": "No, aún esperando.", + "No Captain Accepted Your Order": "Ningún capitán aceptó tu pedido", + "No Car in your site. Sorry!": "No hay coche en tu sitio. ¡Lo siento!", + "No Car or Driver Found in your area.": "No se encontró ningún coche o conductor en tu área.", + "No Drivers Found": "No se encontraron conductores", + "No I want": "No, quiero", + "No Notifications": "No Notifications", + "No Promo for today .": "No hay promoción para hoy.", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "Aún no hay respuesta.", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "¡Sin tarjeta SIM, no hay problema! Llama a tu conductor directamente a través de nuestra aplicación. Usamos tecnología avanzada para garantizar tu privacidad.", + "No accepted orders? Try raising your trip fee to attract riders.": "¿No hay pedidos aceptados? Intenta aumentar la tarifa de tu viaje para atraer a los conductores.", + "No audio files found.": "No se encontraron archivos de audio.", + "No cars nearby": "No hay coches cerca", + "No contacts available": "No contacts available", + "No contacts found": "No se encontraron contactos", + "No contacts with phone numbers were found on your device.": "No se encontraron contactos con números de teléfono en su dispositivo.", + "No driver accepted my request": "Ningún conductor aceptó mi solicitud", + "No drivers accepted your request yet": "No drivers accepted your request yet", + "No drivers available": "No hay conductores disponibles", + "No drivers available at the moment. Please try again later.": "No hay conductores disponibles en este momento. Por favor, inténtalo de nuevo más tarde.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "No se encontraron conductores en este momento.\nInténtelo de nuevo más tarde.", + "No face detected": "No se detectó ninguna cara", + "No favorite places yet!": "¡Aún no tienes lugares favoritos!", + "No i want": "No i want", + "No image selected yet": "Aún no se ha seleccionado ninguna imagen", + "No invitation found yet!": "¡Aún no se ha encontrado ninguna invitación!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "¿Nadie aceptó? Intenta aumentar la tarifa.", + "No passenger found for the given phone number": "No se encontró ningún pasajero para el número de teléfono proporcionado", + "No promos available right now.": "No hay promociones disponibles en este momento.", + "No ride found yet": "Aún no se ha encontrado ningún viaje", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No hay datos de viaje disponibles", + "No trip history found": "No se encontró historial de viajes", + "No trip yet found": "Aún no se ha encontrado ningún viaje", + "No user found": "No user found", + "No user found for the given phone number": "No se encontró ningún usuario para el número de teléfono proporcionado", + "No wallet record found": "No se encontró ningún registro de billetera", + "No, I don't have a code": "No, no tengo un código", + "No, I want to cancel this trip": "No, quiero cancelar este viaje", + "No, thanks": "No, gracias", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "No conectado", + "Not set": "No establecido", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "Notificaciones", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Ahora selecciona el punto de inicio", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "Ocupación", + "Ok": "Ok", + "Ok , See you Tomorrow": "Ok, nos vemos mañana", + "Ok I will go now.": "Ok, iré ahora.", + "Old and affordable, perfect for budget rides.": "Viejo y asequible, perfecto para viajes económicos.", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "Abrir configuración", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "O pague en efectivo en su lugar", + "Order": "Pedido", + "Order Accepted": "Pedido aceptado", + "Order Applied": "Pedido aplicado", + "Order Cancelled": "Pedido cancelado", + "Order Cancelled by Passenger": "Pedido cancelado por el pasajero", + "Order Details Intaleq": "Detalles del pedido Velocidad", + "Order Details Siro": "Order Details Siro", + "Order History": "Historial de pedidos", + "Order Request Page": "Página de solicitud de pedido", + "Order Under Review": "Pedido en revisión", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "Pedido para mí", + "Order for someone else": "Pedido para alguien más", + "OrderId": "ID del pedido", + "OrderVIP": "Pedido VIP", + "Origin": "Origen", + "Other": "Otro", + "Our dedicated customer service team ensures swift resolution of any issues.": "Nuestro dedicado equipo de servicio al cliente garantiza una resolución rápida de cualquier problema.", + "Owner Name": "Nombre del propietario", + "Passenger": "Passenger", + "Passenger Cancel Trip": "El pasajero canceló el viaje", + "Passenger Name is ": "El nombre del pasajero es ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "El pasajero canceló el pedido", + "Passenger come to you": "El pasajero viene a ti", + "Passenger name : ": "Nombre del pasajero : ", + "Password": "Contraseña", + "Password must br at least 6 character.": "La contraseña debe tener al menos 6 caracteres.", + "Paste WhatsApp location link": "Pega el enlace de ubicación de WhatsApp", + "Paste location link here": "Pega el enlace de ubicación aquí", + "Paste the code here": "Pega el código aquí", + "Pay": "Pagar", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Pagar directamente al capitán", + "Pay from my budget": "Pagar de mi presupuesto", + "Pay with Credit Card": "Pagar con tarjeta de crédito", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "Pagar con billetera", + "Pay with Your": "Paga con tu", + "Pay with Your PayPal": "Paga con tu PayPal", + "Payment Failed": "Pago fallido", + "Payment History": "Payment History", + "Payment Method": "Método de pago", + "Payment Options": "Opciones de pago", + "Payment Successful": "Pago exitoso", + "Payments": "Pagos", + "Perfect for adventure seekers who want to experience something new and exciting": "Perfecto para los buscadores de aventuras que quieren experimentar algo nuevo y emocionante", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfecto para pasajeros que buscan los últimos modelos de coches con la libertad de elegir cualquier ruta que deseen", + "Permission Required": "Permission Required", + "Permission denied": "Permiso denegado", + "Personal Information": "Información personal", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "El número de teléfono es", + "Phone Wallet Saved Successfully": "Billetera telefónica guardada con éxito", + "Phone number is verified before": "El número de teléfono ya ha sido verificado", + "Phone number isn't an Egyptian phone number": "El número de teléfono no es un número egipcio", + "Phone number must be exactly 11 digits long": "El número de teléfono debe tener exactamente 11 dígitos", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "Elegir del mapa", + "Pick from map destination": "Elige el destino en el mapa", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Elige o toca para confirmar", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "Elige tu destino del mapa", + "Pick your ride location on the map - Tap to confirm": "Elige la ubicación de tu viaje en el mapa - Toca para confirmar", + "Plan Your Route": "Plan Your Route", + "Plate": "Placa", + "Plate Number": "Número de placa", + "Please Try anther time ": "Por favor, intenta otro momento ", + "Please Wait If passenger want To Cancel!": "¡Por favor, espera si el pasajero quiere cancelar!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "Por favor, verifique su conexión a internet", + "Please don't be late": "Por favor, no llegues tarde", + "Please don't be late, I'm waiting for you at the specified location.": "Por favor, no llegues tarde, te estoy esperando en la ubicación especificada.", + "Please enter": "Por favor, ingresa", + "Please enter Your Email.": "Por favor, ingresa tu correo electrónico.", + "Please enter Your Password.": "Por favor, ingresa tu contraseña.", + "Please enter a correct phone": "Por favor, ingresa un teléfono correcto", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "Por favor, ingresa un número de teléfono", + "Please enter a valid 16-digit card number": "Por favor, ingresa un número de tarjeta válido de 16 dígitos", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Por favor, ingresa un código de promoción válido", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Por favor, ingresa el código CVV", + "Please enter the cardholder name": "Por favor, ingresa el nombre del titular de la tarjeta", + "Please enter the complete 6-digit code.": "Por favor, ingrese el código completo de 6 dígitos.", + "Please enter the expiry date": "Por favor, ingresa la fecha de vencimiento", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Por favor, ingresa tu ciudad.", + "Please enter your Question.": "Por favor, ingresa tu pregunta.", + "Please enter your complaint.": "Por favor, ingresa tu queja.", + "Please enter your feedback.": "Por favor, ingresa tu retroalimentación.", + "Please enter your first name.": "Por favor, ingresa tu nombre.", + "Please enter your last name.": "Por favor, ingresa tu apellido.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Por favor, ingresa tu número de teléfono.", + "Please go to Car Driver": "Por favor, ve al conductor del coche", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "Por favor, ve al coche ahora ", + "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 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": "Por favor, asegúrate de tener todas tus pertenencias personales y que cualquier tarifa restante, si corresponde, se haya añadido a tu billetera antes de salir. Gracias por elegir la aplicación Intaleq", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "Por favor, coloca tu licencia en este marco", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "Por favor, permanece en el punto seleccionado.", + "Please try again in a few moments": "Por favor, inténtalo de nuevo en unos momentos", + "Please verify your identity": "Por favor, verifique su identidad", + "Please wait for the passenger to enter the car before starting the trip.": "Por favor, espera a que el pasajero entre al coche antes de iniciar el viaje.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "Por favor escriba el motivo...", + "Point": "Punto", + "Potential security risks detected. The application may not function correctly.": "Se detectaron posibles riesgos de seguridad. Es posible que la aplicación no funcione correctamente.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Reserva anticipada", + "Preferences": "Preferences", + "Price": "Precio", + "Price of trip": "Precio del viaje", + "Privacy Notice": "Aviso de privacidad", + "Privacy Policy": "Política de privacidad", + "Professional driver": "Professional driver", + "Profile": "Perfil", + "Profile photo updated": "Profile photo updated", + "Promo": "Promo", + "Promo Already Used": "Promoción ya utilizada", + "Promo Code": "Código de promoción", + "Promo Code Accepted": "Código de promoción aceptado", + "Promo Copied!": "¡Promoción copiada!", + "Promo End !": "¡Promoción terminada!", + "Promo Ended": "Promoción terminada", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "¡Código de promoción copiado al portapapeles!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "Promociones", + "Promos For Today": "Promociones para hoy", + "Pyament Cancelled .": "Pago cancelado .", + "Qatar": "Catar", + "Quick Access": "Quick Access", + "Quick Actions": "Acciones rápidas", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "Silencioso y ecológico", + "Rate Captain": "Calificar al capitán", + "Rate Driver": "Calificar al conductor", + "Rate Passenger": "Calificar al pasajero", + "Rating is": "Rating is", + "Rating is ": "La calificación es ", + "Rating is ": "Rating is ", + "Rayeh Gai": "Rayeh Gai", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai: Servicio de viaje redondo para un viaje conveniente entre ciudades, fácil y confiable.", + "Reach out to us via": "Reach out to us via", + "Received empty route data.": "Received empty route data.", + "Recent Places": "Lugares recientes", + "Recharge my Account": "Recargar mi cuenta", + "Record": "Record", + "Record saved": "Grabación guardada", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "Viajes grabados (análisis de voz e IA)", + "Recorded Trips for Safety": "Viajes grabados para seguridad", + "Refresh Map": "Actualizar mapa", + "Refuse Order": "Rechazar pedido", + "Register": "Registrarse", + "Register Captin": "Registrar capitán", + "Register Driver": "Registrar conductor", + "Register as Driver": "Registrarse como conductor", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Religión", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "Reenviar código", + "Resend code": "Reenviar código", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "Gestión de viajes", + "Ride Summaries": "Resúmenes de viajes", + "Ride Summary": "Resumen del viaje", + "Ride Today : ": "Viaje hoy : ", + "Ride Wallet": "Billetera de viajes", + "Rides": "Viajes", + "Rouats of Trip": "Rutas del viaje", + "Route": "Route", + "Route Not Found": "Route Not Found", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "Teléfono SOS", + "SYP": "SYP", + "Safety & Security": "Seguridad y protección", + "Saudi Arabia": "Arabia Saudita", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "Guardar tarjeta de crédito", + "Save Name": "Save Name", + "Saved Sucssefully": "Guardado exitosamente", + "Scan Driver License": "Escanear licencia de conducir", + "Scan ID MklGoogle": "Escanear ID MklGoogle", + "Scan Id": "Escanear ID", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Hora programada:", + "Scooter": "Scooter", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "Buscar otro conductor", + "Search for waypoint": "Buscar punto de referencia", + "Search for your Start point": "Busca tu punto de inicio", + "Search for your destination": "Busca tu destino", + "Searching for nearby drivers...": "Buscando conductores cercanos...", + "Searching for the nearest captain...": "Buscando al capitán más cercano...", + "Secure": "Secure", + "Security Warning": "Advertencia de seguridad", + "See you on the road!": "¡Nos vemos en el camino!", + "Select Appearance": "Select Appearance", + "Select Country": "Seleccionar país", + "Select Date": "Seleccionar fecha", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "Seleccionar tipo de pedido", + "Select Payment Amount": "Seleccionar monto de pago", + "Select This Ride": "Select This Ride", + "Select Time": "Seleccionar hora", + "Select Waiting Hours": "Seleccionar horas de espera", + "Select Your Country": "Selecciona tu país", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Seleccionar fecha y hora del viaje", + "Select one message": "Selecciona un mensaje", + "Select recorded trip": "Seleccionar viaje grabado", + "Select your destination": "Selecciona tu destino", + "Select your preferred language for the app interface.": "Seleccione su idioma preferido para la interfaz de la aplicación.", + "Selected Date": "Fecha seleccionada", + "Selected Date and Time": "Fecha y hora seleccionadas", + "Selected Time": "Hora seleccionada", + "Selected driver": "Conductor seleccionado", + "Selected file:": "Archivo seleccionado:", + "Send Email": "Send Email", + "Send Intaleq app to him": "Enviarle la aplicación Intaleq", + "Send Invite": "Enviar invitación", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro 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", + "Send a custom message": "Enviar un mensaje personalizado", + "Send to Driver Again": "Enviar al conductor nuevamente", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Sesión expirada. Por favor, inicie sesión de nuevo.", + "Set Destination": "Set Destination", + "Set Location on Map": "Establecer ubicación en el mapa", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Set Wallet Phone Number", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "Establecer lugar de recogida", + "Setting": "Configuración", + "Settings": "Configuración", + "Sex is ": "El sexo es ", + "Share": "Share", + "Share App": "Compartir aplicación", + "Share Trip": "Share Trip", + "Share Trip Details": "Compartir detalles del viaje", + "Share this code with your friends and earn rewards when they use it!": "¡Comparte este código con tus amigos y gana recompensas cuando lo usen!", + "Share with friends and earn rewards": "Comparte con amigos y gana recompensas", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Mostrar invitaciones", + "Show Promos": "Mostrar promociones", + "Show Promos to Charge": "Mostrar promociones para cargar", + "Show latest promo": "Mostrar la última promoción", + "Showing": "Showing", + "Sign In by Apple": "Iniciar sesión con Apple", + "Sign In by Google": "Iniciar sesión con Google", + "Sign In with Google": "Iniciar sesión con Google", + "Sign Out": "Cerrar sesión", + "Sign in for a seamless experience": "Inicia sesión para una experiencia sin interrupciones", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Iniciar sesión con Apple", + "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", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simplemente abre la aplicación Intaleq, ingresa tu destino y toca \"Solicitar viaje\". La aplicación te conectará con un conductor cercano.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "Lo sentimos 😔", + "Sorry, there are no cars available of this type right now.": "Lo sentimos, no hay coches de este tipo disponibles en este momento.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Servicio de furgoneta espaciosa ideal para familias y grupos. Viaje juntos de forma cómoda, segura y económica.", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "Iniciar grabación", + "Start the Ride": "Iniciar el viaje", + "Statistics": "Estadísticas", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Instrucciones paso a paso sobre cómo solicitar un viaje a través de la aplicación Intaleq.", + "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 Siro app.", + "Stop": "Stop", + "Submit": "Enviar", + "Submit ": "Enviar ", + "Submit Complaint": "Enviar queja", + "Submit Question": "Enviar pregunta", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "Enviar una queja", + "Submit rating": "Enviar calificación", + "Success": "Éxito", + "Support & Info": "Support & Info", + "Support is Away": "Support is Away", + "Support is currently Online": "Support is currently Online", + "Switch Rider": "Cambiar pasajero", + "Syria": "Siria", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "El servicio pionero de transporte compartido de Siria, desarrollado con orgullo por propietarios árabes y locales. Priorizamos estar cerca de usted, tanto de nuestros valiosos pasajeros como de nuestros dedicados capitanes.", + "System Default": "System Default", + "Take Image": "Tomar imagen", + "Take Picture Of Driver License Card": "Tomar foto de la tarjeta de licencia de conducir", + "Take Picture Of ID Card": "Tomar foto de la tarjeta de identificación", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "¡Toca el código de promoción para copiarlo!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "Objetivo", + "Tariff": "Tarifa", + "Tariffs": "Tarifas", + "Tax Expiry Date": "Fecha de vencimiento del impuesto", + "Terms of Use": "Términos de uso", + "Terms of Use & Privacy Notice": "Términos de uso y aviso de privacidad", + "Thanks": "Gracias", + "The Driver Will be in your location soon .": "El conductor estará en tu ubicación pronto .", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "El archivo de audio aún no se ha subido.\n¿Quiere enviarlo sin él?", + "The captain is responsible for the route.": "El capitán es responsable de la ruta.", + "The distance less than 500 meter.": "La distancia es menor a 500 metros.", + "The driver accept your order for": "El conductor aceptó tu pedido para", + "The driver accepted your order for": "El conductor aceptó tu pedido para", + "The driver accepted your trip": "El conductor aceptó su viaje", + "The driver canceled your ride.": "El conductor canceló tu viaje.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "El conductor canceló el viaje por un motivo de emergencia.\n¿Desea buscar otro conductor de inmediato?", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "El conductor está en camino", + "The driver waiting you in picked location .": "El conductor te espera en la ubicación seleccionada.", + "The driver waitting you in picked location .": "El conductor te está esperando en la ubicación seleccionada .", + "The drivers are reviewing your request": "Los conductores están revisando tu solicitud", + "The email or phone number is already registered.": "El correo electrónico o número de teléfono ya está registrado.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "El nombre completo en su antecedente penal no coincide con el de su licencia de conducir. Verifique y proporcione los documentos correctos.", + "The invitation was sent successfully": "La invitación fue enviada con éxito", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "El número nacional de su licencia de conducir no coincide con el de su documento de identidad. Verifique y proporcione los documentos correctos.", + "The order Accepted by another Driver": "El pedido fue aceptado por otro conductor", + "The order has been accepted by another driver.": "El pedido ha sido aceptado por otro conductor.", + "The payment was approved.": "El pago fue aprobado.", + "The payment was not approved. Please try again.": "El pago no fue aprobado. Por favor, inténtalo de nuevo.", + "The price may increase if the route changes.": "El precio puede aumentar si la ruta cambia.", + "The promotion period has ended.": "El período de promoción ha terminado.", + "The reason is": "La razón es", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "¡El viaje ha comenzado! No dudes en contactar números de emergencia, compartir tu viaje o activar la grabación de voz para el trayecto", + "There is no Car or Driver in your area.": "No hay coches ni conductores en su zona.", + "There is no data yet.": "Aún no hay datos.", + "There is no help Question here": "No hay una pregunta de ayuda aquí", + "There is no notification yet": "Aún no hay notificaciones", + "There no Driver Aplly your order sorry for that ": "Ningún conductor aplicó tu pedido, lo sentimos ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Hay mucho tráfico aquí. ¿Puedes sugerir un punto de recogida alternativo?", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "Este monto por todos los viajes que obtengo de los pasajeros", + "This amount for all trip I get from Passengers and Collected For me in": "Este monto por todos los viajes que obtengo de los pasajeros y recaudado para mí en", + "This is a scheduled notification.": "Esta es una notificación programada.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Esto es para un scooter o una motocicleta.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "Este número de teléfono ya ha sido invitado.", + "This price is": "Este precio es", + "This price is fixed even if the route changes for the driver.": "Este precio es fijo incluso si la ruta cambia para el conductor.", + "This price may be changed": "Este precio puede cambiar", + "This ride is already applied by another driver.": "Este viaje ya ha sido aplicado por otro conductor.", + "This ride is already taken by another driver.": "Este viaje ya ha sido tomado por otro conductor.", + "This ride type allows changes, but the price may increase": "Este tipo de viaje permite cambios, pero el precio puede aumentar", + "This ride type does not allow changes to the destination or additional stops": "Este tipo de viaje no permite cambios en el destino o paradas adicionales", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Este viaje va directamente desde tu punto de inicio hasta tu destino por un precio fijo. El conductor debe seguir la ruta planificada.", + "This trip is for women only": "Este viaje es solo para mujeres", + "Time": "Time", + "Time to arrive": "Hora de llegada", + "Tip is ": "La propina es ", + "To :": "To :", + "To : ": "Hacia : ", + "To Home": "A casa", + "To Work": "Al trabajo", + "To become a passenger, you must review and agree to the ": "Para ser pasajero, debe revisar y aceptar los ", + "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.": "Para convertirte en un conductor de viajes compartidos en la aplicación Intaleq, debes subir tu licencia de conducir, documento de identidad y documento de registro del coche. Nuestro sistema de IA revisará y verificará su autenticidad en solo 2-3 minutos. Si tus documentos son aprobados, puedes comenzar a trabajar como conductor en la aplicación Intaleq. Ten en cuenta que enviar documentos fraudulentos es un delito grave y puede resultar en la terminación inmediata y consecuencias legales.", + "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 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 change Language the App": "Para cambiar el idioma de la aplicación", + "To change some Settings": "Para cambiar algunas configuraciones", + "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 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 Intaleq support directly.": "Para registrarte como conductor o conocer los requisitos, visita nuestro sitio web o contacta directamente al soporte de Intaleq.", + "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 Siro support directly.", + "To use Wallet charge it": "Para usar la billetera, cárgala", + "Today's Promos": "Promos de hoy", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Top up Wallet", + "Top up Wallet to continue": "Recarga la billetera para continuar", + "Total Amount:": "Monto total:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "El presupuesto total de los viajes por\nTarjeta de crédito es ", + "Total Budget from trips is ": "El presupuesto total de los viajes es ", + "Total Connection Duration:": "Duración total de la conexión:", + "Total Cost": "Costo total", + "Total Cost is ": "El costo total es ", + "Total Duration:": "Duración total:", + "Total For You is ": "El total para ti es ", + "Total From Passenger is ": "El total del pasajero es ", + "Total Hours on month": "Horas totales en el mes", + "Total Invites": "Total Invites", + "Total Points is": "El total de puntos es", + "Total Price": "Total Price", + "Total budgets on month": "Presupuestos totales del mes", + "Total points is ": "El total de puntos es ", + "Total price from ": "Precio total desde ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Viaja en un coche eléctrico moderno y silencioso. Una opción ecológica y de primera calidad para un viaje suave.", + "Trip Cancelled": "Viaje cancelado", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Viaje cancelado. El costo del viaje se añadirá a tu billetera.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Viaje cancelado. El costo del viaje se deducirá de tu billetera.", + "Trip Monitor": "Monitor de viaje", + "Trip Monitoring": "Monitoreo de viaje", + "Trip Status:": "Estado del viaje:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "Viaje finalizado", + "Trip finished ": "Trip finished ", + "Trip has Steps": "El viaje tiene pasos", + "Trip is Begin": "El viaje comienza", + "Trip updated successfully": "Viaje actualizado con éxito", + "Trips recorded": "Viajes grabados", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "Turquía", + "Type here Place": "Escribe aquí el lugar", + "Type something...": "Escribe algo...", + "Type your Email": "Escribe tu correo electrónico", + "Type your message": "Escribe tu mensaje", + "Type your message...": "Type your message...", + "USA": "EE. UU.", + "Uncompromising Security": "Seguridad sin compromisos", + "Unknown Driver": "Conductor desconocido", + "Unknown Location": "Unknown Location", + "Update": "Actualizar", + "Update Available": "Actualización disponible", + "Update Education": "Actualizar educación", + "Update Gender": "Actualizar género", + "Update Name": "Update Name", + "Uploaded": "Subido", + "Use Touch ID or Face ID to confirm payment": "Usa Touch ID o Face ID para confirmar el pago", + "Use code:": "Use code:", + "Use my invitation code to get a special gift on your first ride!": "¡Usa mi código de invitación para obtener un regalo especial en tu primer viaje!", + "Use my referral code:": "Use my referral code:", + "User does not exist.": "El usuario no existe.", + "User does not have a wallet #1652": "El usuario no tiene una billetera #1652", + "User not found": "Usuario no encontrado", + "User with this phone number or email already exists.": "Ya existe un usuario con este número de teléfono o correo electrónico.", + "Uses cellular network": "Uses cellular network", + "VIN": "Número de chasis", + "VIN :": "Número de chasis :", + "VIN is": "El número de chasis es", + "VIP Order": "Pedido VIP", + "Valid Until:": "Válido hasta:", + "Van": "Van", + "Van for familly": "Furgoneta familiar", + "Variety of Trip Choices": "Variedad de opciones de viaje", + "Vehicle Details Back": "Detalles del vehículo (parte trasera)", + "Vehicle Details Front": "Detalles del vehículo (frente)", + "Vehicle Options": "Opciones de vehículos", + "Verification Code": "Código de verificación", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "Verificar", + "Verify Email": "Verificar correo electrónico", + "Verify Email For Driver": "Verificar correo electrónico para el conductor", + "Verify OTP": "Verificar código", + "Vibration": "Vibración", + "Vibration feedback for all buttons": "Retroalimentación de vibración para todos los botones", + "View Map": "View Map", + "View your past transactions": "View your past transactions", + "Visit Website/Contact Support": "Visita el sitio web/Contacta al soporte", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visita nuestro sitio web o contacta al soporte de Intaleq para obtener información sobre el registro y los requisitos del conductor.", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "Voice Call", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Esperando VIP", + "Waiting for Captin ...": "Esperando al capitán ...", + "Waiting for Driver ...": "Esperando al conductor ...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Esperando tu ubicación", + "Waiting...": "Waiting...", + "Wallet": "Billetera", + "Wallet is blocked": "Wallet is blocked", + "Wallet!": "¡Billetera!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "¡Advertencia: Se detectó exceso de velocidad!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Warning: Speeding detected!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "¡Lamentamos no tener coches en tu ubicación!", + "We apologize 😔": "Pedimos disculpas 😔", + "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", + "We are process picture please wait ": "Estamos procesando la imagen, por favor espera ", + "We are search for nearst driver": "Estamos buscando al conductor más cercano", + "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 couldn't find a valid route to this destination. Please try selecting a different point.": "We couldn't find a valid route to this destination. Please try selecting a different point.", + "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:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Aún no hemos encontrado conductores. Considera aumentar la tarifa de tu viaje para hacer tu oferta más atractiva para los conductores.", + "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 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.": "Notamos que la velocidad supera los 100 km/h. Por favor, reduce la velocidad por tu seguridad. Si te sientes inseguro, puedes compartir los detalles de tu viaje con un contacto o llamar a la policía usando el botón rojo de SOS.", + "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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "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", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "Usamos la ubicación para obtener pasajeros precisos y cercanos para ti", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "Usamos tu ubicación precisa para encontrar el conductor disponible más cercano y proporcionar información precisa de recogida y dejada. Puedes gestionar esto en Configuración.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "Buscaremos un nuevo conductor.\nPor favor, espera.", + "We're here to help you 24/7": "We're here to help you 24/7", + "Welcome Back": "Welcome Back", + "Welcome Back!": "¡Bienvenido de nuevo!", + "Welcome to Intaleq!": "¡Bienvenido a Intaleq!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "¿Cuáles son los requisitos para convertirse en conductor?", + "What safety measures does Intaleq offer?": "¿Qué medidas de seguridad ofrece Intaleq?", + "What safety measures does Siro offer?": "What safety measures does Siro 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", + "When": "Cuándo", + "Where are you going?": "¿A dónde vas?", + "Where are you, sir?": "¿Dónde estás, señor?", + "Where to": "A dónde", + "Where you want go ": "A dónde quieres ir ", + "Why Choose Intaleq?": "¿Por qué elegir Intaleq?", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "Con Intaleq, puedes llegar a tu destino en minutos.", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "Trabajo", + "Work & Contact": "Trabajo y contacto", + "Work Saved": "Trabajo guardado", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "El horario de trabajo es de 12:00 - 19:00.\nPuedes enviar un mensaje de WhatsApp o un correo electrónico.", + "Working Hours:": "Working Hours:", + "Write note": "Escribir nota", + "Wrong pickup location": "Lugar de recogida incorrecto", + "Year": "Año", + "Year is": "El año es", + "Yes": "Yes", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Sí, puedes cancelar tu viaje bajo ciertas condiciones (por ejemplo, antes de que se asigne un conductor). Consulta la política de cancelación de Intaleq para más detalles.", + "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 Siro 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 Are Stopped For this Day !": "¡Estás detenido por este día!", + "You Can Cancel Trip And get Cost of Trip From": "Puedes cancelar el viaje y obtener el costo del viaje de", + "You Can cancel Ride After Captain did not come in the time": "Puedes cancelar el viaje si el capitán no llegó a tiempo", + "You Dont Have Any amount in": "No tienes ningún monto en", + "You Dont Have Any places yet !": "¡Aún no tienes ningún lugar!", + "You Have": "Tienes", + "You Have Tips": "Tienes propinas", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "Rechazaste 3 viajes este día, esa es la razón \n¡Nos vemos mañana!", + "You Should be select reason.": "Debes seleccionar una razón.", + "You Should choose rate figure": "Debes elegir una figura de calificación", + "You are Delete": "Estás eliminando", + "You are Stopped": "Estás detenido", + "You are not in near to passenger location": "No estás cerca de la ubicación del pasajero", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "Puedes comprar puntos para estar en línea\ncon esta lista a continuación", + "You can buy points from your budget": "Puedes comprar puntos de tu presupuesto", + "You can call or record audio during this trip.": "You can call or record audio during this trip.", + "You can call or record audio of this trip": "Puedes llamar o grabar audio de este viaje", + "You can cancel Ride now": "Puedes cancelar el viaje ahora", + "You can cancel trip": "Puedes cancelar el viaje", + "You can change the Country to get all features": "Puedes cambiar el país para obtener todas las características", + "You can change the destination by long-pressing any point on the map": "Puedes cambiar el destino manteniendo presionado cualquier punto en el mapa", + "You can change the language of the app": "Puedes cambiar el idioma de la aplicación", + "You can change the vibration feedback for all buttons": "Puedes cambiar la retroalimentación de vibración para todos los botones", + "You can claim your gift once they complete 2 trips.": "Puedes reclamar tu regalo una vez que completen 2 viajes.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Puedes comunicarte con tu conductor o pasajero a través de la función de chat en la aplicación una vez que se confirme el viaje.", + "You can contact us during working hours from 10:00 - 16:00.": "Puede contactarnos durante el horario laboral de 10:00 a 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Puedes contactarnos durante el horario de trabajo de 12:00 - 19:00.", + "You can decline a request without any cost": "Puedes rechazar una solicitud sin ningún costo", + "You can only use one device at a time. This device will now be set as your active device.": "Solo puedes usar un dispositivo a la vez. Este dispositivo se establecerá ahora como tu dispositivo activo.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Puedes pagar tu viaje en efectivo o con tarjeta de crédito/débito. Puedes seleccionar tu método de pago preferido antes de confirmar tu viaje.", + "You can resend in": "Puedes reenviar en", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Puedes compartir la aplicación Intaleq con tus amigos y ganar recompensas por los viajes que hagan usando tu código", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "No puedes continuar con nosotros.\nDeberías renovar tu licencia de conducir", + "You canceled VIP trip": "Cancelaste el viaje VIP", + "You deserve the gift": "Te mereces el regalo", + "You dont Add Emergency Phone Yet!": "¡Aún no has añadido un teléfono de emergencia!", + "You dont have Points": "No tienes puntos", + "You have already received your gift for inviting": "Ya has recibido tu regalo por invitar", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "Ya has usado este código de promoción.", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "Tienes una llamada del conductor", + "You have copied the promo code.": "Has copiado el código de promoción.", + "You have earned 20": "Has ganado 20", + "You have finished all times ": "Has terminado todas las veces ", + "You have got a gift for invitation": "Has recibido un regalo por invitación", + "You have in account": "Tienes en la cuenta", + "You have promo!": "¡Tienes una promoción!", + "You must Verify email !.": "¡Debes verificar el correo electrónico!.", + "You must be charge your Account": "Debes cargar tu cuenta", + "You must restart the app to change the language.": "Debes reiniciar la aplicación para cambiar el idioma.", + "You should have upload it .": "Deberías haberlo subido.", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "Debes reiniciar la aplicación para cambiar el idioma", + "You should select one": "Debes seleccionar uno", + "You should select your country": "Debes seleccionar tu país", + "You trip distance is": "La distancia de tu viaje es", + "You will arrive to your destination after ": "Llegarás a tu destino después de ", + "You will arrive to your destination after timer end.": "Llegarás a tu destino después de que termine el temporizador.", + "You will be charged for the cost of the driver coming to your location.": "Se te cobrará el costo del conductor que viene a tu ubicación.", + "You will be pay the cost to driver or we will get it from you on next trip": "Pagarás el costo al conductor o lo obtendremos de ti en el próximo viaje", + "You will be thier in": "Estarás allí en", + "You will choose allow all the time to be ready receive orders": "Elegirás permitir todo el tiempo para estar listo para recibir pedidos", + "You will choose one of above !": "¡Elegirás uno de los anteriores!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "Obtendrás el costo de tu trabajo por este viaje", + "You will receive a code in SMS message": "Recibirás un código en un mensaje SMS", + "You will receive a code in WhatsApp Messenger": "Recibirás un código en WhatsApp Messenger", + "You will recieve code in sms message": "Recibirás el código en un mensaje SMS", + "Your Account is Deleted": "Tu cuenta ha sido eliminada", + "Your Budget less than needed": "Tu presupuesto es menor que lo necesario", + "Your Choice, Our Priority": "Tu elección, nuestra prioridad", + "Your Journey Begins Here": "Tu viaje comienza aquí", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "La duración de tu viaje es ", + "Your Wallet balance is ": "El saldo de tu billetera es ", + "Your are far from passenger location": "Estás lejos de la ubicación del pasajero", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Tus datos serán borrados después de 2 semanas\nY no podrás volver a usar la aplicación después de 1 mes ", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Tu dirección de correo electrónico", + "Your fee is ": "Tu tarifa es ", + "Your invite code was successfully applied!": "¡Tu código de invitación fue aplicado con éxito!", + "Your journey starts here": "Tu viaje comienza aquí", + "Your name": "Tu nombre", + "Your order is being prepared": "Tu pedido está siendo preparado", + "Your order sent to drivers": "Tu pedido fue enviado a los conductores", + "Your password": "Tu contraseña", + "Your past trips will appear here.": "Tus viajes pasados aparecerán aquí.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "Tu código de invitación personal es:", + "Your trip cost is": "El costo de tu viaje es", + "Your trip distance is": "La distancia de tu viaje es", + "Your trip is scheduled": "Tu viaje está programado", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nTambién priorizamos la asequibilidad, ofreciendo precios competitivos para que tus viajes sean accesibles.", + "accepted": "aceptado", + "accepted your order at price": "aceptó tu pedido al precio de", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "Aceptar los términos", + "airport": "aeropuerto", + "an error occurred": "ocurrió un error", + "and I have a trip on": "y tengo un viaje el", + "and acknowledge our": "y reconozca nuestro", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "y reconozco el", + "app_description": "Intaleq es una aplicación de viajes compartidos segura, confiable y accesible.", + "arrival time to reach your point": "hora de llegada para llegar a tu punto", + "as the driver.": "as the driver.", + "before": "antes", + "begin": "begin", + "by": "por", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "cambiar dispositivo", + "committed_to_safety": "Intaleq se compromete con la seguridad, y todos nuestros capitanes son cuidadosamente seleccionados y verificados.", + "complete profile subtitle": "Completa tu perfil", + "complete registration button": "Completar registro", + "complete, you can claim your gift": "completo, puedes reclamar tu regalo", + "contacts. Others were hidden because they don't have a phone number.": "contacts. Others were hidden because they don't have a phone number.", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copiado al portapapeles", + "created time": "hora de creación", + "deleted": "eliminado", + "distance is": "la distancia es", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "licencia de conducir", + "due to a previous trip.": "due to a previous trip.", + "duration is": "la duración es", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "correo electrónico (opcional)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "Por favor ingrese el código", + "face detect": "detección facial", + "failed to send otp": "Error al enviar el código", + "first name label": "Nombre", + "first name required": "Nombre requerido", + "for": "para", + "for your first registration!": "¡para tu primer registro!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "de 07:30 a 10:30 (jueves, viernes, sábado, lunes)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "de 12:00 a 15:00 (jueves, viernes, sábado, lunes)", + "from 23:59 till 05:30": "de 23:59 a 05:30", + "from 3 times Take Attention": "de 3 veces, presta atención", + "from your favorites": "de tus favoritos", + "from your list": "de tu lista", + "get_a_ride": "Con Intaleq, puedes llegar a tu destino en minutos.", + "get_to_destination": "Llega a tu destino de manera rápida y sencilla.", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "ve a la ubicación del pasajero antes de que\nel pasajero cancele el viaje", + "has completed": "se ha completado", + "hour": "hora", + "i agree": "Estoy de acuerdo", + "if you don't have account": "si no tienes cuenta", + "if you dont have account": "si no tienes una cuenta", + "if you want help you can email us here": "si necesitas ayuda, puedes enviarnos un correo electrónico aquí", + "image verified": "imagen verificada", + "in your": "en tu", + "insert amount": "insertar monto", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "está conduciendo un ", + "is reviewing your order. They may need more information or a higher price.": "está revisando tu pedido. Pueden necesitar más información o un precio más alto.", + "joined": "se unió", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "Apellido", + "last name required": "Apellido requerido", + "login or register subtitle": "Inicia sesión o regístrate", + "m": "minutos", + "message From Driver": "Mensaje del conductor", + "message From passenger": "Mensaje del pasajero", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "modelo :", + "my location": "mi ubicación", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "no es similar", + "of": "of", + "one last step title": "Un último paso", + "otp sent subtitle": "Código de verificación enviado", + "otp sent success": "Código enviado con éxito", + "otp verification failed": "Fallo en la verificación del código", + "passenger agreement": "Acuerdo de pasajero", + "pending": "pendiente", + "phone not verified": "phone not verified", + "phone number label": "Número de teléfono", + "phone number required": "Número de teléfono requerido", + "please go to picker location exactly": "por favor ve exactamente a la ubicación del recolector", + "please order now": "por favor ordene ahora", + "please wait till driver accept your order": "por favor espera hasta que el conductor acepte tu pedido", + "price is": "el precio es", + "privacy policy": "Política de privacidad", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "Registro fallido", + "reject your order.": "rechazó tu pedido.", + "rejected": "rechazado", + "remaining": "restante", + "reviews": "reviews", + "rides": "viajes", + "safe_and_comfortable": "Disfruta de un viaje seguro y cómodo.", + "seconds": "segundos", + "security_warning": "security_warning", + "send otp button": "Enviar código", + "server error try again": "error de servidor, intente de nuevo", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "similar", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "Términos de uso", + "the 300 points equal 300 L.E": "300 puntos equivalen a 300 L.E", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "300 puntos equivalen a 300 L.E para ti \nAsí que ve y gana tu dinero", + "the 500 points equal 30 JOD": "500 puntos equivalen a 30 JOD", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "500 puntos equivalen a 30 JOD para ti \nAsí que ve y gana tu dinero", + "this will delete all files from your device": "esto eliminará todos los archivos de tu dispositivo", + "to arrive you.": "to arrive you.", + "token change": "cambio de token", + "token updated": "token actualizado", + "trips": "viajes", + "type here": "escribe aquí", + "unknown": "unknown", + "upgrade price": "aumentar el precio", + "verify and continue button": "Verificar y continuar", + "verify your number title": "Verifica tu número", + "wait 1 minute to receive message": "espera 1 minuto para recibir el mensaje", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "billetera debido a un viaje anterior.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "Bienvenido a Intaleq", + "welcome to siro": "welcome to siro", + "welcome user": "Bienvenido", + "welcome_message": "Bienvenido a Intaleq!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "con tipo", + "witout zero": "witout zero", + "write Color for your car": "escribe el color de tu coche", + "write Expiration Date for your car": "escribe la fecha de vencimiento de tu coche", + "write Make for your car": "escribe la marca de tu coche", + "write Model for your car": "escribe el modelo de tu coche", + "write Year for your car": "escribe el año de tu coche", + "write vin for your car": "escribe el número de chasis de tu coche", + "year :": "año :", + "you canceled order": "cancelaste el pedido", + "you gain": "ganas", + "you have a negative balance of": "tienes un saldo negativo de", + "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 Intaleq Wallet": "pagarás al conductor, pagarás el costo del tiempo del conductor, revisa tu billetera Intaleq", + "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 Siro Wallet", + "your ride is Accepted": "tu viaje ha sido aceptado", + "your ride is applied": "tu viaje ha sido aplicado", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "Fecha de vencimiento", + "⚠️ You need to choose an amount!": "⚠️ ¡Necesitas elegir un monto!", + "💰 Pay with Wallet": "Pagar con billetera", + "💳 Pay with Credit Card": "💳 Pagar con tarjeta de crédito", +}; diff --git a/siro_rider/lib/controller/local/fa.dart b/siro_rider/lib/controller/local/fa.dart new file mode 100644 index 0000000..4b7d11c --- /dev/null +++ b/siro_rider/lib/controller/local/fa.dart @@ -0,0 +1,1715 @@ +final Map fa = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": " من الان در ... هستم ", + " I am using": " من استفاده می‌کنم", + " If you need to reach me, please contact the driver directly at": " اگر کاری دارید با راننده تماس بگیرید در", + " KM": " کیلومتر", + " Minutes": " دقیقه", + " Next as Cash !": " بعدی به صورت نقدی!", + " You Earn today is ": " درآمد امروز شما: ", + " You Have in": " شما دارید در", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " و سیاست حریم خصوصی ما را تأیید کنید.", + " and acknowledge the ": " and acknowledge the ", + " as the driver.": " به عنوان راننده.", + " in your": " in your", + " in your wallet": " در کیف پول", + " is ON for this month": " در این ماه روشن است", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " انعام\nمجموع:", + " to arrive you.": " تا رسیدن به شما.", + " to ride with": " برای سفر با", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " با پلاک ", + "--": "--", + ". I am at least 18 years old.": ". I am at least 18 years old.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "۱. مشکل خود را شرح دهید", + "10 and get 4% discount": "۱۰ و ۴٪ تخفیف بگیرید", + "100 and get 11% discount": "۱۰۰ و ۱۱٪ تخفیف بگیرید", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "۲. ضمیمه کردن فایل صوتی", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "۲۰ و ۶٪ تخفیف بگیرید", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "۳. بررسی جزئیات و پاسخ", + "3000 LE": "۳۰۰۰ تومان", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "۴۰ و ۸٪ تخفیف بگیرید", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "۵ رقم", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "سفری با رزرو قبلی، که به شما امکان انتخاب بهترین سفیران و خودروها را می‌دهد.", + "AI Page": "صفحه هوش مصنوعی", + "About Intaleq": "درباره انطلق", + "About Siro": "About Siro", + "About Us": "درباره ما", + "Accept": "Accept", + "Accept Order": "پذیرش سفارش", + "Accept Ride's Terms & Review Privacy Notice": "پذیرش شرایط و مرور حریم خصوصی", + "Accepted Ride": "سفر پذیرفته شد", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "مدت فعال:", + "Active Users": "Active Users", + "Add Card": "افزودن کارت", + "Add Credit Card": "افزودن کارت اعتباری", + "Add Home": "افزودن خانه", + "Add Location": "افزودن مکان", + "Add Location 1": "افزودن مکان ۱", + "Add Location 2": "افزودن مکان ۲", + "Add Location 3": "افزودن مکان ۳", + "Add Location 4": "افزودن مکان ۴", + "Add Payment Method": "افزودن روش پرداخت", + "Add Phone": "افزودن تلفن", + "Add Promo": "افزودن کد تخفیف", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "افزودن توقف", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "افزایش اعتبار با روش‌های امن", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "آدرس", + "Address: ": "آدرس: ", + "Admin DashBoard": "داشبورد مدیریت", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "مقرون‌به‌صرفه برای همه", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "بعد از این مدت\nنمی‌توانید لغو کنید!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "سن: ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "هشدارها", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "اجازه دسترسی به موقعیت", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "خطایی در پرداخت رخ داد.", + "An error occurred while picking contacts:": "هنگام انتخاب مخاطبین خطایی رخ داد:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "خطای غیرمنتظره‌ای رخ داد. لطفاً دوباره تلاش کنید.", + "App Tester Login": "App Tester Login", + "App with Passenger": "برنامه با مسافر", + "Appearance": "Appearance", + "Applied": "ثبت شد", + "Apply": "Apply", + "Apply Order": "پذیرش درخواست", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "نزدیک منطقه شما هستم. ۳ دقیقه دیگر می‌رسم.", + "Are You sure to ride to": "مطمئنید می‌خواهید بروید به", + "Are you Sure to LogOut?": "آیا برای خروج مطمئنید؟", + "Are you sure to cancel?": "مطمئنید لغو می‌کنید؟", + "Are you sure to delete recorded files": "آیا از حذف فایل‌های ضبط شده مطمئنید", + "Are you sure to delete this location?": "آیا از حذف این مکان مطمئن هستید؟", + "Are you sure to delete your account?": "آیا مطمئنید؟", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "آیا مطمئن هستید؟ این عملیات قابل بازگشت نیست.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "آیا می‌خواهید به این مکان بروید", + "Are you want to go to this site": "می‌خواهید به این مکان بروید", + "Are you want to wait drivers to accept your order": "می‌خواهید منتظر پذیرش بمانید؟", + "Arrival time": "زمان رسیدن", + "Arrived": "Arrived", + "Associate Degree": "کاردانی", + "Attach this audio file?": "آیا این فایل صوتی پیوست شود؟", + "Attention": "Attention", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "فایل صوتی با موفقیت آپلود شد.", + "Available for rides": "آماده برای سفر", + "Average of Hours of": "میانگین ساعات", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "خودروی اقتصادی", + "Bachelor's Degree": "کارشناسی", + "Back": "Back", + "Bahrain": "بحرین", + "Balance": "موجودی", + "Balance limit exceeded": "موجودی بیش از حد مجاز است", + "Balance not enough": "موجودی کافی نیست", + "Balance:": "موجودی:", + "Be Slowly": "آهسته باش", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "لطفاً عکس دقیق بگیرید\nشما دارید", + "Be sure to use it quickly! This code expires at": "سریع استفاده کنید! این کد منقضی می‌شود در", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "چون ما نزدیکیم، حق انتخاب دارید.", + "Before we start, please review our terms.": "قبل از شروع، لطفاً شرایط ما را مرور کنید.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "بهترین انتخاب برای شهرها", + "Best choice for comfort car and flexible route and stops point": "بهترین انتخاب برای راحتی و مسیر منعطف", + "Birth Date": "تاریخ تولد", + "Bonus gift": "Bonus gift", + "BookingFee": "هزینه رزرو", + "Bottom Bar Example": "مثال نوار پایین", + "But you have a negative salary of": "اما موجودی منفی دارید به مبلغ", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "با انتخاب 'موافقم'، شرایط و حریم خصوصی را پذیرفته‌ام. من حداقل ۱۸ سال دارم.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "با انتخاب \"موافقم\"، شرایط استفاده را پذیرفته‌ام و ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "کد", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "پایان تماس", + "Call Ended": "Call Ended", + "Call Income": "تماس ورودی", + "Call Income from Driver": "تماس از راننده", + "Call Income from Passenger": "تماس ورودی از مسافر", + "Call Left": "تماس‌های باقی‌مانده", + "Call Options": "Call Options", + "Call Page": "صفحه تماس", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "دسترسی دوربین رد شد.", + "Camera not initialized yet": "دوربین آماده نیست", + "Camera not initilaized yet": "دوربین هنوز آماده نیست", + "Can I cancel my ride?": "آیا می‌توانم سفرم را لغو کنم؟", + "Can we know why you want to cancel Ride ?": "چرا می‌خواهید لغو کنید؟", + "Cancel": "لغو", + "Cancel Ride": "لغو سفر", + "Cancel Search": "لغو جستجو", + "Cancel Trip": "لغو سفر", + "Cancel Trip from driver": "لغو سفر توسط راننده", + "Canceled": "لغو شد", + "Cannot apply further discounts.": "تخفیف بیشتر ممکن نیست.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "از گواهی عدم سوءپیشینه عکس بگیرید", + "Capture an Image of Your Driver License": "عکس گواهینامه خود را بگیرید", + "Capture an Image of Your Driver's License": "عکس گواهینامه رانندگی", + "Capture an Image of Your ID Document Back": "عکس پشت کارت ملی", + "Capture an Image of Your ID Document front": "از روی کارت ملی عکس بگیرید", + "Capture an Image of Your car license back": "عکس پشت کارت ماشین", + "Capture an Image of Your car license front": "از روی کارت ماشین عکس بگیرید", + "Car": "خودرو", + "Car Color:": "Car Color:", + "Car Details": "جزئیات خودرو", + "Car License Card": "کارت ماشین", + "Car Make:": "Car Make:", + "Car Model:": "Car Model:", + "Car Plate is ": "پلاک خودرو: ", + "Car Plate:": "Car Plate:", + "Card Number": "شماره کارت", + "CardID": "شماره کارت", + "Cash": "نقدی", + "Change Country": "تغییر کشور", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "نظرم عوض شد", + "Chassis": "شماره شاسی", + "Chat with us anytime": "هر زمان با ما چت کنید", + "Check back later for new offers!": "بعداً برای پیشنهادات جدید سر بزنید!", + "Choose Language": "انتخاب زبان", + "Choose a contact option": "یک گزینه تماس انتخاب کنید", + "Choose between those Type Cars": "از بین این نوع خودروها انتخاب کنید", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "انتخاب از روی نقشه", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "گزینه مناسب خود را انتخاب کنید.", + "Choose who this order is for": "این درخواست برای چه کسی است", + "Choose your ride": "Choose your ride", + "City": "شهر", + "Claim your 20 LE gift for inviting": "هدیه ۲۰ تومانی خود را برای دعوت دریافت کنید", + "Click here point": "Click here point", + "Click here to Show it in Map": "برای نمایش روی نقشه کلیک کنید", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "بستن", + "Close panel": "Close panel", + "Closest & Cheapest": "نزدیک‌ترین و ارزان‌ترین", + "Closest to You": "نزدیک‌ترین به شما", + "Code": "کد", + "Code not approved": "کد تأیید نشد", + "Color": "رنگ", + "Color is ": "رنگ: ", + "Comfort": "آسایش (Comfort)", + "Comfort choice": "انتخاب راحت", + "Coming": "Coming", + "Communication": "ارتباطات", + "Complaint": "شکایت", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "برای این سفر نمی‌توان شکایت ثبت کرد. ممکن است تکمیل یا شروع نشده باشد.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "تأیید", + "Confirm & Find a Ride": "تأیید و یافتن خودرو", + "Confirm Attachment": "تأیید پیوست", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "تأیید انتخاب", + "Confirm Trip": "Confirm Trip", + "Confirm your Email": "ایمیل خود را تأیید کنید", + "Connected": "متصل", + "Connecting...": "Connecting...", + "Connection Error": "خطای اتصال", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "گزینه‌های تماس", + "Contact Support": "تماس با پشتیبانی", + "Contact Us": "تماس با ما", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "برای انتخاب مخاطبین دسترسی به دفترچه تلفن الزامی است.", + "Contact us for any questions on your order.": "برای هر سوالی تماس بگیرید.", + "Contacts Loaded": "مخاطبین بارگذاری شدند", + "Continue": "ادامه", + "Copy": "کپی", + "Copy Code": "کپی کد", + "Copy this Promo to use it in your Ride!": "این کد تخفیف را کپی و استفاده کنید!", + "Cost Duration": "هزینه مدت زمان", + "Cost Of Trip IS ": "هزینه سفر: ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "تعداد ساعات در روزها", + "Create Wallet to receive your money": "برای دریافت پول کیف پول بسازید", + "Criminal Document Required": "گواهی عدم سوءپیشینه الزامی است", + "Criminal Record": "گواهی عدم سوءپیشینه", + "Crop Photo": "Crop Photo", + "Cropper": "برش دهنده", + "Current Balance": "موجودی فعلی", + "Current Location": "موقعیت فعلی", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "مشتری یافت نشد", + "Customer phone is not active": "تلفن مشتری فعال نیست", + "DISCOUNT": "تخفیف", + "Dark Mode": "Dark Mode", + "Date": "تاریخ", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth is": "تاریخ تولد:", + "Date of Birth: ": "تاریخ تولد: ", + "Days": "روزها", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "حذف حساب من", + "Delete Permanently": "حذف دائمی", + "Delete Recording?": "Delete Recording?", + "Deleted": "حذف شد", + "Destination": "مقصد", + "Destination Set": "Destination Set", + "Destination selected": "Destination selected", + "Detect Your Face ": "تشخیص چهره ", + "Device Change Detected": "Device Change Detected", + "Direct talk with our team": "صحبت مستقیم با تیم ما", + "Displacement": "حجم موتور", + "Distance": "Distance", + "Distance To Passenger is ": "مسافت تا مسافر: ", + "Distance from Passenger to destination is ": "فاصله مسافر تا مقصد: ", + "Distance is ": "مسافت: ", + "Distance of the Ride is ": "مسافت سفر: ", + "Do you have an invitation code from another driver?": "آیا کد دعوت از راننده دیگری دارید؟", + "Do you want to change Home location": "می‌خواهید خانه را تغییر دهید", + "Do you want to change Work location": "می‌خواهید محل کار را تغییر دهید", + "Do you want to pay Tips for this Driver": "می‌خواهید انعام دهید؟", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "دکترا", + "Document Number: ": "شماره سند: ", + "Documents check": "بررسی مدارک", + "Don't Cancel": "لغو نکنید", + "Don't forget your personal belongings.": "وسایل شخصی خود را فراموش نکنید.", + "Don't forget your ride!": "Don't forget your ride!", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "انجام شد", + "Don’t forget your personal belongings.": "وسایل شخصی خود را جا نگذارید.", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Download the Intaleq Driver app now and earn rewards!": "اپلیکیشن رانندگان Intaleq را دانلود کنید و پاداش بگیرید!", + "Download the Intaleq app now and enjoy your ride!": "اپلیکیشن Intaleq را دانلود کنید و از سفر خود لذت ببرید!", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "اپلیکیشن را دانلود کنید:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "راننده", + "Driver Accepted the Ride for You": "راننده سفر را برای شما پذیرفت", + "Driver Applied the Ride for You": "راننده درخواست سفر را برای شما ثبت کرد", + "Driver Cancelled Your Trip": "راننده سفر شما را لغو کرد", + "Driver Car Plate": "پلاک راننده", + "Driver Finish Trip": "راننده سفر را تمام کرد", + "Driver Is Going To Passenger": "راننده در حال حرکت به سمت مسافر است", + "Driver List": "Driver List", + "Driver Name": "نام راننده", + "Driver Name:": "Driver Name:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Driver Phone:", + "Driver Referral": "Driver Referral", + "Driver Registration": "ثبت نام راننده", + "Driver Registration & Requirements": "ثبت نام راننده و الزامات", + "Driver Wallet": "کیف پول راننده", + "Driver already has 2 trips within the specified period.": "راننده در حال حاضر ۲ سفر در بازه زمانی مشخص دارد.", + "Driver asked me to cancel": "راننده از من خواست لغو کنم", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "راننده در راه است", + "Driver is taking too long": "راننده خیلی طول می‌دهد", + "Driver is waiting at pickup.": "راننده در مبدأ منتظر است.", + "Driver joined the channel": "راننده به کانال پیوست", + "Driver left the channel": "راننده کانال را ترک کرد", + "Driver phone": "تلفن راننده", + "Driver's License": "گواهینامه رانندگی", + "Drivers License Class": "کلاس گواهینامه", + "Drivers License Class: ": "کلاس گواهینامه: ", + "Duration To Passenger is ": "زمان تا مسافر: ", + "Duration is": "مدت زمان:", + "Duration of Trip is ": "مدت سفر: ", + "Duration of the Ride is ": "مدت سفر: ", + "EGP": "EGP", + "Edit Profile": "ویرایش پروفایل", + "Edit Your data": "ویرایش اطلاعات", + "Education": "تحصیلات", + "Egypt": "مصر", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "الکتریکی", + "Email": "Email", + "Email Support": "پشتیبانی ایمیلی", + "Email Us": "به ما ایمیل بزنید", + "Email Wrong": "ایمیل اشتباه", + "Email is": "ایمیل:", + "Email you inserted is Wrong.": "ایمیل وارد شده اشتباه است.", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "نوع شغل", + "Enable Location": "فعال‌سازی موقعیت", + "Enable Location Access": "Enable Location Access", + "End": "End", + "End Ride": "پایان سفر", + "Enjoy a safe and comfortable ride.": "از سفری امن و راحت لذت ببرید.", + "Enjoy competitive prices across all trip options, making travel accessible.": "از قیمت‌های رقابتی لذت ببرید.", + "Enter Your First Name": "نام خود را وارد کنید", + "Enter a password": "Enter a password", + "Enter a valid email": "Enter a valid email", + "Enter driver's phone": "تلفن راننده را وارد کنید", + "Enter phone": "وارد کردن تلفن", + "Enter promo code": "کد تخفیف را وارد کنید", + "Enter promo code here": "کد تخفیف اینجا", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "کد تخفیف را وارد کنید و بگیرید", + "Enter your City": "Enter your City", + "Enter your Note": "یادداشت خود را وارد کنید", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "شکایت خود را اینجا بنویسید...", + "Enter your email address": "آدرس ایمیل خود را وارد کنید", + "Enter your feedback here": "بازخورد خود را اینجا وارد کنید", + "Enter your first name": "نام خود را وارد کنید", + "Enter your last name": "نام خانوادگی خود را وارد کنید", + "Enter your password": "Enter your password", + "Enter your phone number": "شماره تلفن خود را وارد کنید", + "Enter your promo code": "Enter your promo code", + "Error": "خطا", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "عصر", + "Exclusive offers and discounts always with the Intaleq app": "تخفیف‌های ویژه همیشه با Intaleq", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "تاریخ انقضا", + "Expiration Date ": "تاریخ انقضا: ", + "Expiry Date": "تاریخ انقضا", + "Expiry Date: ": "تاریخ انقضا: ", + "Face Detection Result": "نتیجه تشخیص چهره", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "جستجو ناموفق بود، لطفاً بعداً تلاش کنید", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "سریع‌ترین پاسخ به شکایات", + "Favorite Places": "Favorite Places", + "Fee is": "هزینه:", + "Feed Back": "بازخورد", + "Feedback": "بازخورد", + "Feedback data saved successfully": "با موفقیت ذخیره شد", + "Female": "زن", + "Find answers to common questions": "پاسخ سوالات متداول", + "Finish Monitor": "پایان نظارت", + "Finished": "Finished", + "First Name": "نام", + "First name": "نام", + "Fixed Price": "Fixed Price", + "Flag-down fee": "ورودی", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "برای رانندگان", + "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": "قیمت‌گذاری پویا برای Intaleq و اسکوتر. زمانی و مسافتی برای Comfort.", + "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "برای استعلام‌های رسمی", + "Found another transport": "وسیله نقلیه دیگری پیدا کردم", + "Free Call": "Free Call", + "Frequently Asked Questions": "سوالات متداول", + "Frequently Questions": "سوالات متداول", + "From": "از", + "From :": "از:", + "From : ": "از: ", + "From : Current Location": "از: موقعیت فعلی", + "From:": "From:", + "Fuel": "سوخت", + "Full Name (Marital)": "نام کامل", + "FullName": "نام کامل", + "GPS Required Allow !.": "GPS لازم است!", + "Gender": "جنسیت", + "General": "General", + "Get": "Get", + "Get Details of Trip": "دریافت جزئیات سفر", + "Get Direction": "مسیریابی", + "Get a discount on your first Intaleq ride!": "برای اولین سفر خود در Intaleq تخفیف بگیرید!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "همین الان بگیر!", + "Get to your destination quickly and easily.": "سریع و آسان به مقصد برسید.", + "Getting Started": "شروع کار", + "Gift Already Claimed": "هدیه قبلاً دریافت شده است", + "Go To Favorite Places": "رفتن به مکان‌های مورد علاقه", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "مرحله بعد\nاسکن کارت ماشین.", + "Go to passenger Location now": "الان به موقعیت مسافر بروید", + "Go to this Target": "رفتن به این مقصد", + "Go to this location": "برو به این موقعیت", + "Grant": "Grant", + "H and": "س و", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "کد تخفیف دارید؟", + "Heading your way now. Please be ready.": "دارم می‌آیم. لطفاً آماده باشید.", + "Height: ": "قد: ", + "Hello this is Captain": "سلام، من سفیر هستم", + "Hello this is Driver": "سلام من راننده هستم", + "Hello! I'm inviting you to try Intaleq.": "سلام! شما را به امتحان کردن Intaleq دعوت می‌کنم.", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hello, I'm at the agreed-upon location", + "Help Details": "جزئیات راهنما", + "Helping Center": "مرکز راهنما", + "Here recorded trips audio": "صدای ضبط شده سفرها", + "Hi": "سلام", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "سلام، من الان حرکت می‌کنم", + "Hi! This is": "سلام! این", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "سلام، به کجا ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "دیپلم", + "History of Trip": "تاریخچه سفر", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "How can I pay for my ride?": "چگونه هزینه سفر را پرداخت کنم؟", + "How can I register as a driver?": "چگونه به عنوان راننده ثبت نام کنم؟", + "How do I communicate with the other party (passenger/driver)?": "چگونه ارتباط برقرار کنم؟", + "How do I request a ride?": "چگونه درخواست سفر دهم؟", + "How many hours would you like to wait?": "چند ساعت می‌خواهید منتظر بمانید؟", + "How much longer will you be?": "How much longer will you be?", + "I Agree": "موافقم", + "I Arrive your site": "به موقعیت شما رسیدم", + "I added the wrong pick-up/drop-off location": "مبدأ/مقصد را اشتباه وارد کردم", + "I am currently located at": "I am currently located at", + "I arrive you": "رسیدم", + "I cant register in your app in face detection ": "نمی‌توانم با تشخیص چهره ثبت نام کنم", + "I don't have a reason": "دلیلی ندارم", + "I don't need a ride anymore": "دیگر نیازی به سفر ندارم", + "I want to order for myself": "برای خودم درخواست می‌دهم", + "I want to order for someone else": "برای شخص دیگری درخواست می‌دهم", + "I was just trying the application": "فقط داشتم برنامه را تست می‌کردم", + "I will go now": "من الان می‌روم", + "I will slow down": "من سرعتم را کم می‌کنم", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "منتظر شما هستم", + "I've been trying to reach you but your phone is off.": "I've been trying to reach you but your phone is off.", + "ID Documents Back": "پشت کارت ملی", + "ID Documents Front": "روی کارت ملی", + "If you in Car Now. Press Start The Ride": "اگر در ماشین هستید، شروع سفر را بزنید", + "If you need assistance, contact us": "اگر کمک نیاز دارید تماس بگیرید", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "برای افزودن توقف اینجا کلیک کنید", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "اگر می‌خواهید گوگل مپ مستقیماً اجرا شود", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "نتیجه تشخیص تصویر: ", + "In-App VOIP Calls": "تماس اینترنتی درون‌برنامه‌ای", + "Including Tax": "شامل مالیات", + "Incorrect sms code": "⚠️ کد پیامک اشتباه است. لطفاً دوباره تلاش کنید.", + "Increase Fare": "افزایش کرایه", + "Increase Fee": "افزایش کرایه", + "Increase Your Trip Fee (Optional)": "افزایش هزینه سفر (اختیاری)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "افزایش کرایه ممکن است رانندگان بیشتری را جذب کند. آیا مایل به افزایش قیمت هستید؟", + "Insert": "درج", + "Insert Emergincy Number": "درج شماره اضطراری", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "کد تخفیف را وارد کنید", + "Inspection Date": "تاریخ معاینه فنی", + "InspectionResult": "نتیجه معاینه", + "Intaleq": "Intaleq", + "Intaleq Balance": "اعتبار Intaleq", + "Intaleq LLC": "شرکت Intaleq", + "Intaleq Over": "Intaleq تمام شد", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "پشتیبانی انطلق", + "Intaleq Wallet": "کیف پول Intaleq", + "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 یک برنامه درخواست خودرو است که با در نظر گرفتن امنیت و بودجه شما طراحی شده است.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq متعهد به ایمنی است.", + "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 اولین برنامه اشتراک سفر است.", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq امن و قابل اعتماد است.", + "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 امن‌ترین برنامه است. کمیسیون پایین ۸٪. بیمه و تعمیر و نگهداری.", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq گزینه‌های متنوعی ارائه می‌دهد.", + "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 گزینه‌های مختلفی از جمله اقتصادی، راحت و لوکس ارائه می‌دهد.", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq روش‌های پرداخت متعددی ارائه می‌دهد.", + "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 امنیت شما را در اولویت قرار می‌دهد.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq امکان چت درون‌برنامه‌ای را فراهم می‌کند.", + "Intaleq's Response": "Intaleq's Response", + "Invalid MPIN": "MPIN نامعتبر", + "Invalid OTP": "کد تأیید نامعتبر", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "دعوت استفاده شده", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "دعوت‌نامه با موفقیت ارسال شد", + "Is the Passenger in your Car ?": "آیا مسافر در خودرو است؟", + "Issue Date": "تاریخ صدور", + "IssueDate": "تاریخ صدور", + "JOD": "تومان", + "Join": "پیوستن", + "Join Intaleq as a driver using my referral code!": "با کد معرف من به عنوان راننده به Intaleq بپیوندید!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "اردن", + "KM": "کیلومتر", + "Keep it up!": "ادامه بده!", + "Kuwait": "کویت", + "LE": "تومان", + "Lady": "بانوان", + "Lady Captain for girls": "راننده خانم برای بانوان", + "Lady Captains Available": "رانندگان خانم موجود است", + "Language": "زبان", + "Language Options": "گزینه‌های زبان", + "Last Name": "Last Name", + "Last name": "نام خانوادگی", + "Latest Recent Trip": "آخرین سفر اخیر", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "ترک کردن", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "بررسی کارت ماشین ", + "Lets check License Back Face": "بررسی پشت گواهینامه", + "License Categories": "دسته‌های گواهینامه", + "License Type": "نوع گواهینامه", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "اتصال شماره تلفن برای انتقال", + "Listen": "Listen", + "Location": "Location", + "Location Link": "لینک موقعیت", + "Location Received": "Location Received", + "Log Off": "خروج", + "Log Out Page": "صفحه خروج", + "Login": "Login", + "Login Captin": "ورود سفیر", + "Login Driver": "ورود راننده", + "Logout": "Logout", + "Lowest Price Achieved": "کمترین قیمت حاصل شد", + "Made :": "سازنده:", + "Make": "سازنده", + "Make is ": "سازنده: ", + "Male": "مرد", + "Map Error": "Map Error", + "Map Passenger": "نقشه مسافر", + "Marital Status": "وضعیت تاهل", + "Master's Degree": "کارشناسی ارشد", + "Maximum fare": "حداکثر کرایه", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "حداقل کرایه", + "Minute": "دقیقه", + "Mishwar Vip": "مشوار VIP", + "Model": "مدل", + "Model is": "مدل:", + "Morning": "صبح", + "Most Secure Methods": "امن‌ترین روش‌ها", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "نقشه را برای تنظیم پین جابجا کنید", + "Mute": "Mute", + "My Balance": "موجودی من", + "My Card": "کارت من", + "My Cared": "کارت‌های من", + "My Profile": "پروفایل من", + "My current location is:": "موقعیت فعلی من:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "موقعیت من", + "N/A": "N/A", + "Name": "نام", + "Name (Arabic)": "نام (فارسی/عربی)", + "Name (English)": "نام (انگلیسی)", + "Name :": "نام:", + "Name in arabic": "نام به فارسی", + "Name of the Passenger is ": "نام مسافر: ", + "National ID": "کارت ملی", + "National Number": "کد ملی", + "NationalID": "کد ملی", + "Nearby": "Nearby", + "Nearest Car": "Nearest Car", + "Nearest Car for you about ": "نزدیک‌ترین خودرو حدود ", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Network error occurred": "Network error occurred", + "Next": "بعدی", + "Night": "شب", + "No": "خیر", + "No ,still Waiting.": "نه، هنوز منتظرم.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "خودرویی در محل شما نیست. متاسفیم!", + "No Car or Driver Found in your area.": "خودرو یا راننده‌ای یافت نشد.", + "No Drivers Found": "راننده‌ای پیدا نشد", + "No I want": "نه من می‌خواهم", + "No Notifications": "No Notifications", + "No Promo for today .": "امروز تخفیفی نیست.", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "هنوز پاسخی نیست.", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "سیم‌کارت ندارید؟ مشکلی نیست! از طریق برنامه تماس بگیرید.", + "No accepted orders? Try raising your trip fee to attract riders.": "سفارشی پذیرفته نشد؟ مبلغ را افزایش دهید.", + "No audio files found.": "فایل صوتی یافت نشد.", + "No cars nearby": "No cars nearby", + "No contacts available": "No contacts available", + "No contacts found": "مخاطبی یافت نشد", + "No contacts with phone numbers were found on your device.": "هیچ مخاطبی با شماره تلفن در دستگاه شما یافت نشد.", + "No driver accepted my request": "هیچ راننده‌ای قبول نکرد", + "No drivers accepted your request yet": "هنوز هیچ راننده‌ای درخواست شما را نپذیرفته است", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "در حال حاضر راننده‌ای پیدا نشد.\nلطفاً بعداً دوباره تلاش کنید.", + "No face detected": "چهره‌ای تشخیص داده نشد", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "عکسی انتخاب نشده", + "No invitation found yet!": "هنوز دعوتی پیدا نشد!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "کسی قبول نکرد؟ افزایش کرایه را امتحان کنید.", + "No passenger found for the given phone number": "مسافری با این شماره تلفن یافت نشد", + "No promos available right now.": "در حال حاضر تخفیفی موجود نیست.", + "No ride found yet": "هنوز سفری یافت نشد", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No trip data available", + "No trip history found": "تاریخچه سفری یافت نشد", + "No trip yet found": "سفری یافت نشد", + "No user found": "No user found", + "No user found for the given phone number": "کاربری با این شماره تلفن یافت نشد", + "No wallet record found": "رکورد کیف پول یافت نشد", + "No, I don't have a code": "خیر، کد ندارم", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, thanks": "نه، ممنون", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "متصل نیست", + "Not set": "تنظیم نشده", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "اعلان‌ها", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Now select start pick", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "شغل", + "Ok": "باشه", + "Ok , See you Tomorrow": "باشه، تا فردا", + "Ok I will go now.": "باشه، الان می‌روم.", + "Old and affordable, perfect for budget rides.": "قدیمی و مقرون‌به‌صرفه.", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "باز کردن تنظیمات", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "یا به صورت نقدی پرداخت کنید", + "Order": "درخواست", + "Order Accepted": "Order Accepted", + "Order Applied": "درخواست ثبت شد", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "لغو توسط مسافر", + "Order Details Intaleq": "جزئیات سفارش Intaleq", + "Order Details Siro": "Order Details Siro", + "Order History": "تاریخچه سفارش‌ها", + "Order Request Page": "صفحه درخواست سفر", + "Order Under Review": "Order Under Review", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "درخواست برای خودم", + "Order for someone else": "درخواست برای دیگری", + "OrderId": "شناسه سفارش", + "OrderVIP": "درخواست VIP", + "Origin": "مبدأ", + "Other": "سایر", + "Our dedicated customer service team ensures swift resolution of any issues.": "تیم پشتیبانی ما مشکلات را سریع حل می‌کند.", + "Owner Name": "نام مالک", + "Passenger": "Passenger", + "Passenger Cancel Trip": "مسافر سفر را لغو کرد", + "Passenger Name is ": "نام مسافر: ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger come to you": "مسافر به سمت شما می‌آید", + "Passenger name : ": "نام مسافر: ", + "Password": "Password", + "Password must br at least 6 character.": "رمز باید حداقل ۶ کاراکتر باشد.", + "Paste WhatsApp location link": "لینک موقعیت واتس‌اپ را پیست کنید", + "Paste location link here": "لینک موقعیت را اینجا پیست کنید", + "Paste the code here": "کد را اینجا پیست کنید", + "Pay": "Pay", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "پرداخت مستقیم به سفیر (راننده)", + "Pay from my budget": "پرداخت از اعتبار من", + "Pay with Credit Card": "پرداخت با کارت اعتباری", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "پرداخت با کیف پول", + "Pay with Your": "پرداخت با", + "Pay with Your PayPal": "پرداخت با PayPal", + "Payment Failed": "پرداخت ناموفق", + "Payment History": "تاریخچه پرداخت", + "Payment Method": "روش پرداخت", + "Payment Options": "گزینه‌های پرداخت", + "Payment Successful": "پرداخت موفق", + "Payments": "پرداخت‌ها", + "Perfect for adventure seekers who want to experience something new and exciting": "عالی برای ماجراجویان", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "عالی برای مسافرانی که دنبال خودروهای جدید و آزادی انتخاب مسیر هستند", + "Permission Required": "Permission Required", + "Permission denied": "دسترسی رد شد", + "Personal Information": "اطلاعات شخصی", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "شماره تلفن:", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is verified before": "Phone number is verified before", + "Phone number isn't an Egyptian phone number": "Phone number isn't an Egyptian phone number", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "انتخاب از نقشه", + "Pick from map destination": "Pick from map destination", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "مقصد را از نقشه انتخاب کنید", + "Pick your ride location on the map - Tap to confirm": "محل سفر را روی نقشه انتخاب کنید - برای تأیید ضربه بزنید", + "Plan Your Route": "Plan Your Route", + "Plate": "پلاک", + "Plate Number": "شماره پلاک", + "Please Try anther time ": "لطفاً زمان دیگری امتحان کنید ", + "Please Wait If passenger want To Cancel!": "لطفاً صبر کنید شاید مسافر لغو کند!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "لطفاً اتصال اینترنت خود را بررسی کنید", + "Please don't be late": "Please don't be late", + "Please don't be late, I'm waiting for you at the specified location.": "Please don't be late, I'm waiting for you at the specified location.", + "Please enter": "لطفاً وارد کنید", + "Please enter Your Email.": "لطفاً ایمیل خود را وارد کنید.", + "Please enter Your Password.": "لطفاً رمز عبور خود را وارد کنید.", + "Please enter a correct phone": "لطفاً یک شماره تلفن صحیح وارد کنید", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "لطفاً شماره تلفن وارد کنید", + "Please enter a valid 16-digit card number": "لطفاً شماره کارت ۱۶ رقمی معتبر وارد کنید", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "لطفاً کد معتبر وارد کنید", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "کد CVV", + "Please enter the cardholder name": "نام دارنده کارت", + "Please enter the complete 6-digit code.": "لطفاً کد کامل ۶ رقمی را وارد کنید.", + "Please enter the expiry date": "تاریخ انقضا", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "لطفاً شهر خود را وارد کنید.", + "Please enter your Question.": "لطفاً سوال خود را وارد کنید.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "لطفاً بازخورد خود را وارد کنید.", + "Please enter your first name.": "لطفاً نام خود را وارد کنید.", + "Please enter your last name.": "لطفاً نام خانوادگی خود را وارد کنید.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "لطفاً شماره تلفن خود را وارد کنید.", + "Please go to Car Driver": "لطفاً به سمت خودروی راننده بروید", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "لطفاً الان به سمت ماشین بروید ", + "Please help! Contact me as soon as possible.": "کمک! سریعاً تماس بگیرید.", + "Please make sure not to leave any personal belongings in the car.": "لطفاً مطمئن شوید هیچ وسیله شخصی در خودرو جا نماند.", + "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": "لطفاً مطمئن شوید که تمام وسایل شخصی خود را برداشته‌اید و باقی‌مانده کرایه به کیف پول شما اضافه شده است. از انتخاب اپلیکیشن Intaleq متشکریم.", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "گواهینامه را در کادر قرار دهید", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "لطفاً در نقطه انتخاب شده بمانید.", + "Please try again in a few moments": "Please try again in a few moments", + "Please verify your identity": "لطفاً هویت خود را تأیید کنید", + "Please wait for the passenger to enter the car before starting the trip.": "لطفاً صبر کنید تا مسافر سوار شود.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "لطفاً دلیل را بنویسید...", + "Point": "امتیاز", + "Potential security risks detected. The application may not function correctly.": "خطرات امنیتی احتمالی شناسایی شد. ممکن است برنامه به درستی کار نکند.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Preferences": "Preferences", + "Price": "Price", + "Price of trip": "Price of trip", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "سیاست حریم خصوصی", + "Professional driver": "Professional driver", + "Profile": "پروفایل", + "Profile photo updated": "Profile photo updated", + "Promo": "کد تخفیف", + "Promo Already Used": "تخفیف قبلاً استفاده شده", + "Promo Code": "کد تخفیف", + "Promo Code Accepted": "کد تخفیف پذیرفته شد", + "Promo Copied!": "کد تخفیف کپی شد!", + "Promo End !": "تخفیف تمام شد!", + "Promo Ended": "تخفیف تمام شد", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "کد تخفیف کپی شد!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "تخفیف‌ها", + "Promos For Today": "Promos For Today", + "Pyament Cancelled .": "پرداخت لغو شد.", + "Qatar": "قطر", + "Quick Access": "Quick Access", + "Quick Actions": "دسترسی سریع", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "بی‌صدا و دوستدار محیط زیست", + "Rate Captain": "امتیاز به سفیر", + "Rate Driver": "امتیاز به راننده", + "Rate Passenger": "امتیاز به مسافر", + "Rating is": "Rating is", + "Rating is ": "امتیاز: ", + "Rating is ": "Rating is ", + "Rayeh Gai": "رفت و برگشت", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رفت و برگشت: سرویس سفر دوطرفه برای راحتی سفر بین شهری.", + "Reach out to us via": "با ما در تماس باشید از طریق", + "Received empty route data.": "Received empty route data.", + "Recent Places": "مکان‌های اخیر", + "Recharge my Account": "شارژ حساب من", + "Record": "Record", + "Record saved": "ضبط ذخیره شد", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "سفرهای ضبط شده (صدا و تحلیل هوش مصنوعی)", + "Recorded Trips for Safety": "سفرهای ضبط شده برای امنیت", + "Refresh Map": "به‌روزرسانی نقشه", + "Refuse Order": "رد درخواست", + "Register": "ثبت نام", + "Register Captin": "ثبت نام سفیر", + "Register Driver": "ثبت نام راننده", + "Register as Driver": "ثبت نام به عنوان راننده", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "مذهب", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "ارسال مجدد کد", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "مدیریت سفر", + "Ride Summaries": "خلاصه سفرها", + "Ride Summary": "خلاصه سفر", + "Ride Today : ": "سفر امروز: ", + "Ride Wallet": "کیف پول سفر", + "Rides": "سفرها", + "Rouats of Trip": "مسیرهای سفر", + "Route": "Route", + "Route Not Found": "مسیر یافت نشد", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "تلفن اضطراری", + "SYP": "لیره سوریه", + "Safety & Security": "ایمنی و امنیت", + "Saudi Arabia": "عربستان سعودی", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "ذخیره کارت اعتباری", + "Save Name": "Save Name", + "Saved Sucssefully": "با موفقیت ذخیره شد", + "Scan Driver License": "اسکن گواهینامه", + "Scan ID MklGoogle": "اسکن ID MklGoogle", + "Scan Id": "اسکن کارت ملی", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "اسکوتر", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "جستجو برای راننده دیگر", + "Search for waypoint": "جستجوی نقطه توقف", + "Search for your Start point": "جستجوی نقطه شروع", + "Search for your destination": "جستجوی مقصد", + "Searching for nearby drivers...": "در حال جستجوی رانندگان نزدیک...", + "Searching for the nearest captain...": "در حال جستجوی نزدیک‌ترین سفیر...", + "Secure": "Secure", + "Security Warning": "⚠️ هشدار امنیتی", + "See you on the road!": "به امید دیدار در جاده!", + "Select Appearance": "Select Appearance", + "Select Country": "انتخاب کشور", + "Select Date": "انتخاب تاریخ", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "انتخاب نوع درخواست", + "Select Payment Amount": "انتخاب مبلغ پرداخت", + "Select This Ride": "Select This Ride", + "Select Time": "انتخاب زمان", + "Select Waiting Hours": "انتخاب ساعات انتظار", + "Select Your Country": "کشور خود را انتخاب کنید", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Select date and time of trip", + "Select one message": "یک پیام انتخاب کنید", + "Select recorded trip": "انتخاب سفر ضبط شده", + "Select your destination": "انتخاب مقصد", + "Select your preferred language for the app interface.": "زبان مورد نظر خود را برای برنامه انتخاب کنید.", + "Selected Date": "تاریخ انتخاب شده", + "Selected Date and Time": "تاریخ و زمان انتخاب شده", + "Selected Time": "زمان انتخاب شده", + "Selected driver": "راننده انتخاب شده", + "Selected file:": "فایل انتخاب شده:", + "Send Email": "Send Email", + "Send Intaleq app to him": "ارسال برنامه Intaleq برای او", + "Send Invite": "ارسال دعوت‌نامه", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "ارسال کد تأیید", + "Send Verification Code": "ارسال کد تأیید", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "ارسال پیام سفارشی", + "Send to Driver Again": "Send to Driver Again", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "نشست منقضی شد. لطفاً دوباره وارد شوید.", + "Set Destination": "Set Destination", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "تنظیم شماره تلفن کیف پول", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "تنظیم محل سوار شدن", + "Setting": "تنظیمات", + "Settings": "تنظیمات", + "Sex is ": "جنسیت: ", + "Share": "Share", + "Share App": "اشتراک‌گذاری برنامه", + "Share Trip": "Share Trip", + "Share Trip Details": "اشتراک جزئیات سفر", + "Share this code with your friends and earn rewards when they use it!": "این کد را به اشتراک بگذارید و پاداش بگیرید!", + "Share with friends and earn rewards": "با دوستان به اشتراک بگذارید و پاداش بگیرید", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "نمایش دعوت‌ها", + "Show Promos": "نمایش تخفیف‌ها", + "Show Promos to Charge": "نمایش تخفیف‌ها برای شارژ", + "Show latest promo": "نمایش آخرین تخفیف‌ها", + "Showing": "نمایش", + "Sign In by Apple": "ورود با اپل", + "Sign In by Google": "ورود با گوگل", + "Sign In with Google": "Sign In with Google", + "Sign Out": "خروج از حساب", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "ورود با گوگل برای سهولت", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "اپلیکیشن را باز کنید، مقصد را وارد کنید و درخواست خودرو دهید.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "متأسفیم 😔", + "Sorry, there are no cars available of this type right now.": "متأسفیم، در حال حاضر خودرویی از این نوع در دسترس نیست.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "سرویس ون جادار، ایده‌آل برای خانواده‌ها و گروه‌ها. سفر راحت، امن و مقرون‌به‌صرفه.", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "شروع ضبط", + "Start the Ride": "شروع سفر", + "Statistics": "آمار", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "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 Siro app.": "Step-by-step instructions on how to request a ride through the Siro app.", + "Stop": "Stop", + "Submit": "Submit", + "Submit ": "ارسال ", + "Submit Complaint": "ارسال شکایت", + "Submit Question": "ارسال سوال", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "ثبت شکایت", + "Submit rating": "ثبت امتیاز", + "Success": "موفقیت", + "Support & Info": "Support & Info", + "Support is Away": "پشتیبانی در حال حاضر در دسترس نیست", + "Support is currently Online": "پشتیبانی در حال حاضر آنلاین است", + "Switch Rider": "تغییر مسافر", + "Syria": "سوریه", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "سرویس پیشرو اشتراک سفر در ایران.", + "System Default": "System Default", + "Take Image": "عکس گرفتن", + "Take Picture Of Driver License Card": "عکس از گواهینامه", + "Take Picture Of ID Card": "عکس از کارت ملی", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "برای کپی ضربه بزنید!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "هدف", + "Tariff": "تعرفه", + "Tariffs": "تعرفه‌ها", + "Tax Expiry Date": "تاریخ انقضای مالیات", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thanks": "ممنون", + "The Driver Will be in your location soon .": "راننده به‌زودی می‌رسد.", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", + "The captain is responsible for the route.": "مسئولیت مسیر با سفیر است.", + "The distance less than 500 meter.": "فاصله کمتر از ۵۰۰ متر.", + "The driver accept your order for": "راننده سفارش شما را پذیرفت برای", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "راننده سفر شما را پذیرفت", + "The driver canceled your ride.": "راننده سفر شما را لغو کرد.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "راننده سفر را به دلیل وضعیت اضطراری لغو کرد.\nآیا می‌خواهید بلافاصله به دنبال راننده دیگری بگردید؟", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "راننده در راه است", + "The driver waiting you in picked location .": "راننده در محل انتخاب شده منتظر شماست.", + "The driver waitting you in picked location .": "راننده در محل انتخاب شده منتظر شماست.", + "The drivers are reviewing your request": "رانندگان در حال بررسی", + "The email or phone number is already registered.": "ایمیل یا شماره تلفن قبلاً ثبت شده است.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "نام کامل در گواهی عدم سوءپیشینه با گواهینامه مطابقت ندارد.", + "The invitation was sent successfully": "دعوت‌نامه با موفقیت ارسال شد", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "کد ملی در گواهینامه با کارت ملی مطابقت ندارد.", + "The order Accepted by another Driver": "درخواست توسط راننده دیگری پذیرفته شد", + "The order has been accepted by another driver.": "درخواست توسط راننده دیگری پذیرفته شد.", + "The payment was approved.": "پرداخت تأیید شد.", + "The payment was not approved. Please try again.": "پرداخت تأیید نشد. دوباره تلاش کنید.", + "The price may increase if the route changes.": "قیمت ممکن است تغییر کند.", + "The promotion period has ended.": "دوره تخفیف تمام شده.", + "The reason is": "The reason is", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "سفر شروع شد! می‌توانید تماس اضطراری بگیرید یا سفر را اشتراک بگذارید.", + "There is no Car or Driver in your area.": "در منطقه شما خودرو یا راننده‌ای وجود ندارد.", + "There is no data yet.": "هنوز داده‌ای نیست.", + "There is no help Question here": "سوال کمکی اینجا نیست", + "There is no notification yet": "اعلانی وجود ندارد", + "There no Driver Aplly your order sorry for that ": "هیچ راننده‌ای درخواست شما را نگرفت، متأسفیم ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "ترافیک سنگین است. نقطه دیگری پیشنهاد می‌کنید؟", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "این مبلغ برای تمام سفرهایی که از مسافران گرفتم", + "This amount for all trip I get from Passengers and Collected For me in": "این مبلغ جمع‌آوری شده برای من در", + "This is a scheduled notification.": "این یک اعلان زمان‌بندی شده است.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "این برای اسکوتر یا موتورسیکلت است.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "این شماره قبلاً دعوت شده است.", + "This price is": "این قیمت است", + "This price is fixed even if the route changes for the driver.": "قیمت ثابت است.", + "This price may be changed": "این قیمت ممکن است تغییر کند", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "این سفر توسط راننده دیگری گرفته شد.", + "This ride type allows changes, but the price may increase": "امکان تغییر دارد اما قیمت ممکن است افزایش یابد", + "This ride type does not allow changes to the destination or additional stops": "امکان تغییر مقصد یا توقف وجود ندارد", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "سفر مستقیم با قیمت ثابت.", + "This trip is for women only": "این سفر فقط برای بانوان است", + "Time": "Time", + "Time to arrive": "زمان رسیدن", + "Tip is ": "انعام: ", + "To :": "To :", + "To : ": "به: ", + "To Home": "To Home", + "To Work": "To Work", + "To become a passenger, you must review and agree to the ": "برای مسافر شدن، باید بررسی کنید و موافقت کنید با ", + "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, 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 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 change Language the App": "To change Language the App", + "To change some Settings": "برای تغییر برخی تنظیمات", + "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 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 Intaleq support directly.": "برای ثبت نام راننده به سایت مراجعه کنید.", + "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 Siro support directly.", + "To use Wallet charge it": "برای استفاده از کیف پول آن را شارژ کنید", + "Today's Promos": "تخفیف‌های امروز", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "شارژ کیف پول", + "Top up Wallet to continue": "برای ادامه کیف پول را شارژ کنید", + "Total Amount:": "مبلغ کل:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "مجموع درآمد از کارت اعتباری: ", + "Total Budget from trips is ": "مجموع درآمد از سفرها: ", + "Total Connection Duration:": "مجموع مدت اتصال:", + "Total Cost": "هزینه کل", + "Total Cost is ": "هزینه کل: ", + "Total Duration:": "مدت کل:", + "Total For You is ": "مجموع برای شما: ", + "Total From Passenger is ": "کل مبلغ از مسافر: ", + "Total Hours on month": "مجموع ساعات در ماه", + "Total Invites": "Total Invites", + "Total Points is": "مجموع امتیازات:", + "Total Price": "Total Price", + "Total budgets on month": "مجموع بودجه در ماه", + "Total points is ": "مجموع امتیازات: ", + "Total price from ": "قیمت کل از ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "با خودروی الکتریکی مدرن و بی‌صدا سفر کنید. انتخابی ممتاز و دوستدار محیط زیست.", + "Trip Cancelled": "سفر لغو شد", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "سفر لغو شد. هزینه سفر به کیف پول شما اضافه خواهد شد.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "نظارت بر سفر", + "Trip Status:": "Trip Status:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "سفر پایان یافت", + "Trip finished ": "Trip finished ", + "Trip has Steps": "سفر مراحلی دارد", + "Trip is Begin": "سفر آغاز شد", + "Trip updated successfully": "Trip updated successfully", + "Trips recorded": "سفرهای ضبط شده", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "ترکیه", + "Type here Place": "مکان را اینجا بنویسید", + "Type something...": "چیزی بنویسید...", + "Type your Email": "ایمیل خود را وارد کنید", + "Type your message": "پیام خود را بنویسید", + "Type your message...": "Type your message...", + "USA": "آمریکا", + "Uncompromising Security": "امنیت بی چون و چرا", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "بروزرسانی", + "Update Available": "Update Available", + "Update Education": "بروزرسانی تحصیلات", + "Update Gender": "بروزرسانی جنسیت", + "Update Name": "Update Name", + "Uploaded": "آپلود شد", + "Use Touch ID or Face ID to confirm payment": "از اثر انگشت یا چهره استفاده کنید", + "Use code:": "استفاده از کد:", + "Use my invitation code to get a special gift on your first ride!": "از کد دعوت من استفاده کنید تا در اولین سفر هدیه ویژه بگیرید!", + "Use my referral code:": "از کد معرف من استفاده کنید:", + "User does not exist.": "کاربر وجود ندارد.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User with this phone number or email already exists.": "کاربری با این شماره تلفن یا ایمیل قبلاً ثبت نام کرده است.", + "Uses cellular network": "Uses cellular network", + "VIN": "شماره شاسی", + "VIN :": "شماره شاسی:", + "VIN is": "شماره شاسی:", + "VIP Order": "سفارش VIP", + "Valid Until:": "معتبر تا:", + "Van": "ون", + "Van for familly": "ون برای خانواده", + "Variety of Trip Choices": "تنوع انتخاب سفر", + "Vehicle Details Back": "جزئیات خودرو (پشت)", + "Vehicle Details Front": "جزئیات خودرو (جلو)", + "Vehicle Options": "گزینه‌های خودرو", + "Verification Code": "کد تأیید", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "تأیید", + "Verify Email": "تأیید ایمیل", + "Verify Email For Driver": "تأیید ایمیل برای راننده", + "Verify OTP": "تأیید کد", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "بازخورد لرزشی برای همه دکمه‌ها", + "View Map": "View Map", + "View your past transactions": "مشاهده تراکنش‌های قبلی", + "Visit Website/Contact Support": "مشاهده وب‌سایت / تماس با پشتیبانی", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "برای اطلاعات بیشتر به وب‌سایت ما مراجعه کنید یا با پشتیبانی تماس بگیرید.", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "تماس صوتی", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "در انتظار سفیر...", + "Waiting for Driver ...": "در انتظار راننده...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "در انتظار موقعیت شما", + "Waiting...": "Waiting...", + "Wallet": "کیف پول", + "Wallet is blocked": "کیف پول مسدود شده است", + "Wallet!": "کیف پول!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "هشدار: سرعت غیرمجاز!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "هشدار: سرعت غیرمجاز تشخیص داده شد!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "متاسفیم، در موقعیت شما خودرویی نداریم!", + "We apologize 😔": "عذرخواهی می‌کنیم 😔", + "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", + "We are process picture please wait ": "در حال پردازش عکس، صبر کنید ", + "We are search for nearst driver": "جستجوی نزدیک‌ترین راننده", + "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 couldn't find a valid route to this destination. Please try selecting a different point.": "مسیر معتبری به این مقصد پیدا نکردیم. لطفاً نقطه دیگری را انتخاب کنید.", + "We have sent a verification code to your mobile number:": "ما یک کد تأیید به شماره موبایل شما ارسال کردیم:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "هنوز راننده‌ای پیدا نکرده‌ایم. برای جذاب‌تر کردن پیشنهاد، کرایه را افزایش دهید.", + "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 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 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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "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": "کد ۵ رقمی به ایمیل شما ارسال شد", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "ما به دنبال راننده جدید می‌گردیم.\nلطفاً صبر کنید.", + "We're here to help you 24/7": "ما ۷/۲۴ برای کمک به شما آماده‌ایم", + "Welcome Back": "Welcome Back", + "Welcome Back!": "خوش آمدید!", + "Welcome to Intaleq!": "به Intaleq خوش آمدید!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "شرایط راننده شدن چیست؟", + "What safety measures does Intaleq offer?": "چه اقدامات امنیتی ارائه می‌دهید؟", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "چه نوع خودروهایی موجود است؟", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "استخراج موقعیت واتس‌اپ", + "When": "وقتی", + "Where are you going?": "به کجا می‌روید؟", + "Where are you, sir?": "Where are you, sir?", + "Where to": "کجا می‌روید؟", + "Where you want go ": "کجا می‌خواهید بروید ", + "Why Choose Intaleq?": "چرا Intaleq؟", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "با Intaleq در چند دقیقه به مقصد برسید.", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "محل کار", + "Work & Contact": "کار و تماس", + "Work Saved": "Work Saved", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "ساعات کاری ۱۲ تا ۱۹.\nواتس‌اپ یا ایمیل بزنید.", + "Working Hours:": "ساعات کاری:", + "Write note": "نوشتن یادداشت", + "Wrong pickup location": "محل سوار شدن اشتباه است", + "Year": "سال", + "Year is": "سال:", + "Yes": "Yes", + "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 Siro cancellation policy for details.": "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, but please note that cancellation fees may apply depending on how far in advance you cancel.": "بله، می‌توانید سفر را لغو کنید (ممکن است هزینه داشته باشد).", + "You Are Stopped For this Day !": "برای امروز متوقف شدید!", + "You Can Cancel Trip And get Cost of Trip From": "می‌توانید لغو کنید و هزینه را دریافت کنید از", + "You Can cancel Ride After Captain did not come in the time": "اگر سفیر به موقع نیامد می‌توانید لغو کنید", + "You Dont Have Any amount in": "موجودی ندارید در", + "You Dont Have Any places yet !": "هنوز مکانی ندارید!", + "You Have": "شما دارید", + "You Have Tips": "انعام دارید", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "۳ سفر را رد کردید.\nفردا می‌بینیمتان!", + "You Should be select reason.": "باید دلیلی را انتخاب کنید.", + "You Should choose rate figure": "باید امتیاز انتخاب کنید", + "You are Delete": "شما در حال حذف هستید", + "You are Stopped": "متوقف شدید", + "You are not in near to passenger location": "نزدیک مسافر نیستید", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "می‌توانید امتیاز بخرید تا آنلاین شوید\nاز لیست زیر", + "You can buy points from your budget": "می‌توانید از اعتبار خود امتیاز بخرید", + "You can call or record audio during this trip.": "شما می‌توانید در طول این سفر تماس بگیرید یا صدا ضبط کنید.", + "You can call or record audio of this trip": "می‌توانید تماس بگیرید یا ضبط کنید", + "You can cancel Ride now": "الان می‌توانید سفر را لغو کنید", + "You can cancel trip": "می‌توانید سفر را لغو کنید", + "You can change the Country to get all features": "برای دسترسی به تمام ویژگی‌ها کشور را تغییر دهید", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "می‌توانید زبان برنامه را تغییر دهید", + "You can change the vibration feedback for all buttons": "می‌توانید بازخورد لرزشی دکمه‌ها را تغییر دهید", + "You can claim your gift once they complete 2 trips.": "پس از انجام ۲ سفر توسط آنها، می‌توانید هدیه خود را دریافت کنید.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "از طریق چت درون برنامه‌ای.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "تماس در ساعات ۱۲ تا ۱۹.", + "You can decline a request without any cost": "می‌توانید بدون هزینه رد کنید", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "می‌توانید نقدی یا با کارت پرداخت کنید.", + "You can resend in": "ارسال مجدد در", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "برنامه را با دوستان به اشتراک بگذارید و پاداش بگیرید.", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "باید گواهینامه را تمدید کنید", + "You canceled VIP trip": "You canceled VIP trip", + "You deserve the gift": "شما شایسته این هدیه هستید", + "You dont Add Emergency Phone Yet!": "هنوز تلفن اضطراری اضافه نکرده‌اید!", + "You dont have Points": "امتیاز ندارید", + "You have already received your gift for inviting": "شما قبلاً هدیه خود را برای این دعوت دریافت کرده‌اید", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "شما قبلاً از این کد استفاده کرده‌اید.", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "شما تماس از راننده دارید", + "You have copied the promo code.": "کد تخفیف را کپی کردید.", + "You have earned 20": "شما ۲۰ امتیاز کسب کردید", + "You have finished all times ": "تمام دفعات را استفاده کردید", + "You have got a gift for invitation": "شما یک هدیه برای دعوت دریافت کردید", + "You have in account": "در حساب دارید", + "You have promo!": "تخفیف دارید!", + "You must Verify email !.": "باید ایمیل را تأیید کنید!", + "You must be charge your Account": "باید حساب را شارژ کنید", + "You must restart the app to change the language.": "برای تغییر زبان باید برنامه را دوباره راه‌اندازی کنید.", + "You should have upload it .": "شما باید آن را آپلود کنید.", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "باید یکی را انتخاب کنید", + "You should select your country": "باید کشور خود را انتخاب کنید", + "You trip distance is": "مسافت سفر شما:", + "You will arrive to your destination after ": "شما به مقصد می‌رسید بعد از ", + "You will arrive to your destination after timer end.": "پس از پایان تایمر به مقصد خواهید رسید.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "هزینه را به راننده پرداخت می‌کنید یا در سفر بعد از شما می‌گیریم", + "You will be thier in": "شما در ... آنجا خواهید بود", + "You will choose allow all the time to be ready receive orders": "گزینه 'همیشه اجازه داده شود' را انتخاب کنید", + "You will choose one of above !": "یکی از موارد بالا را انتخاب کنید!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "هزینه این سفر را دریافت خواهید کرد", + "You will receive a code in SMS message": "کدی در پیامک دریافت خواهید کرد", + "You will receive a code in WhatsApp Messenger": "کد را در واتس‌اپ دریافت خواهید کرد", + "You will recieve code in sms message": "کد را در پیامک دریافت خواهید کرد", + "Your Account is Deleted": "حساب شما حذف شد", + "Your Budget less than needed": "بودجه شما کمتر از حد نیاز است", + "Your Choice, Our Priority": "انتخاب شما، اولویت ما", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "مدت زمان سفر شما: ", + "Your Wallet balance is ": "موجودی کیف پول شما: ", + "Your are far from passenger location": "از مسافر دور هستید", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "داده‌ها بعد از ۲ هفته پاک می‌شوند.", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Your email address", + "Your fee is ": "هزینه شما: ", + "Your invite code was successfully applied!": "کد دعوت اعمال شد!", + "Your journey starts here": "سفر شما از اینجا شروع می‌شود", + "Your name": "نام شما", + "Your order is being prepared": "سفارش در حال آماده‌سازی", + "Your order sent to drivers": "به رانندگان ارسال شد", + "Your password": "Your password", + "Your past trips will appear here.": "سفرهای قبلی شما در اینجا نمایش داده می‌شود.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "کد دعوت شخصی شما:", + "Your trip cost is": "هزینه سفر شما", + "Your trip distance is": "مسافت سفر شما:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nما همچنین اولویت را بر مقرون‌به‌صرفه بودن می‌گذاریم.", + "accepted": "accepted", + "accepted your order at price": "accepted your order at price", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "برای ادامه، باید شرایط استفاده و سیاست حریم خصوصی را بپذیرید.", + "airport": "airport", + "an error occurred": "خطایی رخ داد: @error", + "and I have a trip on": "و سفری دارم در", + "and acknowledge our": "و تأیید کنید", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq امن و قابل اعتماد است.", + "arrival time to reach your point": "زمان رسیدن به نقطه شما", + "as the driver.": "as the driver.", + "before": "قبل از", + "begin": "begin", + "by": "by", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "change device", + "committed_to_safety": "متعهد به ایمنی.", + "complete profile subtitle": "برای شروع پروفایل خود را تکمیل کنید", + "complete registration button": "تکمیل ثبت نام", + "complete, you can claim your gift": "تکمیل شد، می‌توانید هدیه را دریافت کنید", + "contacts. Others were hidden because they don't have a phone number.": "مخاطب. بقیه پنهان شدند چون شماره تلفن ندارند.", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copied to clipboard", + "created time": "زمان ایجاد", + "deleted": "deleted", + "distance is": "مسافت:", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "گواهینامه", + "due to a previous trip.": "due to a previous trip.", + "duration is": "مدت زمان:", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "ایمیل (اختیاری)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "لطفاً کد تأیید ۵ رقمی را وارد کنید", + "face detect": "تشخیص چهره", + "failed to send otp": "ارسال کد تأیید ناموفق بود.", + "first name label": "نام", + "first name required": "نام الزامی است", + "for": "برای", + "for your first registration!": "برای اولین ثبت نام شما!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "از ۰۷:۳۰ تا ۱۰:۳۰", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "از ۱۲:۰۰ تا ۱۵:۰۰", + "from 23:59 till 05:30": "از ۲۳:۵۹ تا ۰۵:۳۰", + "from 3 times Take Attention": "از ۳ بار، دقت کنید", + "from your favorites": "from your favorites", + "from your list": "از لیست شما", + "get_a_ride": "در چند دقیقه خودرو بگیرید.", + "get_to_destination": "سریع به مقصد برسید.", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "قبل از لغو مسافر به موقعیت او بروید", + "has completed": "تکمیل کرد", + "hour": "ساعت", + "i agree": "موافقم", + "if you don't have account": "اگر حساب ندارید", + "if you dont have account": "اگر حساب کاربری ندارید", + "if you want help you can email us here": "برای کمک ایمیل بزنید", + "image verified": "تصویر تأیید شد", + "in your": "in your", + "insert amount": "مبلغ را وارد کنید", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "در حال راندن ", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "joined": "پیوست", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "نام خانوادگی", + "last name required": "نام خانوادگی الزامی است", + "login or register subtitle": "برای ورود یا ثبت نام شماره موبایل خود را وارد کنید", + "m": "د", + "message From Driver": "پیام از راننده", + "message From passenger": "پیام از مسافر", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "مدل:", + "my location": "موقعیت من", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "غیر مشابه", + "of": "از", + "one last step title": "یک قدم دیگر", + "otp sent subtitle": "یک کد ۵ رقمی به شماره\n@phoneNumber ارسال شد", + "otp sent success": "کد تأیید به واتس‌اپ ارسال شد.", + "otp verification failed": "تأیید کد ناموفق بود.", + "passenger agreement": "توافق‌نامه مسافر", + "pending": "pending", + "phone not verified": "phone not verified", + "phone number label": "شماره تلفن", + "phone number required": "شماره تلفن الزامی است", + "please go to picker location exactly": "لطفاً دقیقاً به محل سوار شدن بروید", + "please order now": "اکنون سفارش دهید", + "please wait till driver accept your order": "لطفاً منتظر پذیرش راننده بمانید", + "price is": "قیمت:", + "privacy policy": "سیاست حریم خصوصی.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "ثبت نام ناموفق بود.", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "safe_and_comfortable": "از سفری امن و راحت لذت ببرید.", + "seconds": "ثانیه", + "security_warning": "security_warning", + "send otp button": "ارسال کد تأیید", + "server error try again": "خطای سرور، لطفاً دوباره تلاش کنید.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "مشابه", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "شرایط استفاده", + "the 300 points equal 300 L.E": "۳۰۰ امتیاز برابر ۳۰۰ تومان", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "۳۰۰ امتیاز برابر ۳۰۰ تومان برای شماست\nبروید و پول درآورید", + "the 500 points equal 30 JOD": "۵۰۰ امتیاز برابر ۳۰ تومان", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "۵۰۰ امتیاز برای شما ۳۰ تومان است\nبروید و پول درآورید", + "this will delete all files from your device": "این کار تمام فایل‌ها را حذف می‌کند", + "to arrive you.": "to arrive you.", + "token change": "تغییر توکن", + "token updated": "توکن بروز شد", + "trips": "سفرها", + "type here": "اینجا بنویسید", + "unknown": "unknown", + "upgrade price": "upgrade price", + "verify and continue button": "تأیید و ادامه", + "verify your number title": "تأیید شماره", + "wait 1 minute to receive message": "۱ دقیقه صبر کنید", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "wallet due to a previous trip.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "به Intaleq خوش آمدید", + "welcome to siro": "welcome to siro", + "welcome user": "خوش آمدید، @firstName!", + "welcome_message": "به Intaleq خوش آمدید!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "رنگ خودرو را بنویسید", + "write Expiration Date for your car": "تاریخ انقضای خودرو را بنویسید", + "write Make for your car": "سازنده خودرو را بنویسید", + "write Model for your car": "مدل خودرو را بنویسید", + "write Year for your car": "سال خودرو را بنویسید", + "write vin for your car": "شماره شاسی خودرو را بنویسید", + "year :": "سال:", + "you canceled order": "you canceled order", + "you gain": "کسب کردید", + "you have a negative balance of": "you have a negative balance of", + "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 Intaleq Wallet": "هزینه زمان راننده را پرداخت خواهید کرد، کیف پول Intaleq را ببینید", + "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 Siro Wallet", + "your ride is Accepted": "سفر شما پذیرفته شد", + "your ride is applied": "سفر شما ثبت شد", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "تاریخ انقضا", + "⚠️ You need to choose an amount!": "⚠️ باید مبلغی را انتخاب کنید!", + "💰 Pay with Wallet": "💰 پرداخت با کیف پول", + "💳 Pay with Credit Card": "💳 پرداخت با کارت اعتباری", +}; diff --git a/siro_rider/lib/controller/local/fr.dart b/siro_rider/lib/controller/local/fr.dart new file mode 100644 index 0000000..26e81c3 --- /dev/null +++ b/siro_rider/lib/controller/local/fr.dart @@ -0,0 +1,1715 @@ +final Map fr = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": " Je suis actuellement à ", + " I am using": " J'utilise", + " If you need to reach me, please contact the driver directly at": " Si vous devez me joindre, contactez le chauffeur au", + " KM": " KM", + " Minutes": " Minutes", + " Next as Cash !": " Suivant en espèces !", + " You Earn today is ": " Vous avez gagné aujourd'hui ", + " You Have in": " Vous avez dans", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " et reconnaître notre Politique de Confidentialité.", + " and acknowledge the ": " and acknowledge the ", + " as the driver.": " comme chauffeur.", + " in your": " in your", + " in your wallet": " dans votre portefeuille", + " is ON for this month": " est ON pour ce mois", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " pourboires\nLe total est", + " to arrive you.": " pour arriver à vous.", + " to ride with": " pour rouler avec", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " immatriculée ", + "--": "--", + ". I am at least 18 years old.": ". I am at least 18 years old.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "1. Décrivez votre problème", + "10 and get 4% discount": "10 et obtenez 4% de réduction", + "100 and get 11% discount": "100 et obtenez 11% de réduction", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "2. Joindre l'audio enregistré", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 et obtenez 6% de réduction", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "3. Revoir les détails et la réponse", + "3000 LE": "30 €", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 et obtenez 8% de réduction", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5 chiffres", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Un trajet avec réservation préalable, vous permettant de choisir les meilleurs chauffeurs et voitures.", + "AI Page": "Page IA", + "About Intaleq": "About Intaleq", + "About Siro": "About Siro", + "About Us": "À propos de nous", + "Accept": "Accept", + "Accept Order": "Accepter la commande", + "Accept Ride's Terms & Review Privacy Notice": "Accepter les conditions et la confidentialité", + "Accepted Ride": "Trajet accepté", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "Durée active :", + "Active Users": "Active Users", + "Add Card": "Ajouter une carte", + "Add Credit Card": "Ajouter une carte de crédit", + "Add Home": "Ajouter Maison", + "Add Location": "Ajouter un lieu", + "Add Location 1": "Ajouter Lieu 1", + "Add Location 2": "Ajouter Lieu 2", + "Add Location 3": "Ajouter Lieu 3", + "Add Location 4": "Ajouter Lieu 4", + "Add Payment Method": "Ajouter une méthode de paiement", + "Add Phone": "Ajouter téléphone", + "Add Promo": "Ajouter Promo", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Ajouter des arrêts", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "Ajouter des fonds via nos méthodes sécurisées", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Adresse", + "Address: ": "Adresse :", + "Admin DashBoard": "Tableau de bord Admin", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "Abordable pour tous", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "Après cette période\nVous ne pouvez plus annuler !", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "L'âge est ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "Alertes", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "Autoriser l'accès à la localisation", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "Une erreur est survenue durant le paiement.", + "An error occurred while picking contacts:": "Une erreur est survenue lors de la sélection des contacts :", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "Une erreur inattendue s'est produite. Réessayez.", + "App Tester Login": "App Tester Login", + "App with Passenger": "Appli avec Passager", + "Appearance": "Appearance", + "Applied": "Demandé", + "Apply": "Apply", + "Apply Order": "Accepter la commande", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "J'approche. Là dans 3 minutes.", + "Are You sure to ride to": "Êtes-vous sûr d'aller à", + "Are you Sure to LogOut?": "Êtes-vous sûr de vous déconnecter ?", + "Are you sure to cancel?": "Êtes-vous sûr d'annuler ?", + "Are you sure to delete recorded files": "Êtes-vous sûr de supprimer les fichiers ?", + "Are you sure to delete this location?": "Voulez-vous vraiment supprimer ce lieu ?", + "Are you sure to delete your account?": "Êtes-vous sûr de supprimer votre compte ?", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "Êtes-vous sûr ? Cette action est irréversible.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Voulez-vous aller à cet endroit ?", + "Are you want to go to this site": "Voulez-vous aller à ce site", + "Are you want to wait drivers to accept your order": "Voulez-vous attendre que les chauffeurs acceptent ?", + "Arrival time": "Heure d'arrivée", + "Arrived": "Arrived", + "Associate Degree": "BTS / DUT", + "Attach this audio file?": "Joindre ce fichier audio ?", + "Attention": "Attention", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Audio téléchargé avec succès.", + "Available for rides": "Disponible pour des trajets", + "Average of Hours of": "Moyenne des heures de", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Voiture Éco", + "Bachelor's Degree": "Licence", + "Back": "Back", + "Bahrain": "Bahreïn", + "Balance": "Solde", + "Balance limit exceeded": "Limite de solde dépassée", + "Balance not enough": "Solde insuffisant", + "Balance:": "Solde :", + "Be Slowly": "Doucement", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "Assurez-vous de prendre des images précises svp\nVous avez", + "Be sure to use it quickly! This code expires at": "Utilisez-le vite ! Ce code expire le", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Parce que nous sommes proches, vous avez la flexibilité de choisir le meilleur trajet.", + "Before we start, please review our terms.": "Avant de commencer, veuillez consulter nos conditions.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Meilleur choix pour la ville", + "Best choice for comfort car and flexible route and stops point": "Meilleur choix pour voiture confort et itinéraire flexible", + "Birth Date": "Date de naissance", + "Bonus gift": "Bonus gift", + "BookingFee": "Frais de réservation", + "Bottom Bar Example": "Exemple de barre inférieure", + "But you have a negative salary of": "Mais vous avez un salaire négatif de", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "En sélectionnant 'J'accepte', je reconnais avoir lu et accepté les conditions d'utilisation et la politique de confidentialité. J'ai au moins 18 ans.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "En sélectionnant \"J'accepte\", j'accepte les conditions d'utilisation et reconnais ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "CODE", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "Fin de l'appel", + "Call Ended": "Call Ended", + "Call Income": "Appel entrant", + "Call Income from Driver": "Appel entrant du chauffeur", + "Call Income from Passenger": "Appel entrant du passager", + "Call Left": "Appels restants", + "Call Options": "Call Options", + "Call Page": "Page d'appel", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "Accès caméra refusé.", + "Camera not initialized yet": "Caméra non initialisée", + "Camera not initilaized yet": "Caméra non initialisée", + "Can I cancel my ride?": "Puis-je annuler mon trajet ?", + "Can we know why you want to cancel Ride ?": "Pouvons-nous savoir pourquoi vous voulez annuler ?", + "Cancel": "Annuler", + "Cancel Ride": "Annuler la course", + "Cancel Search": "Annuler la recherche", + "Cancel Trip": "Annuler le trajet", + "Cancel Trip from driver": "Annuler le trajet (Chauffeur)", + "Canceled": "Annulé", + "Cannot apply further discounts.": "Impossible d'appliquer plus de remises.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Prendre une photo de votre casier judiciaire", + "Capture an Image of Your Driver License": "Prendre une photo de votre permis", + "Capture an Image of Your Driver's License": "Photo de votre permis de conduire", + "Capture an Image of Your ID Document Back": "Photo verso de la pièce d'identité", + "Capture an Image of Your ID Document front": "Photo recto de la pièce d'identité", + "Capture an Image of Your car license back": "Photo verso de la carte grise", + "Capture an Image of Your car license front": "Photo recto de la carte grise", + "Car": "Voiture", + "Car Color:": "Car Color:", + "Car Details": "Détails de la voiture", + "Car License Card": "Carte Grise", + "Car Make:": "Car Make:", + "Car Model:": "Car Model:", + "Car Plate is ": "La plaque est ", + "Car Plate:": "Car Plate:", + "Card Number": "Numéro de carte", + "CardID": "Numéro de Carte", + "Cash": "Espèces", + "Change Country": "Changer de pays", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "J'ai changé d'avis", + "Chassis": "Châssis", + "Chat with us anytime": "Chat with us anytime", + "Check back later for new offers!": "Revenez plus tard pour de nouvelles offres !", + "Choose Language": "Choisir la langue", + "Choose a contact option": "Choisissez une option de contact", + "Choose between those Type Cars": "Choisissez parmi ces types de voitures", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "Choisir sur la carte", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "Choisissez l'option de trajet qui vous convient parfaitement.", + "Choose who this order is for": "Pour qui est cette commande ?", + "Choose your ride": "Choose your ride", + "City": "Ville", + "Claim your 20 LE gift for inviting": "Réclamez votre cadeau de 20 € pour l'invitation", + "Click here point": "Click here point", + "Click here to Show it in Map": "Cliquez ici pour voir sur la carte", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "Fermer", + "Close panel": "Close panel", + "Closest & Cheapest": "Le plus proche et le moins cher", + "Closest to You": "Le plus proche de vous", + "Code": "Code", + "Code not approved": "Code non approuvé", + "Color": "Couleur", + "Color is ": "La couleur est : ", + "Comfort": "Confort", + "Comfort choice": "Choix confort", + "Coming": "Coming", + "Communication": "Communication", + "Complaint": "Réclamation", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Impossible de déposer une plainte pour ce trajet. Il n'a peut-être pas été terminé ou commencé.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "Confirmer", + "Confirm & Find a Ride": "Confirmer et trouver un trajet", + "Confirm Attachment": "Confirmer la pièce jointe", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "Confirmer la sélection", + "Confirm Trip": "Confirm Trip", + "Confirm your Email": "Confirmez votre email", + "Connected": "Connecté", + "Connecting...": "Connecting...", + "Connection Error": "Erreur de connexion", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "Options de contact", + "Contact Support": "Contacter le support", + "Contact Us": "Nous contacter", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "La permission d'accès aux contacts est requise.", + "Contact us for any questions on your order.": "Contactez-nous pour toute question.", + "Contacts Loaded": "Contacts chargés", + "Continue": "Continuer", + "Copy": "Copier", + "Copy Code": "Copier le code", + "Copy this Promo to use it in your Ride!": "Copiez cette promo pour l'utiliser !", + "Cost Duration": "Coût Durée", + "Cost Of Trip IS ": "Le coût du trajet est ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "Comptes des heures sur les jours", + "Create Wallet to receive your money": "Créer un portefeuille pour recevoir votre argent", + "Criminal Document Required": "Extrait de casier judiciaire requis", + "Criminal Record": "Casier judiciaire", + "Crop Photo": "Crop Photo", + "Cropper": "Recadrer", + "Current Balance": "Solde actuel", + "Current Location": "Position actuelle", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Client introuvable", + "Customer phone is not active": "Le téléphone du client n'est pas actif", + "DISCOUNT": "REMISE", + "Dark Mode": "Dark Mode", + "Date": "Date", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth is": "Date de naissance :", + "Date of Birth: ": "Date de naissance :", + "Days": "Jours", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "Supprimer mon compte", + "Delete Permanently": "Supprimer définitivement", + "Delete Recording?": "Delete Recording?", + "Deleted": "Supprimé", + "Destination": "Destination", + "Destination Set": "Destination Set", + "Destination selected": "Destination selected", + "Detect Your Face ": "Détecter votre visage ", + "Device Change Detected": "Device Change Detected", + "Direct talk with our team": "Direct talk with our team", + "Displacement": "Cylindrée", + "Distance": "Distance", + "Distance To Passenger is ": "Distance vers le passager est ", + "Distance from Passenger to destination is ": "La distance du passager à la destination est ", + "Distance is ": "Distance est ", + "Distance of the Ride is ": "La distance du trajet est ", + "Do you have an invitation code from another driver?": "Avez-vous un code d'invitation d'un autre chauffeur ?", + "Do you want to change Home location": "Voulez-vous changer le domicile", + "Do you want to change Work location": "Voulez-vous changer le lieu de travail", + "Do you want to pay Tips for this Driver": "Voulez-vous donner un pourboire ?", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "Doctorat", + "Document Number: ": "Numéro de document :", + "Documents check": "Vérification des documents", + "Don't Cancel": "N'annulez pas", + "Don't forget your personal belongings.": "N'oubliez pas vos effets personnels.", + "Don't forget your ride!": "Don't forget your ride!", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "Fait", + "Don’t forget your personal belongings.": "N'oubliez pas vos effets personnels.", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Download the Intaleq Driver app now and earn rewards!": "Téléchargez l'appli Chauffeur Intaleq et gagnez des récompenses !", + "Download the Intaleq app now and enjoy your ride!": "Téléchargez Intaleq maintenant et profitez du trajet !", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Téléchargez l'application :", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Chauffeur", + "Driver Accepted the Ride for You": "Le chauffeur a accepté le trajet pour vous", + "Driver Applied the Ride for You": "Le chauffeur a demandé le trajet pour vous", + "Driver Cancelled Your Trip": "Le chauffeur a annulé votre trajet", + "Driver Car Plate": "Plaque du chauffeur", + "Driver Finish Trip": "Le chauffeur a terminé la course", + "Driver Is Going To Passenger": "Le chauffeur se rend vers le passager", + "Driver List": "Driver List", + "Driver Name": "Nom du chauffeur", + "Driver Name:": "Driver Name:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Driver Phone:", + "Driver Referral": "Driver Referral", + "Driver Registration": "Inscription Chauffeur", + "Driver Registration & Requirements": "Inscription Chauffeur & Requis", + "Driver Wallet": "Portefeuille Chauffeur", + "Driver already has 2 trips within the specified period.": "Le chauffeur a déjà 2 trajets dans la période spécifiée.", + "Driver asked me to cancel": "Le chauffeur m'a demandé d'annuler", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "Le chauffeur est en route", + "Driver is taking too long": "Le chauffeur met trop de temps", + "Driver is waiting at pickup.": "Le chauffeur attend au point de rendez-vous.", + "Driver joined the channel": "Le chauffeur a rejoint le canal", + "Driver left the channel": "Le chauffeur a quitté le canal", + "Driver phone": "Tél. du chauffeur", + "Driver's License": "Permis de conduire", + "Drivers License Class": "Classe de permis", + "Drivers License Class: ": "Classe de permis :", + "Duration To Passenger is ": "Durée vers le passager est ", + "Duration is": "La durée est", + "Duration of Trip is ": "Durée du trajet est ", + "Duration of the Ride is ": "La durée du trajet est ", + "EGP": "EGP", + "Edit Profile": "Modifier le profil", + "Edit Your data": "Modifier vos données", + "Education": "Éducation", + "Egypt": "Égypte", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "Électrique", + "Email": "Email", + "Email Support": "Email Support", + "Email Us": "Envoyez-nous un email", + "Email Wrong": "Email incorrect", + "Email is": "L'email est :", + "Email you inserted is Wrong.": "L'email inséré est incorrect.", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "Type d'emploi", + "Enable Location": "Activer la localisation", + "Enable Location Access": "Enable Location Access", + "End": "End", + "End Ride": "Fin du trajet", + "Enjoy a safe and comfortable ride.": "Profitez d'un trajet sûr et confortable.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Profitez de prix compétitifs sur tous les trajets.", + "Enter Your First Name": "Entrez votre prénom", + "Enter a password": "Enter a password", + "Enter a valid email": "Enter a valid email", + "Enter driver's phone": "Entrer tél. du chauffeur", + "Enter phone": "Entrer téléphone", + "Enter promo code": "Entrer code promo", + "Enter promo code here": "Entrez le code promo ici", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "Entrez le code promo et obtenez", + "Enter your City": "Enter your City", + "Enter your Note": "Entrez votre note", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Entrez votre réclamation ici...", + "Enter your email address": "Entrez votre adresse email", + "Enter your feedback here": "Entrez votre avis ici", + "Enter your first name": "Entrez votre prénom", + "Enter your last name": "Entrez votre nom", + "Enter your password": "Enter your password", + "Enter your phone number": "Entrez votre numéro de téléphone", + "Enter your promo code": "Enter your promo code", + "Error": "Erreur", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "Soir", + "Exclusive offers and discounts always with the Intaleq app": "Offres exclusives et remises toujours avec l'appli Intaleq", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "Date d'expiration", + "Expiration Date ": "Date d'expiration : ", + "Expiry Date": "Date d'expiration", + "Expiry Date: ": "Date d'expiration :", + "Face Detection Result": "Résultat de la détection de visage", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "Échec de la recherche, veuillez réessayer plus tard", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "Réponse rapide aux plaintes", + "Favorite Places": "Favorite Places", + "Fee is": "Les frais sont", + "Feed Back": "Avis", + "Feedback": "Avis", + "Feedback data saved successfully": "Données d'avis enregistrées avec succès", + "Female": "Femme", + "Find answers to common questions": "Trouver des réponses aux questions courantes", + "Finish Monitor": "Terminer la surveillance", + "Finished": "Finished", + "First Name": "Prénom", + "First name": "Prénom", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Prise en charge", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "Pour les chauffeurs", + "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": "Pour Intaleq et scooter, le prix est dynamique. Pour Confort, basé sur le temps et la distance.", + "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "For official inquiries", + "Found another transport": "J'ai trouvé un autre transport", + "Free Call": "Free Call", + "Frequently Asked Questions": "Questions Fréquemment Posées", + "Frequently Questions": "Questions Fréquentes", + "From": "De", + "From :": "De :", + "From : ": "De : ", + "From : Current Location": "De : Position actuelle", + "From:": "From:", + "Fuel": "Carburant", + "Full Name (Marital)": "Nom complet", + "FullName": "Nom complet", + "GPS Required Allow !.": "GPS requis, autorisez-le !", + "Gender": "Sexe", + "General": "General", + "Get": "Get", + "Get Details of Trip": "Obtenir les détails du trajet", + "Get Direction": "Obtenir l'itinéraire", + "Get a discount on your first Intaleq ride!": "Obtenez une réduction sur votre premier trajet Intaleq !", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "Obtenez-le maintenant !", + "Get to your destination quickly and easily.": "Arrivez à destination rapidement et facilement.", + "Getting Started": "Commencer", + "Gift Already Claimed": "Cadeau déjà réclamé", + "Go To Favorite Places": "Aller aux lieux favoris", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "Étape suivante\nscanner la carte grise.", + "Go to passenger Location now": "Allez à la position du passager maintenant", + "Go to this Target": "Aller à cette destination", + "Go to this location": "Aller à cet endroit", + "Grant": "Grant", + "H and": "H et", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "Avez-vous un code promo ?", + "Heading your way now. Please be ready.": "J'arrive. Soyez prêt svp.", + "Height: ": "Taille :", + "Hello this is Captain": "Bonjour c'est le Chauffeur", + "Hello this is Driver": "Bonjour c'est le chauffeur", + "Hello! I'm inviting you to try Intaleq.": "Bonjour ! Je vous invite à essayer Intaleq.", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hello, I'm at the agreed-upon location", + "Help Details": "Détails de l'aide", + "Helping Center": "Centre d'aide", + "Here recorded trips audio": "Ici l'audio des trajets enregistrés", + "Hi": "Bonjour", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Bonjour, je pars maintenant", + "Hi! This is": "Salut ! C'est", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "Salut, on va où ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "Baccalauréat", + "History of Trip": "Historique du trajet", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "How can I pay for my ride?": "Comment payer mon trajet ?", + "How can I register as a driver?": "Comment s'inscrire comme chauffeur ?", + "How do I communicate with the other party (passenger/driver)?": "Comment communiquer avec l'autre partie ?", + "How do I request a ride?": "Comment demander un trajet ?", + "How many hours would you like to wait?": "Combien d'heures voulez-vous attendre ?", + "How much longer will you be?": "How much longer will you be?", + "I Agree": "J'accepte", + "I Arrive your site": "Je suis arrivé à votre emplacement", + "I added the wrong pick-up/drop-off location": "J'ai mis le mauvais lieu de prise en charge/dépose", + "I am currently located at": "I am currently located at", + "I arrive you": "Je suis arrivé", + "I cant register in your app in face detection ": "Je ne peux pas m'inscrire à cause de la détection faciale ", + "I don't have a reason": "Je n'ai pas de raison", + "I don't need a ride anymore": "Je n'ai plus besoin de trajet", + "I want to order for myself": "Je commande pour moi-même", + "I want to order for someone else": "Je commande pour quelqu'un d'autre", + "I was just trying the application": "J'essayais juste l'application", + "I will go now": "J'y vais maintenant", + "I will slow down": "Je vais ralentir", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "Je vous attends", + "I've been trying to reach you but your phone is off.": "I've been trying to reach you but your phone is off.", + "ID Documents Back": "Verso de la pièce d'identité", + "ID Documents Front": "Recto de la pièce d'identité", + "If you in Car Now. Press Start The Ride": "Si vous êtes en voiture, appuyez sur Démarrer", + "If you need assistance, contact us": "Si vous avez besoin d'aide, contactez-nous", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Si vous voulez ajouter un arrêt cliquez ici", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Si vous voulez lancer Google Maps directement", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "Le résultat de détection d'image est ", + "In-App VOIP Calls": "Appels VOIP intégrés", + "Including Tax": "Taxes incluses", + "Incorrect sms code": "⚠️ Code SMS incorrect. Veuillez réessayer.", + "Increase Fare": "Augmenter le tarif", + "Increase Fee": "Augmenter le tarif", + "Increase Your Trip Fee (Optional)": "Augmentez le prix de votre trajet (Optionnel)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Augmenter le tarif pourrait attirer plus de chauffeurs. Voulez-vous augmenter le prix ?", + "Insert": "Insérer", + "Insert Emergincy Number": "Insérer numéro d'urgence", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Insérez votre code promo", + "Inspection Date": "Date d'inspection", + "InspectionResult": "Résultat de l'inspection", + "Intaleq": "Intaleq", + "Intaleq Balance": "Solde Intaleq", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Intaleq Terminé", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq Support", + "Intaleq Wallet": "Portefeuille Intaleq", + "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 est une application de covoiturage conçue pour votre sécurité et votre budget. Nous vous connectons avec des chauffeurs fiables dans votre région.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq s'engage pour la sécurité, tous nos chauffeurs sont vérifiés.", + "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 est la première appli de covoiturage en France, conçue pour vous connecter aux chauffeurs les plus proches.", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq est l'appli de transport sûre et fiable.", + "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 est l'appli de covoiturage la plus sûre avec de nombreuses fonctionnalités. Nous offrons le taux de commission le plus bas de seulement 8%.", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq offre diverses options incluant Éco, Confort et Luxe pour s'adapter à vos besoins.", + "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 offre diverses options de véhicules incluant éco, confort et luxe.", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq offre plusieurs méthodes de paiement. Choisissez entre espèces ou carte lors de la 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 offre la vérification des chauffeurs, le suivi des trajets et les contacts d'urgence.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq priorise votre sécurité avec la vérification des chauffeurs et le suivi des trajets.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq fournit une fonction de chat pour communiquer avec votre chauffeur ou passager.", + "Intaleq's Response": "Intaleq's Response", + "Invalid MPIN": "MPIN invalide", + "Invalid OTP": "OTP invalide", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "Invitation utilisée", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "Invitation envoyée avec succès", + "Is the Passenger in your Car ?": "Le passager est-il dans votre voiture ?", + "Issue Date": "Date de délivrance", + "IssueDate": "Date d'émission", + "JOD": "€", + "Join": "Rejoindre", + "Join Intaleq as a driver using my referral code!": "Rejoignez Intaleq comme chauffeur avec mon code de parrainage !", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "Jordanie", + "KM": "KM", + "Keep it up!": "Continuez comme ça !", + "Kuwait": "Koweït", + "LE": "€", + "Lady": "Dame", + "Lady Captain for girls": "Chauffeur femme pour dames", + "Lady Captains Available": "Chauffeurs femmes disponibles", + "Language": "Langue", + "Language Options": "Options de langue", + "Last Name": "Last Name", + "Last name": "Nom", + "Latest Recent Trip": "Dernier trajet récent", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Quitter", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "Vérifions la carte grise ", + "Lets check License Back Face": "Vérifions le verso du permis", + "License Categories": "Catégories de permis", + "License Type": "Type de permis", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "Lier un numéro pour les transferts", + "Listen": "Listen", + "Location": "Location", + "Location Link": "Lien de localisation", + "Location Received": "Location Received", + "Log Off": "Déconnexion", + "Log Out Page": "Page de déconnexion", + "Login": "Login", + "Login Captin": "Connexion Chauffeur", + "Login Driver": "Connexion Chauffeur", + "Logout": "Logout", + "Lowest Price Achieved": "Prix le plus bas atteint", + "Made :": "Marque :", + "Make": "Marque", + "Make is ": "La marque est : ", + "Male": "Homme", + "Map Error": "Map Error", + "Map Passenger": "Carte Passager", + "Marital Status": "État civil", + "Master's Degree": "Master", + "Maximum fare": "Tarif maximum", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Tarif minimum", + "Minute": "Minute", + "Mishwar Vip": "Trajet VIP", + "Model": "Modèle", + "Model is": "Le modèle est :", + "Morning": "Matin", + "Most Secure Methods": "Méthodes les plus sécurisées", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "Déplacez la carte pour ajuster l'épingle", + "Mute": "Mute", + "My Balance": "Mon solde", + "My Card": "Ma Carte", + "My Cared": "Mes Cartes", + "My Profile": "Mon Profil", + "My current location is:": "Ma position actuelle est :", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "MaPosition", + "N/A": "N/A", + "Name": "Nom", + "Name (Arabic)": "Nom (Arabe)", + "Name (English)": "Nom (Français/Anglais)", + "Name :": "Nom :", + "Name in arabic": "Nom en arabe", + "Name of the Passenger is ": "Le nom du passager est ", + "National ID": "CNI / Numéro National", + "National Number": "Numéro National", + "NationalID": "Numéro National / CNI", + "Nearby": "Nearby", + "Nearest Car": "Nearest Car", + "Nearest Car for you about ": "Voiture la plus proche à environ ", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Network error occurred": "Network error occurred", + "Next": "Suivant", + "Night": "Nuit", + "No": "Non", + "No ,still Waiting.": "Non, j'attends toujours.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Pas de voiture à votre emplacement. Désolé !", + "No Car or Driver Found in your area.": "Aucune voiture ou chauffeur trouvé dans votre zone.", + "No Drivers Found": "Aucun chauffeur trouvé", + "No I want": "Non je veux", + "No Notifications": "No Notifications", + "No Promo for today .": "Pas de promo pour aujourd'hui.", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "Pas encore de réponse.", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Pas de SIM ? Appelez votre chauffeur via l'appli.", + "No accepted orders? Try raising your trip fee to attract riders.": "Pas de commande acceptée ? Essayez d'augmenter votre tarif.", + "No audio files found.": "Aucun fichier audio trouvé.", + "No cars nearby": "No cars nearby", + "No contacts available": "No contacts available", + "No contacts found": "Aucun contact trouvé", + "No contacts with phone numbers were found on your device.": "Aucun contact avec numéro de téléphone trouvé sur votre appareil.", + "No driver accepted my request": "Aucun chauffeur n'a accepté ma demande", + "No drivers accepted your request yet": "Aucun chauffeur n'a encore accepté votre demande", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "Aucun chauffeur trouvé pour le moment.\nVeuillez réessayer plus tard.", + "No face detected": "Aucun visage détecté", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Aucune image sélectionnée", + "No invitation found yet!": "Aucune invitation trouvée !", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "Personne n'a accepté ? Essayez d'augmenter le tarif.", + "No passenger found for the given phone number": "Aucun passager trouvé pour ce numéro", + "No promos available right now.": "Aucune promo disponible pour le moment.", + "No ride found yet": "Aucun trajet trouvé", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No trip data available", + "No trip history found": "Aucun historique de trajet", + "No trip yet found": "Aucun trajet trouvé", + "No user found": "No user found", + "No user found for the given phone number": "Aucun utilisateur trouvé pour ce numéro", + "No wallet record found": "Aucun enregistrement de portefeuille trouvé", + "No, I don't have a code": "Non, je n'ai pas de code", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, thanks": "Non, merci", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "Non connecté", + "Not set": "Non défini", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "Notifications", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Now select start pick", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "Profession", + "Ok": "Ok", + "Ok , See you Tomorrow": "Ok, à demain", + "Ok I will go now.": "D'accord, j'y vais maintenant.", + "Old and affordable, perfect for budget rides.": "Abordable, parfait pour les petits budgets.", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "Ouvrir les paramètres", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "Ou payez en espèces", + "Order": "Commande", + "Order Accepted": "Order Accepted", + "Order Applied": "Commande passée", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Commande annulée par le passager", + "Order Details Intaleq": "Détails Commande Intaleq", + "Order Details Siro": "Order Details Siro", + "Order History": "Historique des commandes", + "Order Request Page": "Page de demande de commande", + "Order Under Review": "Order Under Review", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "Commander pour moi", + "Order for someone else": "Commander pour autrui", + "OrderId": "ID Commande", + "OrderVIP": "Commande VIP", + "Origin": "Origine", + "Other": "Autre", + "Our dedicated customer service team ensures swift resolution of any issues.": "Notre service client assure une résolution rapide des problèmes.", + "Owner Name": "Nom du propriétaire", + "Passenger": "Passenger", + "Passenger Cancel Trip": "Le passager a annulé le trajet", + "Passenger Name is ": "Le nom du passager est ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger come to you": "Le passager vient vers vous", + "Passenger name : ": "Nom du passager : ", + "Password": "Password", + "Password must br at least 6 character.": "Le mot de passe doit avoir au moins 6 caractères.", + "Paste WhatsApp location link": "Coller le lien de localisation WhatsApp", + "Paste location link here": "Collez le lien de localisation ici", + "Paste the code here": "Collez le code ici", + "Pay": "Pay", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Payer directement au chauffeur", + "Pay from my budget": "Payer de mon budget", + "Pay with Credit Card": "Payer par carte de crédit", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "Payer avec le portefeuille", + "Pay with Your": "Payer avec votre", + "Pay with Your PayPal": "Payer avec PayPal", + "Payment Failed": "Paiement échoué", + "Payment History": "Historique des paiements", + "Payment Method": "Méthode de paiement", + "Payment Options": "Options de paiement", + "Payment Successful": "Paiement réussi", + "Payments": "Paiements", + "Perfect for adventure seekers who want to experience something new and exciting": "Parfait pour les amateurs d'aventure", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Parfait pour les passagers cherchant des voitures récentes avec liberté d'itinéraire", + "Permission Required": "Permission Required", + "Permission denied": "Permission refusée", + "Personal Information": "Informations personnelles", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Le numéro est :", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is verified before": "Phone number is verified before", + "Phone number isn't an Egyptian phone number": "Phone number isn't an Egyptian phone number", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "Choisir sur la carte", + "Pick from map destination": "Pick from map destination", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "Choisissez votre destination sur la carte", + "Pick your ride location on the map - Tap to confirm": "Choisissez votre lieu sur la carte - Appuyez pour confirmer", + "Plan Your Route": "Plan Your Route", + "Plate": "Plaque", + "Plate Number": "Numéro d'immatriculation", + "Please Try anther time ": "Veuillez réessayer une autre fois ", + "Please Wait If passenger want To Cancel!": "Veuillez patienter si le passager veut annuler !", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "Veuillez vérifier votre connexion Internet", + "Please don't be late": "Please don't be late", + "Please don't be late, I'm waiting for you at the specified location.": "Please don't be late, I'm waiting for you at the specified location.", + "Please enter": "Veuillez entrer", + "Please enter Your Email.": "Veuillez entrer votre email.", + "Please enter Your Password.": "Veuillez entrer votre mot de passe.", + "Please enter a correct phone": "Veuillez entrer un numéro valide", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "Veuillez entrer un numéro de téléphone", + "Please enter a valid 16-digit card number": "Veuillez entrer un numéro de carte valide à 16 chiffres", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Veuillez entrer un code promo valide", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Veuillez entrer le code CVV", + "Please enter the cardholder name": "Veuillez entrer le nom du titulaire", + "Please enter the complete 6-digit code.": "Veuillez entrer le code complet à 6 chiffres.", + "Please enter the expiry date": "Veuillez entrer la date d'expiration", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Veuillez entrer votre ville.", + "Please enter your Question.": "Veuillez entrer votre question.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Veuillez entrer votre avis.", + "Please enter your first name.": "Veuillez entrer votre prénom.", + "Please enter your last name.": "Veuillez entrer votre nom.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Veuillez entrer votre numéro de téléphone.", + "Please go to Car Driver": "Veuillez rejoindre le chauffeur", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "Veuillez aller à la voiture maintenant ", + "Please help! Contact me as soon as possible.": "Aidez-moi ! Contactez-moi dès que possible.", + "Please make sure not to leave any personal belongings in the car.": "Veuillez vous assurer de ne rien laisser dans la voiture.", + "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": "Veuillez vérifier que vous avez tous vos effets personnels et que tout solde restant a été ajouté à votre portefeuille. Merci d'avoir choisi Intaleq.", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "Veuillez mettre votre permis dans ce cadre", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "Veuillez rester au point de prise en charge.", + "Please try again in a few moments": "Please try again in a few moments", + "Please verify your identity": "Veuillez vérifier votre identité", + "Please wait for the passenger to enter the car before starting the trip.": "Veuillez attendre que le passager monte avant de démarrer.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "Veuillez écrire la raison...", + "Point": "Point", + "Potential security risks detected. The application may not function correctly.": "Risques de sécurité potentiels détectés. L'application peut ne pas fonctionner correctement.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Preferences": "Preferences", + "Price": "Price", + "Price of trip": "Price of trip", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Politique de confidentialité", + "Professional driver": "Professional driver", + "Profile": "Profil", + "Profile photo updated": "Profile photo updated", + "Promo": "Promo", + "Promo Already Used": "Promo déjà utilisée", + "Promo Code": "Code Promo", + "Promo Code Accepted": "Code promo accepté", + "Promo Copied!": "Promo copiée !", + "Promo End !": "Fin de la promo !", + "Promo Ended": "Promo terminée", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "Code promo copié !", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "Promos", + "Promos For Today": "Promos For Today", + "Pyament Cancelled .": "Paiement annulé.", + "Qatar": "Qatar", + "Quick Access": "Quick Access", + "Quick Actions": "Actions rapides", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "Calme et Écologique", + "Rate Captain": "Noter le chauffeur", + "Rate Driver": "Noter le chauffeur", + "Rate Passenger": "Noter le passager", + "Rating is": "Rating is", + "Rating is ": "La note est ", + "Rating is ": "Rating is ", + "Rayeh Gai": "Aller-Retour", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Rayeh Gai : Service aller-retour pratique pour voyager entre les villes.", + "Reach out to us via": "Reach out to us via", + "Received empty route data.": "Received empty route data.", + "Recent Places": "Lieux récents", + "Recharge my Account": "Recharger mon compte", + "Record": "Record", + "Record saved": "Enregistrement sauvegardé", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "Trajets enregistrés (Analyse vocale & IA)", + "Recorded Trips for Safety": "Trajets enregistrés pour la sécurité", + "Refresh Map": "Actualiser la carte", + "Refuse Order": "Refuser la commande", + "Register": "S'inscrire", + "Register Captin": "Inscription Chauffeur", + "Register Driver": "Inscrire Chauffeur", + "Register as Driver": "S'inscrire comme chauffeur", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Religion", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "Renvoyer le code", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "Gestion des trajets", + "Ride Summaries": "Résumés des trajets", + "Ride Summary": "Résumé du trajet", + "Ride Today : ": "Trajet Aujourd'hui : ", + "Ride Wallet": "Portefeuille Trajet", + "Rides": "Trajets", + "Rouats of Trip": "Itinéraires du trajet", + "Route": "Route", + "Route Not Found": "Itinéraire introuvable", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "Téléphone SOS", + "SYP": "SYP", + "Safety & Security": "Sûreté et Sécurité", + "Saudi Arabia": "Arabie Saoudite", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "Enregistrer la carte", + "Save Name": "Save Name", + "Saved Sucssefully": "Enregistré avec succès", + "Scan Driver License": "Scanner le permis", + "Scan ID MklGoogle": "Scan ID MklGoogle", + "Scan Id": "Scanner ID", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Scooter", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "Chercher un autre chauffeur", + "Search for waypoint": "Recherchez un point de passage", + "Search for your Start point": "Recherchez votre point de départ", + "Search for your destination": "Recherchez votre destination", + "Searching for nearby drivers...": "Recherche de chauffeurs à proximité...", + "Searching for the nearest captain...": "Recherche du chauffeur le plus proche...", + "Secure": "Secure", + "Security Warning": "⚠️ Avertissement de sécurité", + "See you on the road!": "À bientôt sur la route !", + "Select Appearance": "Select Appearance", + "Select Country": "Sélectionner le pays", + "Select Date": "Sélectionner la date", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "Sélectionner le type de commande", + "Select Payment Amount": "Sélectionner le montant du paiement", + "Select This Ride": "Select This Ride", + "Select Time": "Sélectionner l'heure", + "Select Waiting Hours": "Sélectionner les heures d'attente", + "Select Your Country": "Sélectionnez votre pays", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Select date and time of trip", + "Select one message": "Sélectionnez un message", + "Select recorded trip": "Sélectionner le trajet enregistré", + "Select your destination": "Sélectionnez votre destination", + "Select your preferred language for the app interface.": "Sélectionnez votre langue préférée pour l'interface.", + "Selected Date": "Date sélectionnée", + "Selected Date and Time": "Date et heure sélectionnées", + "Selected Time": "Heure sélectionnée", + "Selected driver": "Chauffeur sélectionné", + "Selected file:": "Fichier sélectionné :", + "Send Email": "Send Email", + "Send Intaleq app to him": "Lui envoyer l'appli Intaleq", + "Send Invite": "Envoyer l'invitation", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Envoyer le code de vérification", + "Send Verification Code": "Envoyer le code de vérification", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Envoyer un message personnalisé", + "Send to Driver Again": "Send to Driver Again", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Session expirée. Veuillez vous reconnecter.", + "Set Destination": "Set Destination", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Définir le numéro du portefeuille", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "Définir le lieu de prise en charge", + "Setting": "Paramètre", + "Settings": "Paramètres", + "Sex is ": "Le sexe est : ", + "Share": "Share", + "Share App": "Partager l'application", + "Share Trip": "Share Trip", + "Share Trip Details": "Partager les détails du trajet", + "Share this code with your friends and earn rewards when they use it!": "Partagez ce code et gagnez des récompenses !", + "Share with friends and earn rewards": "Partagez avec des amis et gagnez des récompenses", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Afficher les invitations", + "Show Promos": "Voir les Promos", + "Show Promos to Charge": "Afficher les promos pour recharger", + "Show latest promo": "Voir les dernières promos", + "Showing": "Affichage de", + "Sign In by Apple": "Connexion via Apple", + "Sign In by Google": "Connexion via Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Se déconnecter", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "Connectez-vous avec Google pour faciliter la saisie", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Ouvrez simplement l'appli Intaleq, entrez votre destination et appuyez sur \"Commander\".", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "Désolé 😔", + "Sorry, there are no cars available of this type right now.": "Désolé, aucune voiture de ce type n'est disponible pour le moment.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Service de van spacieux idéal pour les familles et groupes. Confortable, sûr et économique.", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "Démarrer l'enregistrement", + "Start the Ride": "Démarrer la course", + "Statistics": "Statistiques", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Instructions étape par étape pour demander un trajet.", + "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 Siro app.", + "Stop": "Stop", + "Submit": "Submit", + "Submit ": "Envoyer ", + "Submit Complaint": "Envoyer la réclamation", + "Submit Question": "Soumettre une question", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "Déposer une réclamation", + "Submit rating": "Envoyer la note", + "Success": "Succès", + "Support & Info": "Support & Info", + "Support is Away": "Support is Away", + "Support is currently Online": "Support is currently Online", + "Switch Rider": "Changer de passager", + "Syria": "Syrie", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "Service de covoiturage pionnier en France. Nous priorisons la proximité avec vous.", + "System Default": "System Default", + "Take Image": "Prendre une photo", + "Take Picture Of Driver License Card": "Photo du permis de conduire", + "Take Picture Of ID Card": "Photo de la pièce d'identité", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "Appuyez sur le code promo pour le copier !", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "Destination", + "Tariff": "Tarif", + "Tariffs": "Tarifs", + "Tax Expiry Date": "Date d'expiration de la taxe", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thanks": "Merci", + "The Driver Will be in your location soon .": "Le chauffeur sera bientôt là.", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", + "The captain is responsible for the route.": "Le chauffeur est responsable de l'itinéraire.", + "The distance less than 500 meter.": "La distance est inférieure à 500 mètres.", + "The driver accept your order for": "Le chauffeur accepte votre commande pour", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "Le chauffeur a accepté votre trajet", + "The driver canceled your ride.": "Le chauffeur a annulé votre course.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "Le chauffeur a annulé le trajet pour une raison d'urgence.\nVoulez-vous chercher un autre chauffeur immédiatement ?", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "Le chauffeur est en route", + "The driver waiting you in picked location .": "Le chauffeur vous attend au lieu de prise en charge.", + "The driver waitting you in picked location .": "Le chauffeur vous attend au lieu choisi.", + "The drivers are reviewing your request": "Les chauffeurs examinent votre demande", + "The email or phone number is already registered.": "L'email ou le numéro de téléphone est déjà enregistré.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Le nom sur le casier judiciaire ne correspond pas à celui du permis. Veuillez vérifier.", + "The invitation was sent successfully": "L'invitation a été envoyée avec succès", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Le numéro national sur votre permis ne correspond pas à votre pièce d'identité.", + "The order Accepted by another Driver": "Commande acceptée par un autre chauffeur", + "The order has been accepted by another driver.": "La commande a été acceptée par un autre chauffeur.", + "The payment was approved.": "Le paiement a été approuvé.", + "The payment was not approved. Please try again.": "Le paiement n'a pas été approuvé. Réessayez.", + "The price may increase if the route changes.": "Le prix peut augmenter si l'itinéraire change.", + "The promotion period has ended.": "La période de promotion est terminée.", + "The reason is": "The reason is", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Le trajet a commencé ! N'hésitez pas à contacter les urgences ou partager votre trajet.", + "There is no Car or Driver in your area.": "Il n'y a pas de voiture ou de chauffeur dans votre zone.", + "There is no data yet.": "Il n'y a pas encore de données.", + "There is no help Question here": "Il n'y a pas de question d'aide ici", + "There is no notification yet": "Il n'y a pas encore de notification", + "There no Driver Aplly your order sorry for that ": "Aucun chauffeur n'a pris votre commande, désolé ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Trafic dense ici. Pouvez-vous suggérer un autre point ?", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "Ce montant pour tous les trajets des passagers", + "This amount for all trip I get from Passengers and Collected For me in": "Ce montant collecté pour moi dans", + "This is a scheduled notification.": "Ceci est une notification programmée.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Ceci est pour un scooter ou une moto.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "Ce numéro a déjà été invité.", + "This price is": "Ce prix est", + "This price is fixed even if the route changes for the driver.": "Ce prix est fixe même si l'itinéraire change.", + "This price may be changed": "Ce prix peut changer", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Ce trajet est déjà pris.", + "This ride type allows changes, but the price may increase": "Ce type permet des changements, mais le prix peut augmenter", + "This ride type does not allow changes to the destination or additional stops": "Ce type de trajet ne permet pas de changements", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Trajet direct à prix fixe. Le chauffeur doit suivre l'itinéraire.", + "This trip is for women only": "Ce trajet est réservé aux femmes", + "Time": "Time", + "Time to arrive": "Heure d'arrivée", + "Tip is ": "Le pourboire est ", + "To :": "To :", + "To : ": "À : ", + "To Home": "To Home", + "To Work": "To Work", + "To become a passenger, you must review and agree to the ": "Pour devenir passager, vous devez accepter les ", + "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.": "Pour devenir chauffeur sur Intaleq, téléchargez votre permis, pièce d'identité et carte grise. Notre IA vérifiera leur authenticité en quelques minutes. La soumission de faux documents entraînera une résiliation immédiate.", + "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 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 change Language the App": "To change Language the App", + "To change some Settings": "Pour changer certains paramètres", + "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.": "Pour assurer des infos précises, sélectionnez votre pays.", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Pour vous offrir la meilleure expérience, nous devons savoir où vous êtes. Votre position est utilisée pour trouver des chauffeurs à proximité.", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Pour s'inscrire comme chauffeur, visitez notre site ou contactez le support.", + "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 Siro support directly.", + "To use Wallet charge it": "Pour utiliser le portefeuille, rechargez-le", + "Today's Promos": "Promos du jour", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Recharger le portefeuille", + "Top up Wallet to continue": "Rechargez votre portefeuille pour continuer", + "Total Amount:": "Montant total :", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "Budget total par\nCarte de crédit est ", + "Total Budget from trips is ": "Budget total des trajets est ", + "Total Connection Duration:": "Durée totale de connexion :", + "Total Cost": "Coût Total", + "Total Cost is ": "Coût total est ", + "Total Duration:": "Durée totale :", + "Total For You is ": "Total pour vous est ", + "Total From Passenger is ": "Total du passager est ", + "Total Hours on month": "Heures totales sur le mois", + "Total Invites": "Total Invites", + "Total Points is": "Total des points est", + "Total Price": "Total Price", + "Total budgets on month": "Budgets totaux du mois", + "Total points is ": "Total des points est ", + "Total price from ": "Prix total de ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Voyagez dans une voiture électrique moderne et silencieuse. Un choix premium et écologique.", + "Trip Cancelled": "Trajet annulé", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Trajet annulé. Les frais seront crédités sur votre portefeuille.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Suivi du trajet", + "Trip Status:": "Trip Status:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "Trajet terminé", + "Trip finished ": "Trip finished ", + "Trip has Steps": "Le trajet a des étapes", + "Trip is Begin": "Le trajet commence", + "Trip updated successfully": "Trip updated successfully", + "Trips recorded": "Trajets enregistrés", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "Turquie", + "Type here Place": "Tapez le lieu ici", + "Type something...": "Tapez quelque chose...", + "Type your Email": "Tapez votre email", + "Type your message": "Tapez votre message", + "Type your message...": "Type your message...", + "USA": "USA", + "Uncompromising Security": "Sécurité sans compromis", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Mettre à jour", + "Update Available": "Update Available", + "Update Education": "Mettre à jour l'éducation", + "Update Gender": "Mettre à jour le sexe", + "Update Name": "Update Name", + "Uploaded": "Téléchargé", + "Use Touch ID or Face ID to confirm payment": "Utilisez Touch ID ou Face ID pour confirmer", + "Use code:": "Utilisez le code :", + "Use my invitation code to get a special gift on your first ride!": "Utilisez mon code pour un cadeau spécial lors de votre premier trajet !", + "Use my referral code:": "Utilisez mon code de parrainage :", + "User does not exist.": "L'utilisateur n'existe pas.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User with this phone number or email already exists.": "Un utilisateur avec ce numéro ou cet email existe déjà.", + "Uses cellular network": "Uses cellular network", + "VIN": "VIN", + "VIN :": "VIN :", + "VIN is": "VIN est :", + "VIP Order": "Commande VIP", + "Valid Until:": "Valable jusqu'au :", + "Van": "Van", + "Van for familly": "Van pour la famille", + "Variety of Trip Choices": "Variété de choix de trajets", + "Vehicle Details Back": "Détails du véhicule (Arrière)", + "Vehicle Details Front": "Détails du véhicule (Avant)", + "Vehicle Options": "Options de véhicule", + "Verification Code": "Code de vérification", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "Vérifier", + "Verify Email": "Vérifier l'email", + "Verify Email For Driver": "Vérifier l'email pour le chauffeur", + "Verify OTP": "Vérifier l'OTP", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Vibration pour tous les boutons", + "View Map": "View Map", + "View your past transactions": "Voir vos transactions passées", + "Visit Website/Contact Support": "Visiter le site / Contacter le support", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visitez notre site web ou contactez le support pour plus d'infos.", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "Voice Call", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "En attente du chauffeur...", + "Waiting for Driver ...": "En attente du chauffeur...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "En attente de votre position", + "Waiting...": "Waiting...", + "Wallet": "Portefeuille", + "Wallet is blocked": "Portefeuille bloqué", + "Wallet!": "Portefeuille !", + "Warning": "Warning", + "Warning: Intaleqing detected!": "Attention : Intaleqing détecté !", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Attention : Excès de vitesse détecté !", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "Désolé, pas de voitures dans votre zone !", + "We apologize 😔": "Nous nous excusons 😔", + "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", + "We are process picture please wait ": "Traitement de l'image en cours, veuillez patienter ", + "We are search for nearst driver": "Nous cherchons le chauffeur le plus proche", + "We are searching for the nearest driver": "Nous cherchons le chauffeur le plus proche", + "We are searching for the nearest driver to you": "Nous cherchons le chauffeur le plus proche", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Nous vous connectons aux chauffeurs les plus proches pour des trajets plus rapides.", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "Impossible de trouver un itinéraire valide vers cette destination. Veuillez sélectionner un autre point.", + "We have sent a verification code to your mobile number:": "Nous avons envoyé un code de vérification à votre numéro de mobile :", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Nous n'avons pas encore trouvé de chauffeurs. Pensez à augmenter votre tarif pour rendre votre offre plus attractive.", + "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.": "Nous avons besoin de votre numéro pour vous aider à recevoir des commandes.", + "We need your phone number to contact you and to help you.": "Nous avons besoin de votre numéro pour vous contacter et vous aider.", + "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.": "Nous avons remarqué une vitesse excessive (>100 km/h). Ralentissez svp.", + "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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "We regret to inform you that another driver has accepted this order.": "Nous regrettons de vous informer qu'un autre chauffeur a accepté cette commande.", + "We search nearst Driver to you": "Nous cherchons le chauffeur le plus proche", + "We sent 5 digit to your Email provided": "Nous avons envoyé 5 chiffres à votre email", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "Nous cherchons un nouveau chauffeur.\nVeuillez patienter.", + "We're here to help you 24/7": "We're here to help you 24/7", + "Welcome Back": "Welcome Back", + "Welcome Back!": "Bon retour !", + "Welcome to Intaleq!": "Bienvenue sur Intaleq !", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "Quelles sont les conditions pour devenir chauffeur ?", + "What safety measures does Intaleq offer?": "Quelles mesures de sécurité offre Intaleq ?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Quels types de véhicules sont disponibles ?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "Extracteur de localisation WhatsApp", + "When": "Quand", + "Where are you going?": "Où allez-vous ?", + "Where are you, sir?": "Where are you, sir?", + "Where to": "Où allez-vous ?", + "Where you want go ": "Où voulez-vous aller ", + "Why Choose Intaleq?": "Pourquoi choisir Intaleq ?", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "Avec Intaleq, obtenez un trajet en quelques minutes.", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "Travail", + "Work & Contact": "Travail et Contact", + "Work Saved": "Work Saved", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "Heures de travail de 12h00 à 19h00.\nVous pouvez envoyer un WhatsApp ou email.", + "Working Hours:": "Working Hours:", + "Write note": "Écrire une note", + "Wrong pickup location": "Mauvais lieu de prise en charge", + "Year": "Année", + "Year is": "L'année est :", + "Yes": "Yes", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Oui, vous pouvez annuler votre trajet sous certaines conditions (par exemple, avant l'attribution d'un chauffeur). Consultez la politique d'annulation d'Intaleq pour plus de détails.", + "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 Siro 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.": "Oui, vous pouvez annuler, mais des frais peuvent s'appliquer.", + "You Are Stopped For this Day !": "Vous êtes arrêté pour aujourd'hui !", + "You Can Cancel Trip And get Cost of Trip From": "Vous pouvez annuler et obtenir le coût de", + "You Can cancel Ride After Captain did not come in the time": "Vous pouvez annuler si le chauffeur ne vient pas à temps", + "You Dont Have Any amount in": "Vous n'avez aucun montant dans", + "You Dont Have Any places yet !": "Vous n'avez pas encore de lieux !", + "You Have": "Vous avez", + "You Have Tips": "Vous avez des pourboires", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "Vous avez refusé 3 trajets aujourd'hui \nÀ demain !", + "You Should be select reason.": "Vous devez sélectionner une raison.", + "You Should choose rate figure": "Vous devez choisir une note", + "You are Delete": "Vous supprimez", + "You are Stopped": "Vous êtes arrêté", + "You are not in near to passenger location": "Vous n'êtes pas proche du passager", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "Vous pouvez acheter des points pour rester en ligne\nvia cette liste", + "You can buy points from your budget": "Vous pouvez acheter des points de votre budget", + "You can call or record audio during this trip.": "Vous pouvez appeler ou enregistrer l'audio pendant ce trajet.", + "You can call or record audio of this trip": "Vous pouvez appeler ou enregistrer l'audio", + "You can cancel Ride now": "Vous pouvez annuler le trajet maintenant", + "You can cancel trip": "Vous pouvez annuler le trajet", + "You can change the Country to get all features": "Changez de pays pour toutes les fonctionnalités", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Vous pouvez changer la langue de l'appli", + "You can change the vibration feedback for all buttons": "Vous pouvez changer le retour de vibration pour tous les boutons", + "You can claim your gift once they complete 2 trips.": "Vous pourrez réclamer votre cadeau après qu'ils aient terminé 2 trajets.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Vous pouvez communiquer via le chat intégré une fois le trajet confirmé.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Vous pouvez nous contacter de 12h00 à 19h00.", + "You can decline a request without any cost": "Vous pouvez refuser une demande sans frais", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Vous pouvez payer en espèces ou par carte. Sélectionnez votre méthode préférée avant de confirmer.", + "You can resend in": "Vous pouvez renvoyer dans", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Partagez Intaleq avec vos amis et gagnez des récompenses.", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "Vous ne pouvez pas continuer.\nVous devez renouveler votre permis", + "You canceled VIP trip": "You canceled VIP trip", + "You deserve the gift": "Vous méritez le cadeau", + "You dont Add Emergency Phone Yet!": "Vous n'avez pas encore ajouté de téléphone d'urgence !", + "You dont have Points": "Vous n'avez pas de points", + "You have already received your gift for inviting": "Vous avez déjà reçu votre cadeau pour cette invitation", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "Vous avez déjà utilisé ce code promo.", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "Vous avez un appel du chauffeur", + "You have copied the promo code.": "Vous avez copié le code promo.", + "You have earned 20": "Vous avez gagné 20", + "You have finished all times ": "Vous avez épuisé toutes les tentatives ", + "You have got a gift for invitation": "Vous avez reçu un cadeau pour l'invitation", + "You have in account": "Vous avez sur le compte", + "You have promo!": "Vous avez une promo !", + "You must Verify email !.": "Vous devez vérifier l'email !", + "You must be charge your Account": "Vous devez recharger votre compte", + "You must restart the app to change the language.": "Vous devez redémarrer l'application pour changer la langue.", + "You should have upload it .": "Vous devez le télécharger.", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Vous devez en sélectionner un", + "You should select your country": "Vous devez sélectionner votre pays", + "You trip distance is": "La distance de votre trajet est", + "You will arrive to your destination after ": "Vous arriverez à destination après ", + "You will arrive to your destination after timer end.": "Vous arriverez après la fin du minuteur.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Vous paierez le chauffeur ou nous le récupérerons au prochain trajet", + "You will be thier in": "Vous y serez dans", + "You will choose allow all the time to be ready receive orders": "Choisissez 'Toujours autoriser' pour recevoir des commandes", + "You will choose one of above !": "Vous devez choisir l'un des choix ci-dessus !", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "Vous serez payé pour ce trajet", + "You will receive a code in SMS message": "Vous recevrez un code par SMS", + "You will receive a code in WhatsApp Messenger": "Vous recevrez un code sur WhatsApp", + "You will recieve code in sms message": "Vous recevrez un code par SMS", + "Your Account is Deleted": "Votre compte est supprimé", + "Your Budget less than needed": "Votre budget est insuffisant", + "Your Choice, Our Priority": "Votre Choix, Notre Priorité", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "La durée de votre trajet est ", + "Your Wallet balance is ": "Le solde de votre portefeuille est ", + "Your are far from passenger location": "Vous êtes loin du passager", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Vos données seront effacées après 2 semaines\nVous ne pourrez plus utiliser l'appli après 1 mois ", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Your email address", + "Your fee is ": "Vos frais sont ", + "Your invite code was successfully applied!": "Votre code d'invitation a été appliqué !", + "Your journey starts here": "Votre voyage commence ici", + "Your name": "Votre nom", + "Your order is being prepared": "Votre commande est en préparation", + "Your order sent to drivers": "Votre commande a été envoyée aux chauffeurs", + "Your password": "Your password", + "Your past trips will appear here.": "Vos trajets passés apparaîtront ici.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "Votre code d'invitation personnel est :", + "Your trip cost is": "Le coût de votre trajet est", + "Your trip distance is": "Votre distance de trajet est", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nNous privilégions aussi l'accessibilité, offrant des prix compétitifs.", + "accepted": "accepted", + "accepted your order at price": "accepted your order at price", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "Pour continuer, vous devez accepter les conditions d'utilisation et la politique de confidentialité.", + "airport": "airport", + "an error occurred": "Une erreur s'est produite : @error", + "and I have a trip on": "et j'ai un trajet sur", + "and acknowledge our": "et reconnaître notre", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq est une appli de covoiturage fiable et sûre.", + "arrival time to reach your point": "heure d'arrivée pour atteindre votre point", + "as the driver.": "as the driver.", + "before": "avant", + "begin": "begin", + "by": "by", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "change device", + "committed_to_safety": "Intaleq s'engage pour la sécurité.", + "complete profile subtitle": "Complétez votre profil pour commencer", + "complete registration button": "Terminer l'inscription", + "complete, you can claim your gift": "terminé, vous pouvez réclamer votre cadeau", + "contacts. Others were hidden because they don't have a phone number.": "contacts. Les autres sont masqués car ils n'ont pas de numéro.", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copied to clipboard", + "created time": "heure de création", + "deleted": "deleted", + "distance is": "la distance est", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "permis_de_conduire", + "due to a previous trip.": "due to a previous trip.", + "duration is": "la durée est", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "Email (Optionnel)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "Veuillez entrer le code OTP à 5 chiffres", + "face detect": "Détection de visage", + "failed to send otp": "Échec de l'envoi du code OTP.", + "first name label": "Prénom", + "first name required": "Prénom requis", + "for": "pour", + "for your first registration!": "pour votre première inscription !", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "de 07:30 à 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "de 12:00 à 15:00", + "from 23:59 till 05:30": "de 23:59 à 05:30", + "from 3 times Take Attention": "sur 3 fois, faites attention", + "from your favorites": "from your favorites", + "from your list": "de votre liste", + "get_a_ride": "Avec Intaleq, obtenez un trajet en quelques minutes.", + "get_to_destination": "Arrivez à destination rapidement.", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "allez vers le passager avant qu'il n'annule", + "has completed": "a terminé", + "hour": "heure", + "i agree": "j'accepte", + "if you don't have account": "si vous n'avez pas de compte", + "if you dont have account": "si vous n'avez pas de compte", + "if you want help you can email us here": "si vous voulez de l'aide, écrivez-nous ici", + "image verified": "image vérifiée", + "in your": "in your", + "insert amount": "insérer le montant", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "conduit une ", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "joined": "a rejoint", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "Nom", + "last name required": "Nom requis", + "login or register subtitle": "Entrez votre numéro de mobile pour vous connecter ou vous inscrire", + "m": "m", + "message From Driver": "Message du chauffeur", + "message From passenger": "Message du passager", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "Modèle :", + "my location": "ma position", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "Non similaire", + "of": "sur", + "one last step title": "Une dernière étape", + "otp sent subtitle": "Un code à 5 chiffres a été envoyé au\n@phoneNumber", + "otp sent success": "Code OTP envoyé avec succès.", + "otp verification failed": "Échec de la vérification OTP.", + "passenger agreement": "accord passager", + "pending": "pending", + "phone not verified": "phone not verified", + "phone number label": "Numéro de téléphone", + "phone number required": "Numéro de téléphone requis", + "please go to picker location exactly": "veuillez aller exactement au lieu de prise en charge", + "please order now": "Commandez maintenant", + "please wait till driver accept your order": "veuillez attendre que le chauffeur accepte", + "price is": "le prix est", + "privacy policy": "politique de confidentialité.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "Échec de l'inscription.", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "safe_and_comfortable": "Profitez d'un trajet sûr et confortable.", + "seconds": "secondes", + "security_warning": "security_warning", + "send otp button": "Envoyer le code OTP", + "server error try again": "Erreur serveur, veuillez réessayer.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "Similaire", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "conditions d'utilisation", + "the 300 points equal 300 L.E": "les 300 points égalent 300 €", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "les 300 points égalent 300 € pour vous \nAlors allez gagner votre argent", + "the 500 points equal 30 JOD": "les 500 points égalent 30 €", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "les 500 points égalent 30 € pour vous \nAlors allez gagner votre argent", + "this will delete all files from your device": "cela supprimera tous les fichiers de votre appareil", + "to arrive you.": "to arrive you.", + "token change": "Changement de jeton", + "token updated": "jeton mis à jour", + "trips": "trajets", + "type here": "tapez ici", + "unknown": "unknown", + "upgrade price": "upgrade price", + "verify and continue button": "Vérifier et continuer", + "verify your number title": "Vérifiez votre numéro", + "wait 1 minute to receive message": "attendez 1 minute pour recevoir le message", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "wallet due to a previous trip.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "Bienvenue chez Intaleq", + "welcome to siro": "welcome to siro", + "welcome user": "Bienvenue, @firstName !", + "welcome_message": "Bienvenue sur Intaleq !", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "écrire la couleur de votre voiture", + "write Expiration Date for your car": "écrire la date d'expiration", + "write Make for your car": "écrire la marque de votre voiture", + "write Model for your car": "écrire le modèle de votre voiture", + "write Year for your car": "écrire l'année de votre voiture", + "write vin for your car": "écrire le VIN de votre voiture", + "year :": "Année :", + "you canceled order": "you canceled order", + "you gain": "vous gagnez", + "you have a negative balance of": "you have a negative balance of", + "you must insert token code": "you must insert token code", + "you will pay to Driver": "Vous paierez au chauffeur", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "Vous paierez le temps du chauffeur, consultez votre portefeuille Intaleq", + "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 Siro Wallet", + "your ride is Accepted": "votre trajet est Accepté", + "your ride is applied": "votre trajet est demandé", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "Date d'expiration", + "⚠️ You need to choose an amount!": "⚠️ Vous devez choisir un montant !", + "💰 Pay with Wallet": "💰 Payer avec le portefeuille", + "💳 Pay with Credit Card": "💳 Payer par carte de crédit", +}; diff --git a/siro_rider/lib/controller/local/hi.dart b/siro_rider/lib/controller/local/hi.dart new file mode 100644 index 0000000..bcaf55b --- /dev/null +++ b/siro_rider/lib/controller/local/hi.dart @@ -0,0 +1,1715 @@ +final Map hi = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": " मैं वर्तमान में यहाँ स्थित हूँ ", + " I am using": " मैं उपयोग कर रहा हूँ", + " If you need to reach me, please contact the driver directly at": " यदि आपको मुझ तक पहुँचने की आवश्यकता हो, तो कृपया ड्राइवर से सीधे संपर्क करें", + " KM": " किमी", + " Minutes": " मिनट", + " Next as Cash !": " अगला नकद के रूप में!", + " You Earn today is ": " आपकी आज की कमाई है ", + " You Have in": " आपके पास है में", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " और हमारी गोपनीयता नीति को स्वीकार करें।", + " and acknowledge the ": " and acknowledge the ", + " as the driver.": " बतौर ड्राइवर।", + " in your": " in your", + " in your wallet": " आपके वॉलेट में", + " is ON for this month": " इस महीने के लिए ऑन है", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " टिप्स\nकुल है", + " to arrive you.": " आप तक पहुँचने के लिए।", + " to ride with": " सवारी करने के लिए साथ", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " लाइसेंस प्लेट के साथ ", + "--": "--", + ". I am at least 18 years old.": ". I am at least 18 years old.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "1. अपनी समस्या का वर्णन करें", + "10 and get 4% discount": "10 और 4% छूट पाएं", + "100 and get 11% discount": "100 और 11% छूट पाएं", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "2. रिकॉर्ड किया गया ऑडियो जोड़ें", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 और 6% छूट पाएं", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "3. विवरण और प्रतिक्रिया की समीक्षा करें", + "3000 LE": "₹3000", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 और 8% छूट पाएं", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5 अंक", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "पूर्व आरक्षण के साथ यात्रा, जो आपको सर्वश्रेष्ठ कैप्टन और कारों को चुनने की अनुमति देती है।", + "AI Page": "AI पेज", + "About Intaleq": "Intaleq के बारे में", + "About Siro": "About Siro", + "About Us": "हमारे बारे में", + "Accept": "Accept", + "Accept Order": "ऑर्डर स्वीकार करें", + "Accept Ride's Terms & Review Privacy Notice": "शर्तें स्वीकार करें और गोपनीयता नोटिस देखें", + "Accepted Ride": "स्वीकृत राइड", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "सक्रिय अवधि:", + "Active Users": "Active Users", + "Add Card": "कार्ड जोड़ें", + "Add Credit Card": "क्रेडिट कार्ड जोड़ें", + "Add Home": "घर जोड़ें", + "Add Location": "लोकेशन जोड़ें", + "Add Location 1": "लोकेशन 1 जोड़ें", + "Add Location 2": "लोकेशन 2 जोड़ें", + "Add Location 3": "लोकेशन 3 जोड़ें", + "Add Location 4": "लोकेशन 4 जोड़ें", + "Add Payment Method": "भुगतान विधि जोड़ें", + "Add Phone": "फ़ोन जोड़ें", + "Add Promo": "प्रोमो जोड़ें", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "स्टॉप्स जोड़ें", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "हमारी सुरक्षित विधियों से पैसे जोड़ें", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "पता", + "Address: ": "पता: ", + "Admin DashBoard": "एडमिन डैशबोर्ड", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "सभी के लिए किफायती", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "इस अवधि के बाद\nआप रद्द नहीं कर सकते!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "आयु है ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "अलर्ट", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "लोकेशन एक्सेस की अनुमति दें", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "भुगतान प्रक्रिया के दौरान एक त्रुटि हुई।", + "An error occurred while picking contacts:": "संपर्क चुनते समय एक त्रुटि हुई:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "एक अप्रत्याशित त्रुटि हुई। कृपया पुन: प्रयास करें।", + "App Tester Login": "App Tester Login", + "App with Passenger": "यात्री के साथ ऐप", + "Appearance": "Appearance", + "Applied": "अप्लाई किया गया", + "Apply": "Apply", + "Apply Order": "ऑर्डर लागू करें", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "आपके क्षेत्र के करीब पहुँच रहा हूँ। 3 मिनट में वहां होना चाहिए।", + "Are You sure to ride to": "क्या आप वाकई जाना चाहते हैं", + "Are you Sure to LogOut?": "क्या आप वाकई लॉग आउट करना चाहते हैं?", + "Are you sure to cancel?": "क्या आप रद्द करने के लिए निश्चित हैं?", + "Are you sure to delete recorded files": "क्या आप वाकई रिकॉर्ड की गई फ़ाइलें हटाना चाहते हैं", + "Are you sure to delete this location?": "क्या आप वाकई इस स्थान को हटाना चाहते हैं?", + "Are you sure to delete your account?": "क्या आप वाकई अपना खाता हटाना चाहते हैं?", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "क्या आप सुनिश्चित हैं? यह कार्रवाई पूर्ववत नहीं की जा सकती।", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "क्या आप इस जगह जाना चाहते हैं", + "Are you want to go to this site": "क्या आप इस साइट पर जाना चाहते हैं", + "Are you want to wait drivers to accept your order": "क्या आप चाहते हैं कि ड्राइवर आपका ऑर्डर स्वीकार करने का इंतज़ार करें", + "Arrival time": "पहुंचने का समय", + "Arrived": "Arrived", + "Associate Degree": "एसोसिएट डिग्री", + "Attach this audio file?": "क्या यह ऑडियो फ़ाइल अटैच करें?", + "Attention": "Attention", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "ऑडियो सफलतापूर्वक अपलोड हो गया।", + "Available for rides": "सवारियों के लिए उपलब्ध", + "Average of Hours of": "घंटों का औसत", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "किफायती कार", + "Bachelor's Degree": "स्नातक की डिग्री (Bachelor's)", + "Back": "Back", + "Bahrain": "बहरीन", + "Balance": "बैलेंस", + "Balance limit exceeded": "बैलेंस सीमा पार हो गई", + "Balance not enough": "बैलेंस पर्याप्त नहीं है", + "Balance:": "बैलेंस:", + "Be Slowly": "धीरे रहें", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "कृपया सटीक चित्र लेने का ध्यान रखें\nआपके पास है", + "Be sure to use it quickly! This code expires at": "जल्दी इस्तेमाल करें! यह कोड समाप्त हो जाएगा", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "चूंकि हम पास हैं, आपके पास चुनने की सुविधा है।", + "Before we start, please review our terms.": "शुरू करने से पहले, कृपया हमारी शर्तों की समीक्षा करें।", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "शहरों के लिए सबसे अच्छा विकल्प", + "Best choice for comfort car and flexible route and stops point": "आरामदायक कार और लचीले रास्ते और स्टॉप पॉइंट के लिए सबसे अच्छा विकल्प", + "Birth Date": "जन्म तिथि", + "Bonus gift": "Bonus gift", + "BookingFee": "बुकिंग फीस", + "Bottom Bar Example": "बॉटम बार उदाहरण", + "But you have a negative salary of": "लेकिन आपकी नकारात्मक आय है", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "नीचे 'मैं सहमत हूँ' चुनकर, मैंने उपयोग की शर्तों की समीक्षा की है और उनसे सहमत हूँ।", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "नीचे \"मैं सहमत हूँ\" को चुनकर, मैंने समीक्षा की है और उपयोग की शर्तों से सहमत हूँ और स्वीकार करता हूँ ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "कोड", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "कॉल समाप्त", + "Call Ended": "Call Ended", + "Call Income": "आने वाली कॉल", + "Call Income from Driver": "ड्राइवर से कॉल", + "Call Income from Passenger": "यात्री की कॉल", + "Call Left": "बची हुई कॉल्स", + "Call Options": "Call Options", + "Call Page": "कॉल पेज", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "कैमरा एक्सेस अस्वीकार कर दिया गया।", + "Camera not initialized yet": "कैमरा अभी तक शुरू नहीं हुआ", + "Camera not initilaized yet": "कैमरा अभी तक शुरू नहीं हुआ", + "Can I cancel my ride?": "क्या मैं अपनी राइड रद्द कर सकता हूँ?", + "Can we know why you want to cancel Ride ?": "क्या हम जान सकते हैं कि आप क्यों रद्द करना चाहते हैं?", + "Cancel": "रद्द करें", + "Cancel Ride": "राइड रद्द करें", + "Cancel Search": "खोज रद्द करें", + "Cancel Trip": "ट्रिप रद्द करें", + "Cancel Trip from driver": "ड्राइवर द्वारा ट्रिप रद्द", + "Canceled": "रद्द", + "Cannot apply further discounts.": "अधिक छूट लागू नहीं की जा सकती।", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "अपने पुलिस वेरिफिकेशन की तस्वीर लें", + "Capture an Image of Your Driver License": "अपने ड्राइविंग लाइसेंस की तस्वीर लें", + "Capture an Image of Your Driver's License": "अपने ड्राइविंग लाइसेंस की तस्वीर लें", + "Capture an Image of Your ID Document Back": "अपने आईडी कार्ड के पीछे की तस्वीर लें", + "Capture an Image of Your ID Document front": "अपने पहचान पत्र (Aadhaar) के सामने की तस्वीर लें", + "Capture an Image of Your car license back": "अपने आरसी (RC) के पीछे की तस्वीर लें", + "Capture an Image of Your car license front": "अपनी गाड़ी के कागज (RC) के सामने की तस्वीर लें", + "Car": "कार", + "Car Color:": "Car Color:", + "Car Details": "कार विवरण", + "Car License Card": "कार लाइसेंस कार्ड (RC)", + "Car Make:": "Car Make:", + "Car Model:": "Car Model:", + "Car Plate is ": "कार प्लेट है ", + "Car Plate:": "Car Plate:", + "Card Number": "कार्ड नंबर", + "CardID": "कार्ड आईडी", + "Cash": "नकद", + "Change Country": "देश बदलें", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "मेरा विचार बदल गया", + "Chassis": "चेसिस", + "Chat with us anytime": "हमसे कभी भी चैट करें", + "Check back later for new offers!": "नए ऑफ़र के लिए बाद में दोबारा चेक करें!", + "Choose Language": "भाषा चुनें", + "Choose a contact option": "संपर्क विकल्प चुनें", + "Choose between those Type Cars": "उन प्रकार की कारों के बीच चुनें", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "मैप से चुनें", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "वह विकल्प चुनें जो आपकी आवश्यकताओं के अनुरूप हो।", + "Choose who this order is for": "यह ऑर्डर किसके लिए है चुनें", + "Choose your ride": "Choose your ride", + "City": "शहर", + "Claim your 20 LE gift for inviting": "आमंत्रित करने के लिए अपना ₹20 का उपहार प्राप्त करें", + "Click here point": "Click here point", + "Click here to Show it in Map": "इसे मैप में दिखाने के लिए यहां क्लिक करें", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "बंद करें", + "Close panel": "Close panel", + "Closest & Cheapest": "सबसे नज़दीकी और सस्ता", + "Closest to You": "आपके सबसे करीब", + "Code": "कोड", + "Code not approved": "कोड स्वीकृत नहीं हुआ", + "Color": "रंग", + "Color is ": "रंग है: ", + "Comfort": "आराम (Comfort)", + "Comfort choice": "आरामदायक विकल्प", + "Coming": "Coming", + "Communication": "संचार", + "Complaint": "शिकायत", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "इस राइड के लिए शिकायत दर्ज नहीं की जा सकती। हो सकता है यह पूरी या शुरू न हुई हो।", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "पुष्टि करें", + "Confirm & Find a Ride": "पुष्टि करें और राइड खोजें", + "Confirm Attachment": "अटैचमेंट की पुष्टि करें", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "चयन की पुष्टि करें", + "Confirm Trip": "Confirm Trip", + "Confirm your Email": "अपना ईमेल सत्यापित करें", + "Connected": "जुड़ा हुआ", + "Connecting...": "Connecting...", + "Connection Error": "कनेक्शन त्रुटि", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "संपर्क विकल्प", + "Contact Support": "सपोर्ट से संपर्क करें", + "Contact Us": "संपर्क करें", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "संपर्क चुनने के लिए संपर्क अनुमति आवश्यक है।", + "Contact us for any questions on your order.": "अपने ऑर्डर पर किसी भी प्रश्न के लिए हमसे संपर्क करें।", + "Contacts Loaded": "संपर्क लोड हो गए", + "Continue": "जारी रखें", + "Copy": "कॉपी", + "Copy Code": "कोड कॉपी करें", + "Copy this Promo to use it in your Ride!": "अपनी राइड में उपयोग करने के लिए इस प्रोमो को कॉपी करें!", + "Cost Duration": "लागत अवधि", + "Cost Of Trip IS ": "ट्रिप की कीमत है ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "दिनों में घंटों की गिनती", + "Create Wallet to receive your money": "अपना पैसा प्राप्त करने के लिए वॉलेट बनाएं", + "Criminal Document Required": "पुलिस वेरिफिकेशन दस्तावेज़ आवश्यक है", + "Criminal Record": "पुलिस वेरिफिकेशन", + "Crop Photo": "Crop Photo", + "Cropper": "क्रॉपर", + "Current Balance": "वर्तमान बैलेंस", + "Current Location": "वर्तमान लोकेशन", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "ग्राहक नहीं मिला", + "Customer phone is not active": "ग्राहक का फोन सक्रिय नहीं है", + "DISCOUNT": "छूट", + "Dark Mode": "Dark Mode", + "Date": "तारीख", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth is": "जन्म तिथि है:", + "Date of Birth: ": "जन्म तिथि: ", + "Days": "दिन", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "मेरा खाता हटाएं", + "Delete Permanently": "स्थायी रूप से हटाएं", + "Delete Recording?": "Delete Recording?", + "Deleted": "हटा दिया गया", + "Destination": "गंतव्य", + "Destination Set": "Destination Set", + "Destination selected": "Destination selected", + "Detect Your Face ": "अपना चेहरा पहचानें ", + "Device Change Detected": "Device Change Detected", + "Direct talk with our team": "हमारी टीम से सीधे बात करें", + "Displacement": "डिस्प्लेसमेंट", + "Distance": "Distance", + "Distance To Passenger is ": "यात्री तक दूरी है ", + "Distance from Passenger to destination is ": "यात्री से गंतव्य तक की दूरी है ", + "Distance is ": "दूरी है ", + "Distance of the Ride is ": "राइड की दूरी है ", + "Do you have an invitation code from another driver?": "क्या आपके पास किसी अन्य ड्राइवर का आमंत्रण कोड है?", + "Do you want to change Home location": "क्या आप घर की लोकेशन बदलना चाहते हैं", + "Do you want to change Work location": "क्या आप काम की लोकेशन बदलना चाहते हैं", + "Do you want to pay Tips for this Driver": "क्या आप इस ड्राइवर के लिए टिप देना चाहते हैं", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "डॉ डॉक्टरेट डिग्री", + "Document Number: ": "दस्तावेज़ नंबर: ", + "Documents check": "दस्तावेज़ जाँच", + "Don't Cancel": "रद्द न करें", + "Don't forget your personal belongings.": "अपना निजी सामान न भूलें।", + "Don't forget your ride!": "Don't forget your ride!", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "हो गया", + "Don’t forget your personal belongings.": "अपना निजी सामान न भूलें।", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Download the Intaleq Driver app now and earn rewards!": "अभी Intaleq ड्राइवर ऐप डाउनलोड करें और पुरस्कार अर्जित करें!", + "Download the Intaleq app now and enjoy your ride!": "अभी Intaleq ऐप डाउनलोड करें और अपनी राइड का आनंद लें!", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "अभी ऐप डाउनलोड करें:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "ड्राइवर", + "Driver Accepted the Ride for You": "ड्राइवर ने आपके लिए राइड स्वीकार कर ली", + "Driver Applied the Ride for You": "ड्राइवर ने आपके लिए राइड अप्लाई की", + "Driver Cancelled Your Trip": "ड्राइवर ने आपकी ट्रिप रद्द कर दी", + "Driver Car Plate": "ड्राइवर कार प्लेट", + "Driver Finish Trip": "ड्राइवर ने ट्रिप समाप्त की", + "Driver Is Going To Passenger": "ड्राइवर यात्री के पास जा रहा है", + "Driver List": "Driver List", + "Driver Name": "ड्राइवर का नाम", + "Driver Name:": "Driver Name:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Driver Phone:", + "Driver Referral": "Driver Referral", + "Driver Registration": "ड्राइवर पंजीकरण", + "Driver Registration & Requirements": "ड्राइवर पंजीकरण और आवश्यकताएं", + "Driver Wallet": "ड्राइवर वॉलेट", + "Driver already has 2 trips within the specified period.": "निर्दिष्ट अवधि में ड्राइवर के पास पहले से ही 2 ट्रिप हैं।", + "Driver asked me to cancel": "ड्राइवर ने रद्द करने को कहा", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "ड्राइवर रास्ते में है", + "Driver is taking too long": "ड्राइवर बहुत समय ले रहा है", + "Driver is waiting at pickup.": "ड्राइवर पिकअप पर इंतज़ार कर रहा है।", + "Driver joined the channel": "ड्राइवर चैनल में शामिल हो गया", + "Driver left the channel": "ड्राइवर ने चैनल छोड़ दिया", + "Driver phone": "ड्राइवर का फ़ोन", + "Driver's License": "ड्राइविंग लाइसेंस", + "Drivers License Class": "ड्राइविंग लाइसेंस क्लास", + "Drivers License Class: ": "ड्राइविंग लाइसेंस क्लास: ", + "Duration To Passenger is ": "यात्री तक अवधि है ", + "Duration is": "अवधि है", + "Duration of Trip is ": "ट्रिप की अवधि है ", + "Duration of the Ride is ": "राइड की अवधि है ", + "EGP": "EGP", + "Edit Profile": "प्रोफ़ाइल संपादित करें", + "Edit Your data": "अपना डेटा संपादित करें", + "Education": "शिक्षा", + "Egypt": "मिस्र", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "इलेक्ट्रिक", + "Email": "Email", + "Email Support": "ईमेल सहायता", + "Email Us": "हमें ईमेल करें", + "Email Wrong": "ईमेल गलत है", + "Email is": "ईमेल है:", + "Email you inserted is Wrong.": "आपके द्वारा दर्ज किया गया ईमेल गलत है।", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "रोज़गार का प्रकार", + "Enable Location": "लोकेशन चालू करें", + "Enable Location Access": "Enable Location Access", + "End": "End", + "End Ride": "राइड समाप्त करें", + "Enjoy a safe and comfortable ride.": "सुरक्षित और आरामदायक सवारी का आनंद लें।", + "Enjoy competitive prices across all trip options, making travel accessible.": "प्रतिस्पर्धी कीमतों का आनंद लें।", + "Enter Your First Name": "अपना पहला नाम दर्ज करें", + "Enter a password": "Enter a password", + "Enter a valid email": "Enter a valid email", + "Enter driver's phone": "ड्राइवर का फ़ोन दर्ज करें", + "Enter phone": "फ़ोन दर्ज करें", + "Enter promo code": "प्रोमो कोड दर्ज करें", + "Enter promo code here": "प्रोमो कोड यहाँ डालें", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "प्रोमो कोड दर्ज करें और प्राप्त करें", + "Enter your City": "Enter your City", + "Enter your Note": "अपना नोट दर्ज करें", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "अपनी शिकायत यहाँ लिखें...", + "Enter your email address": "अपना ईमेल पता दर्ज करें", + "Enter your feedback here": "अपना फीडबैक यहाँ दर्ज करें", + "Enter your first name": "अपना पहला नाम दर्ज करें", + "Enter your last name": "अपना अंतिम नाम दर्ज करें", + "Enter your password": "Enter your password", + "Enter your phone number": "अपना फ़ोन नंबर दर्ज करें", + "Enter your promo code": "Enter your promo code", + "Error": "त्रुटि", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "शाम", + "Exclusive offers and discounts always with the Intaleq app": "Intaleq ऐप के साथ हमेशा विशेष ऑफ़र और छूट", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "समाप्ति तिथि", + "Expiration Date ": "समाप्ति तिथि: ", + "Expiry Date": "समाप्ति तिथि", + "Expiry Date: ": "समाप्ति तिथि: ", + "Face Detection Result": "चेहरा पहचान का परिणाम", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "खोज विफल रही, कृपया बाद में दोबारा प्रयास करें", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "सबसे तेज़ शिकायत प्रतिक्रिया", + "Favorite Places": "Favorite Places", + "Fee is": "फीस है", + "Feed Back": "प्रतिक्रिया", + "Feedback": "फीडबैक", + "Feedback data saved successfully": "फीडबैक डेटा सफलतापूर्वक सहेजा गया", + "Female": "महिला", + "Find answers to common questions": "सामान्य प्रश्नों के उत्तर खोजें", + "Finish Monitor": "निगरानी समाप्त करें", + "Finished": "Finished", + "First Name": "पहला नाम", + "First name": "पहला नाम", + "Fixed Price": "Fixed Price", + "Flag-down fee": "फ्लैग-डाउन फीस", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "ड्राइवरों के लिए", + "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 Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "आधिकारिक पूछताछ के लिए", + "Found another transport": "दूसरा वाहन मिल गया", + "Free Call": "Free Call", + "Frequently Asked Questions": "अक्सर पूछे जाने वाले प्रश्न", + "Frequently Questions": "अक्सर पूछे जाने वाले प्रश्न", + "From": "से", + "From :": "से :", + "From : ": "से: ", + "From : Current Location": "से: वर्तमान स्थान", + "From:": "From:", + "Fuel": "ईंधन", + "Full Name (Marital)": "पूरा नाम", + "FullName": "पूरा नाम", + "GPS Required Allow !.": "GPS की अनुमति आवश्यक है!", + "Gender": "लिंग", + "General": "General", + "Get": "Get", + "Get Details of Trip": "ट्रिप का विवरण प्राप्त करें", + "Get Direction": "दिशा प्राप्त करें", + "Get a discount on your first Intaleq ride!": "अपनी पहली Intaleq राइड पर छूट प्राप्त करें!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "अभी प्राप्त करें!", + "Get to your destination quickly and easily.": "अपनी मंजिल पर जल्दी और आसानी से पहुंचें।", + "Getting Started": "शुरुआत करना", + "Gift Already Claimed": "उपहार पहले ही लिया जा चुका है", + "Go To Favorite Places": "पसंदीदा स्थानों पर जाएं", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "अगले कदम पर जाएं\nकार लाइसेंस स्कैन करें।", + "Go to passenger Location now": "अब यात्री की लोकेशन पर जाएं", + "Go to this Target": "इस लक्ष्य पर जाएं", + "Go to this location": "इस लोकेशन पर जाएं", + "Grant": "Grant", + "H and": "H और", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "क्या आपके पास प्रोमो कोड है?", + "Heading your way now. Please be ready.": "अब आपके रास्ते की ओर बढ़ रहा हूँ। कृपया तैयार रहें।", + "Height: ": "ऊंचाई: ", + "Hello this is Captain": "नमस्ते यह कैप्टन है", + "Hello this is Driver": "नमस्ते यह ड्राइवर है", + "Hello! I'm inviting you to try Intaleq.": "नमस्ते! मैं आपको Intaleq आज़माने के लिए आमंत्रित कर रहा हूँ।", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hello, I'm at the agreed-upon location", + "Help Details": "मदद विवरण", + "Helping Center": "सहायता केंद्र", + "Here recorded trips audio": "यहाँ रिकॉर्ड किए गए ट्रिप्स का ऑडियो", + "Hi": "नमस्ते", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "नमस्ते, मैं अब निकल रहा हूँ", + "Hi! This is": "नमस्ते! यह है", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "नमस्ते, कहाँ जाना है ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "हाई स्कूल डिप्लोमा", + "History of Trip": "ट्रिप का इतिहास", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "How can I pay for my ride?": "मैं अपनी राइड के लिए भुगतान कैसे कर सकता हूँ?", + "How can I register as a driver?": "मैं ड्राइवर के रूप में कैसे पंजीकरण कर सकता हूँ?", + "How do I communicate with the other party (passenger/driver)?": "मैं दूसरे पक्ष से कैसे संवाद करूँ?", + "How do I request a ride?": "मैं राइड का अनुरोध कैसे करूँ?", + "How many hours would you like to wait?": "आप कितने घंटे इंतज़ार करना चाहेंगे?", + "How much longer will you be?": "How much longer will you be?", + "I Agree": "मैं सहमत हूँ", + "I Arrive your site": "मैं आपकी लोकेशन पर पहुंच गया", + "I added the wrong pick-up/drop-off location": "मैंने गलत स्थान जोड़ा", + "I am currently located at": "I am currently located at", + "I arrive you": "मैं आपके पास पहुंच गया", + "I cant register in your app in face detection ": "मैं चेहरा पहचान में आपके ऐप में रजिस्टर नहीं हो सकता ", + "I don't have a reason": "मेरे पास कोई कारण नहीं है", + "I don't need a ride anymore": "मुझे अब राइड की आवश्यकता नहीं है", + "I want to order for myself": "मैं अपने लिए ऑर्डर करना चाहता हूँ", + "I want to order for someone else": "मैं किसी और के लिए ऑर्डर करना चाहता हूँ", + "I was just trying the application": "मैं बस एप्लिकेशन आज़मा रहा था", + "I will go now": "मैं अब जाऊंगा", + "I will slow down": "मैं धीमा हो जाऊंगा", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "मैं आपका इंतज़ार कर रहा हूँ", + "I've been trying to reach you but your phone is off.": "I've been trying to reach you but your phone is off.", + "ID Documents Back": "आईडी दस्तावेज़ का पिछला हिस्सा", + "ID Documents Front": "आईडी दस्तावेज़ का सामने का हिस्सा", + "If you in Car Now. Press Start The Ride": "यदि आप कार में हैं तो राइड शुरू करें दबाएं", + "If you need assistance, contact us": "यदि आपको सहायता की आवश्यकता हो, तो हमसे संपर्क करें", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "यदि आप स्टॉप जोड़ना चाहते हैं तो यहां क्लिक करें", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "यदि आप चाहते हैं कि जब आप ऑर्डर लागू करें तो गूगल मैप ऐप सीधे चले", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "छवि पहचान का परिणाम है ", + "In-App VOIP Calls": "इन-ऐप VOIP कॉल्स", + "Including Tax": "टैक्स सहित", + "Incorrect sms code": "⚠️ गलत SMS कोड। कृपया पुनः प्रयास करें।", + "Increase Fare": "किराया बढ़ाएं", + "Increase Fee": "फीस बढ़ाएं", + "Increase Your Trip Fee (Optional)": "अपनी ट्रिप फीस बढ़ाएं (वैकल्पिक)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "किराया बढ़ाने से अधिक ड्राइवर आकर्षित हो सकते हैं। क्या आप कीमत बढ़ाना चाहेंगे?", + "Insert": "दर्ज करें", + "Insert Emergincy Number": "आपातकालीन नंबर दर्ज करें", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "अपना प्रोमो कोड डालें", + "Inspection Date": "निरीक्षण तिथि", + "InspectionResult": "निरीक्षण परिणाम", + "Intaleq": "Intaleq", + "Intaleq Balance": "Intaleq बैलेंस", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Intaleq समाप्त", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq सहायता", + "Intaleq Wallet": "Intaleq वॉलेट", + "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 एक राइड-शेयरिंग ऐप है जिसे आपकी सुरक्षा और किफायत को ध्यान में रखकर डिज़ाइन किया गया है। हम आपको आपके क्षेत्र में विश्वसनीय ड्राइवरों से जोड़ते हैं।", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq सुरक्षा के लिए प्रतिबद्ध है।", + "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 पहली राइड-शेयरिंग ऐप है जो आपको निकटतम ड्राइवरों से जोड़ती है।", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq एक राइड-हेलिंग ऐप है जो सुरक्षित, विश्वसनीय और सुलभ है।", + "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 सबसे सुरक्षित राइड-शेयरिंग ऐप है।", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq इकोनॉमी, कम्फर्ट और लग्जरी सहित कई विकल्प प्रदान करता है।", + "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 आपकी आवश्यकताओं के अनुरूप विभिन्न प्रकार के वाहन विकल्प प्रदान करता है।", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq आपकी सुविधा के लिए भुगतान के कई तरीके प्रदान करता है।", + "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 ड्राइवर सत्यापन और ट्रिप ट्रैकिंग प्रदान करता है।", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq आपकी सुरक्षा को प्राथमिकता देता है।", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq इन-ऐप चैट की कार्यक्षमता प्रदान करता है।", + "Intaleq's Response": "Intaleq's Response", + "Invalid MPIN": "अमान्य MPIN", + "Invalid OTP": "अमान्य OTP", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "आमंत्रण इस्तेमाल हो चुका है", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "निमंत्रण सफलतापूर्वक भेजा गया", + "Is the Passenger in your Car ?": "क्या यात्री आपकी कार में है?", + "Issue Date": "जारी करने की तिथि", + "IssueDate": "जारी करने की तिथि", + "JOD": "₹", + "Join": "शामिल हों", + "Join Intaleq as a driver using my referral code!": "मेरे रेफरल कोड का उपयोग करके ड्राइवर के रूप में Intaleq से जुड़ें!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "जॉर्डन", + "KM": "किमी", + "Keep it up!": "लगे रहो!", + "Kuwait": "कुवैत", + "LE": "₹", + "Lady": "महिला", + "Lady Captain for girls": "महिलाओं के लिए लेडी कैप्टन", + "Lady Captains Available": "लेडी कैप्टन उपलब्ध हैं", + "Language": "भाषा", + "Language Options": "भाषा विकल्प", + "Last Name": "Last Name", + "Last name": "अंतिम नाम", + "Latest Recent Trip": "नवीनतम हाल की ट्रिप", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "छोड़ें", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "आइए कार लाइसेंस (RC) चेक करें ", + "Lets check License Back Face": "आइए लाइसेंस के पिछले हिस्से को चेक करें", + "License Categories": "लाइसेंस श्रेणियाँ", + "License Type": "लाइसेंस का प्रकार", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "ट्रांसफर के लिए फ़ोन नंबर लिंक करें", + "Listen": "Listen", + "Location": "Location", + "Location Link": "लोकेशन लिंक", + "Location Received": "Location Received", + "Log Off": "लॉग ऑफ", + "Log Out Page": "लॉग आउट पेज", + "Login": "Login", + "Login Captin": "कैप्टन लॉगिन", + "Login Driver": "लॉगिन ड्राइवर", + "Logout": "Logout", + "Lowest Price Achieved": "सबसे कम कीमत हासिल की गई", + "Made :": "बनाया गया :", + "Make": "मेक", + "Make is ": "मेक है: ", + "Male": "पुरुष", + "Map Error": "Map Error", + "Map Passenger": "मानचित्र यात्री", + "Marital Status": "वैवाहिक स्थिति", + "Master's Degree": "मास्टर डिग्री", + "Maximum fare": "अधिकतम किराया", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "न्यूनतम किराया", + "Minute": "मिनट", + "Mishwar Vip": "Mishwar VIP", + "Model": "मॉडल", + "Model is": "मॉडल है:", + "Morning": "सुबह", + "Most Secure Methods": "सबसे सुरक्षित तरीके", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "पिन को समायोजित करने के लिए मैप को खिसकाएं", + "Mute": "Mute", + "My Balance": "मेरा बैलेंस", + "My Card": "मेरा कार्ड", + "My Cared": "मेरे कार्ड", + "My Profile": "मेरी प्रोफ़ाइल", + "My current location is:": "मेरी वर्तमान लोकेशन है:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "मेरी लोकेशन", + "N/A": "N/A", + "Name": "नाम", + "Name (Arabic)": "नाम (स्थानीय)", + "Name (English)": "नाम (अंग्रेज़ी)", + "Name :": "नाम :", + "Name in arabic": "स्थानीय नाम", + "Name of the Passenger is ": "यात्री का नाम है ", + "National ID": "आधार कार्ड", + "National Number": "आधार नंबर", + "NationalID": "आधार नंबर", + "Nearby": "Nearby", + "Nearest Car": "Nearest Car", + "Nearest Car for you about ": "आपके लिए निकटतम कार लगभग ", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Network error occurred": "Network error occurred", + "Next": "अगला", + "Night": "रात", + "No": "नहीं", + "No ,still Waiting.": "नहीं, अभी भी इंतज़ार कर रहा हूँ।", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "आपकी जगह पर कोई कार नहीं। क्षमा करें!", + "No Car or Driver Found in your area.": "आपके क्षेत्र में कोई कार या ड्राइवर नहीं मिला।", + "No Drivers Found": "कोई ड्राइवर नहीं मिला", + "No I want": "नहीं मैं चाहता हूँ", + "No Notifications": "No Notifications", + "No Promo for today .": "आज के लिए कोई प्रोमो नहीं है।", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "अभी तक कोई जवाब नहीं मिला।", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "कोई सिम कार्ड नहीं, कोई समस्या नहीं! हमारे ऐप के माध्यम से सीधे अपने ड्राइवर को कॉल करें।", + "No accepted orders? Try raising your trip fee to attract riders.": "कोई स्वीकृत ऑर्डर नहीं? सवारों को आकर्षित करने के लिए अपनी ट्रिप फीस बढ़ाने की कोशिश करें।", + "No audio files found.": "कोई ऑडियो फ़ाइल नहीं मिली।", + "No cars nearby": "No cars nearby", + "No contacts available": "No contacts available", + "No contacts found": "कोई संपर्क नहीं मिला", + "No contacts with phone numbers were found on your device.": "आपके डिवाइस पर फ़ोन नंबर वाले कोई संपर्क नहीं मिले।", + "No driver accepted my request": "किसी ड्राइवर ने मेरा अनुरोध स्वीकार नहीं किया", + "No drivers accepted your request yet": "अभी तक किसी ड्राइवर ने आपका अनुरोध स्वीकार नहीं किया", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "इस समय कोई ड्राइवर नहीं मिला।\nकृपया बाद में पुनः प्रयास करें।", + "No face detected": "कोई चेहरा पता नहीं चला", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "अभी तक कोई छवि नहीं चुनी गई", + "No invitation found yet!": "अभी तक कोई आमंत्रण नहीं मिला!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "किसी ने स्वीकार नहीं किया? किराया बढ़ाने का प्रयास करें।", + "No passenger found for the given phone number": "दिए गए फ़ोन नंबर के लिए कोई यात्री नहीं मिला", + "No promos available right now.": "अभी कोई प्रोमो उपलब्ध नहीं है।", + "No ride found yet": "अभी तक कोई सवारी नहीं मिली", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No trip data available", + "No trip history found": "कोई ट्रिप इतिहास नहीं मिला", + "No trip yet found": "अभी तक कोई ट्रिप नहीं मिला", + "No user found": "No user found", + "No user found for the given phone number": "दिए गए फ़ोन नंबर के लिए कोई उपयोगकर्ता नहीं मिला", + "No wallet record found": "कोई वॉलेट रिकॉर्ड नहीं मिला", + "No, I don't have a code": "नहीं, मेरे पास कोड नहीं है", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, thanks": "नहीं, धन्यवाद", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "जुड़ा हुआ नहीं", + "Not set": "सेट नहीं", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "सूचनाएं", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Now select start pick", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "पेशा", + "Ok": "ठीक है", + "Ok , See you Tomorrow": "ठीक है, कल मिलते हैं", + "Ok I will go now.": "ठीक है, मैं अब जा रहा हूँ।", + "Old and affordable, perfect for budget rides.": "पुरानी और सस्ती, बजट सवारी के लिए उत्तम।", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "सेटिंग्स खोलें", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "या नकद भुगतान करें", + "Order": "ऑर्डर", + "Order Accepted": "Order Accepted", + "Order Applied": "ऑर्डर लागू किया गया", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "यात्री द्वारा ऑर्डर रद्द कर दिया गया", + "Order Details Intaleq": "ऑर्डर विवरण Intaleq", + "Order Details Siro": "Order Details Siro", + "Order History": "ऑर्डर इतिहास", + "Order Request Page": "ऑर्डर अनुरोध पृष्ठ", + "Order Under Review": "Order Under Review", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "स्वयं के लिए ऑर्डर", + "Order for someone else": "किसी और के लिए ऑर्डर", + "OrderId": "ऑर्डर आईडी", + "OrderVIP": "VIP ऑर्डर", + "Origin": "मूल", + "Other": "अन्य", + "Our dedicated customer service team ensures swift resolution of any issues.": "हमारी समर्पित ग्राहक सेवा टीम मुद्दों का त्वरित समाधान सुनिश्चित करती है।", + "Owner Name": "मालिक का नाम", + "Passenger": "Passenger", + "Passenger Cancel Trip": "यात्री ने ट्रिप रद्द कर दी", + "Passenger Name is ": "यात्री का नाम है ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger come to you": "यात्री आपके पास आ रहा है", + "Passenger name : ": "यात्री का नाम : ", + "Password": "Password", + "Password must br at least 6 character.": "पासवर्ड कम से कम 6 अक्षरों का होना चाहिए।", + "Paste WhatsApp location link": "व्हाट्सएप लोकेशन लिंक पेस्ट करें", + "Paste location link here": "लोकेशन लिंक यहाँ पेस्ट करें", + "Paste the code here": "कोड यहाँ पेस्ट करें", + "Pay": "Pay", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "सीधे कैप्टन को भुगतान करें", + "Pay from my budget": "मेरे बजट से भुगतान करें", + "Pay with Credit Card": "क्रेडिट कार्ड से भुगतान करें", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "वॉलेट से भुगतान करें", + "Pay with Your": "अपने साथ भुगतान करें", + "Pay with Your PayPal": "अपने PayPal से भुगतान करें", + "Payment Failed": "भुगतान विफल हो गया", + "Payment History": "भुगतान इतिहास", + "Payment Method": "भुगतान विधि", + "Payment Options": "भुगतान विकल्प", + "Payment Successful": "भुगतान सफल", + "Payments": "भुगतान", + "Perfect for adventure seekers who want to experience something new and exciting": "उन साहसी लोगों के लिए उत्तम जो कुछ नया अनुभव करना चाहते हैं", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "नवीनतम कार मॉडल चाहने वाले यात्रियों के लिए उत्तम", + "Permission Required": "Permission Required", + "Permission denied": "अनुमति अस्वीकृत", + "Personal Information": "व्यक्तिगत जानकारी", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "फ़ोन नंबर है:", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is verified before": "Phone number is verified before", + "Phone number isn't an Egyptian phone number": "Phone number isn't an Egyptian phone number", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "मैप से चुनें", + "Pick from map destination": "Pick from map destination", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "मैप से अपनी मंजिल चुनें", + "Pick your ride location on the map - Tap to confirm": "मैप पर अपनी सवारी की लोकेशन चुनें - पुष्टि के लिए टैप करें", + "Plan Your Route": "Plan Your Route", + "Plate": "प्लेट", + "Plate Number": "प्लेट नंबर", + "Please Try anther time ": "कृपया किसी और समय प्रयास करें ", + "Please Wait If passenger want To Cancel!": "कृपया प्रतीक्षा करें यदि यात्री रद्द करना चाहे!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "कृपया अपना इंटरनेट कनेक्शन जांचें", + "Please don't be late": "Please don't be late", + "Please don't be late, I'm waiting for you at the specified location.": "Please don't be late, I'm waiting for you at the specified location.", + "Please enter": "कृपया दर्ज करें", + "Please enter Your Email.": "कृपया अपना ईमेल दर्ज करें।", + "Please enter Your Password.": "कृपया अपना पासवर्ड दर्ज करें।", + "Please enter a correct phone": "कृपया सही फ़ोन नंबर दर्ज करें", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "कृपया एक फ़ोन नंबर दर्ज करें", + "Please enter a valid 16-digit card number": "कृपया एक वैध 16 अंकों का कार्ड नंबर दर्ज करें", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "कृपया एक मान्य प्रोमो कोड डालें", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "कृपया CVV कोड दर्ज करें", + "Please enter the cardholder name": "कृपया कार्डधारक का नाम दर्ज करें", + "Please enter the complete 6-digit code.": "कृपया पूरा 6 अंकों का कोड दर्ज करें।", + "Please enter the expiry date": "कृपया समाप्ति तिथि दर्ज करें", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "कृपया अपना शहर दर्ज करें।", + "Please enter your Question.": "कृपया अपना प्रश्न दर्ज करें।", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "कृपया अपना फीडबैक दर्ज करें।", + "Please enter your first name.": "कृपया अपना पहला नाम दर्ज करें।", + "Please enter your last name.": "कृपया अपना अंतिम नाम दर्ज करें।", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "कृपया अपना फ़ोन नंबर दर्ज करें।", + "Please go to Car Driver": "कृपया ड्राइवर के पास जाएं", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "कृपया अब कार के पास जाएं ", + "Please help! Contact me as soon as possible.": "कृपया मदद करें! जितनी जल्दी हो सके मुझसे संपर्क करें।", + "Please make sure not to leave any personal belongings in the car.": "कृपया सुनिश्चित करें कि कार में कोई निजी सामान न छोड़ें।", + "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": "कृपया सुनिश्चित करें कि आपके पास आपका सारा सामान है और शेष किराया वॉलेट में जोड़ दिया गया है। Intaleq चुनने के लिए धन्यवाद।", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "कृपया अपना लाइसेंस इन सीमाओं में रखें", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "कृपया पिक-अप पॉइंट पर बने रहें।", + "Please try again in a few moments": "Please try again in a few moments", + "Please verify your identity": "कृपया अपनी पहचान सत्यापित करें", + "Please wait for the passenger to enter the car before starting the trip.": "कृपया ट्रिप शुरू करने से पहले यात्री के कार में प्रवेश करने का इंतज़ार करें।", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "कृपया कारण लिखें...", + "Point": "अंक", + "Potential security risks detected. The application may not function correctly.": "संभावित सुरक्षा जोखिमों का पता चला। एप्लिकेशन सही ढंग से काम नहीं कर सकता है।", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Preferences": "Preferences", + "Price": "Price", + "Price of trip": "Price of trip", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "गोपनीयता नीति", + "Professional driver": "Professional driver", + "Profile": "प्रोफ़ाइल", + "Profile photo updated": "Profile photo updated", + "Promo": "प्रोमो", + "Promo Already Used": "प्रोमो पहले ही इस्तेमाल हो चुका है", + "Promo Code": "प्रोमो कोड", + "Promo Code Accepted": "प्रोमो कोड स्वीकार कर लिया गया", + "Promo Copied!": "प्रोमो कॉपी हो गया!", + "Promo End !": "प्रोमो समाप्त!", + "Promo Ended": "प्रोमो समाप्त", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "प्रोमो कोड क्लिपबोर्ड पर कॉपी हो गया!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "प्रोमो", + "Promos For Today": "Promos For Today", + "Pyament Cancelled .": "भुगतान रद्द हो गया।", + "Qatar": "कतर", + "Quick Access": "Quick Access", + "Quick Actions": "त्वरित क्रियाएं", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "शांत और पर्यावरण अनुकूल", + "Rate Captain": "कैप्टन को रेट करें", + "Rate Driver": "ड्राइवर को रेट करें", + "Rate Passenger": "यात्री को रेट करें", + "Rating is": "Rating is", + "Rating is ": "रेटिंग है ", + "Rating is ": "Rating is ", + "Rayeh Gai": "आना-जाना (Round Trip)", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "आना-जाना: शहरों के बीच आसान यात्रा के लिए राउंड ट्रिप सेवा।", + "Reach out to us via": "हमसे संपर्क करें", + "Received empty route data.": "Received empty route data.", + "Recent Places": "हाल के स्थान", + "Recharge my Account": "मेरा खाता रिचार्ज करें", + "Record": "Record", + "Record saved": "रिकॉर्ड सहेजा गया", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "रिकॉर्ड की गई यात्राएं (वॉयस और AI विश्लेषण)", + "Recorded Trips for Safety": "सुरक्षा के लिए रिकॉर्ड की गई ट्रिप्स", + "Refresh Map": "नक्शा ताज़ा करें", + "Refuse Order": "ऑर्डर अस्वीकार करें", + "Register": "रजिस्टर करें", + "Register Captin": "कैप्टन रजिस्टर", + "Register Driver": "ड्राइवर रजिस्टर करें", + "Register as Driver": "बतौर ड्राइवर रजिस्टर करें", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "धर्म", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "कोड पुनः भेजें", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "राइड प्रबंधन", + "Ride Summaries": "सवारी के सारांश", + "Ride Summary": "राइड सारांश", + "Ride Today : ": "आज की सवारी: ", + "Ride Wallet": "राइड वॉलेट", + "Rides": "सवारियां", + "Rouats of Trip": "ट्रिप के रास्ते", + "Route": "Route", + "Route Not Found": "रूट नहीं मिला", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "SOS फ़ोन", + "SYP": "₹", + "Safety & Security": "सुरक्षा", + "Saudi Arabia": "सऊदी अरब", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "क्रेडिट कार्ड सहेजें", + "Save Name": "Save Name", + "Saved Sucssefully": "सफलतापूर्वक सहेजा गया", + "Scan Driver License": "ड्राइविंग लाइसेंस स्कैन करें", + "Scan ID MklGoogle": "आईडी MklGoogle स्कैन करें", + "Scan Id": "आईडी स्कैन करें", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "स्कूटर", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "दूसरे ड्राइवर की तलाश करें", + "Search for waypoint": "वेपॉइंट खोजें", + "Search for your Start point": "अपना प्रारंभिक बिंदु खोजें", + "Search for your destination": "अपनी मंजिल खोजें", + "Searching for nearby drivers...": "आस-पास के ड्राइवरों की तलाश की जा रही है...", + "Searching for the nearest captain...": "निकटतम कैप्टन की खोज की जा रही है...", + "Secure": "Secure", + "Security Warning": "⚠️ सुरक्षा चेतावनी", + "See you on the road!": "रास्ते में मिलते हैं!", + "Select Appearance": "Select Appearance", + "Select Country": "देश चुनें", + "Select Date": "तारीख चुनें", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "ऑर्डर प्रकार चुनें", + "Select Payment Amount": "भुगतान राशि चुनें", + "Select This Ride": "Select This Ride", + "Select Time": "समय चुनें", + "Select Waiting Hours": "प्रतीक्षा के घंटे चुनें", + "Select Your Country": "अपना देश चुनें", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Select date and time of trip", + "Select one message": "एक संदेश चुनें", + "Select recorded trip": "रिकॉर्ड की गई ट्रिप चुनें", + "Select your destination": "अपनी मंजिल चुनें", + "Select your preferred language for the app interface.": "ऐप इंटरफेस के लिए अपनी पसंदीदा भाषा चुनें।", + "Selected Date": "चयनित तिथि", + "Selected Date and Time": "चयनित तिथि और समय", + "Selected Time": "चयनित समय", + "Selected driver": "चयनित ड्राइवर", + "Selected file:": "चयनित फ़ाइल:", + "Send Email": "Send Email", + "Send Intaleq app to him": "उसे Intaleq ऐप भेजें", + "Send Invite": "आमंत्रण भेजें", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "सत्यापन कोड भेजें", + "Send Verification Code": "सत्यापन कोड भेजें", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "कस्टम संदेश भेजें", + "Send to Driver Again": "Send to Driver Again", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "सत्र समाप्त हो गया। कृपया पुन: लॉगिन करें।", + "Set Destination": "Set Destination", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "वॉलेट फ़ोन नंबर सेट करें", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "पिकअप लोकेशन सेट करें", + "Setting": "सेटिंग", + "Settings": "सेटिंग्स", + "Sex is ": "लिंग है: ", + "Share": "Share", + "Share App": "ऐप शेयर करें", + "Share Trip": "Share Trip", + "Share Trip Details": "ट्रिप विवरण साझा करें", + "Share this code with your friends and earn rewards when they use it!": "इस कोड को अपने दोस्तों के साथ साझा करें और पुरस्कार अर्जित करें!", + "Share with friends and earn rewards": "दोस्तों के साथ साझा करें और पुरस्कार अर्जित करें", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "आमंत्रण दिखाएं", + "Show Promos": "प्रोमो दिखाएं", + "Show Promos to Charge": "चार्ज करने के लिए प्रोमो दिखाएं", + "Show latest promo": "नवीनतम प्रोमो दिखाएं", + "Showing": "दिखा रहा है", + "Sign In by Apple": "Apple द्वारा साइन इन करें", + "Sign In by Google": "Google द्वारा साइन इन करें", + "Sign In with Google": "Sign In with Google", + "Sign Out": "साइन आउट", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "आसान ईमेल और नाम प्रविष्टि के लिए Google के साथ साइन इन करें", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "बस ऐप खोलें, गंतव्य दर्ज करें और 'राइड का अनुरोध करें' पर टैप करें।", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "क्षमा करें 😔", + "Sorry, there are no cars available of this type right now.": "क्षमा करें, इस समय इस प्रकार की कोई कार उपलब्ध नहीं है।", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "परिवारों और समूहों के लिए विशाल वैन सेवा। आरामदायक, सुरक्षित और किफायती।", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "रिकॉर्ड शुरू करें", + "Start the Ride": "राइड शुरू करें", + "Statistics": "सांख्यिकी", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Intaleq ऐप के माध्यम से राइड का अनुरोध करने के तरीके पर चरण-दर-चरण निर्देश।", + "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 Siro app.", + "Stop": "Stop", + "Submit": "Submit", + "Submit ": "जमा करें ", + "Submit Complaint": "शिकायत जमा करें", + "Submit Question": "प्रश्न जमा करें", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "शिकायत दर्ज करें", + "Submit rating": "रेटिंग सबमिट करें", + "Success": "सफलता", + "Support & Info": "Support & Info", + "Support is Away": "सहायता अभी उपलब्ध नहीं है", + "Support is currently Online": "सहायता अभी ऑनलाइन है", + "Switch Rider": "राइडर बदलें", + "Syria": "भारत", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "भारत की अग्रणी राइड-शेयरिंग सेवा।", + "System Default": "System Default", + "Take Image": "तस्वीर लें", + "Take Picture Of Driver License Card": "ड्राइविंग लाइसेंस कार्ड की तस्वीर लें", + "Take Picture Of ID Card": "आईडी कार्ड की तस्वीर लें", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "इसे कॉपी करने के लिए प्रोमो कोड पर टैप करें!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "लक्ष्य", + "Tariff": "टैरिफ", + "Tariffs": "टैरिफ", + "Tax Expiry Date": "टैक्स समाप्ति तिथि", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thanks": "धन्यवाद", + "The Driver Will be in your location soon .": "ड्राइवर जल्द ही आपकी लोकेशन पर होगा।", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", + "The captain is responsible for the route.": "कैप्टन रास्ते के लिए जिम्मेदार है।", + "The distance less than 500 meter.": "दूरी 500 मीटर से कम है।", + "The driver accept your order for": "ड्राइवर आपका ऑर्डर स्वीकार करता है के लिए", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "ड्राइवर ने आपकी ट्रिप स्वीकार कर ली है", + "The driver canceled your ride.": "ड्राइवर ने आपकी राइड रद्द कर दी।", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "ड्राइवर ने आपातकालीन कारण से यात्रा रद्द कर दी।\nक्या आप तुरंत दूसरा ड्राइवर खोजना चाहते हैं?", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "ड्राइवर आपके रास्ते में है", + "The driver waiting you in picked location .": "ड्राइवर पिक लोकेशन पर आपका इंतज़ार कर रहा है।", + "The driver waitting you in picked location .": "ड्राइवर पिक की गई लोकेशन पर आपका इंतज़ार कर रहा है।", + "The drivers are reviewing your request": "ड्राइवर आपके अनुरोध की समीक्षा कर रहे हैं", + "The email or phone number is already registered.": "ईमेल या फ़ोन नंबर पहले से पंजीकृत है।", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "आपके पुलिस रिकॉर्ड पर पूरा नाम आपके ड्राइविंग लाइसेंस से मेल नहीं खाता।", + "The invitation was sent successfully": "निमंत्रण सफलतापूर्वक भेजा गया", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "आपके ड्राइविंग लाइसेंस पर आधार नंबर आपके आईडी दस्तावेज़ से मेल नहीं खाता है।", + "The order Accepted by another Driver": "ऑर्डर दूसरे ड्राइवर ने स्वीकार कर लिया", + "The order has been accepted by another driver.": "ऑर्डर किसी अन्य ड्राइवर द्वारा स्वीकार कर लिया गया है।", + "The payment was approved.": "भुगतान स्वीकृत हो गया।", + "The payment was not approved. Please try again.": "भुगतान स्वीकृत नहीं हुआ। कृपया पुनः प्रयास करें।", + "The price may increase if the route changes.": "अगर रास्ता बदल गया तो कीमत बढ़ सकती है।", + "The promotion period has ended.": "प्रचार अवधि समाप्त हो गई है।", + "The reason is": "The reason is", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "ट्रिप शुरू हो गई है! आपातकालीन नंबरों से संपर्क करें, अपनी ट्रिप साझा करें।", + "There is no Car or Driver in your area.": "आपके क्षेत्र में कोई कार या ड्राइवर नहीं है।", + "There is no data yet.": "अभी तक कोई डेटा नहीं है।", + "There is no help Question here": "यहाँ कोई मदद प्रश्न नहीं है", + "There is no notification yet": "अभी तक कोई सूचना नहीं है", + "There no Driver Aplly your order sorry for that ": "कोई ड्राइवर आपका ऑर्डर अप्लाई नहीं कर रहा इसके लिए खेद है ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "यहाँ ट्रैफ़िक बहुत है। क्या आप वैकल्पिक पिकअप पॉइंट सुझा सकते हैं?", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "यह राशि सभी ट्रिप के लिए जो मुझे यात्रियों से मिलती है", + "This amount for all trip I get from Passengers and Collected For me in": "यह राशि सभी ट्रिप के लिए जो मुझे यात्रियों से मिलती है और मेरे लिए एकत्र की गई है", + "This is a scheduled notification.": "यह एक निर्धारित सूचना है।", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "यह स्कूटर या मोटरसाइकिल के लिए है।", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "इस फ़ोन नंबर को पहले ही आमंत्रित किया जा चुका है।", + "This price is": "यह कीमत है", + "This price is fixed even if the route changes for the driver.": "यह कीमत तय है चाहे ड्राइवर का रास्ता बदल जाए।", + "This price may be changed": "यह कीमत बदल सकती है", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "यह सवारी पहले ही किसी अन्य ड्राइवर ने ले ली है।", + "This ride type allows changes, but the price may increase": "इस प्रकार की सवारी परिवर्तनों की अनुमति देती है, लेकिन कीमत बढ़ सकती है", + "This ride type does not allow changes to the destination or additional stops": "इस प्रकार की सवारी गंतव्य में परिवर्तन या अतिरिक्त स्टॉप की अनुमति नहीं देती", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "यह ट्रिप आपके शुरुआती बिंदु से सीधे आपकी मंजिल तक एक निश्चित कीमत पर जाती है।", + "This trip is for women only": "यह ट्रिप केवल महिलाओं के लिए है", + "Time": "Time", + "Time to arrive": "पहुंचने का समय", + "Tip is ": "टिप है ", + "To :": "To :", + "To : ": "तक: ", + "To Home": "To Home", + "To Work": "To Work", + "To become a passenger, you must review and agree to the ": "यात्री बनने के लिए, आपको समीक्षा करनी होगी और सहमत होना होगा ", + "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.": "ड्राइवर बनने के लिए, आपको अपना ड्राइविंग लाइसेंस, आईडी दस्तावेज़, और गाड़ी के कागज (RC) अपलोड करने की आवश्यकता है।", + "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 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 change Language the App": "To change Language the App", + "To change some Settings": "कुछ सेटिंग्स बदलने के लिए", + "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 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 Intaleq support directly.": "रजिस्टर करने के लिए हमारी वेबसाइट पर जाएँ या समर्थन से संपर्क करें।", + "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 Siro support directly.", + "To use Wallet charge it": "वॉलेट का उपयोग करने के लिए इसे रिचार्ज करें", + "Today's Promos": "आज के प्रोमो", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "वॉलेट रिचार्ज करें", + "Top up Wallet to continue": "जारी रखने के लिए वॉलेट रिचार्ज करें", + "Total Amount:": "कुल राशि:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "क्रेडिट कार्ड द्वारा ट्रिप्स से\nकुल बजट है ", + "Total Budget from trips is ": "ट्रिप्स से कुल बजट है ", + "Total Connection Duration:": "कुल कनेक्शन अवधि:", + "Total Cost": "कुल कीमत", + "Total Cost is ": "कुल कीमत है ", + "Total Duration:": "कुल अवधि:", + "Total For You is ": "आपके लिए कुल: ", + "Total From Passenger is ": "यात्री से कुल: ", + "Total Hours on month": "महीने में कुल घंटे", + "Total Invites": "Total Invites", + "Total Points is": "कुल अंक हैं", + "Total Price": "Total Price", + "Total budgets on month": "महीने का कुल बजट", + "Total points is ": "कुल अंक हैं ", + "Total price from ": "से कुल कीमत ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "आधुनिक, शांत इलेक्ट्रिक कार में यात्रा करें। एक प्रीमियम, पर्यावरण के अनुकूल विकल्प।", + "Trip Cancelled": "ट्रिप रद्द हो गई", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "ट्रिप रद्द हो गई। ट्रिप की लागत आपके वॉलेट में जोड़ दी जाएगी।", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "ट्रिप की निगरानी", + "Trip Status:": "Trip Status:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "ट्रिप समाप्त", + "Trip finished ": "Trip finished ", + "Trip has Steps": "ट्रिप के चरण हैं", + "Trip is Begin": "ट्रिप शुरू हो गई", + "Trip updated successfully": "Trip updated successfully", + "Trips recorded": "ट्रिप्स रिकॉर्ड की गईं", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "तुर्की", + "Type here Place": "यहाँ स्थान टाइप करें", + "Type something...": "कुछ लिखें...", + "Type your Email": "अपना ईमेल टाइप करें", + "Type your message": "अपना संदेश टाइप करें", + "Type your message...": "Type your message...", + "USA": "अमेरीका", + "Uncompromising Security": "अटल सुरक्षा", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "अपडेट", + "Update Available": "Update Available", + "Update Education": "शिक्षा अपडेट करें", + "Update Gender": "लिंग अपडेट करें", + "Update Name": "Update Name", + "Uploaded": "अपलोड हो गया", + "Use Touch ID or Face ID to confirm payment": "भुगतान की पुष्टि के लिए टच आईडी या फेस आईडी का उपयोग करें", + "Use code:": "कोड का उपयोग करें:", + "Use my invitation code to get a special gift on your first ride!": "अपनी पहली राइड पर विशेष उपहार पाने के लिए मेरा आमंत्रण कोड उपयोग करें!", + "Use my referral code:": "मेरा रेफरल कोड उपयोग करें:", + "User does not exist.": "उपयोगकर्ता मौजूद नहीं है।", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User with this phone number or email already exists.": "इस फ़ोन नंबर या ईमेल वाला उपयोगकर्ता पहले से मौजूद है।", + "Uses cellular network": "Uses cellular network", + "VIN": "VIN", + "VIN :": "VIN :", + "VIN is": "VIN है:", + "VIP Order": "VIP ऑर्डर", + "Valid Until:": "तक वैध:", + "Van": "वैन", + "Van for familly": "परिवार के लिए वैन", + "Variety of Trip Choices": "ट्रिप विकल्पों की विविधता", + "Vehicle Details Back": "वाहन विवरण पीछे", + "Vehicle Details Front": "वाहन विवरण सामने", + "Vehicle Options": "वाहन विकल्प", + "Verification Code": "सत्यापन कोड", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "सत्यापित करें", + "Verify Email": "ईमेल सत्यापित करें", + "Verify Email For Driver": "ड्राइवर के लिए ईमेल सत्यापित करें", + "Verify OTP": "OTP सत्यापित करें", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "सभी बटनों के लिए वाइब्रेशन फीडबैक", + "View Map": "View Map", + "View your past transactions": "अपने पिछले लेनदेन देखें", + "Visit Website/Contact Support": "वेबसाइट पर जाएँ / समर्थन से संपर्क करें", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "ड्राइवर पंजीकरण और आवश्यकताओं के बारे में जानकारी के लिए हमारी वेबसाइट पर जाएँ या समर्थन से संपर्क करें।", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "वॉइस कॉल", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "कैप्टन का इंतज़ार...", + "Waiting for Driver ...": "ड्राइवर का इंतज़ार...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "आपकी लोकेशन का इंतज़ार है", + "Waiting...": "Waiting...", + "Wallet": "वॉलेट", + "Wallet is blocked": "वॉलेट ब्लॉक है", + "Wallet!": "वॉलेट!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "चेतावनी: तेज गति का पता चला!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "चेतावनी: तेज गति का पता चला!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "हम क्षमा चाहते हैं कि हमारे पास आपकी लोकेशन में कारें नहीं हैं!", + "We apologize 😔": "हम क्षमा चाहते हैं 😔", + "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", + "We are process picture please wait ": "हम तस्वीर प्रोसेस कर रहे हैं कृपया प्रतीक्षा करें ", + "We are search for nearst driver": "हम निकटतम ड्राइवर खोज रहे हैं", + "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 couldn't find a valid route to this destination. Please try selecting a different point.": "हमें इस गंतव्य के लिए कोई मान्य मार्ग नहीं मिला। कृपया कोई अन्य बिंदु चुनें।", + "We have sent a verification code to your mobile number:": "हमने आपके मोबाइल नंबर पर एक सत्यापन कोड भेजा है:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "हमें अभी तक कोई ड्राइवर नहीं मिला है। अपनी पेशकश को ड्राइवरों के लिए अधिक आकर्षक बनाने के लिए ट्रिप फीस बढ़ाने पर विचार करें।", + "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 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.": "हमने देखा कि Intaleq 100 किमी/घंटा से अधिक हो रहा है। कृपया अपनी सुरक्षा के लिए धीमा करें।", + "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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "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 अंक भेजे हैं", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "हम नए ड्राइवर की तलाश करेंगे।\nकृपया प्रतीक्षा करें।", + "We're here to help you 24/7": "हम आपकी सहायता के लिए 24/7 उपलब्ध हैं", + "Welcome Back": "Welcome Back", + "Welcome Back!": "वापसी पर स्वागत है!", + "Welcome to Intaleq!": "Intaleq में आपका स्वागत है!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "ड्राइवर बनने के लिए क्या आवश्यकताएं हैं?", + "What safety measures does Intaleq offer?": "Intaleq कौन से सुरक्षा उपाय प्रदान करता है?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "किस प्रकार के वाहन उपलब्ध हैं?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "व्हाट्सएप लोकेशन एक्सट्रैक्टर", + "When": "जब", + "Where are you going?": "आप कहाँ जा रहे हैं?", + "Where are you, sir?": "Where are you, sir?", + "Where to": "कहाँ जाना है?", + "Where you want go ": "आप कहाँ जाना चाहते हैं ", + "Why Choose Intaleq?": "Intaleq क्यों चुनें?", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "Intaleq के साथ, आप मिनटों में अपनी मंजिल तक सवारी प्राप्त कर सकते हैं।", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "काम", + "Work & Contact": "काम और संपर्क", + "Work Saved": "Work Saved", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "काम का समय 12:00 - 19:00 है।\nआप व्हाट्सएप संदेश या ईमेल भेज सकते हैं।", + "Working Hours:": "कार्य समय:", + "Write note": "नोट लिखें", + "Wrong pickup location": "गलत पिकअप स्थान", + "Year": "वर्ष", + "Year is": "वर्ष है:", + "Yes": "Yes", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "हाँ, आप कुछ शर्तों के तहत अपनी सवारी रद्द कर सकते हैं (जैसे, ड्राइवर सौंपे जाने से पहले)। विवरण के लिए Intaleq रद्दीकरण नीति देखें।", + "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 Siro 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 Are Stopped For this Day !": "आप इस दिन के लिए रोक दिए गए हैं!", + "You Can Cancel Trip And get Cost of Trip From": "आप ट्रिप रद्द कर सकते हैं और ट्रिप की कीमत प्राप्त कर सकते हैं से", + "You Can cancel Ride After Captain did not come in the time": "यदि कैप्टन समय पर नहीं आया तो आप राइड रद्द कर सकते हैं", + "You Dont Have Any amount in": "आपके पास कोई राशि नहीं है में", + "You Dont Have Any places yet !": "आपके पास अभी तक कोई स्थान नहीं है!", + "You Have": "आपके पास है", + "You Have Tips": "आपके पास टिप्स हैं", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "आपने इस दिन 3 राइड्स को अस्वीकार कर दिया यही कारण है \nकल मिलते हैं!", + "You Should be select reason.": "आपको कारण चुनना चाहिए।", + "You Should choose rate figure": "आपको रेटिंग चुननी चाहिए", + "You are Delete": "आप हटा रहे हैं", + "You are Stopped": "आप रुके हुए हैं", + "You are not in near to passenger location": "आप यात्री की लोकेशन के करीब नहीं हैं", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "आप ऑनलाइन रहने के लिए अंक खरीद सकते हैं\nनीचे दी गई इस सूची द्वारा", + "You can buy points from your budget": "आप अपने बजट से अंक खरीद सकते हैं", + "You can call or record audio during this trip.": "आप इस ट्रिप के दौरान कॉल या ऑडियो रिकॉर्ड कर सकते हैं।", + "You can call or record audio of this trip": "आप इस ट्रिप की कॉल या ऑडियो रिकॉर्ड कर सकते हैं", + "You can cancel Ride now": "आप अब राइड रद्द कर सकते हैं", + "You can cancel trip": "आप ट्रिप रद्द कर सकते हैं", + "You can change the Country to get all features": "आप सभी सुविधाएँ प्राप्त करने के लिए देश बदल सकते हैं", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "आप ऐप की भाषा बदल सकते हैं", + "You can change the vibration feedback for all buttons": "आप सभी बटनों के लिए वाइब्रेशन फीडबैक बदल सकते हैं", + "You can claim your gift once they complete 2 trips.": "जब वे 2 ट्रिप पूरे कर लें तो आप अपना उपहार प्राप्त कर सकते हैं।", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "राइड की पुष्टि होने पर आप ऐप में चैट कर सकते हैं।", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "आप हमसे कार्यालय समय 12:00 - 19:00 के दौरान संपर्क कर सकते हैं।", + "You can decline a request without any cost": "आप बिना किसी लागत के अनुरोध अस्वीकार कर सकते हैं", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "आप नकद या कार्ड का उपयोग करके भुगतान कर सकते हैं।", + "You can resend in": "पुनः भेज सकते हैं", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "आप Intaleq ऐप को अपने दोस्तों के साथ साझा कर सकते हैं और पुरस्कार अर्जित कर सकते हैं", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "आप हमारे साथ जारी नहीं रख सकते।\nआपको ड्राइवर लाइसेंस का नवीनीकरण करना चाहिए", + "You canceled VIP trip": "You canceled VIP trip", + "You deserve the gift": "आप उपहार के हकदार हैं", + "You dont Add Emergency Phone Yet!": "आपने अभी तक आपातकालीन फ़ोन नहीं जोड़ा है!", + "You dont have Points": "आपके पास अंक नहीं हैं", + "You have already received your gift for inviting": "आप आमंत्रित करने के लिए अपना उपहार पहले ही प्राप्त कर चुके हैं", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "आप पहले ही यह प्रोमो कोड इस्तेमाल कर चुके हैं।", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "ड्राइवर की कॉल है", + "You have copied the promo code.": "आपने प्रोमो कोड कॉपी कर लिया है।", + "You have earned 20": "आपने 20 अर्जित किए हैं", + "You have finished all times ": "आपने सभी बार समाप्त कर दिए हैं ", + "You have got a gift for invitation": "आपको आमंत्रण के लिए एक उपहार मिला है", + "You have in account": "आपके खाते में है", + "You have promo!": "आपके पास प्रोमो है!", + "You must Verify email !.": "आपको ईमेल सत्यापित करना होगा!", + "You must be charge your Account": "आपको अपना खाता चार्ज करना होगा", + "You must restart the app to change the language.": "भाषा बदलने के लिए आपको ऐप को रीस्टार्ट करना होगा।", + "You should have upload it .": "आपको इसे अपलोड करना होगा।", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "आपको एक चुनना चाहिए", + "You should select your country": "आपको अपना देश चुनना चाहिए", + "You trip distance is": "आपकी यात्रा की दूरी है", + "You will arrive to your destination after ": "आप अपनी मंजिल पर पहुंचेंगे बाद ", + "You will arrive to your destination after timer end.": "टाइमर समाप्त होने के बाद आप अपनी मंजिल पर पहुंच जाएंगे।", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "आप ड्राइवर को कीमत चुकाएंगे या हम अगली ट्रिप पर आपसे ले लेंगे", + "You will be thier in": "आप वहां होंगे", + "You will choose allow all the time to be ready receive orders": "आप ऑर्डर प्राप्त करने के लिए हर समय अनुमति चुनें", + "You will choose one of above !": "आपको ऊपर वालों में से एक को चुनना होगा!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "आपको इस ट्रिप के लिए अपने काम की कीमत मिलेगी", + "You will receive a code in SMS message": "आपको SMS संदेश में एक कोड प्राप्त होगा", + "You will receive a code in WhatsApp Messenger": "आपको व्हाट्सएप मैसेंजर में एक कोड प्राप्त होगा", + "You will recieve code in sms message": "आपको SMS संदेश में कोड प्राप्त होगा", + "Your Account is Deleted": "आपका खाता हटा दिया गया है", + "Your Budget less than needed": "आपका बजट आवश्यकता से कम है", + "Your Choice, Our Priority": "आपकी पसंद, हमारी प्राथमिकता", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "आपकी सवारी की अवधि है ", + "Your Wallet balance is ": "आपका वॉलेट बैलेंस है: ", + "Your are far from passenger location": "आप यात्री की लोकेशन से दूर हैं", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "आपका डेटा 2 सप्ताह बाद मिटा दिया जाएगा\nऔर आप 1 महीने बाद ऐप का उपयोग नहीं कर पाएंगे", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Your email address", + "Your fee is ": "आपकी फीस है ", + "Your invite code was successfully applied!": "आपका आमंत्रण कोड सफलतापूर्वक लागू हो गया!", + "Your journey starts here": "आपकी यात्रा यहाँ से शुरू होती है", + "Your name": "आपका नाम", + "Your order is being prepared": "आपका ऑर्डर तैयार हो रहा है", + "Your order sent to drivers": "आपका ऑर्डर ड्राइवरों को भेज दिया गया", + "Your password": "Your password", + "Your past trips will appear here.": "आपकी पिछली ट्रिप्स यहाँ दिखाई देंगी।", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "आपका व्यक्तिगत आमंत्रण कोड है:", + "Your trip cost is": "आपकी ट्रिप की कीमत है", + "Your trip distance is": "आपकी ट्रिप की दूरी है", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nहम किफायत को भी प्राथमिकता देते हैं, प्रतिस्पर्धी मूल्य निर्धारण की पेशकश करते हैं।", + "accepted": "accepted", + "accepted your order at price": "accepted your order at price", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "जारी रखने के लिए, आपको उपयोग की शर्तों और गोपनीयता नीति की समीक्षा करनी चाहिए और सहमत होना चाहिए।", + "airport": "airport", + "an error occurred": "एक त्रुटि हुई: @error", + "and I have a trip on": "और मेरे पास एक ट्रिप है पर", + "and acknowledge our": "और स्वीकार करें हमारी", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq एक सुरक्षित, विश्वसनीय और सुलभ राइड-हेलिंग ऐप है।", + "arrival time to reach your point": "आपके पॉइंट तक पहुंचने का समय", + "as the driver.": "as the driver.", + "before": "पहले", + "begin": "begin", + "by": "by", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "change device", + "committed_to_safety": "Intaleq सुरक्षा के लिए प्रतिबद्ध है।", + "complete profile subtitle": "शुरू करने के लिए प्रोफाइल पूरा करें", + "complete registration button": "पंजीकरण पूरा करें", + "complete, you can claim your gift": "पूरा, आप अपना उपहार प्राप्त कर सकते हैं", + "contacts. Others were hidden because they don't have a phone number.": "संपर्क। अन्य छिपा दिए गए क्योंकि उनके पास फ़ोन नंबर नहीं है।", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copied to clipboard", + "created time": "बनाने का समय", + "deleted": "deleted", + "distance is": "दूरी है", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "ड्राइविंग लाइसेंस", + "due to a previous trip.": "due to a previous trip.", + "duration is": "अवधि है", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "ईमेल (वैकल्पिक)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "कृपया 5 अंकों का OTP दर्ज करें", + "face detect": "चेहरा पहचान (Face Detect)", + "failed to send otp": "OTP भेजने में विफल।", + "first name label": "पहला नाम", + "first name required": "पहला नाम आवश्यक है", + "for": "के लिए", + "for your first registration!": "आपके पहले पंजीकरण के लिए!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 से 10:30 तक", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 से 15:00 तक", + "from 23:59 till 05:30": "23:59 से 05:30 तक", + "from 3 times Take Attention": "3 बार से ध्यान दें", + "from your favorites": "from your favorites", + "from your list": "आपकी सूची से", + "get_a_ride": "Intaleq के साथ, आप मिनटों में राइड प्राप्त कर सकते हैं।", + "get_to_destination": "जल्दी और आसानी से अपनी मंजिल पर पहुंचें।", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "यात्री के ट्रिप रद्द करने से पहले\nअपनी यात्री की लोकेशन पर जाएं", + "has completed": "पूरा कर लिया है", + "hour": "घंटा", + "i agree": "मैं सहमत हूँ", + "if you don't have account": "अगर आपके पास खाता नहीं है", + "if you dont have account": "यदि आपके पास खाता नहीं है", + "if you want help you can email us here": "यदि आप मदद चाहते हैं तो आप हमें यहां ईमेल कर सकते हैं", + "image verified": "छवि सत्यापित", + "in your": "in your", + "insert amount": "राशि डालें", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "चला रहा है एक ", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "joined": "शामिल हुआ", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "अंतिम नाम", + "last name required": "अंतिम नाम आवश्यक है", + "login or register subtitle": "लॉगिन या रजिस्टर करने के लिए अपना मोबाइल नंबर दर्ज करें", + "m": "मिनट", + "message From Driver": "ड्राइवर का संदेश", + "message From passenger": "यात्री का संदेश", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "मॉडल :", + "my location": "मेरी लोकेशन", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "समान नहीं", + "of": "में से", + "one last step title": "एक आखिरी कदम", + "otp sent subtitle": "एक 5 अंकों का कोड भेजा गया\n@phoneNumber", + "otp sent success": "OTP व्हाट्सएप पर सफलतापूर्वक भेजा गया।", + "otp verification failed": "OTP सत्यापन विफल रहा।", + "passenger agreement": "यात्री समझौता", + "pending": "pending", + "phone not verified": "phone not verified", + "phone number label": "फ़ोन नंबर", + "phone number required": "फ़ोन नंबर आवश्यक है", + "please go to picker location exactly": "कृपया बिल्कुल उसी लोकेशन पर जाएं जहां से उठाना है", + "please order now": "अभी ऑर्डर करें", + "please wait till driver accept your order": "कृपया प्रतीक्षा करें जब तक ड्राइवर आपका ऑर्डर स्वीकार न करे", + "price is": "कीमत है", + "privacy policy": "गोपनीयता नीति।", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "पंजीकरण विफल रहा।", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "safe_and_comfortable": "एक सुरक्षित और आरामदायक राइड का आनंद लें।", + "seconds": "सेकंड", + "security_warning": "security_warning", + "send otp button": "OTP भेजें", + "server error try again": "सर्वर त्रुटि, पुनः प्रयास करें।", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "ملتا جلتا (Similar)", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "उपयोग की शर्तें", + "the 300 points equal 300 L.E": "300 अंक 300 रुपये के बराबर हैं", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "300 अंक आपके लिए 300 रुपये के बराबर हैं \nतो जाएं और अपने पैसे कमाएं", + "the 500 points equal 30 JOD": "500 पॉइंट 30 रुपये के बराबर हैं", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "500 पॉइंट आपके लिए 30 रुपये के बराबर हैं \nतो जाएं और अपने पैसे कमाएं", + "this will delete all files from your device": "यह आपके डिवाइस से सभी फ़ाइलें हटा देगा", + "to arrive you.": "to arrive you.", + "token change": "टोकन परिवर्तन", + "token updated": "टोकन अपडेट हो गया", + "trips": "ट्रिप्स", + "type here": "यहाँ टाइप करें", + "unknown": "unknown", + "upgrade price": "upgrade price", + "verify and continue button": "सत्यापित करें और जारी रखें", + "verify your number title": "अपना नंबर सत्यापित करें", + "wait 1 minute to receive message": "संदेश प्राप्त करने के लिए 1 मिनट प्रतीक्षा करें", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "wallet due to a previous trip.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "Intaleq में आपका स्वागत है", + "welcome to siro": "welcome to siro", + "welcome user": "स्वागत है, @firstName!", + "welcome_message": "Intaleq में आपका स्वागत है!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "अपनी कार के लिए रंग लिखें", + "write Expiration Date for your car": "अपनी कार के लिए समाप्ति तिथि लिखें", + "write Make for your car": "अपनी कार के लिए मेक लिखें", + "write Model for your car": "अपनी कार के लिए मॉडल लिखें", + "write Year for your car": "अपनी कार के लिए वर्ष लिखें", + "write vin for your car": "अपनी कार के लिए vin लिखें", + "year :": "वर्ष :", + "you canceled order": "you canceled order", + "you gain": "आपने प्राप्त किया", + "you have a negative balance of": "you have a negative balance of", + "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 Intaleq Wallet": "आप ड्राइवर के समय की कीमत चुकाएंगे, अपना Intaleq वॉलेट देखें", + "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 Siro Wallet", + "your ride is Accepted": "आपकी राइड स्वीकार कर ली गई है", + "your ride is applied": "आपकी राइड लागू हो गई है", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "समाप्ति तिथि", + "⚠️ You need to choose an amount!": "⚠️ आपको एक राशि चुनने की आवश्यकता है!", + "💰 Pay with Wallet": "💰 वॉलेट से भुगतान करें", + "💳 Pay with Credit Card": "💳 क्रेडिट कार्ड से भुगतान करें", +}; diff --git a/siro_rider/lib/controller/local/it.dart b/siro_rider/lib/controller/local/it.dart new file mode 100644 index 0000000..e2dea69 --- /dev/null +++ b/siro_rider/lib/controller/local/it.dart @@ -0,0 +1,1715 @@ +final Map it = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": " Sono a ", + " I am using": " Uso", + " If you need to reach me, please contact the driver directly at": " Contatta l'autista al", + " KM": " KM", + " Minutes": " Minuti", + " Next as Cash !": " Prossimo in contanti!", + " You Earn today is ": " Guadagno oggi: ", + " You Have in": " Hai in", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " e l'Informativa sulla Privacy.", + " and acknowledge the ": " and acknowledge the ", + " as the driver.": " come autista.", + " in your": " in your", + " in your wallet": " nel portafoglio", + " is ON for this month": " è ON questo mese", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " mance\nTotale è", + " to arrive you.": " per arrivare.", + " to ride with": " per viaggiare con", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " con targa ", + "--": "--", + ". I am at least 18 years old.": ". I am at least 18 years old.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "1. Descrivi il problema", + "10 and get 4% discount": "10 e ottieni 4% sconto", + "100 and get 11% discount": "100 e ottieni 11% sconto", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "2. Allega audio registrato", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 e ottieni 6% sconto", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "3. Rivedi dettagli e risposta", + "3000 LE": "30 €", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 e ottieni 8% sconto", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5 cifre", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Viaggio con prenotazione, scegli i migliori autisti e auto.", + "AI Page": "Pagina AI", + "About Intaleq": "Informazioni su Intaleq", + "About Siro": "About Siro", + "About Us": "Chi siamo", + "Accept": "Accept", + "Accept Order": "Accetta Ordine", + "Accept Ride's Terms & Review Privacy Notice": "Accetta Termini e Privacy", + "Accepted Ride": "Corsa accettata", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "Durata attiva:", + "Active Users": "Active Users", + "Add Card": "Aggiungi carta", + "Add Credit Card": "Aggiungi carta credito", + "Add Home": "Aggiungi Casa", + "Add Location": "Aggiungi Posizione", + "Add Location 1": "Aggiungi Posizione 1", + "Add Location 2": "Aggiungi Posizione 2", + "Add Location 3": "Aggiungi Posizione 3", + "Add Location 4": "Aggiungi Posizione 4", + "Add Payment Method": "Aggiungi metodo pagamento", + "Add Phone": "Aggiungi telefono", + "Add Promo": "Aggiungi Promo", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Aggiungi Fermate", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "Aggiungi fondi con i nostri metodi sicuri", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Indirizzo", + "Address: ": "Indirizzo: ", + "Admin DashBoard": "Dashboard Admin", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "Conveniente per tutti", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "Dopo questo\nNon puoi annullare!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "Età: ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "Avvisi", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "Consenti accesso posizione", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "Errore pagamento.", + "An error occurred while picking contacts:": "Errore durante la selezione dei contatti:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "Si è verificato un errore imprevisto. Riprova.", + "App Tester Login": "App Tester Login", + "App with Passenger": "App con Passeggero", + "Appearance": "Appearance", + "Applied": "Richiesto", + "Apply": "Apply", + "Apply Order": "Accetta ordine", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "Vicino. Lì in 3 minuti.", + "Are You sure to ride to": "Sicuro di andare a", + "Are you Sure to LogOut?": "Sicuro di uscire?", + "Are you sure to cancel?": "Sicuro di annullare?", + "Are you sure to delete recorded files": "Eliminare file?", + "Are you sure to delete this location?": "Sei sicuro di voler eliminare questa posizione?", + "Are you sure to delete your account?": "Sicuro di eliminare?", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "Sei sicuro? Questa azione non può essere annullata.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Vuoi andare in questo luogo?", + "Are you want to go to this site": "Vuoi andare qui?", + "Are you want to wait drivers to accept your order": "Vuoi attendere accettazione?", + "Arrival time": "Ora arrivo", + "Arrived": "Arrived", + "Associate Degree": "Laurea breve", + "Attach this audio file?": "Allegare questo file audio?", + "Attention": "Attention", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Audio caricato con successo.", + "Available for rides": "Disponibile", + "Average of Hours of": "Media ore", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Auto Economica", + "Bachelor's Degree": "Laurea triennale", + "Back": "Back", + "Bahrain": "Bahrain", + "Balance": "Saldo", + "Balance limit exceeded": "Limite saldo superato", + "Balance not enough": "Saldo insufficiente", + "Balance:": "Saldo:", + "Be Slowly": "Vai piano", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "Fai foto accurate\nHai", + "Be sure to use it quickly! This code expires at": "Usalo presto! Questo codice scade il", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Flessibilità di scelta.", + "Before we start, please review our terms.": "Prima di iniziare, rivedi i nostri termini.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Migliore scelta per città", + "Best choice for comfort car and flexible route and stops point": "Auto comfort e percorso flessibile", + "Birth Date": "Data di nascita", + "Bonus gift": "Bonus gift", + "BookingFee": "Costo Prenotazione", + "Bottom Bar Example": "Esempio", + "But you have a negative salary of": "Saldo negativo:", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Selezionando 'Accetto', confermo di aver letto termini e privacy. Ho 18 anni.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Selezionando \"Accetto\", accetto i Termini d'Uso e ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "CODICE", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "Chiamata terminata", + "Call Ended": "Call Ended", + "Call Income": "Chiamata in arrivo", + "Call Income from Driver": "Chiamata dall'autista", + "Call Income from Passenger": "Chiamata dal passeggero", + "Call Left": "Chiamate rimaste", + "Call Options": "Call Options", + "Call Page": "Pagina chiamata", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "Accesso camera negato.", + "Camera not initialized yet": "Camera non pronta", + "Camera not initilaized yet": "Camera non pronta", + "Can I cancel my ride?": "Posso annullare la corsa?", + "Can we know why you want to cancel Ride ?": "Perché vuoi annullare?", + "Cancel": "Annulla", + "Cancel Ride": "Annulla corsa", + "Cancel Search": "Annulla ricerca", + "Cancel Trip": "Annulla corsa", + "Cancel Trip from driver": "Corsa annullata dall'autista", + "Canceled": "Annullato", + "Cannot apply further discounts.": "Niente più sconti.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Cattura immagine del Casellario Giudiziale", + "Capture an Image of Your Driver License": "Cattura immagine della patente", + "Capture an Image of Your Driver's License": "Foto patente di guida", + "Capture an Image of Your ID Document Back": "Foto retro documento identità", + "Capture an Image of Your ID Document front": "Foto fronte documento identità", + "Capture an Image of Your car license back": "Foto retro libretto circolazione", + "Capture an Image of Your car license front": "Foto fronte libretto circolazione", + "Car": "Auto", + "Car Color:": "Car Color:", + "Car Details": "Dettagli Auto", + "Car License Card": "Libretto Circolazione", + "Car Make:": "Car Make:", + "Car Model:": "Car Model:", + "Car Plate is ": "Targa: ", + "Car Plate:": "Car Plate:", + "Card Number": "Numero Carta", + "CardID": "ID Carta", + "Cash": "Contanti", + "Change Country": "Cambia Paese", + "Change Home location ?": "تغيير موقع المنزل؟", + "Change Photo": "Change Photo", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location ?": "تغيير موقع العمل؟", + "Changed my mind": "Ho cambiato idea", + "Chassis": "Telaio", + "Chat with us anytime": "Chatta con noi in qualsiasi momento", + "Check back later for new offers!": "Controlla più tardi per nuove offerte!", + "Choose Language": "Scegli lingua", + "Choose a contact option": "Scegli contatto", + "Choose between those Type Cars": "Scegli tipo auto", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "Scegli da Mappa", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "Scegli l'opzione adatta a te.", + "Choose who this order is for": "Per chi è questo ordine", + "Choose your ride": "Choose your ride", + "City": "Città", + "Claim your 20 LE gift for inviting": "Richiedi il tuo regalo di 20 € per l'invito", + "Click here point": "Click here point", + "Click here to Show it in Map": "Mostra su Mappa", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "Chiudi", + "Close panel": "Close panel", + "Closest & Cheapest": "Più vicino ed economico", + "Closest to You": "Più vicino a te", + "Code": "Codice", + "Code not approved": "Codice non approvato", + "Color": "Colore", + "Color is ": "Colore: ", + "Comfort": "Comfort", + "Comfort choice": "Scelta comfort", + "Coming": "Coming", + "Communication": "Comunicazione", + "Complaint": "Reclamo", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Impossibile presentare reclamo per questa corsa. Potrebbe non essere stata completata o iniziata.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "Conferma", + "Confirm & Find a Ride": "Conferma e trova corsa", + "Confirm Attachment": "Conferma allegato", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "Conferma selezione", + "Confirm Trip": "Confirm Trip", + "Confirm your Email": "Conferma la tua email", + "Connected": "Connesso", + "Connecting...": "Connecting...", + "Connection Error": "Errore di connessione", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "Opzioni contatto", + "Contact Support": "Contatta supporto", + "Contact Us": "Contattaci", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "È richiesto il permesso ai contatti per selezionarli.", + "Contact us for any questions on your order.": "Contattaci per domande.", + "Contacts Loaded": "Contatti caricati", + "Continue": "Continua", + "Copy": "Copia", + "Copy Code": "Copia codice", + "Copy this Promo to use it in your Ride!": "Copia questa promo!", + "Cost Duration": "Costo Durata", + "Cost Of Trip IS ": "Costo: ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "Ore per giorni", + "Create Wallet to receive your money": "Crea Portafoglio", + "Criminal Document Required": "Casellario Giudiziale richiesto", + "Criminal Record": "Casellario Giudiziale", + "Crop Photo": "Crop Photo", + "Cropper": "Ritaglia", + "Current Balance": "Saldo attuale", + "Current Location": "Posizione attuale", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Cliente non trovato", + "Customer phone is not active": "Il telefono del cliente non è attivo", + "DISCOUNT": "SCONTO", + "Dark Mode": "Dark Mode", + "Date": "Data", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth is": "Data Nascita:", + "Date of Birth: ": "Data di Nascita: ", + "Days": "Giorni", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "Elimina il mio account", + "Delete Permanently": "Elimina definitivamente", + "Delete Recording?": "Delete Recording?", + "Deleted": "Eliminato", + "Destination": "Destinazione", + "Destination Set": "Destination Set", + "Destination selected": "Destination selected", + "Detect Your Face ": "Rileva Volto ", + "Device Change Detected": "Device Change Detected", + "Direct talk with our team": "Parla direttamente con il nostro team", + "Displacement": "Cilindrata", + "Distance": "Distance", + "Distance To Passenger is ": "Distanza verso Passeggero: ", + "Distance from Passenger to destination is ": "Distanza Passeggero da destinazione: ", + "Distance is ": "Distanza: ", + "Distance of the Ride is ": "Distanza corsa: ", + "Do you have an invitation code from another driver?": "Hai un codice invito?", + "Do you want to change Home location": "Cambiare Casa", + "Do you want to change Work location": "Cambiare Lavoro", + "Do you want to pay Tips for this Driver": "Vuoi dare la mancia?", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "Dottorato", + "Document Number: ": "Numero Documento: ", + "Documents check": "Controllo documenti", + "Don't Cancel": "Non annullare", + "Don't forget your personal belongings.": "Non dimenticare i tuoi effetti personali.", + "Don't forget your ride!": "Don't forget your ride!", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "Fatto", + "Don’t forget your personal belongings.": "Non dimenticare i tuoi effetti personali.", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Download the Intaleq Driver app now and earn rewards!": "Scarica l'app Intaleq Driver e guadagna premi!", + "Download the Intaleq app now and enjoy your ride!": "Scarica l'app Intaleq e goditi il viaggio!", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Scarica l'app ora:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Autista", + "Driver Accepted the Ride for You": "L'autista ha accettato la corsa per te", + "Driver Applied the Ride for You": "L'autista ha richiesto la corsa per te", + "Driver Cancelled Your Trip": "L'autista ha annullato la tua corsa", + "Driver Car Plate": "Targa Autista", + "Driver Finish Trip": "L'autista ha terminato la corsa", + "Driver Is Going To Passenger": "L'autista sta andando dal passeggero", + "Driver List": "Driver List", + "Driver Name": "Nome Autista", + "Driver Name:": "Driver Name:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Driver Phone:", + "Driver Referral": "Driver Referral", + "Driver Registration": "Registrazione Autista", + "Driver Registration & Requirements": "Registrazione Autista e Requisiti", + "Driver Wallet": "Portafoglio Autista", + "Driver already has 2 trips within the specified period.": "L'autista ha già 2 viaggi nel periodo specificato.", + "Driver asked me to cancel": "L'autista mi ha chiesto di annullare", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "Autista in arrivo", + "Driver is taking too long": "L'autista ci mette troppo", + "Driver is waiting at pickup.": "Autista in attesa.", + "Driver joined the channel": "L'autista si è unito al canale", + "Driver left the channel": "L'autista ha lasciato il canale", + "Driver phone": "Telefono Autista", + "Driver's License": "Patente di guida", + "Drivers License Class": "Classe Patente", + "Drivers License Class: ": "Classe Patente: ", + "Duration To Passenger is ": "Durata verso Passeggero: ", + "Duration is": "Durata:", + "Duration of Trip is ": "Durata viaggio: ", + "Duration of the Ride is ": "Durata corsa: ", + "EGP": "EGP", + "Edit Profile": "Modifica profilo", + "Edit Your data": "Modifica dati", + "Education": "Istruzione", + "Egypt": "Egitto", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "Elettrica", + "Email": "Email", + "Email Support": "Supporto via email", + "Email Us": "Scrivici", + "Email Wrong": "Email errata", + "Email is": "Email:", + "Email you inserted is Wrong.": "L'email è sbagliata.", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "Tipo di impiego", + "Enable Location": "Attiva posizione", + "Enable Location Access": "Enable Location Access", + "End": "End", + "End Ride": "Fine corsa", + "Enjoy a safe and comfortable ride.": "Goditi una corsa sicura e comoda.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Prezzi competitivi.", + "Enter Your First Name": "Inserisci Nome", + "Enter a password": "Enter a password", + "Enter a valid email": "Enter a valid email", + "Enter driver's phone": "Inserisci telefono autista", + "Enter phone": "Inserisci telefono", + "Enter promo code": "Inserisci codice", + "Enter promo code here": "Codice qui", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "Inserisci codice e ottieni", + "Enter your City": "Enter your City", + "Enter your Note": "Inserisci nota", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Inserisci qui il tuo reclamo...", + "Enter your email address": "Inserisci la tua email", + "Enter your feedback here": "Inserisci feedback", + "Enter your first name": "Inserisci il tuo nome", + "Enter your last name": "Inserisci il tuo cognome", + "Enter your password": "Enter your password", + "Enter your phone number": "Inserisci il tuo numero", + "Enter your promo code": "Enter your promo code", + "Error": "Errore", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "Sera", + "Exclusive offers and discounts always with the Intaleq app": "Offerte esclusive", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "Data scadenza", + "Expiration Date ": "Scadenza: ", + "Expiry Date": "Data scadenza", + "Expiry Date: ": "Scadenza: ", + "Face Detection Result": "Risultato rilevamento volto", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "Ricerca non riuscita, riprova più tardi", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "Risposta reclami veloce", + "Favorite Places": "Favorite Places", + "Fee is": "Tariffa:", + "Feed Back": "Feedback", + "Feedback": "Feedback", + "Feedback data saved successfully": "Feedback salvato", + "Female": "Femmina", + "Find answers to common questions": "Trova risposte", + "Finish Monitor": "Termina monitoraggio", + "Finished": "Finished", + "First Name": "Nome", + "First name": "Nome", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Tariffa base", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "Per Autisti", + "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": "Prezzo dinamico o tempo/distanza.", + "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "Per richieste ufficiali", + "Found another transport": "Ho trovato un altro mezzo", + "Free Call": "Free Call", + "Frequently Asked Questions": "Domande Frequenti", + "Frequently Questions": "Domande Frequenti", + "From": "Da", + "From :": "Da:", + "From : ": "Da: ", + "From : Current Location": "Da: Posizione attuale", + "From:": "From:", + "Fuel": "Carburante", + "Full Name (Marital)": "Nome completo", + "FullName": "Nome completo", + "GPS Required Allow !.": "GPS richiesto!", + "Gender": "Genere", + "General": "General", + "Get": "Get", + "Get Details of Trip": "Dettagli", + "Get Direction": "Indicazioni", + "Get a discount on your first Intaleq ride!": "Ottieni uno sconto sulla tua prima corsa Intaleq!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "Ottienilo ora!", + "Get to your destination quickly and easily.": "Arriva a destinazione velocemente.", + "Getting Started": "Iniziare", + "Gift Already Claimed": "Regalo già richiesto", + "Go To Favorite Places": "Vai ai preferiti", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "Avanti\nscansiona Libretto.", + "Go to passenger Location now": "Vai dal passeggero ora", + "Go to this Target": "Vai a destinazione", + "Go to this location": "Vai a questa posizione", + "Grant": "Grant", + "H and": "O e", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "Hai un codice promozionale?", + "Heading your way now. Please be ready.": "Arrivo. Fatti trovare pronto.", + "Height: ": "Altezza: ", + "Hello this is Captain": "Ciao, sono il conducente", + "Hello this is Driver": "Ciao sono l'Autista", + "Hello! I'm inviting you to try Intaleq.": "Ciao! Ti invito a provare Intaleq.", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hello, I'm at the agreed-upon location", + "Help Details": "Dettagli aiuto", + "Helping Center": "Centro assistenza", + "Here recorded trips audio": "Audio viaggi", + "Hi": "Ciao", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Ciao, sto partendo ora", + "Hi! This is": "Ciao! Questo è", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "Ciao, dove ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "Diploma di scuola superiore", + "History of Trip": "Cronologia", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "How can I pay for my ride?": "Come posso pagare?", + "How can I register as a driver?": "Come mi registro come autista?", + "How do I communicate with the other party (passenger/driver)?": "Come comunico?", + "How do I request a ride?": "Come richiedo una corsa?", + "How many hours would you like to wait?": "Quante ore di attesa?", + "How much longer will you be?": "How much longer will you be?", + "I Agree": "Accetto", + "I Arrive your site": "Arrivato al sito", + "I added the wrong pick-up/drop-off location": "Posizione errata", + "I am currently located at": "I am currently located at", + "I arrive you": "Arrivato", + "I cant register in your app in face detection ": "Non riesco a registrarmi con face detection", + "I don't have a reason": "Nessun motivo", + "I don't need a ride anymore": "Non mi serve più", + "I want to order for myself": "Voglio ordinare per me", + "I want to order for someone else": "Voglio ordinare per qualcun altro", + "I was just trying the application": "Stavo solo provando", + "I will go now": "Vado ora", + "I will slow down": "Rallenterò", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "Ti aspetto", + "I've been trying to reach you but your phone is off.": "I've been trying to reach you but your phone is off.", + "ID Documents Back": "Retro documento identità", + "ID Documents Front": "Fronte documento identità", + "If you in Car Now. Press Start The Ride": "Se sei in auto, premi Inizia", + "If you need assistance, contact us": "Se serve aiuto, contattaci", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Per aggiungere fermata clicca qui", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Apri Google Maps direttamente", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "Risultato: ", + "In-App VOIP Calls": "Chiamate VOIP in-app", + "Including Tax": "IVA inclusa", + "Incorrect sms code": "⚠️ Codice SMS errato. Riprova.", + "Increase Fare": "Aumenta tariffa", + "Increase Fee": "Aumenta tariffa", + "Increase Your Trip Fee (Optional)": "Aumenta la tariffa (Opzionale)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Aumentare la tariffa potrebbe attrarre più autisti. Vuoi aumentare il prezzo?", + "Insert": "Inserisci", + "Insert Emergincy Number": "Inserisci Numero SOS", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Inserisci codice", + "Inspection Date": "Data revisione", + "InspectionResult": "Risultato ispezione", + "Intaleq": "Intaleq", + "Intaleq Balance": "Saldo Intaleq", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Intaleq Finito", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Supporto Intaleq", + "Intaleq Wallet": "Portafoglio Intaleq", + "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 è un'app di ride-sharing progettata per sicurezza e risparmio.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Impegno per la sicurezza, autisti verificati.", + "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 ti connette con gli autisti più vicini.", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq è sicura e affidabile.", + "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 è l'app più sicura. Commissione bassa 8%. Assicurazione e manutenzione.", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Economy, Comfort, Luxury.", + "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 offre opzioni Economy, Comfort e Luxury.", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Puoi pagare in contanti o con carta.", + "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.": "Verifica autista, tracciamento, SOS.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Verifica autista, tracciamento viaggio, contatti emergenza.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq offre una chat in-app.", + "Intaleq's Response": "Intaleq's Response", + "Invalid MPIN": "MPIN non valido", + "Invalid OTP": "OTP non valido", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "Invito usato", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "Invito inviato con successo", + "Is the Passenger in your Car ?": "Passeggero in auto?", + "Issue Date": "Data rilascio", + "IssueDate": "Data rilascio", + "JOD": "€", + "Join": "Unisci", + "Join Intaleq as a driver using my referral code!": "Unisciti a Intaleq come autista usando il mio codice!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "Giordania", + "KM": "KM", + "Keep it up!": "Continua così!", + "Kuwait": "Kuwait", + "LE": "€", + "Lady": "Donna", + "Lady Captain for girls": "Autista donna per ragazze", + "Lady Captains Available": "Autiste donne disponibili", + "Language": "Lingua", + "Language Options": "Opzioni lingua", + "Last Name": "Last Name", + "Last name": "Cognome", + "Latest Recent Trip": "Ultimo Viaggio", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Lascia", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "Controlliamo Libretto ", + "Lets check License Back Face": "Controlliamo Retro", + "License Categories": "Categorie patente", + "License Type": "Tipo patente", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "Collega un numero per i trasferimenti", + "Listen": "Listen", + "Location": "Location", + "Location Link": "Link posizione", + "Location Received": "Location Received", + "Log Off": "Esci", + "Log Out Page": "Pagina uscita", + "Login": "Login", + "Login Captin": "Accesso Autista", + "Login Driver": "Accesso Autista", + "Logout": "Logout", + "Lowest Price Achieved": "Prezzo più basso", + "Made :": "Marca :", + "Make": "Marca", + "Make is ": "Marca: ", + "Male": "Maschio", + "Map Error": "Map Error", + "Map Passenger": "Mappa Passeggero", + "Marital Status": "Stato civile", + "Master's Degree": "Laurea magistrale", + "Maximum fare": "Tariffa massima", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Tariffa minima", + "Minute": "Minuto", + "Mishwar Vip": "Viaggio VIP", + "Model": "Modello", + "Model is": "Modello:", + "Morning": "Mattina", + "Most Secure Methods": "Metodi più sicuri", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "Sposta la mappa per regolare il segnaposto", + "Mute": "Mute", + "My Balance": "Il mio saldo", + "My Card": "La mia carta", + "My Cared": "Le mie carte", + "My Profile": "Il mio profilo", + "My current location is:": "Mia posizione:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "MiaPosizione", + "N/A": "N/A", + "Name": "Nome", + "Name (Arabic)": "Nome (Locale)", + "Name (English)": "Nome (Inglese)", + "Name :": "Nome :", + "Name in arabic": "Nome (Locale)", + "Name of the Passenger is ": "Nome passeggero: ", + "National ID": "Carta d'Identità", + "National Number": "Numero Carta d'Identità", + "NationalID": "Numero Carta d'Identità", + "Nearby": "Nearby", + "Nearest Car": "Nearest Car", + "Nearest Car for you about ": "Auto più vicina tra circa ", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Network error occurred": "Network error occurred", + "Next": "Avanti", + "Night": "Notte", + "No": "No", + "No ,still Waiting.": "No, attendo.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Nessuna auto. Spiacenti!", + "No Car or Driver Found in your area.": "Nessuna auto o autista in zona.", + "No Drivers Found": "Nessun autista trovato", + "No I want": "No voglio", + "No Notifications": "No Notifications", + "No Promo for today .": "Nessuna promo oggi.", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "Nessuna risposta.", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Niente SIM? Chiama tramite app.", + "No accepted orders? Try raising your trip fee to attract riders.": "Aumenta la tariffa.", + "No audio files found.": "Nessun file audio trovato.", + "No cars nearby": "No cars nearby", + "No contacts available": "No contacts available", + "No contacts found": "Nessun contatto trovato", + "No contacts with phone numbers were found on your device.": "Nessun contatto con numero di telefono trovato sul dispositivo.", + "No driver accepted my request": "Nessuno ha accettato", + "No drivers accepted your request yet": "Nessun autista ha ancora accettato la tua richiesta", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "Nessun autista trovato al momento.\nRiprova più tardi.", + "No face detected": "Nessun volto rilevato", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Nessuna immagine", + "No invitation found yet!": "Nessun invito trovato!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "Nessuno ha accettato? Prova ad aumentare la tariffa.", + "No passenger found for the given phone number": "Nessun passeggero trovato per questo numero", + "No promos available right now.": "Nessuna promozione disponibile ora.", + "No ride found yet": "Nessuna corsa trovata", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No trip data available", + "No trip history found": "Nessuna cronologia viaggi", + "No trip yet found": "Nessun viaggio", + "No user found": "No user found", + "No user found for the given phone number": "Nessun utente trovato per questo numero", + "No wallet record found": "Nessun record portafoglio", + "No, I don't have a code": "No, non ho un codice", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, thanks": "No, grazie", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "Non connesso", + "Not set": "Non impostato", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "Notifiche", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Now select start pick", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "Occupazione", + "Ok": "Ok", + "Ok , See you Tomorrow": "Ok, a domani", + "Ok I will go now.": "Ok, vado ora.", + "Old and affordable, perfect for budget rides.": "Economica e accessibile.", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "Impostazioni", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "O paga in contanti", + "Order": "Ordine", + "Order Accepted": "Order Accepted", + "Order Applied": "Ordine applicato", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Annullato dal passeggero", + "Order Details Intaleq": "Dettagli Ordine", + "Order Details Siro": "Order Details Siro", + "Order History": "Cronologia ordini", + "Order Request Page": "Pagina richiesta", + "Order Under Review": "Order Under Review", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "Ordina per me", + "Order for someone else": "Ordina per altri", + "OrderId": "ID Ordine", + "OrderVIP": "Ordine VIP", + "Origin": "Origine", + "Other": "Altro", + "Our dedicated customer service team ensures swift resolution of any issues.": "Il nostro team risolve i problemi velocemente.", + "Owner Name": "Proprietario", + "Passenger": "Passenger", + "Passenger Cancel Trip": "Il passeggero ha annullato la corsa", + "Passenger Name is ": "Passeggero: ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger come to you": "Il passeggero sta venendo da te", + "Passenger name : ": "Passeggero: ", + "Password": "Password", + "Password must br at least 6 character.": "Password min 6 caratteri.", + "Paste WhatsApp location link": "Incolla link posizione WhatsApp", + "Paste location link here": "Incolla il link della posizione qui", + "Paste the code here": "Incolla il codice qui", + "Pay": "Pay", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Paga direttamente al conducente", + "Pay from my budget": "Paga dal budget", + "Pay with Credit Card": "Paga con Carta", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "Paga con Portafoglio", + "Pay with Your": "Paga con", + "Pay with Your PayPal": "Paga con PayPal", + "Payment Failed": "Pagamento Fallito", + "Payment History": "Cronologia pagamenti", + "Payment Method": "Metodo pagamento", + "Payment Options": "Opzioni pagamento", + "Payment Successful": "Pagamento Riuscito", + "Payments": "Pagamenti", + "Perfect for adventure seekers who want to experience something new and exciting": "Per chi cerca avventura", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Perfetto per chi cerca auto nuove e libertà di percorso", + "Permission Required": "Permission Required", + "Permission denied": "Permesso negato", + "Personal Information": "Informazioni personali", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Telefono:", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is verified before": "Phone number is verified before", + "Phone number isn't an Egyptian phone number": "Phone number isn't an Egyptian phone number", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "Scegli da mappa", + "Pick from map destination": "Pick from map destination", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "Destinazione da Mappa", + "Pick your ride location on the map - Tap to confirm": "Scegli punto sulla mappa - Tocca per confermare", + "Plan Your Route": "Plan Your Route", + "Plate": "Targa", + "Plate Number": "Targa", + "Please Try anther time ": "Riprova un'altra volta ", + "Please Wait If passenger want To Cancel!": "Attendi se il passeggero vuole annullare!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "Controlla la tua connessione internet", + "Please don't be late": "Please don't be late", + "Please don't be late, I'm waiting for you at the specified location.": "Please don't be late, I'm waiting for you at the specified location.", + "Please enter": "Inserisci", + "Please enter Your Email.": "Inserisci la tua email.", + "Please enter Your Password.": "Inserisci la password.", + "Please enter a correct phone": "Inserisci un numero corretto", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "Inserisci numero telefono", + "Please enter a valid 16-digit card number": "Inserisci numero carta valido", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Inserisci codice valido", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "Codice CVV", + "Please enter the cardholder name": "Nome titolare", + "Please enter the complete 6-digit code.": "Inserisci il codice completo a 6 cifre.", + "Please enter the expiry date": "Data scadenza", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Inserisci la città.", + "Please enter your Question.": "Inserisci domanda.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Inserisci feedback.", + "Please enter your first name.": "Inserisci il nome.", + "Please enter your last name.": "Inserisci il cognome.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Inserisci il numero di telefono.", + "Please go to Car Driver": "Per favore, vai dall'autista", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "Vai all'auto ora ", + "Please help! Contact me as soon as possible.": "Aiuto! Contattami subito.", + "Please make sure not to leave any personal belongings in the car.": "Assicurati di non lasciare effetti personali in auto.", + "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": "Assicurati di avere tutti i tuoi effetti personali e che l'eventuale resto sia stato aggiunto al tuo portafoglio. Grazie per aver scelto Intaleq.", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "Metti la patente nel bordo", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "Per favore, resta al punto di raccolta.", + "Please try again in a few moments": "Please try again in a few moments", + "Please verify your identity": "Verifica identità", + "Please wait for the passenger to enter the car before starting the trip.": "Attendi passeggero.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "Scrivi il motivo...", + "Point": "Punto", + "Potential security risks detected. The application may not function correctly.": "Rilevati potenziali rischi di sicurezza. L'app potrebbe non funzionare correttamente.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Preferences": "Preferences", + "Price": "Price", + "Price of trip": "Price of trip", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Informativa sulla privacy", + "Professional driver": "Professional driver", + "Profile": "Profilo", + "Profile photo updated": "Profile photo updated", + "Promo": "Promo", + "Promo Already Used": "Già usato", + "Promo Code": "Codice Promo", + "Promo Code Accepted": "Codice accettato", + "Promo Copied!": "Promo copiata!", + "Promo End !": "Promo Finita!", + "Promo Ended": "Promo Terminata", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "Copiato!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "Promozioni", + "Promos For Today": "Promos For Today", + "Pyament Cancelled .": "Pagamento Annullato.", + "Qatar": "Qatar", + "Quick Access": "Quick Access", + "Quick Actions": "Azioni rapide", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "Silenzioso ed Ecologico", + "Rate Captain": "Vota Autista", + "Rate Driver": "Vota Autista", + "Rate Passenger": "Vota Passeggero", + "Rating is": "Rating is", + "Rating is ": "Voto: ", + "Rating is ": "Rating is ", + "Rayeh Gai": "Andata e Ritorno", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Andata e Ritorno: Servizio comodo per viaggiare tra città.", + "Reach out to us via": "Contattaci tramite", + "Received empty route data.": "Received empty route data.", + "Recent Places": "Luoghi recenti", + "Recharge my Account": "Ricarica conto", + "Record": "Record", + "Record saved": "Salvato", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "Viaggi registrati (Voce & AI)", + "Recorded Trips for Safety": "Viaggi registrati per sicurezza", + "Refresh Map": "Aggiorna mappa", + "Refuse Order": "Rifiuta ordine", + "Register": "Registrati", + "Register Captin": "Registrazione Autista", + "Register Driver": "Registra Autista", + "Register as Driver": "Registrati come Autista", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Religione", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "Invia di nuovo", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "Gestione corse", + "Ride Summaries": "Riepiloghi", + "Ride Summary": "Riepilogo corsa", + "Ride Today : ": "Corsa Oggi: ", + "Ride Wallet": "Portafoglio Corsa", + "Rides": "Corse", + "Rouats of Trip": "Percorsi", + "Route": "Route", + "Route Not Found": "Percorso non trovato", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "Telefono SOS", + "SYP": "SYP", + "Safety & Security": "Sicurezza", + "Saudi Arabia": "Arabia Saudita", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "Salva carta", + "Save Name": "Save Name", + "Saved Sucssefully": "Salvato con successo", + "Scan Driver License": "Scansiona Patente", + "Scan ID MklGoogle": "Scansiona ID", + "Scan Id": "Scansiona ID", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Scooter", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "Cerca un altro autista", + "Search for waypoint": "Punto intermedio", + "Search for your Start point": "Punto di partenza", + "Search for your destination": "Cerca destinazione", + "Searching for nearby drivers...": "Ricerca autisti nelle vicinanze...", + "Searching for the nearest captain...": "Ricerca del conducente più vicino...", + "Secure": "Secure", + "Security Warning": "⚠️ Avviso di sicurezza", + "See you on the road!": "Ci vediamo in strada!", + "Select Appearance": "Select Appearance", + "Select Country": "Seleziona Paese", + "Select Date": "Seleziona Data", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "Seleziona tipo ordine", + "Select Payment Amount": "Seleziona importo", + "Select This Ride": "Select This Ride", + "Select Time": "Seleziona Ora", + "Select Waiting Hours": "Ore Attesa", + "Select Your Country": "Seleziona Paese", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Select date and time of trip", + "Select one message": "Scegli messaggio", + "Select recorded trip": "Seleziona viaggio", + "Select your destination": "Seleziona destinazione", + "Select your preferred language for the app interface.": "Seleziona la lingua preferita per l'app.", + "Selected Date": "Data Selezionata", + "Selected Date and Time": "Data e Ora", + "Selected Time": "Ora Selezionata", + "Selected driver": "Autista selezionato", + "Selected file:": "File selezionato:", + "Send Email": "Send Email", + "Send Intaleq app to him": "Invia app Intaleq a lui", + "Send Invite": "Invia invito", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Invia codice verifica", + "Send Verification Code": "Invia codice verifica", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Invia messaggio personalizzato", + "Send to Driver Again": "Send to Driver Again", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Sessione scaduta. Accedi di nuovo.", + "Set Destination": "Set Destination", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Imposta numero portafoglio", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "Imposta punto di raccolta", + "Setting": "Impostazione", + "Settings": "Impostazioni", + "Sex is ": "Sesso: ", + "Share": "Share", + "Share App": "Condividi app", + "Share Trip": "Share Trip", + "Share Trip Details": "Condividi Dettagli", + "Share this code with your friends and earn rewards when they use it!": "Condividi questo codice e guadagna premi!", + "Share with friends and earn rewards": "Condividi con amici e guadagna premi", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Mostra inviti", + "Show Promos": "Mostra promo", + "Show Promos to Charge": "Promo Ricarica", + "Show latest promo": "Mostra ultime promozioni", + "Showing": "Visualizzazione", + "Sign In by Apple": "Accedi con Apple", + "Sign In by Google": "Accedi con Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Esci", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "Accedi con Google per facilità", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Apri l'app, inserisci destinazione e richiedi corsa.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "Spiacenti 😔", + "Sorry, there are no cars available of this type right now.": "Spiacenti, non ci sono auto di questo tipo disponibili al momento.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Servizio van spazioso ideale per famiglie e gruppi. Comodo, sicuro ed economico.", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "Avvia registrazione", + "Start the Ride": "Inizia corsa", + "Statistics": "Statistiche", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Istruzioni passo-passo per richiedere una corsa.", + "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 Siro app.", + "Stop": "Stop", + "Submit": "Submit", + "Submit ": "Invia ", + "Submit Complaint": "Invia reclamo", + "Submit Question": "Invia domanda", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "Invia un reclamo", + "Submit rating": "Invia voto", + "Success": "Successo", + "Support & Info": "Support & Info", + "Support is Away": "Il supporto è attualmente assente", + "Support is currently Online": "Il supporto è attualmente online", + "Switch Rider": "Cambia Passeggero", + "Syria": "Siria", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "Servizio di ride-sharing pionieristico in Italia.", + "System Default": "System Default", + "Take Image": "Scatta foto", + "Take Picture Of Driver License Card": "Foto Patente", + "Take Picture Of ID Card": "Foto Carta d'Identità", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "Tocca per copiare!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "Destinazione", + "Tariff": "Tariffa", + "Tariffs": "Tariffe", + "Tax Expiry Date": "Scadenza bollo", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thanks": "Grazie", + "The Driver Will be in your location soon .": "L'autista arriverà presto.", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", + "The captain is responsible for the route.": "L'autista è responsabile del percorso.", + "The distance less than 500 meter.": "Distanza < 500m.", + "The driver accept your order for": "Accettato per", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "L'autista ha accettato la tua corsa", + "The driver canceled your ride.": "L'autista ha annullato la tua corsa.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "L'autista ha annullato il viaggio per un'emergenza.\nVuoi cercare subito un altro autista?", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "Autista in arrivo", + "The driver waiting you in picked location .": "L'autista ti aspetta al punto di raccolta.", + "The driver waitting you in picked location .": "L'autista ti aspetta.", + "The drivers are reviewing your request": "Autisti stanno valutando", + "The email or phone number is already registered.": "Email o numero già registrati.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Il nome sul casellario non corrisponde alla patente.", + "The invitation was sent successfully": "Invito inviato con successo", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Il numero della patente non corrisponde al documento d'identità.", + "The order Accepted by another Driver": "Ordine accettato da un altro autista", + "The order has been accepted by another driver.": "L'ordine è stato accettato da un altro autista.", + "The payment was approved.": "Approvato.", + "The payment was not approved. Please try again.": "Pagamento non approvato. Riprova.", + "The price may increase if the route changes.": "Il prezzo può aumentare.", + "The promotion period has ended.": "Promozione finita.", + "The reason is": "The reason is", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Viaggio iniziato! Condividi o registra.", + "There is no Car or Driver in your area.": "Non ci sono auto o autisti nella tua zona.", + "There is no data yet.": "Nessun dato.", + "There is no help Question here": "Nessuna domanda aiuto", + "There is no notification yet": "Nessuna notifica", + "There no Driver Aplly your order sorry for that ": "Nessuno ha accettato, spiacenti ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Traffico. Altro punto raccolta?", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "Importo dai Passeggeri", + "This amount for all trip I get from Passengers and Collected For me in": "Importo raccolto", + "This is a scheduled notification.": "Notifica programmata.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Per scooter o moto.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "Questo numero è già stato invitato.", + "This price is": "Questo prezzo è", + "This price is fixed even if the route changes for the driver.": "Prezzo fisso.", + "This price may be changed": "Prezzo variabile", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Corsa già presa.", + "This ride type allows changes, but the price may increase": "Cambi permessi, prezzo può salire", + "This ride type does not allow changes to the destination or additional stops": "Nessun cambio/fermata", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Viaggio diretto, prezzo fisso.", + "This trip is for women only": "Questa corsa è solo per donne", + "Time": "Time", + "Time to arrive": "Ora arrivo", + "Tip is ": "Mancia è: ", + "To :": "To :", + "To : ": "A: ", + "To Home": "To Home", + "To Work": "To Work", + "To become a passenger, you must review and agree to the ": "Per diventare passeggero, devi accettare i ", + "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.": "Carica patente, documento d'identità e libretto. Verifica in 2-3 minuti.", + "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 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 change Language the App": "To change Language the App", + "To change some Settings": "Per cambiare impostazioni", + "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.": "Seleziona il paese per informazioni accurate.", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Per offrirti la migliore esperienza, dobbiamo sapere dove sei. La tua posizione serve per trovare autisti vicini.", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Visita il sito per registrarti.", + "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 Siro support directly.", + "To use Wallet charge it": "Per usare il portafoglio, ricaricalo", + "Today's Promos": "Promo di oggi", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Ricarica portafoglio", + "Top up Wallet to continue": "Ricarica il portafoglio per continuare", + "Total Amount:": "Importo Totale:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "Budget totale Carte: ", + "Total Budget from trips is ": "Budget totale viaggi: ", + "Total Connection Duration:": "Durata connessione:", + "Total Cost": "Costo Totale", + "Total Cost is ": "Costo Totale: ", + "Total Duration:": "Durata totale:", + "Total For You is ": "Totale per te: ", + "Total From Passenger is ": "Totale da Passeggero: ", + "Total Hours on month": "Ore Totali mese", + "Total Invites": "Total Invites", + "Total Points is": "Punti Totali", + "Total Price": "Total Price", + "Total budgets on month": "Budget totali nel mese", + "Total points is ": "Punti totali: ", + "Total price from ": "Prezzo totale da ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Viaggia in un'auto elettrica moderna e silenziosa. Una scelta premium ed ecologica.", + "Trip Cancelled": "Corsa Annullata", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Corsa annullata. Il costo sarà accreditato sul tuo portafoglio.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Monitoraggio viaggio", + "Trip Status:": "Trip Status:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "Corsa finita", + "Trip finished ": "Trip finished ", + "Trip has Steps": "Viaggio a tappe", + "Trip is Begin": "Il viaggio è iniziato", + "Trip updated successfully": "Trip updated successfully", + "Trips recorded": "Viaggi registrati", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "Turchia", + "Type here Place": "Scrivi qui luogo", + "Type something...": "Scrivi qualcosa...", + "Type your Email": "Scrivi la tua email", + "Type your message": "Scrivi messaggio", + "Type your message...": "Type your message...", + "USA": "USA", + "Uncompromising Security": "Sicurezza senza compromessi", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Aggiorna", + "Update Available": "Update Available", + "Update Education": "Aggiorna istruzione", + "Update Gender": "Aggiorna genere", + "Update Name": "Update Name", + "Uploaded": "Caricato", + "Use Touch ID or Face ID to confirm payment": "Usa Touch ID o Face ID", + "Use code:": "Usa codice:", + "Use my invitation code to get a special gift on your first ride!": "Usa il mio codice invito per un regalo speciale sulla prima corsa!", + "Use my referral code:": "Usa il mio codice invito:", + "User does not exist.": "L'utente non esiste.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User with this phone number or email already exists.": "Utente con questo numero o email già esistente.", + "Uses cellular network": "Uses cellular network", + "VIN": "Telaio", + "VIN :": "Telaio :", + "VIN is": "Telaio:", + "VIP Order": "Ordine VIP", + "Valid Until:": "Valido fino a:", + "Van": "Furgone", + "Van for familly": "Furgone per famiglia", + "Variety of Trip Choices": "Varietà di scelte", + "Vehicle Details Back": "Dettagli veicolo Retro", + "Vehicle Details Front": "Dettagli veicolo Fronte", + "Vehicle Options": "Opzioni veicolo", + "Verification Code": "Codice di verifica", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "Verifica", + "Verify Email": "Verifica Email", + "Verify Email For Driver": "Verifica Email Autista", + "Verify OTP": "Verifica OTP", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Feedback vibrazione per tutti i pulsanti", + "View Map": "View Map", + "View your past transactions": "Visualizza le transazioni passate", + "Visit Website/Contact Support": "Sito/Supporto", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Visita il sito o contatta il supporto.", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "Chiamata vocale", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "Attesa autista...", + "Waiting for Driver ...": "Attesa Autista...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "In attesa posizione", + "Waiting...": "Waiting...", + "Wallet": "Portafoglio", + "Wallet is blocked": "Il portafoglio è bloccato", + "Wallet!": "Portafoglio!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "Avviso: Eccesso velocità!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Attenzione: Rilevato eccesso di velocità!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "Spiacenti, niente auto in zona!", + "We apologize 😔": "Ci scusiamo 😔", + "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", + "We are process picture please wait ": "Elaborazione foto, attendi ", + "We are search for nearst driver": "Cerchiamo autista", + "We are searching for the nearest driver": "Cerchiamo l'autista più vicino", + "We are searching for the nearest driver to you": "Cerchiamo l'autista più vicino a te", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Ti connettiamo agli autisti più vicini.", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "Non siamo riusciti a trovare un percorso valido. Prova a selezionare un punto diverso.", + "We have sent a verification code to your mobile number:": "Abbiamo inviato un codice di verifica al tuo numero:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Non abbiamo ancora trovato autisti. Considera di aumentare la tariffa per rendere l'offerta più attraente.", + "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.": "Ci serve il tuo numero per ricevere ordini.", + "We need your phone number to contact you and to help you.": "Ci serve il tuo numero per contattarti.", + "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.": "Velocità > 100 km/h. Rallenta.", + "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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "We regret to inform you that another driver has accepted this order.": "Ci dispiace informarti che un altro autista ha accettato questo ordine.", + "We search nearst Driver to you": "Cerchiamo autista vicino", + "We sent 5 digit to your Email provided": "Inviate 5 cifre alla tua email", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "Cercheremo un nuovo autista.\nAttendere prego.", + "We're here to help you 24/7": "Siamo qui per aiutarti 24/7", + "Welcome Back": "Welcome Back", + "Welcome Back!": "Bentornato!", + "Welcome to Intaleq!": "Benvenuto in Intaleq!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "Quali sono i requisiti?", + "What safety measures does Intaleq offer?": "Misure di sicurezza?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Quali veicoli sono disponibili?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "Estrattore posizione WhatsApp", + "When": "Quando", + "Where are you going?": "Dove stai andando?", + "Where are you, sir?": "Where are you, sir?", + "Where to": "Dove vuoi andare?", + "Where you want go ": "Dove vuoi andare ", + "Why Choose Intaleq?": "Perché Intaleq?", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "Corsa in minuti.", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "Lavoro", + "Work & Contact": "Lavoro e Contatti", + "Work Saved": "Work Saved", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "Orario 12:00 - 19:00.\nInvia WhatsApp o email.", + "Working Hours:": "Orario di lavoro:", + "Write note": "Scrivi nota", + "Wrong pickup location": "Punto di partenza errato", + "Year": "Anno", + "Year is": "Anno:", + "Yes": "Yes", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Sì, puoi annullare la corsa a determinate condizioni (ad es. prima dell'assegnazione dell'autista). Consulta la politica di cancellazione Intaleq per i dettagli.", + "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 Siro 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ì, puoi annullare, potrebbero esserci costi.", + "You Are Stopped For this Day !": "Fermato per oggi!", + "You Can Cancel Trip And get Cost of Trip From": "Annulla e ottieni costo da", + "You Can cancel Ride After Captain did not come in the time": "Puoi annullare se l'autista tarda", + "You Dont Have Any amount in": "Non hai credito in", + "You Dont Have Any places yet !": "Nessun luogo ancora!", + "You Have": "Hai", + "You Have Tips": "Hai mance", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "Rifiutate 3 corse.\nA domani!", + "You Should be select reason.": "Seleziona motivo.", + "You Should choose rate figure": "Devi scegliere un voto", + "You are Delete": "Stai eliminando", + "You are Stopped": "Sei fermo", + "You are not in near to passenger location": "Sei lontano", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "Compra Punti per andare online", + "You can buy points from your budget": "Compra punti dal budget", + "You can call or record audio during this trip.": "Puoi chiamare o registrare audio durante questo viaggio.", + "You can call or record audio of this trip": "Puoi chiamare o registrare", + "You can cancel Ride now": "Puoi annullare ora", + "You can cancel trip": "Puoi annullare", + "You can change the Country to get all features": "Cambia Paese per tutte le funzioni", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Cambia lingua app", + "You can change the vibration feedback for all buttons": "Puoi cambiare la vibrazione per tutti i pulsanti", + "You can claim your gift once they complete 2 trips.": "Puoi richiedere il regalo una volta che completano 2 corse.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Tramite chat in-app.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Contattaci 12:00 - 19:00.", + "You can decline a request without any cost": "Rifiuta senza costi", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Contanti o carta.", + "You can resend in": "Puoi inviare di nuovo tra", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Condividi l'app e guadagna premi.", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "Devi rinnovare la patente", + "You canceled VIP trip": "You canceled VIP trip", + "You deserve the gift": "Ti meriti il regalo", + "You dont Add Emergency Phone Yet!": "Non hai aggiunto telefono emergenza!", + "You dont have Points": "Non hai Punti", + "You have already received your gift for inviting": "Hai già ricevuto il tuo regalo per questo invito", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "Codice già usato.", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "Hai una chiamata dall'autista", + "You have copied the promo code.": "Hai copiato il codice.", + "You have earned 20": "Hai guadagnato 20", + "You have finished all times ": "Tentativi finiti", + "You have got a gift for invitation": "Hai ricevuto un regalo per l'invito", + "You have in account": "Hai nel conto", + "You have promo!": "Hai promo!", + "You must Verify email !.": "Verifica email!", + "You must be charge your Account": "Devi ricaricare", + "You must restart the app to change the language.": "Devi riavviare l'app per cambiare lingua.", + "You should have upload it .": "Devi caricarlo.", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Selezionane uno", + "You should select your country": "Dovresti selezionare il tuo paese", + "You trip distance is": "Distanza viaggio:", + "You will arrive to your destination after ": "Arriverai tra ", + "You will arrive to your destination after timer end.": "Arrivo al termine del timer.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Pagherai all'autista o al prossimo viaggio", + "You will be thier in": "Sarai lì in", + "You will choose allow all the time to be ready receive orders": "Scegli 'Consenti sempre' per ricevere ordini", + "You will choose one of above !": "Scegline uno sopra!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "Sarai pagato per il lavoro", + "You will receive a code in SMS message": "Riceverai SMS", + "You will receive a code in WhatsApp Messenger": "Riceverai codice su WhatsApp", + "You will recieve code in sms message": "Riceverai un codice via SMS", + "Your Account is Deleted": "Account eliminato", + "Your Budget less than needed": "Budget insufficiente", + "Your Choice, Our Priority": "Tua scelta, nostra priorità", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "Durata corsa: ", + "Your Wallet balance is ": "Il saldo del tuo portafoglio è: ", + "Your are far from passenger location": "Sei lontano dal passeggero", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Dati cancellati tra 2 settimane.", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Your email address", + "Your fee is ": "Tua tariffa: ", + "Your invite code was successfully applied!": "Codice applicato!", + "Your journey starts here": "Il tuo viaggio inizia qui", + "Your name": "Il tuo nome", + "Your order is being prepared": "Ordine in preparazione", + "Your order sent to drivers": "Inviato agli autisti", + "Your password": "Your password", + "Your past trips will appear here.": "I tuoi viaggi passati appariranno qui.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "Il tuo codice invito personale è:", + "Your trip cost is": "Costo viaggio", + "Your trip distance is": "Distanza viaggio:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nOffriamo prezzi competitivi.", + "accepted": "accepted", + "accepted your order at price": "accepted your order at price", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "Per continuare, devi accettare i Termini d'uso e l'Informativa sulla privacy.", + "airport": "airport", + "an error occurred": "Si è verificato un errore: @error", + "and I have a trip on": "e ho un viaggio su", + "and acknowledge our": "e accetta la nostra", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "App di ride-sharing sicura.", + "arrival time to reach your point": "ora arrivo al punto", + "as the driver.": "as the driver.", + "before": "prima", + "begin": "begin", + "by": "by", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "change device", + "committed_to_safety": "Impegnati per la sicurezza.", + "complete profile subtitle": "Completa il profilo per iniziare", + "complete registration button": "Completa registrazione", + "complete, you can claim your gift": "completato, puoi richiedere il regalo", + "contacts. Others were hidden because they don't have a phone number.": "contatti. Altri nascosti perché senza numero.", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copied to clipboard", + "created time": "ora creazione", + "deleted": "deleted", + "distance is": "distanza è", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "patente_guida", + "due to a previous trip.": "due to a previous trip.", + "duration is": "durata è", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "Email (Opzionale)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "Inserisci l'OTP a 5 cifre", + "face detect": "Rilevamento volto", + "failed to send otp": "Invio OTP fallito.", + "first name label": "Nome", + "first name required": "Nome richiesto", + "for": "per", + "for your first registration!": "per la tua prima registrazione!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 - 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 - 15:00", + "from 23:59 till 05:30": "23:59 - 05:30", + "from 3 times Take Attention": "su 3 volte, Attenzione", + "from your favorites": "from your favorites", + "from your list": "dalla lista", + "get_a_ride": "Ottieni una corsa in minuti.", + "get_to_destination": "Arriva a destinazione.", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "Vai dal passeggero prima che annulli", + "has completed": "ha completato", + "hour": "ora", + "i agree": "accetto", + "if you don't have account": "se non hai un account", + "if you dont have account": "se non hai un account", + "if you want help you can email us here": "Scrivici per aiuto", + "image verified": "immagine verificata", + "in your": "in your", + "insert amount": "inserisci importo", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "guida una ", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "joined": "unito", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "Cognome", + "last name required": "Cognome richiesto", + "login or register subtitle": "Inserisci il tuo numero di cellulare per accedere o registrarti", + "m": "m", + "message From Driver": "Messaggio dall'autista", + "message From passenger": "Messaggio dal passeggero", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "Modello :", + "my location": "mia posizione", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "Non simile", + "of": "di", + "one last step title": "Un ultimo passo", + "otp sent subtitle": "Un codice a 5 cifre è stato inviato a\n@phoneNumber", + "otp sent success": "OTP inviato con successo su WhatsApp.", + "otp verification failed": "Verifica OTP fallita.", + "passenger agreement": "accordo passeggero", + "pending": "pending", + "phone not verified": "phone not verified", + "phone number label": "Numero di telefono", + "phone number required": "Numero di telefono richiesto", + "please go to picker location exactly": "vai al punto esatto", + "please order now": "Ordina ora", + "please wait till driver accept your order": "attendi accettazione", + "price is": "prezzo è", + "privacy policy": "politica sulla privacy.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "Registrazione fallita.", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "safe_and_comfortable": "Sicura e comoda.", + "seconds": "secondi", + "security_warning": "security_warning", + "send otp button": "Invia OTP", + "server error try again": "Errore del server, riprova.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "Simile", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "termini d'uso", + "the 300 points equal 300 L.E": "300 punti = 300 €", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "300 punti = 300 €\nGuadagna", + "the 500 points equal 30 JOD": "500 punti equivalgono a 30 €", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "500 punti = 30 €\nGuadagna", + "this will delete all files from your device": "eliminerà tutti i file", + "to arrive you.": "to arrive you.", + "token change": "Cambio token", + "token updated": "token aggiornato", + "trips": "viaggi", + "type here": "scrivi qui", + "unknown": "unknown", + "upgrade price": "upgrade price", + "verify and continue button": "Verifica e continua", + "verify your number title": "Verifica il tuo numero", + "wait 1 minute to receive message": "attendi 1 minuto", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "wallet due to a previous trip.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "Benvenuto in Intaleq", + "welcome to siro": "welcome to siro", + "welcome user": "Benvenuto, @firstName!", + "welcome_message": "Benvenuto in Intaleq!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "scrivi colore", + "write Expiration Date for your car": "scrivi scadenza", + "write Make for your car": "scrivi marca", + "write Model for your car": "scrivi modello", + "write Year for your car": "scrivi anno", + "write vin for your car": "scrivi telaio", + "year :": "Anno :", + "you canceled order": "you canceled order", + "you gain": "hai guadagnato", + "you have a negative balance of": "you have a negative balance of", + "you must insert token code": "you must insert token code", + "you will pay to Driver": "Pagherai all'autista", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "Pagherai il costo del tempo dell'autista, controlla il tuo portafoglio Intaleq", + "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 Siro Wallet", + "your ride is Accepted": "Corsa accettata", + "your ride is applied": "corsa richiesta", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "Data Scadenza", + "⚠️ You need to choose an amount!": "⚠️ Devi scegliere un importo!", + "💰 Pay with Wallet": "💰 Paga con portafoglio", + "💳 Pay with Credit Card": "💳 Paga con carta di credito", +}; diff --git a/siro_rider/lib/controller/local/ru.dart b/siro_rider/lib/controller/local/ru.dart new file mode 100644 index 0000000..b7d49ae --- /dev/null +++ b/siro_rider/lib/controller/local/ru.dart @@ -0,0 +1,1715 @@ +final Map ru = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": " Я нахожусь в ", + " I am using": " Я использую", + " If you need to reach me, please contact the driver directly at": " Свяжитесь с водителем по номеру", + " KM": " КМ", + " Minutes": " Мин", + " Next as Cash !": " Далее наличными!", + " You Earn today is ": " Заработано сегодня: ", + " You Have in": " У вас есть в", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " и Политику конфиденциальности.", + " and acknowledge the ": " and acknowledge the ", + " as the driver.": " как водитель.", + " in your": " in your", + " in your wallet": " в кошелек", + " is ON for this month": " онлайн в этом месяце", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " чаевые\nВсего", + " to arrive you.": " чтобы прибыть.", + " to ride with": " чтобы ехать с", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " госномер ", + "--": "--", + ". I am at least 18 years old.": ". I am at least 18 years old.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "1. Опишите проблему", + "10 and get 4% discount": "10 и скидка 4%", + "100 and get 11% discount": "100 и скидка 11%", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "2. Прикрепить аудио", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 и скидка 6%", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "3. Просмотр деталей", + "3000 LE": "3000 ₽", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 и скидка 8%", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5 цифр", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Поездка по предзаказу, выбор лучших водителей и авто.", + "AI Page": "AI Страница", + "About Intaleq": "Об Intaleq", + "About Siro": "About Siro", + "About Us": "О нас", + "Accept": "Accept", + "Accept Order": "Принять заказ", + "Accept Ride's Terms & Review Privacy Notice": "Принять условия", + "Accepted Ride": "Принятая поездка", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "Активное время:", + "Active Users": "Active Users", + "Add Card": "Добавить карту", + "Add Credit Card": "Добавить кредитку", + "Add Home": "Добавить Дом", + "Add Location": "Добавить место", + "Add Location 1": "Добавить место 1", + "Add Location 2": "Добавить место 2", + "Add Location 3": "Добавить место 3", + "Add Location 4": "Добавить место 4", + "Add Payment Method": "Добавить метод оплаты", + "Add Phone": "Добавить телефон", + "Add Promo": "Добавить промо", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Остановки", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "Пополнить безопасным способом", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Адрес", + "Address: ": "Адрес: ", + "Admin DashBoard": "Панель админа", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "Доступно всем", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "Позже отменить нельзя!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "Возраст: ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "Уведомления", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "Разрешить доступ", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "Ошибка оплаты.", + "An error occurred while picking contacts:": "Ошибка при выборе контактов:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "Неожиданная ошибка. Попробуйте снова.", + "App Tester Login": "App Tester Login", + "App with Passenger": "Приложение с Пассажиром", + "Appearance": "Appearance", + "Applied": "Создан", + "Apply": "Apply", + "Apply Order": "Принять", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "Подъезжаю. Буду через 3 мин.", + "Are You sure to ride to": "Едем сюда?", + "Are you Sure to LogOut?": "Выйти?", + "Are you sure to cancel?": "Отменить?", + "Are you sure to delete recorded files": "Удалить записи?", + "Are you sure to delete this location?": "Удалить это местоположение?", + "Are you sure to delete your account?": "Удалить аккаунт?", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "Вы уверены? Это действие необратимо.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Вы хотите поехать сюда?", + "Are you want to go to this site": "Хотите поехать сюда?", + "Are you want to wait drivers to accept your order": "Ждать принятия заказа?", + "Arrival time": "Время прибытия", + "Arrived": "Arrived", + "Associate Degree": "Среднее специальное", + "Attach this audio file?": "Прикрепить этот файл?", + "Attention": "Attention", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Аудио загружено.", + "Available for rides": "Доступен", + "Average of Hours of": "Среднее часов", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Эконом", + "Bachelor's Degree": "Бакалавр", + "Back": "Back", + "Bahrain": "Бахрейн", + "Balance": "Баланс", + "Balance limit exceeded": "Лимит баланса превышен", + "Balance not enough": "Недостаточно средств", + "Balance:": "Баланс:", + "Be Slowly": "Помедленнее", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "Делайте четкие фото\nУ вас есть", + "Be sure to use it quickly! This code expires at": "Используй быстрее! Код истекает", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Гибкий выбор.", + "Before we start, please review our terms.": "Пожалуйста, ознакомьтесь с условиями.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Лучший выбор для города", + "Best choice for comfort car and flexible route and stops point": "Комфорт и гибкий маршрут", + "Birth Date": "Дата рождения", + "Bonus gift": "Bonus gift", + "BookingFee": "Сбор", + "Bottom Bar Example": "Пример", + "But you have a negative salary of": "Отрицательный баланс:", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Нажимая 'Согласен', я принимаю условия. Мне 18+.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Выбирая \"Согласен\", я принимаю Условия и ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "КОД", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "Вызов завершен", + "Call Ended": "Call Ended", + "Call Income": "Входящий вызов", + "Call Income from Driver": "Звонок от водителя", + "Call Income from Passenger": "Вызов от пассажира", + "Call Left": "Осталось звонков", + "Call Options": "Call Options", + "Call Page": "Звонок", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "Нет доступа к камере.", + "Camera not initialized yet": "Камера не готова", + "Camera not initilaized yet": "Камера не готова", + "Can I cancel my ride?": "Могу я отменить?", + "Can we know why you want to cancel Ride ?": "Почему отменяете?", + "Cancel": "Отмена", + "Cancel Ride": "Отмена", + "Cancel Search": "Отменить поиск", + "Cancel Trip": "Отменить поездку", + "Cancel Trip from driver": "Отмена поездки водителем", + "Canceled": "Отменено", + "Cannot apply further discounts.": "Скидок больше нет.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Сфотографируйте справку о несудимости", + "Capture an Image of Your Driver License": "Сфотографируйте права", + "Capture an Image of Your Driver's License": "Сфотографируйте права", + "Capture an Image of Your ID Document Back": "Сфотографируйте оборот паспорта", + "Capture an Image of Your ID Document front": "Сфотографируйте паспорт (лицевая)", + "Capture an Image of Your car license back": "Сфотографируйте СТС (оборот)", + "Capture an Image of Your car license front": "Сфотографируйте СТС (лицевая)", + "Car": "Авто", + "Car Color:": "Car Color:", + "Car Details": "Детали авто", + "Car License Card": "СТС", + "Car Make:": "Car Make:", + "Car Model:": "Car Model:", + "Car Plate is ": "Номер: ", + "Car Plate:": "Car Plate:", + "Card Number": "Номер карты", + "CardID": "ID карты", + "Cash": "Наличные", + "Change Country": "Сменить страну", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "Я передумал", + "Chassis": "VIN/Шасси", + "Chat with us anytime": "Пишите нам в любое время", + "Check back later for new offers!": "Заходите позже!", + "Choose Language": "Язык", + "Choose a contact option": "Выберите способ связи", + "Choose between those Type Cars": "Выберите тип авто", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "Выбрать на карте", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "Выберите подходящий вариант.", + "Choose who this order is for": "Для кого этот заказ", + "Choose your ride": "Choose your ride", + "City": "Город", + "Claim your 20 LE gift for inviting": "Заберите 20 ₽ за приглашение", + "Click here point": "Click here point", + "Click here to Show it in Map": "Показать на карте", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "Закрыть", + "Close panel": "Close panel", + "Closest & Cheapest": "Ближайший и Дешевый", + "Closest to You": "Ближе всего", + "Code": "Код", + "Code not approved": "Код не принят", + "Color": "Цвет", + "Color is ": "Цвет: ", + "Comfort": "Комфорт", + "Comfort choice": "Комфорт", + "Coming": "Coming", + "Communication": "Связь", + "Complaint": "Жалоба", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Нельзя подать жалобу на эту поездку. Возможно, она не завершена или не начата.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "Подтвердить", + "Confirm & Find a Ride": "Подтвердить и найти", + "Confirm Attachment": "Подтвердить вложение", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "Подтвердить", + "Confirm Trip": "Confirm Trip", + "Confirm your Email": "Подтвердите Email", + "Connected": "Подключено", + "Connecting...": "Connecting...", + "Connection Error": "Ошибка подключения", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "Контакты", + "Contact Support": "Поддержка", + "Contact Us": "Связаться с нами", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "Нужен доступ к контактам.", + "Contact us for any questions on your order.": "Свяжитесь с нами по вопросам заказа.", + "Contacts Loaded": "Контакты загружены", + "Continue": "Продолжить", + "Copy": "Копировать", + "Copy Code": "Копировать код", + "Copy this Promo to use it in your Ride!": "Скопируйте промокод!", + "Cost Duration": "Стоимость времени", + "Cost Of Trip IS ": "Стоимость: ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "Часов по дням", + "Create Wallet to receive your money": "Создать кошелек", + "Criminal Document Required": "Требуется справка о несудимости", + "Criminal Record": "Справка о несудимости", + "Crop Photo": "Crop Photo", + "Cropper": "Обрезка", + "Current Balance": "Текущий баланс", + "Current Location": "Текущее место", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Клиент не найден", + "Customer phone is not active": "Телефон клиента не активен", + "DISCOUNT": "СКИДКА", + "Dark Mode": "Dark Mode", + "Date": "Дата", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth is": "Дата рождения:", + "Date of Birth: ": "Дата рождения: ", + "Days": "Дни", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "Удалить аккаунт", + "Delete Permanently": "Удалить навсегда", + "Delete Recording?": "Delete Recording?", + "Deleted": "Удалено", + "Destination": "Финиш", + "Destination Set": "Destination Set", + "Destination selected": "Destination selected", + "Detect Your Face ": "Проверка лица ", + "Device Change Detected": "Device Change Detected", + "Direct talk with our team": "Прямой разговор с нашей командой", + "Displacement": "Объем", + "Distance": "Distance", + "Distance To Passenger is ": "Расстояние до пассажира: ", + "Distance from Passenger to destination is ": "Дистанция до цели: ", + "Distance is ": "Дистанция: ", + "Distance of the Ride is ": "Дистанция: ", + "Do you have an invitation code from another driver?": "У вас есть код приглашения?", + "Do you want to change Home location": "Изменить Дом", + "Do you want to change Work location": "Изменить Работу", + "Do you want to pay Tips for this Driver": "Оставить чаевые?", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "Доктор наук", + "Document Number: ": "Номер документа: ", + "Documents check": "Проверка документов", + "Don't Cancel": "Не отменять", + "Don't forget your personal belongings.": "Не забудьте личные вещи.", + "Don't forget your ride!": "Don't forget your ride!", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "Готово", + "Don’t forget your personal belongings.": "Не забудьте личные вещи.", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Download the Intaleq Driver app now and earn rewards!": "Скачай Intaleq Driver и получай бонусы!", + "Download the Intaleq app now and enjoy your ride!": "Скачай Intaleq и наслаждайся поездкой!", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Скачай приложение:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Водитель", + "Driver Accepted the Ride for You": "Водитель принял поездку для вас", + "Driver Applied the Ride for You": "Водитель создал поездку для вас", + "Driver Cancelled Your Trip": "Водитель отменил вашу поездку", + "Driver Car Plate": "Номер авто", + "Driver Finish Trip": "Водитель завершил поездку", + "Driver Is Going To Passenger": "Водитель едет к пассажиру", + "Driver List": "Driver List", + "Driver Name": "Имя водителя", + "Driver Name:": "Driver Name:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Driver Phone:", + "Driver Referral": "Driver Referral", + "Driver Registration": "Регистрация", + "Driver Registration & Requirements": "Регистрация водителя", + "Driver Wallet": "Кошелек водителя", + "Driver already has 2 trips within the specified period.": "У водителя уже 2 поездки в этот период.", + "Driver asked me to cancel": "Водитель попросил меня отменить", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "Водитель в пути", + "Driver is taking too long": "Водитель едет слишком долго", + "Driver is waiting at pickup.": "Водитель ждет.", + "Driver joined the channel": "Водитель в чате", + "Driver left the channel": "Водитель покинул чат", + "Driver phone": "Телефон водителя", + "Driver's License": "Водительское удостоверение", + "Drivers License Class": "Категория", + "Drivers License Class: ": "Категория: ", + "Duration To Passenger is ": "Время до пассажира: ", + "Duration is": "Длительность:", + "Duration of Trip is ": "Длительность: ", + "Duration of the Ride is ": "Длительность: ", + "EGP": "EGP", + "Edit Profile": "Редактировать", + "Edit Your data": "Редактировать", + "Education": "Образование", + "Egypt": "Египет", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "Электро", + "Email": "Email", + "Email Support": "Поддержка по электронной почте", + "Email Us": "Написать нам", + "Email Wrong": "Неверный Email", + "Email is": "Email:", + "Email you inserted is Wrong.": "Email введен неверно.", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "Тип занятости", + "Enable Location": "Включить геолокацию", + "Enable Location Access": "Enable Location Access", + "End": "End", + "End Ride": "Завершить", + "Enjoy a safe and comfortable ride.": "Наслаждайтесь безопасностью.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Выгодные цены.", + "Enter Your First Name": "Введите имя", + "Enter a password": "Enter a password", + "Enter a valid email": "Enter a valid email", + "Enter driver's phone": "Введите телефон водителя", + "Enter phone": "Введите телефон", + "Enter promo code": "Введите промокод", + "Enter promo code here": "Введите код здесь", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "Введи промокод и получи", + "Enter your City": "Enter your City", + "Enter your Note": "Заметка", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Введите текст жалобы...", + "Enter your email address": "Введите email", + "Enter your feedback here": "Ваш отзыв", + "Enter your first name": "Введите имя", + "Enter your last name": "Введите фамилию", + "Enter your password": "Enter your password", + "Enter your phone number": "Введите номер", + "Enter your promo code": "Enter your promo code", + "Error": "Ошибка", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "Вечер", + "Exclusive offers and discounts always with the Intaleq app": "Эксклюзивные предложения", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "Дата окончания", + "Expiration Date ": "Истекает: ", + "Expiry Date": "Действует до", + "Expiry Date: ": "Истекает: ", + "Face Detection Result": "Результат распознавания", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "Ошибка поиска, попробуйте еще раз позже", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "Быстрая поддержка", + "Favorite Places": "Favorite Places", + "Fee is": "Сбор:", + "Feed Back": "Отзыв", + "Feedback": "Отзыв", + "Feedback data saved successfully": "Сохранено", + "Female": "Женский", + "Find answers to common questions": "Ответы на вопросы", + "Finish Monitor": "Завершить", + "Finished": "Finished", + "First Name": "Имя", + "First name": "Имя", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Посадка", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "Водителям", + "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 Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "Для официальных запросов", + "Found another transport": "Нашел другой транспорт", + "Free Call": "Free Call", + "Frequently Asked Questions": "Частые вопросы", + "Frequently Questions": "Частые вопросы", + "From": "Откуда", + "From :": "От:", + "From : ": "От: ", + "From : Current Location": "От: Текущее место", + "From:": "From:", + "Fuel": "Топливо", + "Full Name (Marital)": "ФИО", + "FullName": "ФИО", + "GPS Required Allow !.": "Включите GPS!", + "Gender": "Пол", + "General": "General", + "Get": "Get", + "Get Details of Trip": "Детали поездки", + "Get Direction": "Маршрут", + "Get a discount on your first Intaleq ride!": "Скидка на первую поездку в Intaleq!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "Получить!", + "Get to your destination quickly and easily.": "Доберитесь быстро и легко.", + "Getting Started": "Начало", + "Gift Already Claimed": "Подарок уже получен", + "Go To Favorite Places": "В избранное", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "Далее\nскан СТС.", + "Go to passenger Location now": "К пассажиру", + "Go to this Target": "К этой цели", + "Go to this location": "Перейти к локации", + "Grant": "Grant", + "H and": "Ч и", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "Есть промокод?", + "Heading your way now. Please be ready.": "Еду к вам. Будьте готовы.", + "Height: ": "Рост: ", + "Hello this is Captain": "Привет, это водитель", + "Hello this is Driver": "Привет, я водитель", + "Hello! I'm inviting you to try Intaleq.": "Привет! Приглашаю попробовать Intaleq.", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hello, I'm at the agreed-upon location", + "Help Details": "Помощь", + "Helping Center": "Помощь", + "Here recorded trips audio": "Аудио поездок", + "Hi": "Привет", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Здравствуйте, я выезжаю", + "Hi! This is": "Привет! Это", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "Куда едем ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "Среднее образование", + "History of Trip": "История", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "How can I pay for my ride?": "Как платить?", + "How can I register as a driver?": "Как стать водителем?", + "How do I communicate with the other party (passenger/driver)?": "Как связаться?", + "How do I request a ride?": "Как заказать поездку?", + "How many hours would you like to wait?": "Сколько часов ждать?", + "How much longer will you be?": "How much longer will you be?", + "I Agree": "Согласен", + "I Arrive your site": "Я на месте", + "I added the wrong pick-up/drop-off location": "Неверный адрес", + "I am currently located at": "I am currently located at", + "I arrive you": "Я на месте", + "I cant register in your app in face detection ": "Не могу пройти проверку лица", + "I don't have a reason": "Нет причины", + "I don't need a ride anymore": "Больше не нужно", + "I want to order for myself": "Заказать для себя", + "I want to order for someone else": "Заказать другому человеку", + "I was just trying the application": "Я просто пробовал", + "I will go now": "Выезжаю", + "I will slow down": "Снижаю скорость", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "Я вас жду", + "I've been trying to reach you but your phone is off.": "I've been trying to reach you but your phone is off.", + "ID Documents Back": "Оборотная сторона паспорта", + "ID Documents Front": "Лицевая сторона паспорта", + "If you in Car Now. Press Start The Ride": "Если вы в машине, нажмите Начать", + "If you need assistance, contact us": "Свяжитесь для помощи", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Добавить остановку", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Открыть Google Карты", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "Результат: ", + "In-App VOIP Calls": "Звонки в приложении", + "Including Tax": "Вкл. налог", + "Incorrect sms code": "⚠️ Неверный СМС код.", + "Increase Fare": "Повысить цену", + "Increase Fee": "Повысить цену", + "Increase Your Trip Fee (Optional)": "Повысить стоимость (Опционально)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Повышение цены привлечет водителей. Повысить?", + "Insert": "Вставить", + "Insert Emergincy Number": "Ввести SOS номер", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Вставьте промокод", + "Inspection Date": "Техосмотр", + "InspectionResult": "Результат осмотра", + "Intaleq": "Intaleq", + "Intaleq Balance": "Баланс Intaleq", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Конец", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Поддержка Intaleq", + "Intaleq Wallet": "Кошелек Intaleq", + "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 — безопасное и доступное такси.", + "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 соединяет вас с ближайшими водителями.", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq - надежное такси.", + "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 - безопасное такси. Комиссия 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": "Intaleq's Response", + "Invalid MPIN": "Неверный MPIN", + "Invalid OTP": "Неверный код", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "Приглашение использовано", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "Приглашение отправлено", + "Is the Passenger in your Car ?": "Пассажир в машине?", + "Issue Date": "Дата выдачи", + "IssueDate": "Дата выдачи", + "JOD": "₽", + "Join": "Войти", + "Join Intaleq as a driver using my referral code!": "Стань водителем Intaleq с моим кодом!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "Иордания", + "KM": "КМ", + "Keep it up!": "Так держать!", + "Kuwait": "Кувейт", + "LE": "₽", + "Lady": "Женский", + "Lady Captain for girls": "Женский тариф для девушек", + "Lady Captains Available": "Женщины-водители", + "Language": "Язык", + "Language Options": "Языки", + "Last Name": "Last Name", + "Last name": "Фамилия", + "Latest Recent Trip": "Последняя поездка", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Выйти", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "Проверим СТС ", + "Lets check License Back Face": "Проверим оборот", + "License Categories": "Категории", + "License Type": "Тип прав", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "Привязать номер для переводов", + "Listen": "Listen", + "Location": "Location", + "Location Link": "Ссылка на локацию", + "Location Received": "Location Received", + "Log Off": "Выйти", + "Log Out Page": "Страница выхода", + "Login": "Login", + "Login Captin": "Вход для водителя", + "Login Driver": "Вход водителя", + "Logout": "Logout", + "Lowest Price Achieved": "Минимальная цена", + "Made :": "Марка :", + "Make": "Марка", + "Make is ": "Марка: ", + "Male": "Мужской", + "Map Error": "Map Error", + "Map Passenger": "Карта", + "Marital Status": "Семейное положение", + "Master's Degree": "Магистр", + "Maximum fare": "Макс. стоимость", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Мин. стоимость", + "Minute": "Мин", + "Mishwar Vip": "Mishwar VIP", + "Model": "Модель", + "Model is": "Модель:", + "Morning": "Утро", + "Most Secure Methods": "Безопасные методы", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "Двигайте карту, чтобы установить метку", + "Mute": "Mute", + "My Balance": "Мой баланс", + "My Card": "Моя карта", + "My Cared": "Мои карты", + "My Profile": "Профиль", + "My current location is:": "Я здесь:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "Моя локация", + "N/A": "N/A", + "Name": "Имя", + "Name (Arabic)": "Имя (Местное)", + "Name (English)": "Имя (Англ)", + "Name :": "Имя:", + "Name in arabic": "Имя (местное)", + "Name of the Passenger is ": "Имя пассажира: ", + "National ID": "Паспорт", + "National Number": "Номер паспорта", + "NationalID": "Серия и номер паспорта", + "Nearby": "Nearby", + "Nearest Car": "Nearest Car", + "Nearest Car for you about ": "Ближайшая машина через ", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Network error occurred": "Network error occurred", + "Next": "Далее", + "Night": "Ночь", + "No": "Нет", + "No ,still Waiting.": "Нет, жду.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Нет машин. Извините!", + "No Car or Driver Found in your area.": "Нет машин в вашем районе.", + "No Drivers Found": "Водители не найдены", + "No I want": "Нет, хочу", + "No Notifications": "No Notifications", + "No Promo for today .": "Нет промокодов.", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "Нет ответа.", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "Звоните через приложение без SIM.", + "No accepted orders? Try raising your trip fee to attract riders.": "Поднимите цену для привлечения.", + "No audio files found.": "Аудиофайлы не найдены.", + "No cars nearby": "No cars nearby", + "No contacts available": "No contacts available", + "No contacts found": "Контакты не найдены", + "No contacts with phone numbers were found on your device.": "На устройстве нет контактов с номерами.", + "No driver accepted my request": "Никто не принял заказ", + "No drivers accepted your request yet": "Никто еще не принял заказ", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "В данный момент водителей не найдено.\nПожалуйста, попробуйте еще раз позже.", + "No face detected": "Лицо не найдено", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Нет изображения", + "No invitation found yet!": "Приглашения не найдены!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "Никто не принял? Попробуйте повысить цену.", + "No passenger found for the given phone number": "Пассажир не найден", + "No promos available right now.": "Нет доступных акций.", + "No ride found yet": "Поездка не найдена", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No trip data available", + "No trip history found": "История пуста", + "No trip yet found": "Нет поездок", + "No user found": "No user found", + "No user found for the given phone number": "Пользователь не найден", + "No wallet record found": "Кошелек не найден", + "No, I don't have a code": "Нет кода", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, thanks": "Нет, спасибо", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "Не подключено", + "Not set": "Не задано", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "Уведомления", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Now select start pick", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "Профессия", + "Ok": "Ок", + "Ok , See you Tomorrow": "Ок, до завтра", + "Ok I will go now.": "Хорошо, иду.", + "Old and affordable, perfect for budget rides.": "Недорогой и доступный.", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "Настройки", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "Или оплатите наличными", + "Order": "Заказ", + "Order Accepted": "Order Accepted", + "Order Applied": "Заказ принят", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Отмена пассажиром", + "Order Details Intaleq": "Детали заказа", + "Order Details Siro": "Order Details Siro", + "Order History": "История заказов", + "Order Request Page": "Страница заказа", + "Order Under Review": "Order Under Review", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "Заказ себе", + "Order for someone else": "Заказ другому", + "OrderId": "ID заказа", + "OrderVIP": "VIP Заказ", + "Origin": "Старт", + "Other": "Другой", + "Our dedicated customer service team ensures swift resolution of any issues.": "Быстрое решение проблем.", + "Owner Name": "Владелец", + "Passenger": "Passenger", + "Passenger Cancel Trip": "Пассажир отменил поездку", + "Passenger Name is ": "Пассажир: ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger come to you": "Пассажир идет к вам", + "Passenger name : ": "Пассажир: ", + "Password": "Password", + "Password must br at least 6 character.": "Пароль мин. 6 символов.", + "Paste WhatsApp location link": "Вставьте ссылку WhatsApp", + "Paste location link here": "Вставьте ссылку здесь", + "Paste the code here": "Вставьте код", + "Pay": "Pay", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Оплата водителю напрямую", + "Pay from my budget": "Оплата с баланса", + "Pay with Credit Card": "Кредитная карта", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "Кошельком", + "Pay with Your": "Оплата", + "Pay with Your PayPal": "Оплата PayPal", + "Payment Failed": "Ошибка оплаты", + "Payment History": "История платежей", + "Payment Method": "Метод оплаты", + "Payment Options": "Оплата", + "Payment Successful": "Успешно", + "Payments": "Оплата", + "Perfect for adventure seekers who want to experience something new and exciting": "Для искателей приключений", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "Идеально для новых авто и свободы маршрута", + "Permission Required": "Permission Required", + "Permission denied": "Доступ запрещен", + "Personal Information": "Личная информация", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Телефон:", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is verified before": "Phone number is verified before", + "Phone number isn't an Egyptian phone number": "Phone number isn't an Egyptian phone number", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "Указать на карте", + "Pick from map destination": "Pick from map destination", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "Указать назначение", + "Pick your ride location on the map - Tap to confirm": "Укажите место на карте", + "Plan Your Route": "Plan Your Route", + "Plate": "Номер", + "Plate Number": "Госномер", + "Please Try anther time ": "Попробуйте позже ", + "Please Wait If passenger want To Cancel!": "Ждите, вдруг отмена!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "Пожалуйста, проверьте интернет-соединение", + "Please don't be late": "Please don't be late", + "Please don't be late, I'm waiting for you at the specified location.": "Please don't be late, I'm waiting for you at the specified location.", + "Please enter": "Введите", + "Please enter Your Email.": "Пожалуйста, введите email.", + "Please enter Your Password.": "Введите пароль.", + "Please enter a correct phone": "Введите корректный номер", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "Введите номер", + "Please enter a valid 16-digit card number": "Введите 16 цифр карты", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Введите верный код", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "CVV код", + "Please enter the cardholder name": "Имя владельца", + "Please enter the complete 6-digit code.": "Введите полный 6-значный код.", + "Please enter the expiry date": "Срок действия", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Введите город.", + "Please enter your Question.": "Введите вопрос.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Введите отзыв.", + "Please enter your first name.": "Введите имя.", + "Please enter your last name.": "Введите фамилию.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Пожалуйста, введите номер.", + "Please go to Car Driver": "Пожалуйста, пройдите к водителю", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "Идите к машине ", + "Please help! Contact me as soon as possible.": "Помогите! Свяжитесь со мной.", + "Please make sure not to leave any personal belongings in the car.": "Убедитесь, что не оставили вещи в машине.", + "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": "Проверьте вещи и баланс кошелька перед выходом. Спасибо за выбор Intaleq.", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "Поместите права в рамку", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "Пожалуйста, оставайтесь в точке посадки.", + "Please try again in a few moments": "Please try again in a few moments", + "Please verify your identity": "Подтвердите личность", + "Please wait for the passenger to enter the car before starting the trip.": "Ждите пассажира.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "Пожалуйста, напишите причину...", + "Point": "Балл", + "Potential security risks detected. The application may not function correctly.": "Обнаружены риски безопасности. Приложение может работать некорректно.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Preferences": "Preferences", + "Price": "Price", + "Price of trip": "Price of trip", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Политика конфиденциальности", + "Professional driver": "Professional driver", + "Profile": "Профиль", + "Profile photo updated": "Profile photo updated", + "Promo": "Промокод", + "Promo Already Used": "Уже использован", + "Promo Code": "Промокод", + "Promo Code Accepted": "Код принят", + "Promo Copied!": "Промокод скопирован!", + "Promo End !": "Промо всё!", + "Promo Ended": "Промо завершено", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "Скопировано!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "Промоакции", + "Promos For Today": "Promos For Today", + "Pyament Cancelled .": "Оплата отменена.", + "Qatar": "Катар", + "Quick Access": "Quick Access", + "Quick Actions": "Быстрые действия", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "Тихий и Экологичный", + "Rate Captain": "Оценить водителя", + "Rate Driver": "Оценка водителя", + "Rate Passenger": "Оценить пассажира", + "Rating is": "Rating is", + "Rating is ": "Рейтинг: ", + "Rating is ": "Rating is ", + "Rayeh Gai": "Туда-обратно", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Туда-обратно: Удобные поездки между городами.", + "Reach out to us via": "Свяжитесь с нами через", + "Received empty route data.": "Received empty route data.", + "Recent Places": "Недавние места", + "Recharge my Account": "Пополнить", + "Record": "Record", + "Record saved": "Запись сохранена", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "Запись поездок", + "Recorded Trips for Safety": "Запись поездок для безопасности", + "Refresh Map": "Обновить карту", + "Refuse Order": "Отклонить", + "Register": "Регистрация", + "Register Captin": "Регистрация водителя", + "Register Driver": "Регистрация водителя", + "Register as Driver": "Стать водителем", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Религия", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "Отправить снова", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "Управление", + "Ride Summaries": "Сводка", + "Ride Summary": "Итог", + "Ride Today : ": "Поездка сегодня: ", + "Ride Wallet": "Кошелек", + "Rides": "Поездки", + "Rouats of Trip": "Маршруты", + "Route": "Route", + "Route Not Found": "Маршрут не найден", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "SOS номер", + "SYP": "SYP", + "Safety & Security": "Безопасность", + "Saudi Arabia": "Саудовская Аравия", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "Сохранить карту", + "Save Name": "Save Name", + "Saved Sucssefully": "Успешно сохранено", + "Scan Driver License": "Скан прав", + "Scan ID MklGoogle": "Скан ID", + "Scan Id": "Скан паспорта", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Самокат", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "Найти другого водителя", + "Search for waypoint": "Точка маршрута", + "Search for your Start point": "Точка старта", + "Search for your destination": "Поиск назначения", + "Searching for nearby drivers...": "Поиск водителей поблизости...", + "Searching for the nearest captain...": "Поиск ближайшего водителя...", + "Secure": "Secure", + "Security Warning": "⚠️ Угроза безопасности", + "See you on the road!": "До встречи в пути!", + "Select Appearance": "Select Appearance", + "Select Country": "Страна", + "Select Date": "Выбрать дату", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "Тип заказа", + "Select Payment Amount": "Сумма оплаты", + "Select This Ride": "Select This Ride", + "Select Time": "Выбрать время", + "Select Waiting Hours": "Часы ожидания", + "Select Your Country": "Выберите страну", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Select date and time of trip", + "Select one message": "Выберите сообщение", + "Select recorded trip": "Выбрать запись", + "Select your destination": "Выберите назначение", + "Select your preferred language for the app interface.": "Выберите язык интерфейса.", + "Selected Date": "Выбрана дата", + "Selected Date and Time": "Дата и Время", + "Selected Time": "Выбрано время", + "Selected driver": "Выбранный водитель", + "Selected file:": "Файл:", + "Send Email": "Send Email", + "Send Intaleq app to him": "Отправить ему приложение Intaleq", + "Send Invite": "Отправить", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Отправить код", + "Send Verification Code": "Отправить код", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Свое сообщение", + "Send to Driver Again": "Send to Driver Again", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Сессия истекла. Войдите снова.", + "Set Destination": "Set Destination", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Номер для кошелька", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "Указать место посадки", + "Setting": "Настройка", + "Settings": "Настройки", + "Sex is ": "Пол: ", + "Share": "Share", + "Share App": "Поделиться приложением", + "Share Trip": "Share Trip", + "Share Trip Details": "Поделиться деталями", + "Share this code with your friends and earn rewards when they use it!": "Поделись кодом и заработай!", + "Share with friends and earn rewards": "Делись с друзьями и получай бонусы", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Показать приглашения", + "Show Promos": "Показать промо", + "Show Promos to Charge": "Промо для пополнения", + "Show latest promo": "Показать промокоды", + "Showing": "Показано", + "Sign In by Apple": "Войти через Apple", + "Sign In by Google": "Войти через Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Выйти", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "Вход через Google", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Откройте приложение, введите адрес и закажите.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "Извините 😔", + "Sorry, there are no cars available of this type right now.": "Извините, сейчас нет доступных машин этого типа.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Просторный минивэн для семей и групп. Комфортно, безопасно и выгодно.", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "Начать запись", + "Start the Ride": "Начать", + "Statistics": "Статистика", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "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 Siro app.": "Step-by-step instructions on how to request a ride through the Siro app.", + "Stop": "Stop", + "Submit": "Submit", + "Submit ": "Отправить ", + "Submit Complaint": "Отправить жалобу", + "Submit Question": "Задать вопрос", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "Подать жалобу", + "Submit rating": "Отправить", + "Success": "Успешно", + "Support & Info": "Support & Info", + "Support is Away": "Поддержка сейчас недоступна", + "Support is currently Online": "Поддержка сейчас онлайн", + "Switch Rider": "Сменить пассажира", + "Syria": "Сирия", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "Сервис такси в России.", + "System Default": "System Default", + "Take Image": "Сделать фото", + "Take Picture Of Driver License Card": "Фото прав", + "Take Picture Of ID Card": "Фото паспорта", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "Нажми для копирования!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "Цель", + "Tariff": "Тариф", + "Tariffs": "Тарифы", + "Tax Expiry Date": "Окончание налога", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thanks": "Спасибо", + "The Driver Will be in your location soon .": "Водитель скоро будет.", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", + "The captain is responsible for the route.": "Водитель отвечает за маршрут.", + "The distance less than 500 meter.": "Дистанция < 500 м.", + "The driver accept your order for": "Водитель принял заказ за", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "Водитель принял ваш заказ", + "The driver canceled your ride.": "Водитель отменил поездку.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "Водитель отменил поездку по экстренной причине.\nХотите немедленно найти другого водителя?", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "Водитель едет", + "The driver waiting you in picked location .": "Водитель ждет вас.", + "The driver waitting you in picked location .": "Водитель ждет.", + "The drivers are reviewing your request": "Водители смотрят заказ", + "The email or phone number is already registered.": "Email или телефон уже зарегистрирован.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "ФИО в справке не совпадает с правами.", + "The invitation was sent successfully": "Приглашение отправлено", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Номер паспорта не совпадает.", + "The order Accepted by another Driver": "Заказ принят другим водителем", + "The order has been accepted by another driver.": "Заказ принят другим водителем.", + "The payment was approved.": "Оплата одобрена.", + "The payment was not approved. Please try again.": "Оплата не прошла.", + "The price may increase if the route changes.": "Цена может измениться.", + "The promotion period has ended.": "Акция закончилась.", + "The reason is": "The reason is", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Поездка началась! Делитесь маршрутом, пишите аудио.", + "There is no Car or Driver in your area.": "В вашем районе нет машин или водителей.", + "There is no data yet.": "Нет данных.", + "There is no help Question here": "Нет вопроса", + "There is no notification yet": "Нет уведомлений", + "There no Driver Aplly your order sorry for that ": "Никто не взял заказ, извините ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Пробки. Может, другое место?", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "Сумма от пассажиров", + "This amount for all trip I get from Passengers and Collected For me in": "Собранная сумма", + "This is a scheduled notification.": "Запланированное уведомление.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Для скутера или мотоцикла.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "Этот номер уже приглашен.", + "This price is": "Цена:", + "This price is fixed even if the route changes for the driver.": "Фиксированная цена.", + "This price may be changed": "Цена может измениться", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Заказ уже занят.", + "This ride type allows changes, but the price may increase": "Изменения возможны, цена может вырасти", + "This ride type does not allow changes to the destination or additional stops": "Без изменений маршрута", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Прямая поездка, фикс. цена.", + "This trip is for women only": "Только для женщин", + "Time": "Time", + "Time to arrive": "Время прибытия", + "Tip is ": "Чаевые: ", + "To :": "To :", + "To : ": "Куда: ", + "To Home": "To Home", + "To Work": "To Work", + "To become a passenger, you must review and agree to the ": "Чтобы стать пассажиром, примите ", + "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.": "Загрузите права, паспорт и СТС. Проверка займет 2-3 минуты.", + "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 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 change Language the App": "To change Language the App", + "To change some Settings": "Изменить настройки", + "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 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 Intaleq support directly.": "Посетите сайт.", + "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 Siro support directly.", + "To use Wallet charge it": "Пополните кошелек", + "Today's Promos": "Промоакции сегодня", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Пополнить кошелек", + "Top up Wallet to continue": "Пополните кошелек для продолжения", + "Total Amount:": "Всего:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "Бюджет по карте: ", + "Total Budget from trips is ": "Бюджет поездок: ", + "Total Connection Duration:": "Время соединения:", + "Total Cost": "Всего", + "Total Cost is ": "Стоимость: ", + "Total Duration:": "Всего времени:", + "Total For You is ": "Всего вам: ", + "Total From Passenger is ": "Сумма от пассажира: ", + "Total Hours on month": "Часов в месяц", + "Total Invites": "Total Invites", + "Total Points is": "Всего баллов", + "Total Price": "Total Price", + "Total budgets on month": "Бюджет за месяц", + "Total points is ": "Всего баллов: ", + "Total price from ": "Всего от ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Современный, тихий электромобиль. Премиальный и экологичный выбор.", + "Trip Cancelled": "Поездка отменена", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Поездка отменена. Стоимость возвращена на ваш кошелек.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Мониторинг поездки", + "Trip Status:": "Trip Status:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "Поездка завершена", + "Trip finished ": "Trip finished ", + "Trip has Steps": "Поездка с этапами", + "Trip is Begin": "Поездка началась", + "Trip updated successfully": "Trip updated successfully", + "Trips recorded": "Записанные поездки", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "Турция", + "Type here Place": "Введите место", + "Type something...": "Напишите...", + "Type your Email": "Введите Email", + "Type your message": "Введите сообщение", + "Type your message...": "Type your message...", + "USA": "США", + "Uncompromising Security": "Безопасность", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Обновить", + "Update Available": "Update Available", + "Update Education": "Обновить образование", + "Update Gender": "Обновить пол", + "Update Name": "Update Name", + "Uploaded": "Загружено", + "Use Touch ID or Face ID to confirm payment": "Используйте Touch ID или Face ID", + "Use code:": "Код:", + "Use my invitation code to get a special gift on your first ride!": "Используй мой код для подарка на первую поездку!", + "Use my referral code:": "Используй мой код:", + "User does not exist.": "Пользователь не существует.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User with this phone number or email already exists.": "Пользователь с таким номером или email уже существует.", + "Uses cellular network": "Uses cellular network", + "VIN": "VIN", + "VIN :": "VIN :", + "VIN is": "VIN:", + "VIP Order": "VIP Заказ", + "Valid Until:": "Действует до:", + "Van": "Минивэн", + "Van for familly": "Минивэн для семьи", + "Variety of Trip Choices": "Выбор поездок", + "Vehicle Details Back": "Авто сзади", + "Vehicle Details Front": "Авто спереди", + "Vehicle Options": "Автомобили", + "Verification Code": "Код подтверждения", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "Подтвердить", + "Verify Email": "Подтвердить Email", + "Verify Email For Driver": "Email водителя", + "Verify OTP": "Проверка кода", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Вибрация кнопок", + "View Map": "View Map", + "View your past transactions": "Просмотр транзакций", + "Visit Website/Contact Support": "Сайт/Поддержка", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Посетите сайт или напишите в поддержку.", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "Голосовой звонок", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "Ждем водителя...", + "Waiting for Driver ...": "Ждем водителя...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Ожидание локации", + "Waiting...": "Waiting...", + "Wallet": "Кошелек", + "Wallet is blocked": "Кошелек заблокирован", + "Wallet!": "Кошелек!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "Внимание: Скорость!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Внимание: Превышение скорости!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "Нет машин в вашем районе!", + "We apologize 😔": "Мы приносим извинения 😔", + "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", + "We are process picture please wait ": "Обработка фото... ", + "We are search for nearst driver": "Ищем водителя", + "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 couldn't find a valid route to this destination. Please try selecting a different point.": "Не удалось построить маршрут. Выберите другую точку.", + "We have sent a verification code to your mobile number:": "Мы отправили код подтверждения на ваш номер:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Водители не найдены. Попробуйте повысить цену, чтобы привлечь их.", + "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 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 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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "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 цифр на email", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "Ищем нового водителя.\nПодождите.", + "We're here to help you 24/7": "Мы готовы помочь вам 24/7", + "Welcome Back": "Welcome Back", + "Welcome Back!": "С возвращением!", + "Welcome to Intaleq!": "Добро пожаловать в Intaleq!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "Требования к водителю?", + "What safety measures does Intaleq offer?": "Какие меры безопасности?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Какие авто доступны?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "Локация из WhatsApp", + "When": "Когда", + "Where are you going?": "Куда вы направляетесь?", + "Where are you, sir?": "Where are you, sir?", + "Where to": "Куда едем?", + "Where you want go ": "Куда едем ", + "Why Choose Intaleq?": "Почему Intaleq?", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "Машина за минуты.", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "Работа", + "Work & Contact": "Работа и Контакты", + "Work Saved": "Work Saved", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "Время 12:00 - 19:00.\nWhatsApp или email.", + "Working Hours:": "Рабочие часы:", + "Write note": "Заметка", + "Wrong pickup location": "Неверное место подачи", + "Year": "Год", + "Year is": "Год:", + "Yes": "Yes", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Да, вы можете отменить поездку при определенных условиях (например, до назначения водителя). Подробности см. в правилах отмены Intaleq.", + "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 Siro 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 Are Stopped For this Day !": "Блокировка на сегодня!", + "You Can Cancel Trip And get Cost of Trip From": "Можно отменить и получить стоимость с", + "You Can cancel Ride After Captain did not come in the time": "Можно отменить при опоздании водителя", + "You Dont Have Any amount in": "Нет средств в", + "You Dont Have Any places yet !": "Нет сохраненных мест!", + "You Have": "У вас есть", + "You Have Tips": "Есть чаевые", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "Вы отказались от 3 поездок.\nДо завтра!", + "You Should be select reason.": "Выберите причину.", + "You Should choose rate figure": "Поставьте оценку", + "You are Delete": "Удаление", + "You are Stopped": "Вы заблокированы", + "You are not in near to passenger location": "Вы далеко", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "Купите баллы для работы", + "You can buy points from your budget": "Купить баллы", + "You can call or record audio during this trip.": "Вы можете звонить или вести запись во время поездки.", + "You can call or record audio of this trip": "Звонок или запись", + "You can cancel Ride now": "Можно отменить", + "You can cancel trip": "Можно отменить", + "You can change the Country to get all features": "Смените страну для всех функций", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Сменить язык", + "You can change the vibration feedback for all buttons": "Настройка вибрации кнопок", + "You can claim your gift once they complete 2 trips.": "Вы получите подарок, когда они совершат 2 поездки.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Через чат.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Связь с 12:00 до 19:00.", + "You can decline a request without any cost": "Отказ бесплатный", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Наличные или карта.", + "You can resend in": "Отправить снова через", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Делись и зарабатывай.", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "Нужно обновить права", + "You canceled VIP trip": "You canceled VIP trip", + "You deserve the gift": "Вы заслужили подарок", + "You dont Add Emergency Phone Yet!": "Нет экстренного номера!", + "You dont have Points": "Нет баллов", + "You have already received your gift for inviting": "Вы уже получили подарок за это приглашение", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "Вы уже использовали этот код.", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "Звонок от водителя", + "You have copied the promo code.": "Код скопирован.", + "You have earned 20": "Вы заработали 20", + "You have finished all times ": "Попытки исчерпаны", + "You have got a gift for invitation": "Вы получили подарок за приглашение", + "You have in account": "На счету", + "You have promo!": "У вас есть промо!", + "You must Verify email !.": "Подтвердите email!", + "You must be charge your Account": "Пополните счет", + "You must restart the app to change the language.": "Перезапустите приложение для смены языка.", + "You should have upload it .": "Вы должны загрузить её.", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Выберите одно", + "You should select your country": "Выберите страну", + "You trip distance is": "Дистанция:", + "You will arrive to your destination after ": "Прибытие через ", + "You will arrive to your destination after timer end.": "Прибытие по таймеру.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Оплата водителю или в след. раз", + "You will be thier in": "Прибытие через", + "You will choose allow all the time to be ready receive orders": "Выберите 'Всегда разрешать' для приема заказов", + "You will choose one of above !": "Выберите вариант!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "Вы получите оплату", + "You will receive a code in SMS message": "Код придет в СМС", + "You will receive a code in WhatsApp Messenger": "Код придет в WhatsApp", + "You will recieve code in sms message": "Вы получите код по СМС", + "Your Account is Deleted": "Аккаунт удален", + "Your Budget less than needed": "Мало средств", + "Your Choice, Our Priority": "Ваш выбор - приоритет", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "Длительность: ", + "Your Wallet balance is ": "Ваш баланс: ", + "Your are far from passenger location": "Вы далеко от пассажира", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Данные удалятся через 2 недели.", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Your email address", + "Your fee is ": "Сбор: ", + "Your invite code was successfully applied!": "Код применен!", + "Your journey starts here": "Ваша поездка начинается здесь", + "Your name": "Ваше имя", + "Your order is being prepared": "Подготовка заказа", + "Your order sent to drivers": "Отправлено водителям", + "Your password": "Your password", + "Your past trips will appear here.": "Здесь будут ваши прошлые поездки.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "Твой код приглашения:", + "Your trip cost is": "Стоимость:", + "Your trip distance is": "Дистанция:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nМы предлагаем доступные цены.", + "accepted": "accepted", + "accepted your order at price": "accepted your order at price", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "Для продолжения примите Условия и Политику.", + "airport": "airport", + "an error occurred": "Произошла ошибка: @error", + "and I have a trip on": "и у меня поездка на", + "and acknowledge our": "и принять", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Безопасное такси.", + "arrival time to reach your point": "время прибытия в точку", + "as the driver.": "as the driver.", + "before": "до", + "begin": "begin", + "by": "by", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "change device", + "committed_to_safety": "Мы за безопасность.", + "complete profile subtitle": "Заполните профиль для начала", + "complete registration button": "Завершить регистрацию", + "complete, you can claim your gift": "готово, заберите подарок", + "contacts. Others were hidden because they don't have a phone number.": "контактов. Остальные скрыты (нет номера).", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copied to clipboard", + "created time": "создано", + "deleted": "deleted", + "distance is": "дистанция", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "права", + "due to a previous trip.": "due to a previous trip.", + "duration is": "длительность", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "Email (необязательно)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "Введите 5-значный код", + "face detect": "Распознавание лица", + "failed to send otp": "Не удалось отправить код.", + "first name label": "Имя", + "first name required": "Имя обязательно", + "for": "для", + "for your first registration!": "за первую регистрацию!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 - 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 - 15:00", + "from 23:59 till 05:30": "23:59 - 05:30", + "from 3 times Take Attention": "из 3 раз, Внимание", + "from your favorites": "from your favorites", + "from your list": "из списка", + "get_a_ride": "Машина за минуты.", + "get_to_destination": "Быстро добраться.", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "Едьте к пассажиру, пока не отменил", + "has completed": "завершил", + "hour": "час", + "i agree": "согласен", + "if you don't have account": "нет аккаунта", + "if you dont have account": "нет аккаунта?", + "if you want help you can email us here": "Напишите нам для помощи", + "image verified": "подтверждено", + "in your": "in your", + "insert amount": "сумма", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "ведет ", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "joined": "присоединился", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "Фамилия", + "last name required": "Фамилия обязательна", + "login or register subtitle": "Введите номер телефона для входа или регистрации", + "m": "м", + "message From Driver": "Сообщение от водителя", + "message From passenger": "Сообщение от пассажира", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "Модель :", + "my location": "моя локация", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "Не похож", + "of": "из", + "one last step title": "Последний шаг", + "otp sent subtitle": "5-значный код отправлен на\n@phoneNumber", + "otp sent success": "Код отправлен в WhatsApp.", + "otp verification failed": "Неверный код.", + "passenger agreement": "соглашение пассажира", + "pending": "pending", + "phone not verified": "phone not verified", + "phone number label": "Номер телефона", + "phone number required": "Требуется номер телефона", + "please go to picker location exactly": "езжайте точно к точке", + "please order now": "Заказать сейчас", + "please wait till driver accept your order": "ждите принятия заказа", + "price is": "цена", + "privacy policy": "политику конфиденциальности.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "Ошибка регистрации.", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "safe_and_comfortable": "Безопасно и комфортно.", + "seconds": "сек", + "security_warning": "security_warning", + "send otp button": "Отправить код", + "server error try again": "Ошибка сервера, попробуйте снова.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "Похож", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "условия использования", + "the 300 points equal 300 L.E": "300 баллов = 300 ₽", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "300 баллов = 300 ₽\nЗарабатывайте", + "the 500 points equal 30 JOD": "500 баллов = 30 ₽", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "500 баллов = 30 ₽ для вас\nЗарабатывайте", + "this will delete all files from your device": "удалит все файлы", + "to arrive you.": "to arrive you.", + "token change": "Смена токена", + "token updated": "токен обновлен", + "trips": "поездок", + "type here": "введите здесь", + "unknown": "unknown", + "upgrade price": "upgrade price", + "verify and continue button": "Подтвердить и продолжить", + "verify your number title": "Подтверждение номера", + "wait 1 minute to receive message": "подождите 1 минуту", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "wallet due to a previous trip.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "Добро пожаловать в Intaleq", + "welcome to siro": "welcome to siro", + "welcome user": "Добро пожаловать, @firstName!", + "welcome_message": "Добро пожаловать в Intaleq!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "введите цвет", + "write Expiration Date for your car": "введите дату окончания", + "write Make for your car": "введите марку", + "write Model for your car": "введите модель", + "write Year for your car": "введите год", + "write vin for your car": "введите VIN", + "year :": "Год :", + "you canceled order": "you canceled order", + "you gain": "вы получили", + "you have a negative balance of": "you have a negative balance of", + "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 Intaleq Wallet": "Оплата за время водителя, см. кошелек Intaleq", + "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 Siro Wallet", + "your ride is Accepted": "Заказ принят", + "your ride is applied": "поездка оформлена", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "Дата окончания", + "⚠️ You need to choose an amount!": "⚠️ Выберите сумму!", + "💰 Pay with Wallet": "💰 Оплата кошельком", + "💳 Pay with Credit Card": "💳 Оплата картой", +}; diff --git a/siro_rider/lib/controller/local/tr.dart b/siro_rider/lib/controller/local/tr.dart new file mode 100644 index 0000000..c7fb6e9 --- /dev/null +++ b/siro_rider/lib/controller/local/tr.dart @@ -0,0 +1,1715 @@ +final Map tr = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": " Şu anki konumum: ", + " I am using": " kullanıyorum", + " If you need to reach me, please contact the driver directly at": " Bana ulaşmanız gerekirse, lütfen sürücüyle şu numaradan iletişime geçin:", + " KM": " KM", + " Minutes": " Dakika", + " Next as Cash !": " Sonraki Nakit!", + " You Earn today is ": " Bugün Kazandığınız: ", + " You Have in": " Hesabınızdaki:", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " ve Gizlilik Politikamızı kabul edin.", + " and acknowledge the ": " and acknowledge the ", + " as the driver.": " sürücü olarak.", + " in your": " in your", + " in your wallet": " cüzdanınızda", + " is ON for this month": " bu ay için AÇIK", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " bahşiş\nToplam:", + " to arrive you.": " size ulaşmak için.", + " to ride with": " şununla yolculuk yapmak için:", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " plaka: ", + "--": "--", + ". I am at least 18 years old.": ". I am at least 18 years old.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "1. Sorununuzu Açıklayın", + "10 and get 4% discount": "10 ve %4 indirim al", + "100 and get 11% discount": "100 ve %11 indirim al", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "2. Kayıtlı Ses Dosyası Ekle", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 ve %6 indirim al", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "3. Detayları ve Yanıtı İncele", + "3000 LE": "3000 TL", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 ve %8 indirim al", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5 haneli", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "Ön rezervasyonlu yolculuk, en iyi kaptanları ve araçları seçmenize olanak tanır.", + "AI Page": "YZ Sayfası", + "About Intaleq": "Intaleq Hakkında", + "About Siro": "About Siro", + "About Us": "Hakkımızda", + "Accept": "Accept", + "Accept Order": "Siparişi Kabul Et", + "Accept Ride's Terms & Review Privacy Notice": "Şartları Kabul Et & Gizliliği İncele", + "Accepted Ride": "Kabul Edilen Yolculuk", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "Aktif Süre:", + "Active Users": "Active Users", + "Add Card": "Kart Ekle", + "Add Credit Card": "Kredi Kartı Ekle", + "Add Home": "Ev Ekle", + "Add Location": "Konum Ekle", + "Add Location 1": "Konum 1 Ekle", + "Add Location 2": "Konum 2 Ekle", + "Add Location 3": "Konum 3 Ekle", + "Add Location 4": "Konum 4 Ekle", + "Add Payment Method": "Ödeme Yöntemi Ekle", + "Add Phone": "Telefon Ekle", + "Add Promo": "Promosyon Ekle", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "Durak Ekle", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "Güvenli yöntemlerle bakiye ekle", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "Adres", + "Address: ": "Adres: ", + "Admin DashBoard": "Yönetici Paneli", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "Herkes İçin Uygun Fiyatlı", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "Bu süreden sonra\nİptal edemezsiniz!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "Yaş: ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "Uyarılar", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "Konum Erişimine İzin Ver", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "Ödeme işlemi sırasında bir hata oluştu.", + "An error occurred while picking contacts:": "Kişi seçilirken hata oluştu:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "Beklenmedik bir hata oluştu. Lütfen tekrar deneyin.", + "App Tester Login": "App Tester Login", + "App with Passenger": "Yolcu ile Uygulama", + "Appearance": "Appearance", + "Applied": "Başvuruldu", + "Apply": "Apply", + "Apply Order": "Siparişi Kabul Et", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "Bölgene yaklaşıyorum. 3 dakika içinde orada olmalıyım.", + "Are You sure to ride to": "Şuraya gitmek istediğinize emin misiniz:", + "Are you Sure to LogOut?": "Çıkış Yapmak İstediğinize Emin misiniz?", + "Are you sure to cancel?": "İptal etmek istediğinize emin misiniz?", + "Are you sure to delete recorded files": "Kayıtlı dosyaları silmek istediğinize emin misiniz?", + "Are you sure to delete this location?": "Bu konumu silmek istediğinize emin misiniz?", + "Are you sure to delete your account?": "Hesabınızı silmek istediğinize emin misiniz?", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "Emin misiniz? Bu işlem geri alınamaz.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "Bu konuma gitmek istiyor musunuz?", + "Are you want to go to this site": "Bu konuma gitmek istiyor musunuz?", + "Are you want to wait drivers to accept your order": "Sürücülerin siparişinizi kabul etmesini beklemek ister misiniz?", + "Arrival time": "Varış zamanı", + "Arrived": "Arrived", + "Associate Degree": "Önlisans", + "Attach this audio file?": "Bu ses dosyasını ekle?", + "Attention": "Attention", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "Ses başarıyla yüklendi.", + "Available for rides": "Yolculuklar için müsait", + "Average of Hours of": "Şu saatlerin ortalaması:", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "Ekonomik Araç", + "Bachelor's Degree": "Lisans", + "Back": "Back", + "Bahrain": "Bahreyn", + "Balance": "Bakiye", + "Balance limit exceeded": "Bakiye limiti aşıldı", + "Balance not enough": "Bakiye yetersiz", + "Balance:": "Bakiye:", + "Be Slowly": "Yavaş Ol", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "Lütfen net fotoğraflar çekin\nKalan hakkınız:", + "Be sure to use it quickly! This code expires at": "Hızlı kullan! Kodun son kullanma tarihi:", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "Size yakın olduğumuz için en uygun yolculuğu seçme esnekliğine sahipsiniz.", + "Before we start, please review our terms.": "Başlamadan önce lütfen şartlarımızı inceleyin.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "Şehirler için en iyi seçim", + "Best choice for comfort car and flexible route and stops point": "Konforlu araç ve esnek rota için en iyi seçim", + "Birth Date": "Doğum Tarihi", + "Bonus gift": "Bonus gift", + "BookingFee": "Rezervasyon Ücreti", + "Bottom Bar Example": "Alt Çubuk Örneği", + "But you have a negative salary of": "Ancak negatif maaşınız var:", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "Aşağıdaki 'Kabul Ediyorum' seçeneği ile şartları kabul etmiş ve 18 yaşından büyük olduğumu onaylamış olurum.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "Aşağıdaki \"Kabul Ediyorum\" seçeneği ile Kullanım Şartlarını inceleyip kabul ettiğimi ve şunu onayladığımı beyan ederim: ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "KOD", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "Arama Sonlandı", + "Call Ended": "Call Ended", + "Call Income": "Gelen Arama", + "Call Income from Driver": "Sürücüden Gelen Arama", + "Call Income from Passenger": "Yolcumuzdan Gelen Arama", + "Call Left": "Kalan Arama", + "Call Options": "Call Options", + "Call Page": "Arama Sayfası", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "Kamera Erişimi Reddedildi.", + "Camera not initialized yet": "Kamera henüz başlatılmadı", + "Camera not initilaized yet": "Kamera henüz başlatılmadı", + "Can I cancel my ride?": "Yolculuğumu iptal edebilir miyim?", + "Can we know why you want to cancel Ride ?": "Neden iptal etmek istediğinizi öğrenebilir miyiz?", + "Cancel": "İptal", + "Cancel Ride": "Yolculuğu İptal Et", + "Cancel Search": "Aramayı İptal Et", + "Cancel Trip": "Yolculuğu İptal Et", + "Cancel Trip from driver": "Sürücü tarafından iptal", + "Canceled": "İptal Edildi", + "Cannot apply further discounts.": "Daha fazla indirim uygulanamaz.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "Adli Sicil Kaydınızın Fotoğrafını Çekin", + "Capture an Image of Your Driver License": "Ehliyetinizin Fotoğrafını Çekin", + "Capture an Image of Your Driver's License": "Ehliyetinizin Fotoğrafını Çekin", + "Capture an Image of Your ID Document Back": "Kimliğinizin Arka Yüzünün Fotoğrafını Çekin", + "Capture an Image of Your ID Document front": "Kimliğinizin Ön Yüzünün Fotoğrafını Çekin", + "Capture an Image of Your car license back": "Ruhsatınızın Arka Yüzünün Fotoğrafını Çekin", + "Capture an Image of Your car license front": "Ruhsatınızın Ön Yüzünün Fotoğrafını Çekin", + "Car": "Araç", + "Car Color:": "Car Color:", + "Car Details": "Araç Detayları", + "Car License Card": "Ruhsat Kartı", + "Car Make:": "Car Make:", + "Car Model:": "Car Model:", + "Car Plate is ": "Araç Plakası: ", + "Car Plate:": "Car Plate:", + "Card Number": "Kart Numarası", + "CardID": "Kart No", + "Cash": "Nakit", + "Change Country": "Ülke Değiştir", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "Fikrimi değiştirdim", + "Chassis": "Şasi No", + "Chat with us anytime": "İstediğiniz zaman bizimle sohbet edin", + "Check back later for new offers!": "Yeni teklifler için sonra tekrar kontrol et!", + "Choose Language": "Dil Seçin", + "Choose a contact option": "İletişim seçeneği belirleyin", + "Choose between those Type Cars": "Bu Araç Tipleri Arasından Seçin", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "Haritadan Seç", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "İhtiyaçlarınıza mükemmel uyan seçeneği tercih edin.", + "Choose who this order is for": "Bu sipariş kimin için?", + "Choose your ride": "Choose your ride", + "City": "Şehir", + "Claim your 20 LE gift for inviting": "Davet için 20 TL hediyeni al", + "Click here point": "Click here point", + "Click here to Show it in Map": "Haritada Göstermek için Tıkla", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "Kapat", + "Close panel": "Close panel", + "Closest & Cheapest": "En Yakın & En Ucuz", + "Closest to You": "Size En Yakın", + "Code": "Kod", + "Code not approved": "Kod onaylanmadı", + "Color": "Renk", + "Color is ": "Renk: ", + "Comfort": "Konfor", + "Comfort choice": "Konfor seçimi", + "Coming": "Coming", + "Communication": "İletişim", + "Complaint": "Şikayet", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "Bu yolculuk için şikayet oluşturulamaz. Tamamlanmamış veya başlamamış olabilir.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "Onayla", + "Confirm & Find a Ride": "Onayla & Araç Bul", + "Confirm Attachment": "Eki Onayla", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "Seçimi Onayla", + "Confirm Trip": "Confirm Trip", + "Confirm your Email": "E-postanızı Onaylayın", + "Connected": "Bağlı", + "Connecting...": "Connecting...", + "Connection Error": "Bağlantı Hatası", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "İletişim Seçenekleri", + "Contact Support": "Destekle İletişime Geç", + "Contact Us": "Bize Ulaşın", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "Kişileri seçmek için rehber izni gerekli.", + "Contact us for any questions on your order.": "Siparişinizle ilgili sorular için bize ulaşın.", + "Contacts Loaded": "Kişiler Yüklendi", + "Continue": "Devam Et", + "Copy": "Kopyala", + "Copy Code": "Kodu Kopyala", + "Copy this Promo to use it in your Ride!": "Bu Promosyonu kopyalayıp kullanın!", + "Cost Duration": "Maliyet Süresi", + "Cost Of Trip IS ": "Yolculuk Maliyeti: ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "Günlerdeki Saat Sayısı", + "Create Wallet to receive your money": "Paranızı almak için Cüzdan oluşturun", + "Criminal Document Required": "Adli Sicil Kaydı Gerekli", + "Criminal Record": "Adli Sicil Kaydı", + "Crop Photo": "Crop Photo", + "Cropper": "Kırpıcı", + "Current Balance": "Güncel Bakiye", + "Current Location": "Mevcut Konum", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "Müşteri bulunamadı", + "Customer phone is not active": "Müşteri telefonu aktif değil", + "DISCOUNT": "İNDİRİM", + "Dark Mode": "Dark Mode", + "Date": "Tarih", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth is": "Doğum Tarihi:", + "Date of Birth: ": "Doğum Tarihi: ", + "Days": "Günler", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "Hesabımı Sil", + "Delete Permanently": "Kalıcı Olarak Sil", + "Delete Recording?": "Delete Recording?", + "Deleted": "Silindi", + "Destination": "Varış", + "Destination Set": "Destination Set", + "Destination selected": "Destination selected", + "Detect Your Face ": "Yüzünüzü Algılayın ", + "Device Change Detected": "Device Change Detected", + "Direct talk with our team": "Ekibimizle doğrudan görüşün", + "Displacement": "Motor Hacmi", + "Distance": "Distance", + "Distance To Passenger is ": "Yolcuya Mesafe: ", + "Distance from Passenger to destination is ": "Yolcudan hedefe mesafe: ", + "Distance is ": "Mesafe: ", + "Distance of the Ride is ": "Yolculuk Mesafesi: ", + "Do you have an invitation code from another driver?": "Başka bir sürücüden davet kodunuz var mı?", + "Do you want to change Home location": "Ev konumunu değiştirmek istiyor musunuz?", + "Do you want to change Work location": "İş konumunu değiştirmek istiyor musunuz?", + "Do you want to pay Tips for this Driver": "Bu Sürücüye Bahşiş vermek ister misiniz?", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "Doktora", + "Document Number: ": "Belge No: ", + "Documents check": "Belge Kontrolü", + "Don't Cancel": "İptal Etme", + "Don't forget your personal belongings.": "Kişisel eşyalarınızı unutmayın.", + "Don't forget your ride!": "Don't forget your ride!", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "Bitti", + "Don’t forget your personal belongings.": "Eşyalarınızı unutmayın.", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Download the Intaleq Driver app now and earn rewards!": "Intaleq Sürücü uygulamasını indir ve kazan!", + "Download the Intaleq app now and enjoy your ride!": "Intaleq uygulamasını indir ve yolculuğun tadını çıkar!", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "Uygulamayı hemen indir:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "Sürücü", + "Driver Accepted the Ride for You": "Sürücü Sizin İçin Yolculuğu Kabul Etti", + "Driver Applied the Ride for You": "Sürücü Sizin İçin Yolculuk Başlattı", + "Driver Cancelled Your Trip": "Sürücü Yolculuğunuzu İptal Etti", + "Driver Car Plate": "Sürücü Plakası", + "Driver Finish Trip": "Sürücü Yolculuğu Bitirdi", + "Driver Is Going To Passenger": "Sürücü Yolcuya Gidiyor", + "Driver List": "Driver List", + "Driver Name": "Sürücü Adı", + "Driver Name:": "Driver Name:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Driver Phone:", + "Driver Referral": "Driver Referral", + "Driver Registration": "Sürücü Kaydı", + "Driver Registration & Requirements": "Sürücü Kaydı & Gereksinimler", + "Driver Wallet": "Sürücü Cüzdanı", + "Driver already has 2 trips within the specified period.": "Sürücünün belirtilen sürede zaten 2 yolculuğu var.", + "Driver asked me to cancel": "Sürücü iptal etmemi istedi", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "Sürücü yolda", + "Driver is taking too long": "Sürücü çok uzun sürüyor", + "Driver is waiting at pickup.": "Sürücü alım noktasında bekliyor.", + "Driver joined the channel": "Sürücü kanala katıldı", + "Driver left the channel": "Sürücü kanaldan ayrıldı", + "Driver phone": "Sürücü telefonu", + "Driver's License": "Sürücü Belgesi (Ehliyet)", + "Drivers License Class": "Ehliyet Sınıfı", + "Drivers License Class: ": "Ehliyet Sınıfı: ", + "Duration To Passenger is ": "Yolcuya Varış Süresi: ", + "Duration is": "Süre:", + "Duration of Trip is ": "Yolculuk Süresi: ", + "Duration of the Ride is ": "Yolculuk Süresi: ", + "EGP": "EGP", + "Edit Profile": "Profili Düzenle", + "Edit Your data": "Verilerini Düzenle", + "Education": "Eğitim", + "Egypt": "Mısır", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "Elektrikli", + "Email": "Email", + "Email Support": "E-posta Desteği", + "Email Us": "Bize E-posta Gönder", + "Email Wrong": "E-posta Yanlış", + "Email is": "E-posta:", + "Email you inserted is Wrong.": "Girdiğiniz e-posta yanlış.", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "İstihdam Türü", + "Enable Location": "Konumu Etkinleştir", + "Enable Location Access": "Enable Location Access", + "End": "End", + "End Ride": "Yolculuğu Bitir", + "Enjoy a safe and comfortable ride.": "Güvenli ve konforlu bir yolculuğun tadını çıkarın.", + "Enjoy competitive prices across all trip options, making travel accessible.": "Tüm seçeneklerde rekabetçi fiyatların tadını çıkarın.", + "Enter Your First Name": "Adınızı Girin", + "Enter a password": "Enter a password", + "Enter a valid email": "Enter a valid email", + "Enter driver's phone": "Sürücü telefonunu gir", + "Enter phone": "Telefon gir", + "Enter promo code": "Promosyon kodu gir", + "Enter promo code here": "Promosyon kodunu buraya girin", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "Promosyon kodunu gir ve kazan:", + "Enter your City": "Enter your City", + "Enter your Note": "Notunu gir", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "Şikayetinizi buraya girin...", + "Enter your email address": "E-posta adresinizi girin", + "Enter your feedback here": "Geri bildiriminizi buraya girin", + "Enter your first name": "Adınızı girin", + "Enter your last name": "Soyadınızı girin", + "Enter your password": "Enter your password", + "Enter your phone number": "Telefon numaranızı girin", + "Enter your promo code": "Enter your promo code", + "Error": "Hata", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "Akşam", + "Exclusive offers and discounts always with the Intaleq app": "Özel teklifler ve indirimler her zaman Intaleq uygulamasında", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "Son Kullanma Tarihi", + "Expiration Date ": "Son Kullanma Tarihi: ", + "Expiry Date": "Geçerlilik Tarihi", + "Expiry Date: ": "Son Kullanma Tarihi: ", + "Face Detection Result": "Yüz Algılama Sonucu", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "Arama başarısız oldu, lütfen daha sonra tekrar deneyin", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "En Hızlı Şikayet Yanıtı", + "Favorite Places": "Favorite Places", + "Fee is": "Ücret:", + "Feed Back": "Geri Bildirim", + "Feedback": "Geri Bildirim", + "Feedback data saved successfully": "Geri bildirim başarıyla kaydedildi", + "Female": "Kadın", + "Find answers to common questions": "Sık sorulan soruların cevaplarını bul", + "Finish Monitor": "İzlemeyi Bitir", + "Finished": "Finished", + "First Name": "Ad", + "First name": "Ad", + "Fixed Price": "Fixed Price", + "Flag-down fee": "Açılış ücreti", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "Sürücüler İçin", + "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": "Intaleq ve scooter yolculukları için fiyat dinamiktir. Konfor için zaman ve mesafeye dayalıdır.", + "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "Resmi sorular için", + "Found another transport": "Başka bir ulaşım aracı buldum", + "Free Call": "Free Call", + "Frequently Asked Questions": "Sıkça Sorulan Sorular", + "Frequently Questions": "Sıkça Sorulan Sorular", + "From": "Nereden", + "From :": "Nereden:", + "From : ": "Nereden: ", + "From : Current Location": "Nereden: Mevcut Konum", + "From:": "From:", + "Fuel": "Yakıt", + "Full Name (Marital)": "Tam Ad", + "FullName": "Tam Ad", + "GPS Required Allow !.": "GPS Gerekli, İzin Ver!", + "Gender": "Cinsiyet", + "General": "General", + "Get": "Get", + "Get Details of Trip": "Yolculuk Detaylarını Al", + "Get Direction": "Yol Tarifi Al", + "Get a discount on your first Intaleq ride!": "İlk Intaleq yolculuğunda indirim kazan!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "Hemen Al!", + "Get to your destination quickly and easily.": "Hedefinize hızlı ve kolayca ulaşın.", + "Getting Started": "Başlarken", + "Gift Already Claimed": "Hediye Zaten Alındı", + "Go To Favorite Places": "Favori Yerlere Git", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "Sonraki adıma git\nRuhsatı tara.", + "Go to passenger Location now": "Yolcu Konumuna Git", + "Go to this Target": "Bu Hedefe Git", + "Go to this location": "Bu konuma git", + "Grant": "Grant", + "H and": "S ve", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "Promosyon kodunuz var mı?", + "Heading your way now. Please be ready.": "Sana doğru geliyorum. Lütfen hazır ol.", + "Height: ": "Boy: ", + "Hello this is Captain": "Merhaba, ben Kaptan", + "Hello this is Driver": "Merhaba ben Sürücü", + "Hello! I'm inviting you to try Intaleq.": "Merhaba! Seni Intaleq'i denemeye davet ediyorum.", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hello, I'm at the agreed-upon location", + "Help Details": "Yardım Detayları", + "Helping Center": "Yardım Merkezi", + "Here recorded trips audio": "Burada kaydedilen yolculuk sesleri", + "Hi": "Selam", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "Selam, şimdi yola çıkıyorum", + "Hi! This is": "Merhaba! Bu", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "Selam, Nereye ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "Lise Diploması", + "History of Trip": "Yolculuk Geçmişi", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "How can I pay for my ride?": "Yolculuğumu nasıl öderim?", + "How can I register as a driver?": "Sürücü olarak nasıl kayıt olurum?", + "How do I communicate with the other party (passenger/driver)?": "Diğer taraf (yolcu/sürücü) ile nasıl iletişim kurarım?", + "How do I request a ride?": "Nasıl yolculuk isterim?", + "How many hours would you like to wait?": "Kaç saat beklemek istersiniz?", + "How much longer will you be?": "How much longer will you be?", + "I Agree": "Kabul Ediyorum", + "I Arrive your site": "Konumunuza ulaştım", + "I added the wrong pick-up/drop-off location": "Yanlış konum ekledim", + "I am currently located at": "I am currently located at", + "I arrive you": "Sana ulaştım", + "I cant register in your app in face detection ": "Yüz algılamada sorun yaşıyorum, kayıt olamıyorum", + "I don't have a reason": "Bir sebebim yok", + "I don't need a ride anymore": "Artık yolculuğa ihtiyacım yok", + "I want to order for myself": "Kendim için", + "I want to order for someone else": "Başka biri için", + "I was just trying the application": "Sadece uygulamayı deniyordum", + "I will go now": "Şimdi gidiyorum", + "I will slow down": "Yavaşlayacağım", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "Sizi bekliyorum", + "I've been trying to reach you but your phone is off.": "I've been trying to reach you but your phone is off.", + "ID Documents Back": "Kimlik Arka Yüzü", + "ID Documents Front": "Kimlik Ön Yüzü", + "If you in Car Now. Press Start The Ride": "Şu an araçtaysanız, Yolculuğu Başlat'a basın", + "If you need assistance, contact us": "Yardıma ihtiyacınız varsa bize ulaşın", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "Durak eklemek istiyorsanız buraya tıklayın", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "Siparişi uyguladığınızda Google Haritalar'ın direkt açılmasını istiyorsanız", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "Görüntü algılama sonucu: ", + "In-App VOIP Calls": "Uygulama İçi VOIP Aramalar", + "Including Tax": "Vergi Dahil", + "Incorrect sms code": "⚠️ Hatalı SMS kodu. Lütfen tekrar deneyin.", + "Increase Fare": "Ücreti Artır", + "Increase Fee": "Ücreti Artır", + "Increase Your Trip Fee (Optional)": "Yolculuk Ücretini Artır (İsteğe Bağlı)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "Ücreti artırmak daha fazla sürücü çekebilir. Fiyatı artırmak ister misiniz?", + "Insert": "Ekle", + "Insert Emergincy Number": "Acil Durum Numarası Gir", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "Promosyon Kodunu Gir", + "Inspection Date": "Muayene Tarihi", + "InspectionResult": "Muayene Sonucu", + "Intaleq": "Intaleq", + "Intaleq Balance": "Intaleq Bakiyesi", + "Intaleq LLC": "Intaleq Ltd. Şti.", + "Intaleq Over": "Intaleq Bitti", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq Destek", + "Intaleq Wallet": "Intaleq Cüzdan", + "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, güvenliğiniz ve bütçeniz düşünülerek tasarlanmış bir araç paylaşım uygulamasıdır. Sizi bölgenizdeki güvenilir sürücülerle buluşturuyoruz.", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq güvenliğe önem verir, tüm kaptanlarımız dikkatle incelenir.", + "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, sizi en yakın sürücülerle buluşturan ilk uygulamadır.", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq güvenli, güvenilir ve erişilebilir araç çağırma uygulamasıdır.", + "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, kaptanlar ve yolcular için birçok özellik sunan en güvenli araç paylaşım uygulamasıdır. Sadece %8 komisyon oranıyla en iyi değeri almanızı sağlıyoruz. En iyi kaptanlar için sigorta, düzenli araç bakımı ve yol yardımı hizmetleri sunuyoruz.", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq; Ekonomi, Konfor ve Lüks gibi çeşitli seçenekler sunar.", + "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 ihtiyaçlarınıza uygun ekonomi, konfor ve lüks dahil çeşitli araç seçenekleri sunar.", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq nakit veya kredi/banka kartı ile ödeme seçenekleri sunar.", + "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.": "Sürücü doğrulama, yolculuk takibi ve acil durum kişileri gibi özellikler sunuyoruz.", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq güvenliğinizi önceler. Sürücü doğrulama, takip ve acil durum seçenekleri sunar.", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq, yolculuk sırasında iletişim kurmanız için uygulama içi sohbet sunar.", + "Intaleq's Response": "Intaleq's Response", + "Invalid MPIN": "Geçersiz MPIN", + "Invalid OTP": "Geçersiz Kod", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "Davet Kullanıldı", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "Davet başarıyla gönderildi", + "Is the Passenger in your Car ?": "Yolcu Aracınızda mı?", + "Issue Date": "Veriliş Tarihi", + "IssueDate": "Veriliş Tarihi", + "JOD": "TL", + "Join": "Katıl", + "Join Intaleq as a driver using my referral code!": "Referans kodumla Intaleq sürücüsü ol!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "Ürdün", + "KM": "KM", + "Keep it up!": "Böyle devam et!", + "Kuwait": "Kuveyt", + "LE": "TL", + "Lady": "Kadın", + "Lady Captain for girls": "Kadınlar için Kadın Sürücü", + "Lady Captains Available": "Kadın Kaptanlar Mevcut", + "Language": "Dil", + "Language Options": "Dil Seçenekleri", + "Last Name": "Last Name", + "Last name": "Soyad", + "Latest Recent Trip": "En Son Yolculuk", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "Ayrıl", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "Hadi Ruhsatı kontrol edelim ", + "Lets check License Back Face": "Hadi Ehliyet Arka Yüzünü kontrol edelim", + "License Categories": "Ehliyet Kategorileri", + "License Type": "Ehliyet Sınıfı", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "Transferler için numara bağla", + "Listen": "Listen", + "Location": "Location", + "Location Link": "Konum Linki", + "Location Received": "Location Received", + "Log Off": "Oturumu Kapat", + "Log Out Page": "Çıkış Sayfası", + "Login": "Login", + "Login Captin": "Kaptan Girişi", + "Login Driver": "Sürücü Girişi", + "Logout": "Logout", + "Lowest Price Achieved": "En Düşük Fiyata Ulaşıldı", + "Made :": "Marka:", + "Make": "Marka", + "Make is ": "Marka: ", + "Male": "Erkek", + "Map Error": "Map Error", + "Map Passenger": "Yolcu Haritası", + "Marital Status": "Medeni Durum", + "Master's Degree": "Yüksek Lisans", + "Maximum fare": "Maksimum ücret", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "Minimum ücret", + "Minute": "Dakika", + "Mishwar Vip": "Mishwar VIP", + "Model": "Model", + "Model is": "Model:", + "Morning": "Sabah", + "Most Secure Methods": "En Güvenli Yöntemler", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "İğneyi ayarlamak için haritayı kaydırın", + "Mute": "Mute", + "My Balance": "Bakiyem", + "My Card": "Kartım", + "My Cared": "Kartlarım", + "My Profile": "Profilim", + "My current location is:": "Mevcut konumum:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "Konumum", + "N/A": "N/A", + "Name": "Ad", + "Name (Arabic)": "Ad (Arapça)", + "Name (English)": "Ad (İngilizce)", + "Name :": "Ad:", + "Name in arabic": "Arapça Ad", + "Name of the Passenger is ": "Yolcunun Adı: ", + "National ID": "T.C. Kimlik", + "National Number": "T.C. Kimlik No", + "NationalID": "T.C. Kimlik No", + "Nearby": "Nearby", + "Nearest Car": "Nearest Car", + "Nearest Car for you about ": "Size en yakın araç yaklaşık: ", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Network error occurred": "Network error occurred", + "Next": "İleri", + "Night": "Gece", + "No": "Hayır", + "No ,still Waiting.": "Hayır, hâlâ bekliyorum.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "Konumunuzda araç yok. Üzgünüz!", + "No Car or Driver Found in your area.": "Bölgenizde Araç veya Sürücü Bulunamadı.", + "No Drivers Found": "Sürücü Bulunamadı", + "No I want": "Hayır istiyorum", + "No Notifications": "No Notifications", + "No Promo for today .": "Bugün için Promosyon yok.", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "Henüz Yanıt yok.", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "SIM kart yok mu, sorun değil! Uygulamamız üzerinden sürücünüzü doğrudan arayın.", + "No accepted orders? Try raising your trip fee to attract riders.": "Kabul eden yok mu? Ücreti artırmayı deneyin.", + "No audio files found.": "Ses dosyası bulunamadı.", + "No cars nearby": "No cars nearby", + "No contacts available": "No contacts available", + "No contacts found": "Kişi bulunamadı", + "No contacts with phone numbers were found on your device.": "Cihazınızda telefon numarası olan kişi bulunamadı.", + "No driver accepted my request": "Hiçbir sürücü isteğimi kabul etmedi", + "No drivers accepted your request yet": "Henüz hiçbir sürücü isteğinizi kabul etmedi", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "Şu anda sürücü bulunamadı.\nLütfen daha sonra tekrar deneyin.", + "No face detected": "Yüz algılanmadı", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "Henüz resim seçilmedi", + "No invitation found yet!": "Henüz davet bulunamadı!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "Kimse kabul etmedi mi? Ücreti artırmayı deneyin.", + "No passenger found for the given phone number": "Verilen numara için yolcu bulunamadı", + "No promos available right now.": "Şu an uygun promosyon yok.", + "No ride found yet": "Henüz araç bulunamadı", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No trip data available", + "No trip history found": "Yolculuk geçmişi bulunamadı", + "No trip yet found": "Henüz yolculuk bulunamadı", + "No user found": "No user found", + "No user found for the given phone number": "Verilen numara için kullanıcı bulunamadı", + "No wallet record found": "Cüzdan kaydı bulunamadı", + "No, I don't have a code": "Hayır, kodum yok", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, thanks": "Hayır, teşekkürler", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "Bağlı Değil", + "Not set": "Ayarlanmadı", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "Bildirimler", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Now select start pick", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "Meslek", + "Ok": "Tamam", + "Ok , See you Tomorrow": "Tamam, Yarın Görüşürüz", + "Ok I will go now.": "Tamam, şimdi gidiyorum.", + "Old and affordable, perfect for budget rides.": "Eski ve uygun fiyatlı, bütçe dostu yolculuklar için mükemmel.", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "Ayarları Aç", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "Veya Nakit öde", + "Order": "Sipariş", + "Order Accepted": "Order Accepted", + "Order Applied": "Sipariş Alındı", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "Sipariş Yolcu Tarafından İptal Edildi", + "Order Details Intaleq": "Sipariş Detayları Intaleq", + "Order Details Siro": "Order Details Siro", + "Order History": "Sipariş Geçmişi", + "Order Request Page": "Sipariş İstek Sayfası", + "Order Under Review": "Order Under Review", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "Kendim için sipariş ver", + "Order for someone else": "Başkası için sipariş ver", + "OrderId": "Sipariş No", + "OrderVIP": "VIP Sipariş", + "Origin": "Başlangıç", + "Other": "Diğer", + "Our dedicated customer service team ensures swift resolution of any issues.": "Müşteri hizmetleri ekibimiz sorunları hızla çözer.", + "Owner Name": "Ruhsat Sahibi", + "Passenger": "Passenger", + "Passenger Cancel Trip": "Yolcu Yolculuğu İptal Etti", + "Passenger Name is ": "Yolcu Adı: ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger come to you": "Yolcu size geliyor", + "Passenger name : ": "Yolcu adı: ", + "Password": "Password", + "Password must br at least 6 character.": "Şifre en az 6 karakter olmalıdır.", + "Paste WhatsApp location link": "WhatsApp konum linkini yapıştır", + "Paste location link here": "Konum linkini buraya yapıştırın", + "Paste the code here": "Kodu buraya yapıştır", + "Pay": "Pay", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "Doğrudan Kaptana öde", + "Pay from my budget": "Bütçemden öde", + "Pay with Credit Card": "Kredi Kartı ile Öde", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "Cüzdan ile Öde", + "Pay with Your": "Şununla Öde:", + "Pay with Your PayPal": "PayPal ile Öde", + "Payment Failed": "Ödeme Başarısız", + "Payment History": "Ödeme Geçmişi", + "Payment Method": "Ödeme Yöntemi", + "Payment Options": "Ödeme Seçenekleri", + "Payment Successful": "Ödeme Başarılı", + "Payments": "Ödemeler", + "Perfect for adventure seekers who want to experience something new and exciting": "Yeni ve heyecanlı bir şey denemek isteyen maceraperestler için mükemmel", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "En yeni model araçlar ve rota özgürlüğü isteyen yolcular için mükemmel", + "Permission Required": "Permission Required", + "Permission denied": "İzin reddedildi", + "Personal Information": "Kişisel Bilgiler", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "Telefon:", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is verified before": "Phone number is verified before", + "Phone number isn't an Egyptian phone number": "Phone number isn't an Egyptian phone number", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "Haritadan seç", + "Pick from map destination": "Pick from map destination", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "Haritadan varış yerini seç", + "Pick your ride location on the map - Tap to confirm": "Haritada konumunu seç - Onaylamak için dokun", + "Plan Your Route": "Plan Your Route", + "Plate": "Plaka", + "Plate Number": "Plaka No", + "Please Try anther time ": "Lütfen başka zaman deneyin ", + "Please Wait If passenger want To Cancel!": "Lütfen Bekleyin, yolcu iptal etmek isteyebilir!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "Lütfen internet bağlantınızı kontrol edin", + "Please don't be late": "Please don't be late", + "Please don't be late, I'm waiting for you at the specified location.": "Please don't be late, I'm waiting for you at the specified location.", + "Please enter": "Lütfen girin", + "Please enter Your Email.": "Lütfen e-postanızı girin.", + "Please enter Your Password.": "Lütfen şifrenizi girin.", + "Please enter a correct phone": "Lütfen geçerli bir telefon girin", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "Lütfen bir telefon numarası girin", + "Please enter a valid 16-digit card number": "Lütfen geçerli 16 haneli kart numarasını girin", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "Lütfen geçerli bir promosyon kodu girin", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "CVV kodunu girin", + "Please enter the cardholder name": "Kart sahibinin adını girin", + "Please enter the complete 6-digit code.": "Lütfen 6 haneli kodu eksiksiz girin.", + "Please enter the expiry date": "Son kullanma tarihini girin", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "Lütfen Şehrinizi girin.", + "Please enter your Question.": "Lütfen Sorunuzu girin.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "Lütfen geri bildiriminizi girin.", + "Please enter your first name.": "Lütfen adınızı girin.", + "Please enter your last name.": "Lütfen soyadınızı girin.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "Lütfen telefon numaranızı girin.", + "Please go to Car Driver": "Lütfen Sürücüye Gidin", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "Lütfen şimdi Araca gidin ", + "Please help! Contact me as soon as possible.": "Lütfen yardım edin! Bana hemen ulaşın.", + "Please make sure not to leave any personal belongings in the car.": "Lütfen araçta kişisel eşya bırakmadığınızdan emin olun.", + "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": "Lütfen eşyalarınızı kontrol edin ve kalan ücretin cüzdanınıza eklendiğinden emin olun. Teşekkürler.", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "Lütfen ehliyetinizi bu çerçeveye yerleştirin", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "Lütfen seçilen noktada bekleyin.", + "Please try again in a few moments": "Please try again in a few moments", + "Please verify your identity": "Lütfen kimliğinizi doğrulayın", + "Please wait for the passenger to enter the car before starting the trip.": "Lütfen yolculuğu başlatmadan önce yolcunun araca binmesini bekleyin.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "Lütfen nedeni yazın...", + "Point": "Puan", + "Potential security risks detected. The application may not function correctly.": "Potansiyel güvenlik riski algılandı. Uygulama düzgün çalışmayabilir.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Preferences": "Preferences", + "Price": "Price", + "Price of trip": "Price of trip", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "Gizlilik Politikası", + "Professional driver": "Professional driver", + "Profile": "Profil", + "Profile photo updated": "Profile photo updated", + "Promo": "Promosyon", + "Promo Already Used": "Promosyon Zaten Kullanıldı", + "Promo Code": "Promosyon Kodu", + "Promo Code Accepted": "Promosyon Kodu Kabul Edildi", + "Promo Copied!": "Promosyon Kopyalandı!", + "Promo End !": "Promosyon Bitti!", + "Promo Ended": "Promosyon Sona Erdi", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "Promosyon kodu panoya kopyalandı!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "Promosyonlar", + "Promos For Today": "Promos For Today", + "Pyament Cancelled .": "Ödeme İptal Edildi.", + "Qatar": "Katar", + "Quick Access": "Quick Access", + "Quick Actions": "Hızlı İşlemler", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "Sessiz & Çevre Dostu", + "Rate Captain": "Kaptanı Puanla", + "Rate Driver": "Sürücüyü Puanla", + "Rate Passenger": "Yolcuyu Puanla", + "Rating is": "Rating is", + "Rating is ": "Puan: ", + "Rating is ": "Rating is ", + "Rayeh Gai": "Gidiş-Dönüş", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "Gidiş-Dönüş: Şehirler arası rahat seyahat için kolay ve güvenilir hizmet.", + "Reach out to us via": "Bize şuradan ulaşın", + "Received empty route data.": "Received empty route data.", + "Recent Places": "Son Gidilen Yerler", + "Recharge my Account": "Hesabımı Doldur", + "Record": "Record", + "Record saved": "Kayıt kaydedildi", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "Kaydedilen Yolculuklar (Ses & YZ Analizi)", + "Recorded Trips for Safety": "Güvenlik İçin Kaydedilen Yolculuklar", + "Refresh Map": "Haritayı Yenile", + "Refuse Order": "Siparişi Reddet", + "Register": "Kayıt Ol", + "Register Captin": "Kaptan Kaydı", + "Register Driver": "Sürücü Kaydı", + "Register as Driver": "Sürücü olarak Kayıt Ol", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "Din", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "Kodu Tekrar Gönder", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "Yolculuk Yönetimi", + "Ride Summaries": "Yolculuk Özetleri", + "Ride Summary": "Yolculuk Özeti", + "Ride Today : ": "Bugünkü Yolculuk: ", + "Ride Wallet": "Yolculuk Cüzdanı", + "Rides": "Yolculuklar", + "Rouats of Trip": "Yolculuk Rotaları", + "Route": "Route", + "Route Not Found": "Rota Bulunamadı", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "Acil Durum Telefonu", + "SYP": "SYP", + "Safety & Security": "Güvenlik & Emniyet", + "Saudi Arabia": "Suudi Arabistan", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "Kredi Kartını Kaydet", + "Save Name": "Save Name", + "Saved Sucssefully": "Başarıyla Kaydedildi", + "Scan Driver License": "Ehliyeti Tara", + "Scan ID MklGoogle": "Kimlik Tara MklGoogle", + "Scan Id": "Kimlik Tara", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "Scooter", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "Başka sürücü ara", + "Search for waypoint": "Ara nokta ara", + "Search for your Start point": "Başlangıç noktasını ara", + "Search for your destination": "Varış yerini ara", + "Searching for nearby drivers...": "Yakındaki sürücüler aranıyor...", + "Searching for the nearest captain...": "En yakın kaptan aranıyor...", + "Secure": "Secure", + "Security Warning": "⚠️ Güvenlik Uyarısı", + "See you on the road!": "Yollarda görüşmek üzere!", + "Select Appearance": "Select Appearance", + "Select Country": "Ülke Seç", + "Select Date": "Tarih Seç", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "Sipariş Türünü Seç", + "Select Payment Amount": "Ödeme Tutarını Seç", + "Select This Ride": "Select This Ride", + "Select Time": "Zaman Seç", + "Select Waiting Hours": "Bekleme Süresini Seç", + "Select Your Country": "Ülkenizi Seçin", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Select date and time of trip", + "Select one message": "Bir mesaj seç", + "Select recorded trip": "Kaydedilen yolculuğu seç", + "Select your destination": "Varış noktasını seç", + "Select your preferred language for the app interface.": "Uygulama arayüzü için dil seçin.", + "Selected Date": "Seçilen Tarih", + "Selected Date and Time": "Seçilen Tarih ve Saat", + "Selected Time": "Seçilen Zaman", + "Selected driver": "Seçilen sürücü", + "Selected file:": "Seçilen dosya:", + "Send Email": "Send Email", + "Send Intaleq app to him": "Ona Intaleq uygulamasını gönder", + "Send Invite": "Davet Gönder", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "Doğrulama Kodu Gönder", + "Send Verification Code": "Doğrulama Kodu Gönder", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "Özel mesaj gönder", + "Send to Driver Again": "Send to Driver Again", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "Oturum süresi doldu. Lütfen tekrar giriş yapın.", + "Set Destination": "Set Destination", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "Cüzdan Numarası Ayarla", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "Alım noktasını ayarla", + "Setting": "Ayar", + "Settings": "Ayarlar", + "Sex is ": "Cinsiyet: ", + "Share": "Share", + "Share App": "Uygulamayı Paylaş", + "Share Trip": "Share Trip", + "Share Trip Details": "Yolculuk Detaylarını Paylaş", + "Share this code with your friends and earn rewards when they use it!": "Bu kodu arkadaşlarınla paylaş ve kullandıklarında ödül kazan!", + "Share with friends and earn rewards": "Arkadaşlarınla paylaş ve ödül kazan", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "Davetleri Göster", + "Show Promos": "Promosyonları Göster", + "Show Promos to Charge": "Yükleme için Promosyonları Göster", + "Show latest promo": "Son promosyonları göster", + "Showing": "Gösteriliyor", + "Sign In by Apple": "Apple ile Giriş Yap", + "Sign In by Google": "Google ile Giriş Yap", + "Sign In with Google": "Sign In with Google", + "Sign Out": "Çıkış Yap", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "Daha kolay giriş için Google ile bağlanın", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Uygulamayı açın, hedefi girin ve \"Yolculuk İste\"ye dokunun.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "Üzgünüz 😔", + "Sorry, there are no cars available of this type right now.": "Üzgünüz, şu an bu tipte uygun araç yok.", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "Aileler ve gruplar için ideal geniş araç hizmeti. Rahat, güvenli ve ekonomik.", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "Kaydı Başlat", + "Start the Ride": "Yolculuğu Başlat", + "Statistics": "İstatistikler", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Intaleq uygulaması üzerinden yolculuk isteme adımları.", + "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 Siro app.", + "Stop": "Stop", + "Submit": "Submit", + "Submit ": "Gönder ", + "Submit Complaint": "Şikayeti Gönder", + "Submit Question": "Soru Gönder", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "Şikayet Gönder", + "Submit rating": "Puanı gönder", + "Success": "Başarılı", + "Support & Info": "Support & Info", + "Support is Away": "Destek şu an uzakta", + "Support is currently Online": "Destek şu an çevrimiçi", + "Switch Rider": "Yolcuyu Değiştir", + "Syria": "Suriye", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "Türkiye'nin öncü araç paylaşım hizmeti.", + "System Default": "System Default", + "Take Image": "Fotoğraf Çek", + "Take Picture Of Driver License Card": "Ehliyet Fotoğrafı Çek", + "Take Picture Of ID Card": "Kimlik Kartı Fotoğrafı Çek", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "Kopyalamak için koda dokunun!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "Hedef", + "Tariff": "Tarife", + "Tariffs": "Tarifeler", + "Tax Expiry Date": "Vergi Bitiş Tarihi", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thanks": "Teşekkürler", + "The Driver Will be in your location soon .": "Sürücü yakında konumunuzda olacak.", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", + "The captain is responsible for the route.": "Rota sorumluluğu kaptandadır.", + "The distance less than 500 meter.": "Mesafe 500 metreden az.", + "The driver accept your order for": "Sürücü siparişinizi şu fiyata kabul etti:", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "Sürücü yolculuğunu kabul etti", + "The driver canceled your ride.": "Sürücü yolculuğunuzu iptal etti.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "Sürücü yolculuğu acil bir nedenle iptal etti.\nHemen başka bir sürücü aramak ister misiniz?", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "Sürücü yolda", + "The driver waiting you in picked location .": "Sürücü sizi seçilen konumda bekliyor.", + "The driver waitting you in picked location .": "Sürücü sizi seçilen konumda bekliyor.", + "The drivers are reviewing your request": "Sürücüler isteğinizi inceliyor", + "The email or phone number is already registered.": "E-posta veya telefon numarası zaten kayıtlı.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "Adli sicil kaydındaki isim ehliyetinizle eşleşmiyor. Lütfen doğrulayın.", + "The invitation was sent successfully": "Davet başarıyla gönderildi", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "Ehliyetinizdeki T.C. kimlik no kimliğinizle eşleşmiyor.", + "The order Accepted by another Driver": "Sipariş Başka Sürücü Tarafından Kabul Edildi", + "The order has been accepted by another driver.": "Sipariş başka bir sürücü tarafından kabul edildi.", + "The payment was approved.": "Ödeme onaylandı.", + "The payment was not approved. Please try again.": "Ödeme onaylanmadı. Lütfen tekrar deneyin.", + "The price may increase if the route changes.": "Rota değişirse fiyat artabilir.", + "The promotion period has ended.": "Promosyon süresi doldu.", + "The reason is": "The reason is", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "Yolculuk başladı! Acil numaraları aramaktan, yolculuğu paylaşmaktan veya ses kaydı almaktan çekinmeyin.", + "There is no Car or Driver in your area.": "Bölgenizde araç veya sürücü bulunmamaktadır.", + "There is no data yet.": "Henüz veri yok.", + "There is no help Question here": "Burada yardım sorusu yok", + "There is no notification yet": "Henüz bildirim yok", + "There no Driver Aplly your order sorry for that ": "Siparişinize başvuran sürücü yok, üzgünüz ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "Burada trafik yoğun. Alternatif bir alım noktası önerebilir misin?", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "Yolculardan aldığım tüm yolculuk tutarı", + "This amount for all trip I get from Passengers and Collected For me in": "Bu tutar yolculardan aldığım ve benim için toplanan", + "This is a scheduled notification.": "Bu planlanmış bir bildirimdir.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "Bu scooter veya motosiklet içindir.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "Bu numara zaten davet edilmiş.", + "This price is": "Bu fiyat:", + "This price is fixed even if the route changes for the driver.": "Bu fiyat rota değişse bile sabittir.", + "This price may be changed": "Bu fiyat değişebilir", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "Bu yolculuk başka bir sürücü tarafından alınmış.", + "This ride type allows changes, but the price may increase": "Bu tür değişikliklere izin verir ancak fiyat artabilir", + "This ride type does not allow changes to the destination or additional stops": "Bu yolculuk türü hedef değişikliğine veya ek duraklara izin vermez", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "Sabit fiyatlı doğrudan yolculuk. Sürücü planlanan rotayı izlemelidir.", + "This trip is for women only": "Bu yolculuk sadece kadınlar içindir", + "Time": "Time", + "Time to arrive": "Varış zamanı", + "Tip is ": "Bahşiş: ", + "To :": "To :", + "To : ": "Nereye: ", + "To Home": "To Home", + "To Work": "To Work", + "To become a passenger, you must review and agree to the ": "Yolcu olmak için şunları inceleyip kabul etmelisiniz: ", + "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.": "Sürücü olmak için ehliyet, kimlik ve ruhsatınızı yüklemelisiniz. Yapay zekamız 2-3 dakikada doğrular. Sahte belge yüklemek yasal sonuçlar doğurur.", + "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 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 change Language the App": "To change Language the App", + "To change some Settings": "Bazı Ayarları değiştirmek için", + "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.": "En doğru bilgiyi almak için lütfen ülkenizi seçin.", + "To give you the best experience, we need to know where you are. Your location is used to find nearby captains and for pickups.": "Size en iyi deneyimi sunmak için nerede olduğunuzu bilmemiz gerek. Konumunuz yakın sürücüleri bulmak için kullanılır.", + "To register as a driver or learn about the requirements, please visit our website or contact Intaleq support directly.": "Sürücü olmak için web sitemizi ziyaret edin veya destekle görüşün.", + "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 Siro support directly.", + "To use Wallet charge it": "Cüzdanı kullanmak için yükleme yapın", + "Today's Promos": "Günün Fırsatları", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "Cüzdanı Doldur", + "Top up Wallet to continue": "Devam etmek için Cüzdanı doldur", + "Total Amount:": "Toplam Tutar:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "Kredi kartı ile yolculuklardan\nToplam Bütçe: ", + "Total Budget from trips is ": "Yolculuklardan Toplam Bütçe: ", + "Total Connection Duration:": "Toplam Bağlantı Süresi:", + "Total Cost": "Toplam Maliyet", + "Total Cost is ": "Toplam Maliyet: ", + "Total Duration:": "Toplam Süre:", + "Total For You is ": "Size Ödenecek: ", + "Total From Passenger is ": "Yolcu Tutarı: ", + "Total Hours on month": "Aydaki Toplam Saat", + "Total Invites": "Total Invites", + "Total Points is": "Toplam Puan:", + "Total Price": "Total Price", + "Total budgets on month": "Aylık toplam bütçe", + "Total points is ": "Toplam puan: ", + "Total price from ": "Toplam fiyat: ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "Modern, sessiz elektrikli araçla seyahat edin. Pürüzsüz bir yolculuk için premium, çevre dostu seçim.", + "Trip Cancelled": "Yolculuk İptal Edildi", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "Yolculuk iptal edildi. Ücret cüzdanınıza eklenecektir.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "Yolculuk Takibi", + "Trip Status:": "Trip Status:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "Yolculuk bitti", + "Trip finished ": "Trip finished ", + "Trip has Steps": "Yolculuğun Adımları Var", + "Trip is Begin": "Yolculuk Başlıyor", + "Trip updated successfully": "Trip updated successfully", + "Trips recorded": "Kaydedilen Yolculuklar", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "Türkiye", + "Type here Place": "Yeri buraya yaz", + "Type something...": "Bir şeyler yaz...", + "Type your Email": "E-postanızı Yazın", + "Type your message": "Mesajını yaz", + "Type your message...": "Type your message...", + "USA": "ABD", + "Uncompromising Security": "Tavizsiz Güvenlik", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "Güncelle", + "Update Available": "Update Available", + "Update Education": "Eğitimi Güncelle", + "Update Gender": "Cinsiyeti Güncelle", + "Update Name": "Update Name", + "Uploaded": "Yüklendi", + "Use Touch ID or Face ID to confirm payment": "Ödemeyi onaylamak için Touch ID veya Face ID kullanın", + "Use code:": "Kodu kullan:", + "Use my invitation code to get a special gift on your first ride!": "İlk yolculuğunda özel hediye için davet kodumu kullan!", + "Use my referral code:": "Referans kodumu kullan:", + "User does not exist.": "Kullanıcı mevcut değil.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User with this phone number or email already exists.": "Bu telefon veya e-posta ile kayıtlı bir kullanıcı zaten var.", + "Uses cellular network": "Uses cellular network", + "VIN": "Şasi No", + "VIN :": "Şasi No:", + "VIN is": "Şasi No:", + "VIP Order": "VIP Sipariş", + "Valid Until:": "Son Geçerlilik:", + "Van": "Geniş Araç", + "Van for familly": "Aile için Geniş Araç", + "Variety of Trip Choices": "Yolculuk Seçeneği Çeşitliliği", + "Vehicle Details Back": "Araç Detayları Arka", + "Vehicle Details Front": "Araç Detayları Ön", + "Vehicle Options": "Araç Seçenekleri", + "Verification Code": "Doğrulama Kodu", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "Doğrula", + "Verify Email": "E-postayı Doğrula", + "Verify Email For Driver": "Sürücü İçin E-postayı Doğrula", + "Verify OTP": "Kodu Doğrula", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "Tüm butonlar için titreşim geri bildirimi", + "View Map": "View Map", + "View your past transactions": "Geçmiş işlemleri görüntüle", + "Visit Website/Contact Support": "Web Sitesini Ziyaret Et/Desteğe Ulaş", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "Bilgi için web sitemizi ziyaret edin veya destek ile iletişime geçin.", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "Sesli Arama", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "Kaptan Bekleniyor...", + "Waiting for Driver ...": "Sürücü Bekleniyor...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "Konumunuz bekleniyor", + "Waiting...": "Waiting...", + "Wallet": "Cüzdan", + "Wallet is blocked": "Cüzdan bloke edildi", + "Wallet!": "Cüzdan!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "Uyarı: Hız tespit edildi!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "Uyarı: Hız sınırı aşıldı!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "Üzgünüz, konumunuzda aracımız yok!", + "We apologize 😔": "Özür dileriz 😔", + "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", + "We are process picture please wait ": "Fotoğrafı işliyoruz lütfen bekleyin ", + "We are search for nearst driver": "En yakın sürücüyü arıyoruz", + "We are searching for the nearest driver": "En yakın sürücüyü arıyoruz", + "We are searching for the nearest driver to you": "Size en yakın sürücüyü arıyoruz", + "We connect you with the nearest drivers for faster pickups and quicker journeys.": "Daha hızlı alım ve yolculuk için sizi en yakın sürücülere bağlıyoruz.", + "We couldn't find a valid route to this destination. Please try selecting a different point.": "Bu hedefe geçerli bir rota bulamadık. Lütfen farklı bir nokta seçin.", + "We have sent a verification code to your mobile number:": "Cep telefonu numaranıza bir doğrulama kodu gönderdik:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "Henüz sürücü bulunamadı. Teklifinizi daha cazip hale getirmek için ücreti artırmayı düşünün.", + "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.": "Sipariş alabilmeniz ve iletişim için numaranıza ihtiyacımız var.", + "We need your phone number to contact you and to help you.": "Size ulaşmak ve yardım etmek için numaranıza ihtiyacımız var.", + "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.": "Intaleq aracının 100 km/s hızını aştığını fark ettik. Lütfen yavaşlayın.", + "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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "We regret to inform you that another driver has accepted this order.": "Üzgünüz, bu siparişi başka bir sürücü kabul etti.", + "We search nearst Driver to you": "Size en yakın sürücüyü arıyoruz", + "We sent 5 digit to your Email provided": "E-postanıza 5 haneli kod gönderdik", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "Yeni bir sürücü arıyoruz.\nLütfen bekleyin.", + "We're here to help you 24/7": "7/24 size yardımcı olmaya hazırız", + "Welcome Back": "Welcome Back", + "Welcome Back!": "Tekrar Hoş Geldiniz!", + "Welcome to Intaleq!": "Intaleq'e Hoş Geldiniz!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "Sürücü olma şartları nelerdir?", + "What safety measures does Intaleq offer?": "Intaleq hangi güvenlik önlemlerini sunuyor?", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "Hangi araç türleri mevcut?", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "WhatsApp Konum Çıkarıcı", + "When": "Ne zaman", + "Where are you going?": "Nereye gidiyorsunuz?", + "Where are you, sir?": "Where are you, sir?", + "Where to": "Nereye?", + "Where you want go ": "Nereye gitmek istiyorsunuz ", + "Why Choose Intaleq?": "Neden Intaleq?", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "Intaleq ile dakikalar içinde hedefinize araç bulabilirsiniz.", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "İş", + "Work & Contact": "İş & İletişim", + "Work Saved": "Work Saved", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "Çalışma saatleri 12:00 - 19:00.\nWhatsApp mesajı veya e-posta gönderebilirsiniz.", + "Working Hours:": "Çalışma Saatleri:", + "Write note": "Not yaz", + "Wrong pickup location": "Yanlış alış noktası", + "Year": "Yıl", + "Year is": "Yıl:", + "Yes": "Yes", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "Evet, belirli koşullar altında (örneğin sürücü atanmadan önce) yolculuğunuzu iptal edebilirsiniz. Ayrıntılar için Intaleq iptal politikasına bakın.", + "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 Siro 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.": "Evet, iptal edebilirsiniz ancak iptal ücreti uygulanabilir.", + "You Are Stopped For this Day !": "Bugünlük durduruldunuz!", + "You Can Cancel Trip And get Cost of Trip From": "Yolculuğu İptal Edip Ücretini Şuradan Alabilirsiniz:", + "You Can cancel Ride After Captain did not come in the time": "Kaptan zamanında gelmezse iptal edebilirsiniz", + "You Dont Have Any amount in": "Hiç bakiyeniz yok:", + "You Dont Have Any places yet !": "Henüz kayıtlı yeriniz yok!", + "You Have": "Bakiyeniz:", + "You Have Tips": "Bahşişiniz var", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "Bugün 3 yolculuğu reddettiniz, sebep bu \nYarın görüşürüz!", + "You Should be select reason.": "Bir sebep seçmelisiniz.", + "You Should choose rate figure": "Puan seçmelisiniz", + "You are Delete": "Siliyorsunuz", + "You are Stopped": "Durduruldunuz", + "You are not in near to passenger location": "Yolcu konumuna yakın değilsiniz", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "Çevrimiçi kalmak için Puan satın alabilirsiniz\naşağıdaki listeden", + "You can buy points from your budget": "Bütçenizden puan satın alabilirsiniz", + "You can call or record audio during this trip.": "Bu yolculuk sırasında arama yapabilir veya ses kaydedebilirsiniz.", + "You can call or record audio of this trip": "Arama yapabilir veya ses kaydedebilirsiniz", + "You can cancel Ride now": "Yolculuğu şimdi iptal edebilirsiniz", + "You can cancel trip": "Yolculuğu iptal edebilirsiniz", + "You can change the Country to get all features": "Tüm özellikleri almak için Ülkeyi değiştirebilirsiniz", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "Uygulamanın dilini değiştirebilirsiniz", + "You can change the vibration feedback for all buttons": "Tüm butonlar için titreşimi değiştirebilirsiniz", + "You can claim your gift once they complete 2 trips.": "Onlar 2 yolculuk tamamlayınca hediyeni alabilirsin.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "Yolculuk onaylandığında uygulama içi sohbeti kullanabilirsiniz.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "Bize 12:00 - 19:00 saatleri arasında ulaşabilirsiniz.", + "You can decline a request without any cost": "Bir isteği ücretsiz reddedebilirsiniz", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "Nakit veya kartla ödeyebilirsiniz. Onaylamadan önce yöntemi seçin.", + "You can resend in": "Tekrar gönderim süresi:", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "Uygulamayı paylaşın ve kodunuzla yapılan yolculuklardan ödül kazanın.", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "Bizimle devam edemezsiniz.\nEhliyetinizi yenilemelisiniz", + "You canceled VIP trip": "You canceled VIP trip", + "You deserve the gift": "Hediyeyi hak ettiniz", + "You dont Add Emergency Phone Yet!": "Henüz Acil Durum Telefonu Eklemediniz!", + "You dont have Points": "Puanınız yok", + "You have already received your gift for inviting": "Davet hediyenizi zaten aldınız", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "Bu promosyon kodunu zaten kullandınız.", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "Sürücüden aramanız var", + "You have copied the promo code.": "Promosyon kodunu kopyaladınız.", + "You have earned 20": "20 kazandınız", + "You have finished all times ": "Tüm haklarınızı doldurdunuz ", + "You have got a gift for invitation": "Davet için hediye kazandınız", + "You have in account": "Hesabınızda var", + "You have promo!": "Promosyonun var!", + "You must Verify email !.": "E-postayı doğrulamalısınız!", + "You must be charge your Account": "Hesabınıza yükleme yapmalısınız", + "You must restart the app to change the language.": "Dili değiştirmek için uygulamayı yeniden başlatmalısınız.", + "You should have upload it .": "Bunu yüklemeniz gerekiyor.", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "Birini seçmelisiniz", + "You should select your country": "Ülkenizi seçmelisiniz", + "You trip distance is": "Yolculuk mesafesi:", + "You will arrive to your destination after ": "Hedefe varış süreniz: ", + "You will arrive to your destination after timer end.": "Süre bittikten sonra hedefe varacaksınız.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "Sürücüye ödeme yapacaksınız veya bir sonraki yolculukta sizden alacağız", + "You will be thier in": "Şu sürede orada olacaksınız:", + "You will choose allow all the time to be ready receive orders": "Sipariş almak için 'Her zaman izin ver'i seçmelisiniz", + "You will choose one of above !": "Yukarıdakilerden birini seçmelisiniz!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "Bu yolculuk için emeğinizin karşılığını alacaksınız", + "You will receive a code in SMS message": "SMS ile bir kod alacaksınız", + "You will receive a code in WhatsApp Messenger": "WhatsApp üzerinden bir kod alacaksınız", + "You will recieve code in sms message": "Kodu SMS ile alacaksınız", + "Your Account is Deleted": "Hesabınız Silindi", + "Your Budget less than needed": "Bütçeniz gerekenden az", + "Your Choice, Our Priority": "Sizin Seçiminiz, Bizim Önceliğimiz", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "Yolculuk Süreniz: ", + "Your Wallet balance is ": "Cüzdan bakiyeniz: ", + "Your are far from passenger location": "Yolcu konumundan uzaksınız", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "Verileriniz 2 hafta sonra silinecek\nVe 1 ay sonra uygulamayı kullanamayacaksınız", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Your email address", + "Your fee is ": "Ücretiniz: ", + "Your invite code was successfully applied!": "Davet kodunuz başarıyla uygulandı!", + "Your journey starts here": "Yolculuğunuz burada başlıyor", + "Your name": "Adınız", + "Your order is being prepared": "Siparişiniz hazırlanıyor", + "Your order sent to drivers": "Siparişiniz sürücülere gönderildi", + "Your password": "Your password", + "Your past trips will appear here.": "Geçmiş yolculuklarınız burada görünecek.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "Kişisel davet kodun:", + "Your trip cost is": "Yolculuk maliyetiniz:", + "Your trip distance is": "Yolculuk mesafeniz:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nAyrıca uygun fiyat önceliğimizdir, rekabetçi fiyatlarla yolculuğu erişilebilir kılıyoruz.", + "accepted": "accepted", + "accepted your order at price": "accepted your order at price", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "Devam etmek için Kullanım Şartları ve Gizlilik Politikasını kabul etmelisiniz.", + "airport": "airport", + "an error occurred": "Bir hata oluştu: @error", + "and I have a trip on": "ve şurada bir yolculuğum var:", + "and acknowledge our": "ve şunu kabul edin:", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq güvenli, güvenilir ve erişilebilir bir araç çağırma uygulamasıdır.", + "arrival time to reach your point": "noktanıza varış zamanı", + "as the driver.": "as the driver.", + "before": "önce", + "begin": "begin", + "by": "by", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "change device", + "committed_to_safety": "Güvenliğe önem veriyoruz, tüm kaptanlarımız kontrolden geçer.", + "complete profile subtitle": "Başlamak için profilinizi tamamlayın", + "complete registration button": "Kaydı Tamamla", + "complete, you can claim your gift": "tamamlandı, hediyeni alabilirsin", + "contacts. Others were hidden because they don't have a phone number.": "kişi. Diğerleri numarası olmadığı için gizlendi.", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copied to clipboard", + "created time": "oluşturulma zamanı", + "deleted": "deleted", + "distance is": "mesafe:", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "ehliyet", + "due to a previous trip.": "due to a previous trip.", + "duration is": "süre:", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "E-posta (İsteğe Bağlı)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "Lütfen 5 haneli doğrulama kodunu girin", + "face detect": "Yüz Algılama", + "failed to send otp": "Kod gönderilemedi.", + "first name label": "Ad", + "first name required": "Ad gerekli", + "for": "için", + "for your first registration!": "ilk kaydınız için!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30'dan 10:30'a kadar", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00'den 15:00'e kadar", + "from 23:59 till 05:30": "23:59'dan 05:30'a kadar", + "from 3 times Take Attention": "3 denemeden, Dikkat Edin", + "from your favorites": "from your favorites", + "from your list": "listenden", + "get_a_ride": "Intaleq ile dakikalar içinde araç bulun.", + "get_to_destination": "Hedefinize hızlı ve kolay ulaşın.", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "yolcu iptal etmeden konumuna gidin", + "has completed": "tamamladı", + "hour": "saat", + "i agree": "kabul ediyorum", + "if you don't have account": "hesabınız yoksa", + "if you dont have account": "hesabınız yoksa", + "if you want help you can email us here": "yardım isterseniz bize e-posta atabilirsiniz", + "image verified": "görüntü doğrulandı", + "in your": "in your", + "insert amount": "tutar girin", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "bir araç kullanıyor: ", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "joined": "katıldı", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "Soyad", + "last name required": "Soyad gerekli", + "login or register subtitle": "Giriş yapmak veya kayıt olmak için numaranızı girin", + "m": "dk", + "message From Driver": "Sürücüden Mesaj", + "message From passenger": "Yolcumuzdan mesaj", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "Model:", + "my location": "konumum", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "Benzer Değil", + "of": "/", + "one last step title": "Son bir adım", + "otp sent subtitle": "5 haneli kod şuraya gönderildi:\n@phoneNumber", + "otp sent success": "Kod WhatsApp'a başarıyla gönderildi.", + "otp verification failed": "Kod doğrulaması başarısız.", + "passenger agreement": "yolcu sözleşmesi", + "pending": "pending", + "phone not verified": "phone not verified", + "phone number label": "Telefon Numarası", + "phone number required": "Telefon numarası gerekli", + "please go to picker location exactly": "lütfen tam olarak alım noktasına gidin", + "please order now": "Şimdi sipariş ver", + "please wait till driver accept your order": "sürücü siparişinizi kabul edene kadar bekleyin", + "price is": "fiyat:", + "privacy policy": "gizlilik politikası.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "Kayıt başarısız.", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "safe_and_comfortable": "Güvenli ve konforlu yolculuğun tadını çıkarın.", + "seconds": "saniye", + "security_warning": "security_warning", + "send otp button": "Doğrulama Kodu Gönder", + "server error try again": "Sunucu hatası, tekrar deneyin.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "Benzer", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "kullanım şartları", + "the 300 points equal 300 L.E": "300 puan 300 TL eder", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "300 puan senin için 300 TL eder \nHadi paranı kazan", + "the 500 points equal 30 JOD": "500 puan 30 TL eder", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "500 puan senin için 30 TL eder \nHadi paranı kazan", + "this will delete all files from your device": "bu işlem cihazınızdaki tüm dosyaları silecek", + "to arrive you.": "to arrive you.", + "token change": "Token değişikliği", + "token updated": "token güncellendi", + "trips": "yolculuk", + "type here": "buraya yazın", + "unknown": "unknown", + "upgrade price": "upgrade price", + "verify and continue button": "Doğrula ve Devam Et", + "verify your number title": "Numaranızı Doğrulayın", + "wait 1 minute to receive message": "mesajı almak için 1 dakika bekleyin", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "wallet due to a previous trip.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "Intaleq'e Hoş Geldiniz", + "welcome to siro": "welcome to siro", + "welcome user": "Hoş geldin, @firstName!", + "welcome_message": "Intaleq'e Hoş Geldiniz!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "aracın rengini yaz", + "write Expiration Date for your car": "aracın son kullanma tarihini yaz", + "write Make for your car": "aracın markasını yaz", + "write Model for your car": "aracın modelini yaz", + "write Year for your car": "aracın yılını yaz", + "write vin for your car": "aracın şasi numarasını yaz", + "year :": "Yıl:", + "you canceled order": "you canceled order", + "you gain": "kazandınız", + "you have a negative balance of": "you have a negative balance of", + "you must insert token code": "you must insert token code", + "you will pay to Driver": "Sürücüye ödeyeceksiniz", + "you will pay to Driver you will be pay the cost of driver time look to your Intaleq Wallet": "Sürücünün zaman maliyetini ödeyeceksiniz, Intaleq Cüzdanınıza bakın", + "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 Siro Wallet", + "your ride is Accepted": "yolculuğunuz Kabul Edildi", + "your ride is applied": "yolculuğunuz başvuruldu", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "Son Kullanma Tarihi", + "⚠️ You need to choose an amount!": "⚠️ Bir tutar seçmelisiniz!", + "💰 Pay with Wallet": "💰 Cüzdan ile Öde", + "💳 Pay with Credit Card": "💳 Kredi Kartı ile Öde", +}; diff --git a/siro_rider/lib/controller/local/translations.dart b/siro_rider/lib/controller/local/translations.dart index 8fd100b..845ce8f 100644 --- a/siro_rider/lib/controller/local/translations.dart +++ b/siro_rider/lib/controller/local/translations.dart @@ -2,6 +2,17 @@ import 'package:get/get.dart'; import 'ar_sy.dart'; import 'ar_eg.dart'; import 'ar_jo.dart'; +import 'de.dart'; +import 'el.dart'; +import 'es.dart'; +import 'fa.dart'; +import 'fr.dart'; +import 'hi.dart'; +import 'it.dart'; +import 'ru.dart'; +import 'tr.dart'; +import 'ur.dart'; +import 'zh.dart'; class MyTranslation extends Translations { @override @@ -10,5 +21,16 @@ class MyTranslation extends Translations { "ar-SY": ar_sy, "ar-EG": ar_eg, "ar-JO": ar_jo, + "de": de, + "el": el, + "es": es, + "fa": fa, + "fr": fr, + "hi": hi, + "it": it, + "ru": ru, + "tr": tr, + "ur": ur, + "zh": zh, }; } diff --git a/siro_rider/lib/controller/local/ur.dart b/siro_rider/lib/controller/local/ur.dart new file mode 100644 index 0000000..1bc59a8 --- /dev/null +++ b/siro_rider/lib/controller/local/ur.dart @@ -0,0 +1,1715 @@ +final Map ur = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": " میں فی الحال یہاں واقع ہوں ", + " I am using": " میں استعمال کر رہا ہوں", + " If you need to reach me, please contact the driver directly at": " اگر آپ کو مجھ تک پہنچنے کی ضرورت ہو تو براہ کرم ڈرائیور سے براہ راست رابطہ کریں", + " KM": " کلو میٹر", + " Minutes": " منٹ", + " Next as Cash !": " اگلا نقد کے طور پر!", + " You Earn today is ": " آپ کی آج کی کمائی ہے ", + " You Have in": " آپ کے پاس ہے میں", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " اور ہماری رازداری کی پالیسی کو تسلیم کریں۔", + " and acknowledge the ": " and acknowledge the ", + " as the driver.": " بطور ڈرائیور۔", + " in your": " in your", + " in your wallet": " آپ کے والٹ میں", + " is ON for this month": " اس مہینے کے لیے آن ہے", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " ٹپس\nکل ہے", + " to arrive you.": " آپ تک پہنچنے کے لیے۔", + " to ride with": " سواری کرنے کے لیے ساتھ", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " لائسنس پلیٹ کے ساتھ ", + "--": "--", + ". I am at least 18 years old.": ". I am at least 18 years old.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "1. اپنا مسئلہ بیان کریں", + "10 and get 4% discount": "10 اور 4% ڈسکاؤنٹ حاصل کریں", + "100 and get 11% discount": "100 اور 11% ڈسکاؤنٹ حاصل کریں", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "2. ریکارڈ شدہ آڈیو منسلک کریں", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 اور 6% ڈسکاؤنٹ حاصل کریں", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "3. تفصیلات اور جواب کا جائزہ لیں", + "3000 LE": "3000 روپیہ", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 اور 8% ڈسکاؤنٹ حاصل کریں", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5 ہندسے", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "پیشگی ریزرویشن کے ساتھ سفر، جو آپ کو بہترین کپتانوں اور کاروں کا انتخاب کرنے کی اجازت دیتا ہے۔", + "AI Page": "AI صفحہ", + "About Intaleq": "انطلق کے بارے میں", + "About Siro": "About Siro", + "About Us": "ہمارے بارے میں", + "Accept": "Accept", + "Accept Order": "آرڈر قبول کریں", + "Accept Ride's Terms & Review Privacy Notice": "سفر کی شرائط قبول کریں اور رازداری کا نوٹس دیکھیں", + "Accepted Ride": "قبول شدہ سفر", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "فعال دورانیہ:", + "Active Users": "Active Users", + "Add Card": "کارڈ شامل کریں", + "Add Credit Card": "کریڈٹ کارڈ شامل کریں", + "Add Home": "گھر شامل کریں", + "Add Location": "لوکیشن شامل کریں", + "Add Location 1": "لوکیشن 1 شامل کریں", + "Add Location 2": "لوکیشن 2 شامل کریں", + "Add Location 3": "لوکیشن 3 شامل کریں", + "Add Location 4": "لوکیشن 4 شامل کریں", + "Add Payment Method": "ادائیگی کا طریقہ شامل کریں", + "Add Phone": "فون شامل کریں", + "Add Promo": "پرومو شامل کریں", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "اسٹاپس شامل کریں", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "ہمارے محفوظ طریقوں سے فنڈز شامل کریں", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "پتہ", + "Address: ": "پتہ: ", + "Admin DashBoard": "ایڈمن ڈیش بورڈ", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "ہر ایک کے لیے سستا", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "اس مدت کے بعد\nآپ منسوخ نہیں کر سکتے!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "عمر ہے ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "الرٹس", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "لوکیشن تک رسائی کی اجازت دیں", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "ادائیگی کے عمل کے دوران ایک خرابی پیش آ گئی۔", + "An error occurred while picking contacts:": "رابطے منتخب کرتے وقت ایک خرابی پیش آ گئی:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "ایک غیر متوقع خرابی پیش آ گئی۔ براہ کرم دوبارہ کوشش کریں۔", + "App Tester Login": "App Tester Login", + "App with Passenger": "مسافر کے ساتھ ایپ", + "Appearance": "Appearance", + "Applied": "درخواست دی گئی", + "Apply": "Apply", + "Apply Order": "آرڈر لاگو کریں", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "آپ کے علاقے کے قریب پہنچ رہا ہوں۔ 3 منٹ میں وہاں ہونا چاہیے۔", + "Are You sure to ride to": "کیا آپ واقعی جانا چاہتے ہیں", + "Are you Sure to LogOut?": "کیا آپ واقعی لاگ آؤٹ کرنا چاہتے ہیں؟", + "Are you sure to cancel?": "کیا آپ منسوخ کرنے کے لیے یقینی ہیں؟", + "Are you sure to delete recorded files": "کیا آپ واقعی ریکارڈ شدہ فائلیں حذف کرنا چاہتے ہیں", + "Are you sure to delete this location?": "کیا آپ واقعی اس لوکیشن کو ڈیلیٹ کرنا چاہتے ہیں؟", + "Are you sure to delete your account?": "کیا آپ واقعی اپنا اکاؤنٹ حذف کرنا چاہتے ہیں؟", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "کیا آپ کو یقین ہے؟ یہ عمل واپس نہیں کیا جا سکتا۔", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "کیا آپ اس جگہ جانا چاہتے ہیں", + "Are you want to go to this site": "کیا آپ اس جگہ جانا چاہتے ہیں", + "Are you want to wait drivers to accept your order": "کیا آپ چاہتے ہیں کہ ڈرائیورز آپ کا آرڈر قبول کرنے کا انتظار کریں", + "Arrival time": "پہنچنے کا وقت", + "Arrived": "Arrived", + "Associate Degree": "ایسوسی ایٹ ڈگری", + "Attach this audio file?": "کیا یہ آڈیو فائل منسلک کریں؟", + "Attention": "Attention", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "آڈیو کامیابی سے اپ لوڈ ہو گئی۔", + "Available for rides": "سواریوں کے لیے دستیاب", + "Average of Hours of": "گھنٹوں کی اوسط", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "سستی کار", + "Bachelor's Degree": "بیچلر ڈگری", + "Back": "Back", + "Bahrain": "بحرین", + "Balance": "بیلنس", + "Balance limit exceeded": "بیلنس کی حد سے تجاوز", + "Balance not enough": "بیلنس کافی نہیں ہے", + "Balance:": "بیلنس:", + "Be Slowly": "آہستہ رہیں", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "براہ کرم درست تصاویر لینے کا یقین کریں\nآپ کے پاس ہے", + "Be sure to use it quickly! This code expires at": "اسے جلدی استعمال کرنا یقینی بنائیں! یہ کوڈ ختم ہو جائے گا", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "چونکہ ہم قریب ہیں، آپ کے پاس انتخاب کی لچک ہے۔", + "Before we start, please review our terms.": "شروع کرنے سے پہلے، براہ کرم ہماری شرائط کا جائزہ لیں۔", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "شہروں کے لیے بہترین انتخاب", + "Best choice for comfort car and flexible route and stops point": "آرام دہ کار اور لچکدار راستے اور اسٹاپس پوائنٹ کے لیے بہترین انتخاب", + "Birth Date": "پیدائش کی تاریخ", + "Bonus gift": "Bonus gift", + "BookingFee": "بکنگ فیس", + "Bottom Bar Example": "باٹم بار مثال", + "But you have a negative salary of": "لیکن آپ کی منفی تنخواہ ہے", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "نیچے 'میں متفق ہوں' کو منتخب کر کے، میں نے استعمال کی شرائط کا جائزہ لیا ہے اور ان سے اتفاق کرتا ہوں۔", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "نیچے \"میں متفق ہوں\" کو منتخب کر کے، میں نے جائزہ لیا ہے اور استعمال کی شرائط سے اتفاق کرتا ہوں اور تسلیم کرتا ہوں ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "کوڈ", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "کال ختم", + "Call Ended": "Call Ended", + "Call Income": "آنے والی کال", + "Call Income from Driver": "ڈرائیور کی طرف سے کال", + "Call Income from Passenger": "مسافر کی طرف سے کال", + "Call Left": "بقیہ کالز", + "Call Options": "Call Options", + "Call Page": "کال پیج", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "کیمرے تک رسائی مسترد کر دی گئی۔", + "Camera not initialized yet": "کیمرہ ابھی تک شروع نہیں ہوا", + "Camera not initilaized yet": "کیمرہ ابھی تک شروع نہیں ہوا", + "Can I cancel my ride?": "کیا میں اپنی سواری منسوخ کر سکتا ہوں؟", + "Can we know why you want to cancel Ride ?": "کیا ہم جان سکتے ہیں کہ آپ کیوں منسوخ کرنا چاہتے ہیں؟", + "Cancel": "منسوخ کریں", + "Cancel Ride": "سفر منسوخ کریں", + "Cancel Search": "تلاش منسوخ کریں", + "Cancel Trip": "سفر منسوخ کریں", + "Cancel Trip from driver": "ڈرائیور کی طرف سے سفر منسوخ", + "Canceled": "منسوخ", + "Cannot apply further discounts.": "مزید چھوٹ لاگو نہیں کی جا سکتی۔", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "اپنے پولیس کلیئرنس کی تصویر لیں", + "Capture an Image of Your Driver License": "اپنے ڈرائیونگ لائسنس کی تصویر لیں", + "Capture an Image of Your Driver's License": "اپنے ڈرائیونگ لائسنس کی تصویر لیں", + "Capture an Image of Your ID Document Back": "اپنے شناختی کارڈ کی پشت کی تصویر لیں", + "Capture an Image of Your ID Document front": "اپنے شناختی کارڈ کے سامنے کی تصویر لیں", + "Capture an Image of Your car license back": "اپنی گاڑی کے لائسنس کی پشت کی تصویر لیں", + "Capture an Image of Your car license front": "اپنی گاڑی کی رجسٹریشن کے سامنے کی تصویر لیں", + "Car": "کار", + "Car Color:": "Car Color:", + "Car Details": "کار کی تفصیلات", + "Car License Card": "کار لائسنس کارڈ", + "Car Make:": "Car Make:", + "Car Model:": "Car Model:", + "Car Plate is ": "کار پلیٹ ہے ", + "Car Plate:": "Car Plate:", + "Card Number": "کارڈ نمبر", + "CardID": "کارڈ آئی ڈی", + "Cash": "نقد", + "Change Country": "ملک تبدیل کریں", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "میرا ارادہ بدل گیا", + "Chassis": "چیسس", + "Chat with us anytime": "کسی भी समय हमसे चैट करें", + "Check back later for new offers!": "نئی پیشکشوں کے لیے بعد میں دوبارہ چیک کریں!", + "Choose Language": "زبان منتخب کریں", + "Choose a contact option": "رابطے کا اختیار منتخب کریں", + "Choose between those Type Cars": "ان قسم کی کاروں کے درمیان انتخاب کریں", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "نقشے سے منتخب کریں", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "وہ آپشن منتخب کریں جو آپ کے لیے موزوں ہو۔", + "Choose who this order is for": "منتخب کریں کہ یہ آرڈر کس کے لیے ہے", + "Choose your ride": "Choose your ride", + "City": "شہر", + "Claim your 20 LE gift for inviting": "دعوت دینے پر اپنا 20 روپے کا تحفہ حاصل کریں", + "Click here point": "Click here point", + "Click here to Show it in Map": "اسے نقشے میں دکھانے کے لیے یہاں کلک کریں", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "بند کریں", + "Close panel": "Close panel", + "Closest & Cheapest": "سب سے قریب اور سستا", + "Closest to You": "آپ کے قریب ترین", + "Code": "کوڈ", + "Code not approved": "کوڈ منظور نہیں ہوا", + "Color": "رنگ", + "Color is ": "رنگ ہے: ", + "Comfort": "آرام دہ (Comfort)", + "Comfort choice": "آرام دہ انتخاب", + "Coming": "Coming", + "Communication": "مواصلات", + "Complaint": "شکایت", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "اس سفر کے لیے شکایت درج نہیں کی جا سکتی۔ ہو سکتا ہے یہ مکمل یا شروع نہ ہوا ہو۔", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "تصدیق کریں", + "Confirm & Find a Ride": "تصدیق کریں اور سواری تلاش کریں", + "Confirm Attachment": "منسلک کرنے کی تصدیق کریں", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "انتخاب کی تصدیق کریں", + "Confirm Trip": "Confirm Trip", + "Confirm your Email": "اپنے ای میل کی تصدیق کریں", + "Connected": "منسلک", + "Connecting...": "Connecting...", + "Connection Error": "کنکشن کی خرابی", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "رابطے کے اختیارات", + "Contact Support": "سپورٹ سے رابطہ کریں", + "Contact Us": "ہم سے رابطہ کریں", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "رابطے منتخب کرنے کے لیے رابطے کی اجازت درکار ہے۔", + "Contact us for any questions on your order.": "اپنے آرڈر پر کسی بھی سوال کے لیے ہم سے رابطہ کریں۔", + "Contacts Loaded": "رابطے لوڈ ہو گئے", + "Continue": "جاری رکھیں", + "Copy": "کاپی", + "Copy Code": "کوڈ کاپی کریں", + "Copy this Promo to use it in your Ride!": "اپنی سواری میں استعمال کرنے کے لیے اس پرومو کو کاپی کریں!", + "Cost Duration": "لاگت کا دورانیہ", + "Cost Of Trip IS ": "سفر کی قیمت ہے ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "دنوں میں گھنٹوں کی گنتی", + "Create Wallet to receive your money": "اپنے پیسے وصول کرنے کے لیے والٹ بنائیں", + "Criminal Document Required": "پولیس کلیئرنس درکار ہے", + "Criminal Record": "پولیس کلیئرنس", + "Crop Photo": "Crop Photo", + "Cropper": "کروپر", + "Current Balance": "موجودہ بیلنس", + "Current Location": "موجودہ لوکیشن", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "کسٹمر نہیں ملا", + "Customer phone is not active": "کسٹمر کا فون ایکٹو نہیں ہے", + "DISCOUNT": "ڈسکاؤنٹ", + "Dark Mode": "Dark Mode", + "Date": "تاریخ", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth is": "پیدائش کی تاریخ ہے:", + "Date of Birth: ": "پیدائش کی تاریخ: ", + "Days": "دن", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "میرا اکاؤنٹ ڈیلیٹ کریں", + "Delete Permanently": "مستقل طور پر ڈیلیٹ کریں", + "Delete Recording?": "Delete Recording?", + "Deleted": "حذف کر دیا گیا", + "Destination": "منزل", + "Destination Set": "Destination Set", + "Destination selected": "Destination selected", + "Detect Your Face ": "اپنا چہرہ شناخت کریں ", + "Device Change Detected": "Device Change Detected", + "Direct talk with our team": "ہماری ٹیم سے براہ راست بات کریں", + "Displacement": "ڈسپلیسمنٹ", + "Distance": "Distance", + "Distance To Passenger is ": "مسافر تک فاصلہ ہے ", + "Distance from Passenger to destination is ": "مسافر سے منزل تک کا فاصلہ ہے ", + "Distance is ": "فاصلہ ہے ", + "Distance of the Ride is ": "سفر کا فاصلہ ہے ", + "Do you have an invitation code from another driver?": "کیا آپ کے پاس کسی دوسرے ڈرائیور کا دعوتی کوڈ ہے؟", + "Do you want to change Home location": "کیا آپ گھر کی لوکیشن تبدیل کرنا چاہتے ہیں", + "Do you want to change Work location": "کیا آپ کام کی جگہ تبدیل کرنا چاہتے ہیں", + "Do you want to pay Tips for this Driver": "کیا آپ اس ڈرائیور کے لیے ٹپ ادا کرنا چاہتے ہیں", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "ڈاکٹریٹ ڈگری", + "Document Number: ": "دستاویز نمبر: ", + "Documents check": "دستاویزات کی جانچ", + "Don't Cancel": "کینسل نہ کریں", + "Don't forget your personal belongings.": "اپنا ذاتی سامان نہ بھولیں۔", + "Don't forget your ride!": "Don't forget your ride!", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "ہو گیا", + "Don’t forget your personal belongings.": "اپنا ذاتی سامان نہ بھولیں۔", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Download the Intaleq Driver app now and earn rewards!": "ابھی Intaleq ڈرائیور ایپ ڈاؤن لوڈ کریں اور انعامات حاصل کریں!", + "Download the Intaleq app now and enjoy your ride!": "ابھی Intaleq ایپ ڈاؤن لوڈ کریں اور اپنی سواری کا لطف اٹھائیں!", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "ابھی ایپ ڈاؤن لوڈ کریں:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "ڈرائیور", + "Driver Accepted the Ride for You": "ڈرائیور نے آپ کے لیے سفر قبول کر لیا", + "Driver Applied the Ride for You": "ڈرائیور نے آپ کے لیے سفر کی درخواست دی", + "Driver Cancelled Your Trip": "ڈرائیور نے آپ کا سفر منسوخ کر دیا", + "Driver Car Plate": "ڈرائیور کار پلیٹ", + "Driver Finish Trip": "ڈرائیور نے سفر ختم کر دیا", + "Driver Is Going To Passenger": "ڈرائیور مسافر کی طرف جا رہا ہے", + "Driver List": "Driver List", + "Driver Name": "ڈرائیور کا نام", + "Driver Name:": "Driver Name:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Driver Phone:", + "Driver Referral": "Driver Referral", + "Driver Registration": "ڈرائیور رجسٹریشن", + "Driver Registration & Requirements": "ڈرائیور رجسٹریشن اور تقاضے", + "Driver Wallet": "ڈرائیور والٹ", + "Driver already has 2 trips within the specified period.": "مقررہ مدت میں ڈرائیور کے پاس پہلے ہی 2 سفر ہیں۔", + "Driver asked me to cancel": "ڈرائیور نے کینسل کرنے کا کہا", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "ڈرائیور راستے میں ہے", + "Driver is taking too long": "ڈرائیور بہت دیر لگا رہا ہے", + "Driver is waiting at pickup.": "ڈرائیور پک اپ پر انتظار کر رہا ہے۔", + "Driver joined the channel": "ڈرائیور چینل میں شامل ہو گیا", + "Driver left the channel": "ڈرائیور نے چینل چھوڑ دیا", + "Driver phone": "ڈرائیور کا فون", + "Driver's License": "ڈرائیونگ لائسنس", + "Drivers License Class": "ڈرائیونگ لائسنس کلاس", + "Drivers License Class: ": "ڈرائیونگ لائسنس کلاس: ", + "Duration To Passenger is ": "مسافر تک دورانیہ ہے ", + "Duration is": "دورانیہ ہے", + "Duration of Trip is ": "سفر کا دورانیہ ہے ", + "Duration of the Ride is ": "سفر کا دورانیہ ہے ", + "EGP": "EGP", + "Edit Profile": "پروفائل میں ترمیم کریں", + "Edit Your data": "اپنے ڈیٹا میں ترمیم کریں", + "Education": "تعلیم", + "Egypt": "مصر", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "الیکٹرک", + "Email": "Email", + "Email Support": "ای میل سپورٹ", + "Email Us": "ہمیں ای میل کریں", + "Email Wrong": "ای میل غلط ہے", + "Email is": "ای میل ہے:", + "Email you inserted is Wrong.": "جو ای میل آپ نے درج کیا ہے وہ غلط ہے۔", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "روزگار کی قسم", + "Enable Location": "لوکیشن آن کریں", + "Enable Location Access": "Enable Location Access", + "End": "End", + "End Ride": "سفر ختم کریں", + "Enjoy a safe and comfortable ride.": "محفوظ اور آرام دہ سواری کا لطف اٹھائیں۔", + "Enjoy competitive prices across all trip options, making travel accessible.": "مسابقتی قیمتوں کا لطف اٹھائیں۔", + "Enter Your First Name": "اپنا پہلا نام درج کریں", + "Enter a password": "Enter a password", + "Enter a valid email": "Enter a valid email", + "Enter driver's phone": "ڈرائیور کا فون درج کریں", + "Enter phone": "فون درج کریں", + "Enter promo code": "پرومو کوڈ درج کریں", + "Enter promo code here": "پرومو کوڈ یہاں درج کریں", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "پرومو کوڈ درج کریں اور حاصل کریں", + "Enter your City": "Enter your City", + "Enter your Note": "اپنا نوٹ درج کریں", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "اپنی شکایت یہاں لکھیں...", + "Enter your email address": "اپنا ای میل ایڈریس درج کریں", + "Enter your feedback here": "اپنا فیڈ بیک یہاں درج کریں", + "Enter your first name": "اپنا پہلا نام درج کریں", + "Enter your last name": "اپنا آخری نام درج کریں", + "Enter your password": "Enter your password", + "Enter your phone number": "اپنا فون نمبر درج کریں", + "Enter your promo code": "Enter your promo code", + "Error": "خرابی", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "شام", + "Exclusive offers and discounts always with the Intaleq app": "Intaleq ایپ کے ساتھ ہمیشہ خصوصی پیشکشیں اور چھوٹ", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "میعاد ختم ہونے کی تاریخ", + "Expiration Date ": "میعاد ختم ہونے کی تاریخ: ", + "Expiry Date": "میعاد ختم ہونے کی تاریخ", + "Expiry Date: ": "میعاد ختم ہونے کی تاریخ: ", + "Face Detection Result": "چہرے کی شناخت کا نتیجہ", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "تلاش ناکام رہی، براہ کرم بعد میں دوبارہ کوشش کریں", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "تیز ترین شکایت کا جواب", + "Favorite Places": "Favorite Places", + "Fee is": "فیس ہے", + "Feed Back": "فیڈ بیک", + "Feedback": "فیڈ بیک", + "Feedback data saved successfully": "فیڈ بیک ڈیٹا کامیابی سے محفوظ ہو گیا", + "Female": "عورت", + "Find answers to common questions": "عام سوالات کے جوابات تلاش کریں", + "Finish Monitor": "نگرانی ختم کریں", + "Finished": "Finished", + "First Name": "پہلا نام", + "First name": "پہلا نام", + "Fixed Price": "Fixed Price", + "Flag-down fee": "فلیگ ڈاؤن فیس", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "ڈرائیوروں کے لیے", + "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": "Intaleq اور سکوٹر کے دوروں کے لیے، قیمت کا حساب متحرک طور پر لگایا جاتا ہے۔ کمفرٹ ٹرپس کے لیے، قیمت وقت اور فاصلے پر مبنی ہوتی ہے۔", + "For Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "سرکاری استفسارات کے لیے", + "Found another transport": "دوسرا ذریعہ مل گیا", + "Free Call": "Free Call", + "Frequently Asked Questions": "اکثر پوچھے گئے سوالات", + "Frequently Questions": "اکثر پوچھے گئے سوالات", + "From": "سے", + "From :": "سے :", + "From : ": "سے: ", + "From : Current Location": "سے: موجودہ لوکیشن", + "From:": "From:", + "Fuel": "ایندھن", + "Full Name (Marital)": "پورا نام", + "FullName": "پورا نام", + "GPS Required Allow !.": "GPS کی اجازت درکار ہے!.", + "Gender": "جنس", + "General": "General", + "Get": "Get", + "Get Details of Trip": "سفر کی تفصیلات حاصل کریں", + "Get Direction": "سمت حاصل کریں", + "Get a discount on your first Intaleq ride!": "اپنی پہلی Intaleq سواری پر رعایت حاصل کریں!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "ابھی حاصل کریں!", + "Get to your destination quickly and easily.": "اپنی منزل پر تیزی اور آسانی سے پہنچیں۔", + "Getting Started": "شروع کرنا", + "Gift Already Claimed": "تحفہ پہلے ہی حاصل کیا جا چکا ہے", + "Go To Favorite Places": "پسندیدہ مقامات پر جائیں", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "اگلے قدم پر جائیں\nکار لائسنس اسکین کریں۔", + "Go to passenger Location now": "اب مسافر کی لوکیشن پر جائیں", + "Go to this Target": "اس ہدف پر جائیں", + "Go to this location": "اس لوکیشن پر جائیں", + "Grant": "Grant", + "H and": "H اور", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "کیا آپ کے پاس پرومو کوڈ ہے؟", + "Heading your way now. Please be ready.": "اب آپ کے راستے کی طرف بڑھ رہا ہوں۔ براہ کرم تیار رہیں۔", + "Height: ": "اونچائی: ", + "Hello this is Captain": "ہیلو یہ کپتان ہے", + "Hello this is Driver": "ہیلو یہ ڈرائیور ہے", + "Hello! I'm inviting you to try Intaleq.": "ہیلو! میں آپ کو Intaleq آزمانے کی دعوت دے رہا ہوں۔", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hello, I'm at the agreed-upon location", + "Help Details": "مدد کی تفصیلات", + "Helping Center": "ہیلپنگ سینٹر", + "Here recorded trips audio": "یہاں ریکارڈ شدہ دوروں کی آڈیو", + "Hi": "ہیلو", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "سلام، میں اب جا رہا ہوں", + "Hi! This is": "ہیلو! یہ ہے", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "ہیلو، کہاں جانا ہے ", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "ہائی اسکول ڈپلومہ", + "History of Trip": "سفر کی تاریخ", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "How can I pay for my ride?": "میں اپنی سواری کے لیے ادائیگی کیسے کر سکتا ہوں؟", + "How can I register as a driver?": "میں بطور ڈرائیور کیسے رجسٹر ہو سکتا ہوں؟", + "How do I communicate with the other party (passenger/driver)?": "میں دوسرے فریق سے کیسے بات کروں؟", + "How do I request a ride?": "میں سواری کی درخواست کیسے کروں؟", + "How many hours would you like to wait?": "آپ کتنے گھنٹے انتظار کرنا چاہیں گے؟", + "How much longer will you be?": "How much longer will you be?", + "I Agree": "میں متفق ہوں", + "I Arrive your site": "میں آپ کی لوکیشن پر پہنچ گیا", + "I added the wrong pick-up/drop-off location": "میں نے غلط لوکیشن شامل کی", + "I am currently located at": "I am currently located at", + "I arrive you": "میں آپ کے پاس پہنچ گیا", + "I cant register in your app in face detection ": "میں چہرے کی شناخت میں آپ کی ایپ میں رجسٹر نہیں ہو سکتا ", + "I don't have a reason": "میرے پاس کوئی وجہ نہیں ہے", + "I don't need a ride anymore": "مجھے اب سواری کی ضرورت نہیں ہے", + "I want to order for myself": "میں اپنے لیے آرڈر کرنا چاہتا ہوں", + "I want to order for someone else": "میں کسی اور کے لیے آرڈر کرنا چاہتا ہوں", + "I was just trying the application": "میں صرف ایپلیکیشن آزما رہا تھا", + "I will go now": "میں اب جاؤں گا", + "I will slow down": "میں رفتار کم کروں گا", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "میں آپ کا انتظار کر رہا ہوں", + "I've been trying to reach you but your phone is off.": "I've been trying to reach you but your phone is off.", + "ID Documents Back": "شناختی دستاویزات کی پشت", + "ID Documents Front": "شناختی دستاویزات کا سامنے کا حصہ", + "If you in Car Now. Press Start The Ride": "اگر آپ کار میں ہیں تو سفر شروع کریں دبائیں", + "If you need assistance, contact us": "اگر آپ کو مدد کی ضرورت ہو تو ہم سے رابطہ کریں", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "اگر آپ اسٹاپ شامل کرنا چاہتے ہیں تو یہاں کلک کریں", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "اگر آپ چاہتے ہیں کہ جب آپ آرڈر لاگو کریں تو گوگل میپ ایپ براہ راست چلے", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "تصویر کی شناخت کا نتیجہ ہے ", + "In-App VOIP Calls": "ان-ایپ VOIP کالز", + "Including Tax": "ٹیکس سمیت", + "Incorrect sms code": "⚠️ غلط SMS کوڈ۔ براہ کرم دوبارہ کوشش کریں۔", + "Increase Fare": "کرایہ بڑھائیں", + "Increase Fee": "فیس بڑھائیں", + "Increase Your Trip Fee (Optional)": "اپنی ٹرپ فیس بڑھائیں (اختیاری)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "کرایہ بڑھانے سے مزید ڈرائیور متوجہ ہو سکتے ہیں۔ کیا آپ قیمت بڑھانا چاہیں گے؟", + "Insert": "درج کریں", + "Insert Emergincy Number": "ایمرجنسی نمبر درج کریں", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "اپنا پرومو کوڈ درج کریں", + "Inspection Date": "معائنے کی تاریخ", + "InspectionResult": "معائنے کا نتیجہ", + "Intaleq": "Intaleq", + "Intaleq Balance": "Intaleq بیلنس", + "Intaleq LLC": "Intaleq LLC", + "Intaleq Over": "Intaleq ختم", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "انطلق سپورٹ", + "Intaleq Wallet": "Intaleq والٹ", + "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 ایک رائیڈ شیئرنگ ایپ ہے جو آپ کی حفاظت اور سستی کو مدنظر رکھتے ہوئے ڈیزائن کی گئی ہے۔ ہم آپ کو آپ کے علاقے میں قابل اعتماد ڈرائیوروں سے جوڑتے ہیں۔", + "Intaleq is committed to safety, and all of our captains are carefully screened and background checked.": "Intaleq حفاظت کے لیے پرعزم ہے، اور ہمارے تمام کپتانوں کی احتیاط سے جانچ پڑتال کی جاتی ہے اور پس منظر کی جانچ کی جاتی ہے۔", + "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 پہلی رائیڈ شیئرنگ ایپ ہے جو آپ کو قریب ترین ڈرائیوروں سے جوڑتی ہے۔", + "Intaleq is the ride-hailing app that is safe, reliable, and accessible.": "Intaleq ایک رائیڈ ہیلنگ ایپ ہے جو محفوظ، قابل اعتماد اور قابل رسائی ہے۔", + "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 سب سے محفوظ رائیڈ شیئرنگ ایپ ہے جو کپتانوں اور مسافروں دونوں کے لیے بہت سی خصوصیات متعارف کراتی ہے۔", + "Intaleq offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "Intaleq اکانومی، کمفرٹ اور لگژری سمیت مختلف آپشنز پیش کرتا ہے۔", + "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 آپ کی ضروریات کے مطابق گاڑیوں کے مختلف آپشنز پیش کرتا ہے۔", + "Intaleq offers multiple payment methods for your convenience. Choose between cash payment or credit/debit card payment during ride confirmation.": "Intaleq آپ کی سہولت کے لیے ادائیگی کے متعدد طریقے پیش کرتا ہے۔", + "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 ڈرائیور کی تصدیق اور ٹرپ ٹریکنگ پیش کرتا ہے۔", + "Intaleq prioritizes your safety. We offer features like driver verification, in-app trip tracking, and emergency contact options.": "Intaleq آپ کی حفاظت کو ترجیح دیتا ہے۔", + "Intaleq provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.": "Intaleq ان-ایپ چیٹ کی فعالیت فراہم کرتا ہے۔", + "Intaleq's Response": "Intaleq's Response", + "Invalid MPIN": "غلط MPIN", + "Invalid OTP": "غلط OTP", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "دعوت نامہ استعمال ہو چکا ہے", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "دعوت نامہ کامیابی سے بھیج دیا گیا", + "Is the Passenger in your Car ?": "کیا مسافر آپ کی کار میں ہے؟", + "Issue Date": "اجراء کی تاریخ", + "IssueDate": "اجراء کی تاریخ", + "JOD": "روپیہ", + "Join": "شامل ہوں", + "Join Intaleq as a driver using my referral code!": "میرے ریفرل کوڈ کا استعمال کرتے ہوئے بطور ڈرائیور Intaleq میں شامل ہوں!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "اردن", + "KM": "کلو میٹر", + "Keep it up!": "جاری رکھیں!", + "Kuwait": "کویت", + "LE": "روپیہ", + "Lady": "خواتین", + "Lady Captain for girls": "خواتین کے لیے لیڈی کیپٹن", + "Lady Captains Available": "خواتین کپتان دستیاب ہیں", + "Language": "زبان", + "Language Options": "زبان کے اختیارات", + "Last Name": "Last Name", + "Last name": "آخری نام", + "Latest Recent Trip": "تازہ ترین حالیہ سفر", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "چھوڑیں", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "آئیے کار لائسنس چیک کریں ", + "Lets check License Back Face": "آئیے لائسنس کے پچھلے حصے کو چیک کریں", + "License Categories": "لائسنس کے زمرے", + "License Type": "لائسنس کی قسم", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "ٹرانسفر کے لیے فون نمبر لنک کریں", + "Listen": "Listen", + "Location": "Location", + "Location Link": "لوکیشن لنک", + "Location Received": "Location Received", + "Log Off": "لاگ آف", + "Log Out Page": "لاگ آؤٹ صفحہ", + "Login": "Login", + "Login Captin": "کپتان لاگ ان", + "Login Driver": "لاگ ان ڈرائیور", + "Logout": "Logout", + "Lowest Price Achieved": "کم ترین قیمت حاصل کی گئی", + "Made :": "بنایا گیا :", + "Make": "میک", + "Make is ": "میک ہے: ", + "Male": "مرد", + "Map Error": "Map Error", + "Map Passenger": "نقشہ مسافر", + "Marital Status": "ازدواجی حیثیت", + "Master's Degree": "ماسٹر ڈگری", + "Maximum fare": "زیادہ سے زیادہ کرایہ", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "کم از کم کرایہ", + "Minute": "منٹ", + "Mishwar Vip": "مشوار VIP", + "Model": "ماڈل", + "Model is": "ماڈل ہے:", + "Morning": "صبح", + "Most Secure Methods": "انتہائی محفوظ طریقے", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "پن کو ایڈجسٹ کرنے کے لیے نقشہ منتقل کریں", + "Mute": "Mute", + "My Balance": "میرا بیلنس", + "My Card": "میرا کارڈ", + "My Cared": "میرے کارڈز", + "My Profile": "میرا پروفائل", + "My current location is:": "میری موجودہ لوکیشن ہے:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "میری لوکیشن", + "N/A": "N/A", + "Name": "نام", + "Name (Arabic)": "نام (اردو)", + "Name (English)": "نام (انگریزی)", + "Name :": "نام :", + "Name in arabic": "عربی میں نام", + "Name of the Passenger is ": "مسافر کا نام ہے ", + "National ID": "شناختی کارڈ", + "National Number": "قومی نمبر", + "NationalID": "شناختی کارڈ نمبر", + "Nearby": "Nearby", + "Nearest Car": "Nearest Car", + "Nearest Car for you about ": "آپ کے لیے قریب ترین کار تقریباً ", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Network error occurred": "Network error occurred", + "Next": "اگلا", + "Night": "رات", + "No": "نہیں", + "No ,still Waiting.": "نہیں، ابھی بھی انتظار کر رہا ہوں۔", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "آپ کی جگہ پر کوئی کار نہیں۔ معذرت!", + "No Car or Driver Found in your area.": "آپ کے علاقے میں کوئی کار یا ڈرائیور نہیں ملا۔", + "No Drivers Found": "کوئی ڈرائیور نہیں ملا", + "No I want": "نہیں میں چاہتا ہوں", + "No Notifications": "No Notifications", + "No Promo for today .": "آج کے لیے کوئی پرومو نہیں ہے۔", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "ابھی تک کوئی جواب نہیں ملا۔", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "کوئی سم کارڈ نہیں، کوئی مسئلہ نہیں! ہماری ایپ کے ذریعے براہ راست اپنے ڈرائیور کو کال کریں۔", + "No accepted orders? Try raising your trip fee to attract riders.": "کوئی قبول شدہ آرڈر نہیں؟ سواروں کو راغب کرنے کے لیے اپنی ٹرپ فیس بڑھانے کی کوشش کریں۔", + "No audio files found.": "کوئی آڈیو فائل نہیں ملی۔", + "No cars nearby": "No cars nearby", + "No contacts available": "No contacts available", + "No contacts found": "کوئی رابطہ نہیں ملا", + "No contacts with phone numbers were found on your device.": "آپ کے آلے پر فون نمبرز کے ساتھ کوئی رابطہ نہیں ملا۔", + "No driver accepted my request": "کسی ڈرائیور نے میری درخواست قبول نہیں کی", + "No drivers accepted your request yet": "ابھی تک کسی ڈرائیور نے آپ کی درخواست قبول نہیں کی", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "اس وقت کوئی ڈرائیور نہیں ملا۔\nبراہ کرم بعد میں دوبارہ کوشش کریں۔", + "No face detected": "کوئی چہرہ شناخت نہیں ہوا", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "ابھی تک کوئی تصویر منتخب نہیں کی گئی", + "No invitation found yet!": "ابھی تک کوئی دعوت نامہ نہیں ملا!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "کسی نے قبول نہیں کیا؟ کرایہ بڑھانے کی کوشش کریں۔", + "No passenger found for the given phone number": "دیے گئے فون نمبر کے لیے کوئی مسافر نہیں ملا", + "No promos available right now.": "ابھی کوئی پرومو دستیاب نہیں ہے۔", + "No ride found yet": "ابھی تک کوئی سواری نہیں ملی", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No trip data available", + "No trip history found": "کوئی سفری تاریخ نہیں ملی", + "No trip yet found": "ابھی تک کوئی سفر نہیں ملا", + "No user found": "No user found", + "No user found for the given phone number": "دیے گئے فون نمبر کے لیے کوئی صارف نہیں ملا", + "No wallet record found": "کوئی والٹ ریکارڈ نہیں ملا", + "No, I don't have a code": "نہیں، میرے پاس کوڈ نہیں ہے", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, thanks": "نہیں، شکریہ", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "منسلک نہیں", + "Not set": "سیٹ نہیں", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "اطلاعات", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Now select start pick", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "پیشہ", + "Ok": "ٹھیک ہے", + "Ok , See you Tomorrow": "ٹھیک ہے، کل ملتے ہیں", + "Ok I will go now.": "ٹھیک ہے، میں اب جا رہا ہوں۔", + "Old and affordable, perfect for budget rides.": "پرانی اور سستی، بجٹ سواریوں کے لیے بہترین۔", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "ترتیبات کھولیں", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "یا اس کے بجائے نقد ادائیگی کریں", + "Order": "آرڈر", + "Order Accepted": "Order Accepted", + "Order Applied": "آرڈر لاگو ہو گیا", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "آرڈر مسافر کی طرف سے منسوخ کر دیا گیا", + "Order Details Intaleq": "آرڈر کی تفصیلات Intaleq", + "Order Details Siro": "Order Details Siro", + "Order History": "آرڈر ہسٹری", + "Order Request Page": "آرڈر کی درخواست کا صفحہ", + "Order Under Review": "Order Under Review", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "اپنے لیے آرڈر", + "Order for someone else": "کسی اور کے لیے آرڈر", + "OrderId": "آرڈر آئی ڈی", + "OrderVIP": "VIP آرڈر", + "Origin": "اصل", + "Other": "دیگر", + "Our dedicated customer service team ensures swift resolution of any issues.": "ہماری کسٹمر سروس ٹیم مسائل کے فوری حل کو یقینی بناتی ہے۔", + "Owner Name": "مالک کا نام", + "Passenger": "Passenger", + "Passenger Cancel Trip": "مسافر نے سفر منسوخ کر دیا", + "Passenger Name is ": "مسافر کا نام ہے ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger come to you": "مسافر آپ کی طرف آ رہا ہے", + "Passenger name : ": "مسافر کا نام : ", + "Password": "Password", + "Password must br at least 6 character.": "پاس ورڈ کم از کم 6 حروف کا ہونا چاہیے۔", + "Paste WhatsApp location link": "واٹس ایپ لوکیشن لنک پیسٹ کریں", + "Paste location link here": "لوکیشن لنک یہاں پیسٹ کریں", + "Paste the code here": "کوڈ یہاں پیسٹ کریں", + "Pay": "Pay", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "کپتان کو براہ راست ادائیگی کریں", + "Pay from my budget": "میرے بجٹ سے ادا کریں", + "Pay with Credit Card": "کریڈٹ کارڈ سے ادائیگی کریں", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "والٹ سے ادائیگی کریں", + "Pay with Your": "اپنے ساتھ ادا کریں", + "Pay with Your PayPal": "اپنے پے پال سے ادائیگی کریں", + "Payment Failed": "ادائیگی ناکام ہو گئی", + "Payment History": "ادائیگی کی تاریخ", + "Payment Method": "ادائیگی کا طریقہ", + "Payment Options": "ادائیگی کے اختیارات", + "Payment Successful": "ادائیگی کامیاب", + "Payments": "ادائیگیاں", + "Perfect for adventure seekers who want to experience something new and exciting": "ان مہم جوئی کرنے والوں کے لیے بہترین جو کچھ نیا اور دلچسپ تجربہ کرنا چاہتے ہیں", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "جدید ترین کار ماڈلز کے متلاشی مسافروں کے لیے بہترین", + "Permission Required": "Permission Required", + "Permission denied": "اجازت مسترد کر دی گئی", + "Personal Information": "ذاتی معلومات", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "فون نمبر ہے:", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is verified before": "Phone number is verified before", + "Phone number isn't an Egyptian phone number": "Phone number isn't an Egyptian phone number", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "نقشے سے منتخب کریں", + "Pick from map destination": "Pick from map destination", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "نقشے سے اپنی منزل منتخب کریں", + "Pick your ride location on the map - Tap to confirm": "نقشے پر اپنی سواری کی لوکیشن منتخب کریں - تصدیق کے لیے ٹیپ کریں", + "Plan Your Route": "Plan Your Route", + "Plate": "پلیٹ", + "Plate Number": "پلیٹ نمبر", + "Please Try anther time ": "براہ کرم کسی اور وقت کوشش کریں ", + "Please Wait If passenger want To Cancel!": "براہ کرم انتظار کریں اگر مسافر منسوخ کرنا چاہے!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "براہ کرم اپنا انٹرنیٹ کنکشن چیک کریں", + "Please don't be late": "Please don't be late", + "Please don't be late, I'm waiting for you at the specified location.": "Please don't be late, I'm waiting for you at the specified location.", + "Please enter": "براہ کرم درج کریں", + "Please enter Your Email.": "براہ کرم اپنا ای میل درج کریں۔", + "Please enter Your Password.": "براہ کرم اپنا پاس ورڈ درج کریں۔", + "Please enter a correct phone": "براہ کرم درست فون نمبر درج کریں", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "براہ کرم فون نمبر درج کریں", + "Please enter a valid 16-digit card number": "براہ کرم درست 16 ہندسوں کا کارڈ نمبر درج کریں", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "براہ کرم ایک درست پرومو کوڈ درج کریں", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "براہ کرم CVV کوڈ درج کریں", + "Please enter the cardholder name": "براہ کرم کارڈ ہولڈر کا نام درج کریں", + "Please enter the complete 6-digit code.": "براہ کرم مکمل 6 ہندسوں کا کوڈ درج کریں۔", + "Please enter the expiry date": "براہ کرم میعاد ختم ہونے کی تاریخ درج کریں", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "براہ کرم اپنا شہر درج کریں۔", + "Please enter your Question.": "براہ کرم اپنا سوال درج کریں۔", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "براہ کرم اپنا فیڈ بیک درج کریں۔", + "Please enter your first name.": "براہ کرم اپنا پہلا نام درج کریں۔", + "Please enter your last name.": "براہ کرم اپنا آخری نام درج کریں۔", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "براہ کرم اپنا فون نمبر درج کریں۔", + "Please go to Car Driver": "براہ کرم ڈرائیور کے پاس جائیں", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "براہ کرم اب کار کے پاس جائیں ", + "Please help! Contact me as soon as possible.": "براہ کرم مدد کریں! جتنی جلدی ہو سکے مجھ سے رابطہ کریں۔", + "Please make sure not to leave any personal belongings in the car.": "براہ کرم یقینی بنائیں کہ گاڑی میں کوئی ذاتی سامان نہ چھوڑیں۔", + "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": "براہ کرم یقینی بنائیں کہ آپ کے پاس اپنا تمام سامان موجود ہے اور اگر کوئی بقایا کرایہ ہے تو وہ آپ کے والٹ میں شامل کر دیا گیا ہے۔ Intaleq ایپ منتخب کرنے کا شکریہ۔", + "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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "براہ کرم اپنا لائسنس ان حدود میں رکھیں", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "براہ کرم منتخب کردہ مقام پر رہیں۔", + "Please try again in a few moments": "Please try again in a few moments", + "Please verify your identity": "براہ کرم اپنی شناخت کی تصدیق کریں", + "Please wait for the passenger to enter the car before starting the trip.": "براہ کرم سفر شروع کرنے سے پہلے مسافر کے کار میں داخل ہونے کا انتظار کریں۔", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "براہ کرم وجہ لکھیں...", + "Point": "پوائنٹ", + "Potential security risks detected. The application may not function correctly.": "ممکنہ سیکیورٹی خطرات کا پتہ چلا۔ ہو سکتا ہے ایپلیکیشن صحیح کام نہ کرے۔", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Preferences": "Preferences", + "Price": "Price", + "Price of trip": "Price of trip", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "رازداری کی پالیسی", + "Professional driver": "Professional driver", + "Profile": "پروفائل", + "Profile photo updated": "Profile photo updated", + "Promo": "پرومو", + "Promo Already Used": "پرومو پہلے ہی استعمال ہو چکا ہے", + "Promo Code": "پرومو کوڈ", + "Promo Code Accepted": "پرومو کوڈ قبول ہو گیا", + "Promo Copied!": "پرمو کاپی ہو گیا!", + "Promo End !": "پرومو ختم!", + "Promo Ended": "پرومو ختم ہو گیا", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "پرومو کوڈ کلپ بورڈ پر کاپی ہو گیا!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "پروموز", + "Promos For Today": "Promos For Today", + "Pyament Cancelled .": "ادائیگی منسوخ ہو گئی۔", + "Qatar": "قطر", + "Quick Access": "Quick Access", + "Quick Actions": "فوری اقدامات", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "خاموش اور ماحول دوست", + "Rate Captain": "کپتان کو ریٹ کریں", + "Rate Driver": "ڈرائیور کو ریٹ کریں", + "Rate Passenger": "مسافر کو ریٹ کریں", + "Rating is": "Rating is", + "Rating is ": "ریٹنگ ہے ", + "Rating is ": "Rating is ", + "Rayeh Gai": "آنا جانا (Round Trip)", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "آنا جانا: شہروں کے درمیان آسان سفر کے لیے راؤنڈ ٹرپ سروس، آسان اور قابل اعتماد۔", + "Reach out to us via": "ہم سے رابطہ کریں بذریعہ", + "Received empty route data.": "Received empty route data.", + "Recent Places": "حالیہ مقامات", + "Recharge my Account": "میرا اکاؤنٹ ریچارج کریں", + "Record": "Record", + "Record saved": "ریکارڈ محفوظ ہو گیا", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "ریکارڈ شدہ سفر (آواز اور AI تجزیہ)", + "Recorded Trips for Safety": "حفاظت کے لیے ریکارڈ شدہ سفر", + "Refresh Map": "نقشہ ریفریش کریں", + "Refuse Order": "آرڈر مسترد کریں", + "Register": "رجسٹر کریں", + "Register Captin": "کپتان رجسٹر", + "Register Driver": "ڈرائیور رجسٹر کریں", + "Register as Driver": "بطور ڈرائیور رجسٹر کریں", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "مذہب", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "کوڈ دوبارہ بھیجیں", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "سفر کا انتظام", + "Ride Summaries": "سواری کے خلاصے", + "Ride Summary": "سواری کا خلاصہ", + "Ride Today : ": "آج کی سواری: ", + "Ride Wallet": "سفر والٹ", + "Rides": "سواریاں", + "Rouats of Trip": "سفر کے راستے", + "Route": "Route", + "Route Not Found": "روٹ نہیں ملا", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "SOS فون", + "SYP": "شامی پاؤن", + "Safety & Security": "حفاظت اور سیکیورٹی", + "Saudi Arabia": "سعودی عرب", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "کریڈٹ کارڈ محفوظ کریں", + "Save Name": "Save Name", + "Saved Sucssefully": "کامیابی سے محفوظ ہو گیا", + "Scan Driver License": "ڈرائیونگ لائسنس اسکین کریں", + "Scan ID MklGoogle": "آئی ڈی MklGoogle اسکین کریں", + "Scan Id": "آئی ڈی اسکین کریں", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "سکوٹر", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "دوسرا ڈرائیور تلاش کریں", + "Search for waypoint": "راستے کا نقطہ تلاش کریں", + "Search for your Start point": "اپنا نقطہ آغاز تلاش کریں", + "Search for your destination": "اپنی منزل تلاش کریں", + "Searching for nearby drivers...": "قریبی ڈرائیور تلاش کیے جا رہے ہیں...", + "Searching for the nearest captain...": "قریب ترین کپتان کی تلاش جاری ہے...", + "Secure": "Secure", + "Security Warning": "⚠️ سیکیورٹی وارننگ", + "See you on the road!": "راستے میں ملتے ہیں!", + "Select Appearance": "Select Appearance", + "Select Country": "ملک منتخب کریں", + "Select Date": "تاریخ منتخب کریں", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "آرڈر کی قسم منتخب کریں", + "Select Payment Amount": "ادائیگی کی رقم منتخب کریں", + "Select This Ride": "Select This Ride", + "Select Time": "وقت منتخب کریں", + "Select Waiting Hours": "انتظار کے اوقات منتخب کریں", + "Select Your Country": "اپنا ملک منتخب کریں", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Select date and time of trip", + "Select one message": "ایک پیغام منتخب کریں", + "Select recorded trip": "ریکارڈ شدہ سفر منتخب کریں", + "Select your destination": "اپنی منزل منتخب کریں", + "Select your preferred language for the app interface.": "ایپ انٹرفیس کے لیے اپنی پسندیدہ زبان منتخب کریں۔", + "Selected Date": "منتخب کردہ تاریخ", + "Selected Date and Time": "منتخب کردہ تاریخ اور وقت", + "Selected Time": "منتخب کردہ وقت", + "Selected driver": "منتخب ڈرائیور", + "Selected file:": "منتخب کردہ فائل:", + "Send Email": "Send Email", + "Send Intaleq app to him": "اسے Intaleq ایپ بھیجیں", + "Send Invite": "دعوت نامہ بھیجیں", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "تصدیقی کوڈ بھیجیں", + "Send Verification Code": "تصدیقی کوڈ بھیجیں", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "حسب ضرورت پیغام بھیجیں", + "Send to Driver Again": "Send to Driver Again", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "سیشن ختم ہو گیا۔ براہ کرم دوبارہ لاگ ان کریں۔", + "Set Destination": "Set Destination", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "والٹ فون نمبر سیٹ کریں", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "پک اپ لوکیشن سیٹ کریں", + "Setting": "سیٹنگ", + "Settings": "ترتیبات", + "Sex is ": "جنس ہے: ", + "Share": "Share", + "Share App": "ایپ شیئر کریں", + "Share Trip": "Share Trip", + "Share Trip Details": "سفر کی تفصیلات شیئر کریں", + "Share this code with your friends and earn rewards when they use it!": "اس کوڈ کو اپنے دوستوں کے ساتھ شیئر کریں اور انعامات حاصل کریں!", + "Share with friends and earn rewards": "دوستوں کے ساتھ شیئر کریں اور انعامات حاصل کریں", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "دعوت نامے دکھائیں", + "Show Promos": "پروموز دکھائیں", + "Show Promos to Charge": "چارج کرنے کے لیے پروموز دکھائیں", + "Show latest promo": "تازہ ترین پرومو دکھائیں", + "Showing": "دکھا رہا ہے", + "Sign In by Apple": "ایپل کے ذریعے سائن ان کریں", + "Sign In by Google": "گوگل کے ذریعے سائن ان کریں", + "Sign In with Google": "Sign In with Google", + "Sign Out": "سائن آؤٹ", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "آسان ای میل اور نام کے اندراج کے لیے گوگل کے ساتھ سائن ان کریں", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "بس ایپ کھولیں، منزل درج کریں اور 'سواری کی درخواست کریں' پر ٹیپ کریں۔", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "معذرت 😔", + "Sorry, there are no cars available of this type right now.": "معذرت، ابھی اس قسم کی کوئی گاڑی دستیاب نہیں ہے۔", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خاندانوں اور گروپوں کے لیے کشادہ وین سروس۔ آرام دہ، محفوظ اور کم خرچ۔", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "ریکارڈ شروع کریں", + "Start the Ride": "سفر شروع کریں", + "Statistics": "شماریات", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "Step-by-step instructions on how to request a ride through the Intaleq app.": "Intaleq ایپ کے ذریعے سواری کی درخواست کرنے کے طریقے پر مرحلہ وار ہدایات۔", + "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 Siro app.", + "Stop": "Stop", + "Submit": "Submit", + "Submit ": "جمع کرائیں ", + "Submit Complaint": "شکایت جمع کرائیں", + "Submit Question": "سوال جمع کرائیں", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "شکایت درج کریں", + "Submit rating": "ریٹنگ جمع کرائیں", + "Success": "کامیابی", + "Support & Info": "Support & Info", + "Support is Away": "سپورٹ اب دستیاب نہیں ہے", + "Support is currently Online": "سپورٹ اب آن لائن ہے", + "Switch Rider": "رائیڈر تبدیل کریں", + "Syria": "شام", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "پاکستان کی صف اول کی رائیڈ شیئرنگ سروس۔", + "System Default": "System Default", + "Take Image": "تصویر لیں", + "Take Picture Of Driver License Card": "ڈرائیونگ لائسنس کارڈ کی تصویر لیں", + "Take Picture Of ID Card": "شناختی کارڈ کی تصویر لیں", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "اسے کاپی کرنے کے لیے پرومو کوڈ پر ٹیپ کریں!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "ہدف", + "Tariff": "ٹیرف", + "Tariffs": "ٹیرف", + "Tax Expiry Date": "ٹیکس کی میعاد ختم ہونے کی تاریخ", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thanks": "شکریہ", + "The Driver Will be in your location soon .": "ڈرائیور جلد ہی آپ کی لوکیشن پر ہوگا۔", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", + "The captain is responsible for the route.": "کپتان راستے کا ذمہ دار ہے۔", + "The distance less than 500 meter.": "فاصلہ 500 میٹر سے کم ہے۔", + "The driver accept your order for": "ڈرائیور آپ کا آرڈر قبول کرتا ہے برائے", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "ڈرائیور نے آپ کا سفر قبول کر لیا ہے", + "The driver canceled your ride.": "ڈرائیور نے آپ کی سواری منسوخ کر دی۔", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "ڈرائیور نے ہنگامی وجہ سے ٹرپ کینسل کر دیا ہے۔\nکیا آپ فوراً دوسرا ڈرائیور تلاش کرنا چاہتے ہیں؟", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "ڈرائیور آپ کے راستے میں ہے", + "The driver waiting you in picked location .": "ڈرائیور منتخب جگہ پر آپ کا انتظار کر رہا ہے۔", + "The driver waitting you in picked location .": "ڈرائیور منتخب جگہ پر آپ کا انتظار کر رہا ہے۔", + "The drivers are reviewing your request": "ڈرائیورز آپ کی درخواست کا جائزہ لے رہے ہیں", + "The email or phone number is already registered.": "ای میل یا فون نمبر پہلے سے رجسٹرڈ ہے۔", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "آپ کے پولیس ریکارڈ پر موجود پورا نام آپ کے ڈرائیونگ لائسنس سے میل نہیں کھاتا۔", + "The invitation was sent successfully": "دعوت نامہ کامیابی سے بھیج دیا گیا", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "آپ کے ڈرائیونگ لائسنس پر قومی نمبر آپ کے شناختی کارڈ سے میل نہیں کھاتا۔", + "The order Accepted by another Driver": "آرڈر دوسرے ڈرائیور نے قبول کر لیا", + "The order has been accepted by another driver.": "آرڈر دوسرے ڈرائیور نے قبول کر لیا ہے۔", + "The payment was approved.": "ادائیگی منظور ہو گئی۔", + "The payment was not approved. Please try again.": "ادائیگی منظور نہیں ہوئی۔ براہ کرم دوبارہ کوشش کریں۔", + "The price may increase if the route changes.": "اگر راستہ بدل گیا تو قیمت بڑھ سکتی ہے۔", + "The promotion period has ended.": "پروموشن کی مدت ختم ہو گئی ہے۔", + "The reason is": "The reason is", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "سفر شروع ہو گیا ہے! بلا جھجھک ایمرجنسی نمبرز سے رابطہ کریں، اپنا سفر شیئر کریں، یا سفر کے لیے وائس ریکارڈنگ فعال کریں۔", + "There is no Car or Driver in your area.": "آپ کے علاقے میں کوئی گاڑی یا ڈرائیور نہیں ہے۔", + "There is no data yet.": "ابھی تک کوئی ڈیٹا نہیں ہے۔", + "There is no help Question here": "یہاں کوئی مدد کا سوال نہیں ہے", + "There is no notification yet": "ابھی تک کوئی اطلاع نہیں ہے", + "There no Driver Aplly your order sorry for that ": "کوئی ڈرائیور آپ کا آرڈر اپلائی نہیں کر رہا اس کے لیے معذرت ", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "یہاں ٹریفک بہت زیادہ ہے۔ کیا آپ متبادل پک اپ پوائنٹ تجویز کر سکتے ہیں؟", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "یہ رقم تمام سفر کے لیے جو مجھے مسافروں سے ملتی ہے", + "This amount for all trip I get from Passengers and Collected For me in": "یہ رقم تمام سفر کے لیے جو مجھے مسافروں سے ملتی ہے اور میرے لیے جمع کی گئی ہے", + "This is a scheduled notification.": "یہ ایک طے شدہ اطلاع ہے۔", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "یہ سکوٹر یا موٹر سائیکل کے لیے ہے۔", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "اس فون نمبر کو پہلے ہی مدعو کیا جا چکا ہے۔", + "This price is": "یہ قیمت ہے", + "This price is fixed even if the route changes for the driver.": "یہ قیمت مقررہ ہے چاہے ڈرائیور کا راستہ بدل جائے۔", + "This price may be changed": "یہ قیمت تبدیل ہو سکتی ہے", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "یہ سواری پہلے ہی کسی اور ڈرائیور نے لے لی ہے۔", + "This ride type allows changes, but the price may increase": "اس قسم کی سواری تبدیلیوں کی اجازت دیتی ہے، لیکن قیمت بڑھ سکتی ہے", + "This ride type does not allow changes to the destination or additional stops": "اس قسم کی سواری منزل میں تبدیلیوں یا اضافی اسٹاپس کی اجازت نہیں دیتی", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "یہ سفر آپ کے نقطہ آغاز سے سیدھا آپ کی منزل تک ایک مقررہ قیمت پر جاتا ہے۔ ڈرائیور کو منصوبہ بند راستے کی پیروی کرنی چاہیے۔", + "This trip is for women only": "یہ سفر صرف خواتین کے لیے ہے", + "Time": "Time", + "Time to arrive": "پہنچنے کا وقت", + "Tip is ": "ٹپ ہے ", + "To :": "To :", + "To : ": "تک: ", + "To Home": "To Home", + "To Work": "To Work", + "To become a passenger, you must review and agree to the ": "مسافر بننے کے لیے، آپ کو جائزہ لینا ہوگا اور اتفاق کرنا ہوگا ", + "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, 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 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 change Language the App": "To change Language the App", + "To change some Settings": "کچھ ترتیبات تبدیل کرنے کے لیے", + "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 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 Intaleq support directly.": "رجسٹر کرنے کے لیے ویب سائٹ ملاحظہ کریں یا سپورٹ سے رابطہ کریں۔", + "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 Siro support directly.", + "To use Wallet charge it": "والٹ استعمال کرنے کے لیے اسے چارج کریں", + "Today's Promos": "آج کے پروموز", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "والٹ ٹاپ اپ کریں", + "Top up Wallet to continue": "جاری رکھنے کے لیے والٹ ٹاپ اپ کریں", + "Total Amount:": "کل رقم:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "کریڈٹ کارڈ کے ذریعے سفروں سے\nکل بجٹ ہے ", + "Total Budget from trips is ": "سفروں سے کل بجٹ ہے ", + "Total Connection Duration:": "کل کنکشن کا دورانیہ:", + "Total Cost": "کل قیمت", + "Total Cost is ": "کل قیمت ہے ", + "Total Duration:": "کل دورانیہ:", + "Total For You is ": "آپ کے لیے کل: ", + "Total From Passenger is ": "مسافر سے کل: ", + "Total Hours on month": "مہینے میں کل گھنٹے", + "Total Invites": "Total Invites", + "Total Points is": "کل پوائنٹس ہیں", + "Total Price": "Total Price", + "Total budgets on month": "مہینے کا کل بجٹ", + "Total points is ": "کل پوائنٹس ہیں ", + "Total price from ": "سے کل قیمت ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "جدید، خاموش الیکٹرک کار میں سفر کریں۔ ایک پریمیم، ماحول دوست انتخاب۔", + "Trip Cancelled": "سفر منسوخ ہو گیا", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "سفر منسوخ ہو گیا۔ سفر کی لاگت آپ کے والٹ میں شامل کر دی جائے گی۔", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "سفر کی نگرانی", + "Trip Status:": "Trip Status:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "سفر ختم ہو گیا", + "Trip finished ": "Trip finished ", + "Trip has Steps": "سفر کے مراحل ہیں", + "Trip is Begin": "سفر شروع ہو گیا", + "Trip updated successfully": "Trip updated successfully", + "Trips recorded": "دورے ریکارڈ کیے گئے", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "ترکی", + "Type here Place": "یہاں جگہ لکھیں", + "Type something...": "کچھ لکھیں...", + "Type your Email": "اپنا ای میل لکھیں", + "Type your message": "اپنا پیغام ٹائپ کریں", + "Type your message...": "Type your message...", + "USA": "امریکہ", + "Uncompromising Security": "غیر متزلزل سیکیورٹی", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "اپ ڈیٹ", + "Update Available": "Update Available", + "Update Education": "تعلیم اپ ڈیٹ کریں", + "Update Gender": "جنس اپ ڈیٹ کریں", + "Update Name": "Update Name", + "Uploaded": "اپ لوڈ ہو گیا", + "Use Touch ID or Face ID to confirm payment": "ادائیگی کی تصدیق کے لیے ٹچ آئی ڈی یا فیس آئی ڈی استعمال کریں", + "Use code:": "کوڈ استعمال کریں:", + "Use my invitation code to get a special gift on your first ride!": "اپنی پہلی سواری پر خصوصی تحفہ حاصل کرنے کے لیے میرا دعوتی کوڈ استعمال کریں!", + "Use my referral code:": "میرا ریفرل کوڈ استعمال کریں:", + "User does not exist.": "صارف موجود نہیں ہے۔", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User with this phone number or email already exists.": "اس فون نمبر یا ای میل کے ساتھ صارف پہلے سے موجود ہے۔", + "Uses cellular network": "Uses cellular network", + "VIN": "VIN", + "VIN :": "VIN :", + "VIN is": "VIN ہے:", + "VIP Order": "VIP آرڈر", + "Valid Until:": "تک درست:", + "Van": "وین", + "Van for familly": "فیملی کے لیے وین", + "Variety of Trip Choices": "سفر کے انتخاب کی اقسام", + "Vehicle Details Back": "گاڑی کی تفصیلات پیچھے", + "Vehicle Details Front": "گاڑی کی تفصیلات سامنے", + "Vehicle Options": "گاڑی کے اختیارات", + "Verification Code": "تصدیقی کوڈ", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "تصدیق کریں", + "Verify Email": "ای میل کی تصدیق کریں", + "Verify Email For Driver": "ڈرائیور کے لیے ای میل کی تصدیق کریں", + "Verify OTP": "او ٹی پی کی تصدیق کریں", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "تمام بٹنوں کے لیے وائبریشن فیڈبیک", + "View Map": "View Map", + "View your past transactions": "اپنی پرانی ٹرانزیکشنز دیکھیں", + "Visit Website/Contact Support": "ویب سائٹ ملاحظہ کریں / سپورٹ سے رابطہ کریں", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "ڈرائیور رجسٹریشن اور تقاضوں کے بارے میں معلومات کے لیے ہماری ویب سائٹ ملاحظہ کریں یا سپورٹ سے رابطہ کریں۔", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "صوتی کال", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "کپتان کا انتظار...", + "Waiting for Driver ...": "ڈرائیور کا انتظار...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "آپ کی لوکیشن کا انتظار ہے", + "Waiting...": "Waiting...", + "Wallet": "والٹ", + "Wallet is blocked": "والٹ بلاک ہے", + "Wallet!": "والٹ!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "انتباہ: تیز رفتاری کا پتہ چلا!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "انتباہ: تیز رفتاری کا پتہ چلا!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "ہم معذرت خواہ ہیں کہ ہمارے پاس آپ کی لوکیشن میں کاریں نہیں ہیں!", + "We apologize 😔": "ہم معذرت خواہ ہیں 😔", + "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", + "We are process picture please wait ": "ہم تصویر پر کارروائی کر رہے ہیں براہ کرم انتظار کریں ", + "We are search for nearst driver": "ہم قریبی ڈرائیور تلاش کر رہے ہیں", + "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 couldn't find a valid route to this destination. Please try selecting a different point.": "ہمیں اس منزل کے لیے کوئی درست راستہ نہیں ملا۔ براہ کرم کوئی اور پوائنٹ منتخب کریں۔", + "We have sent a verification code to your mobile number:": "ہم نے آپ کے موبائل نمبر پر تصدیقی کوڈ بھیج دیا ہے:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ہمیں ابھی تک کوئی ڈرائیور نہیں ملا۔ اپنی پیشکش کو ڈرائیوروں کے لیے پرکشش بنانے کے لیے ٹرپ فیس بڑھانے پر غور کریں۔", + "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 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.": "ہم نے محسوس کیا کہ Intaleq 100 کلومیٹر فی گھنٹہ سے تجاوز کر رہا ہے۔ براہ کرم اپنی حفاظت کے لیے رفتار کم کریں۔", + "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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "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 ہندسے بھیجے ہیں", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "ہم نئے ڈرائیور کی تلاش کریں گے۔\nبراہ کرم انتظار کریں۔", + "We're here to help you 24/7": "ہم چوبیس گھنٹے آپ کی مدد کے لیے حاضر ہیں", + "Welcome Back": "Welcome Back", + "Welcome Back!": "خوش آمدید!", + "Welcome to Intaleq!": "Intaleq میں خوش آمدید!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "ڈرائیور بننے کے لیے کیا تقاضے ہیں؟", + "What safety measures does Intaleq offer?": "Intaleq کون سے حفاظتی اقدامات پیش کرتا ہے؟", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "کس قسم کی گاڑیاں دستیاب ہیں؟", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "واٹس ایپ لوکیشن ایکسٹریکٹر", + "When": "جب", + "Where are you going?": "آپ کہاں جا رہے ہیں؟", + "Where are you, sir?": "Where are you, sir?", + "Where to": "کہاں جانا ہے؟", + "Where you want go ": "آپ کہاں جانا چاہتے ہیں ", + "Why Choose Intaleq?": "Intaleq کا انتخاب کیوں کریں؟", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "Intaleq کے ساتھ، آپ منٹوں میں اپنی منزل تک سواری حاصل کر سکتے ہیں۔", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "کام", + "Work & Contact": "کام اور رابطہ", + "Work Saved": "Work Saved", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "کام کا وقت 12:00 - 19:00 ہے۔\nآپ واٹس ایپ پیغام یا ای میل بھیج سکتے ہیں۔", + "Working Hours:": "کام کے اوقات:", + "Write note": "نوٹ لکھیں", + "Wrong pickup location": "غلط پک اپ لوکیشن", + "Year": "سال", + "Year is": "سال ہے:", + "Yes": "Yes", + "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 Siro cancellation policy for details.": "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, but please note that cancellation fees may apply depending on how far in advance you cancel.": "جی ہاں، آپ منسوخ کر سکتے ہیں، لیکن منسوخی کی فیس لاگو ہو سکتی ہے۔", + "You Are Stopped For this Day !": "آپ اس دن کے لیے روک دیے گئے ہیں!", + "You Can Cancel Trip And get Cost of Trip From": "آپ سفر منسوخ کر سکتے ہیں اور سفر کی قیمت حاصل کر سکتے ہیں سے", + "You Can cancel Ride After Captain did not come in the time": "اگر کپتان وقت پر نہیں آیا تو آپ سواری منسوخ کر سکتے ہیں", + "You Dont Have Any amount in": "آپ کے پاس کوئی رقم نہیں ہے میں", + "You Dont Have Any places yet !": "ابھی تک آپ کے پاس کوئی جگہ نہیں ہے!", + "You Have": "آپ کے پاس ہے", + "You Have Tips": "آپ کے پاس ٹپس ہیں", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "آپ نے اس دن 3 سواریوں سے انکار کر دیا یہی وجہ ہے \nکل ملتے ہیں!", + "You Should be select reason.": "آپ کو وجہ منتخب کرنی چاہیے۔", + "You Should choose rate figure": "آپ کو ریٹنگ کا انتخاب کرنا چاہیے", + "You are Delete": "آپ حذف کر رہے ہیں", + "You are Stopped": "آپ رکے ہوئے ہیں", + "You are not in near to passenger location": "آپ مسافر کی لوکیشن کے قریب نہیں ہیں", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "آپ آن لائن رہنے کے لیے پوائنٹس خرید سکتے ہیں\nنیچے دی گئی اس فہرست کے ذریعے", + "You can buy points from your budget": "آپ اپنے بجٹ سے پوائنٹس خرید سکتے ہیں", + "You can call or record audio during this trip.": "آپ اس سفر کے دوران کال یا آڈیو ریکارڈ کر سکتے ہیں۔", + "You can call or record audio of this trip": "آپ اس سفر کی کال یا آڈیو ریکارڈ کر سکتے ہیں", + "You can cancel Ride now": "آپ اب سواری منسوخ کر سکتے ہیں", + "You can cancel trip": "آپ سفر منسوخ کر سکتے ہیں", + "You can change the Country to get all features": "آپ تمام خصوصیات حاصل کرنے کے لیے ملک تبدیل کر سکتے ہیں", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "آپ ایپ کی زبان تبدیل کر سکتے ہیں", + "You can change the vibration feedback for all buttons": "آپ تمام بٹنوں کے لیے وائبریشن فیڈبیک تبدیل کر سکتے ہیں", + "You can claim your gift once they complete 2 trips.": "جب وہ 2 سفر مکمل کر لیں تو آپ اپنا تحفہ حاصل کر سکتے ہیں۔", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "سفر کی تصدیق ہونے پر آپ ایپ میں چیٹ کر سکتے ہیں۔", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "آپ ہم سے دفتری اوقات 12:00 - 19:00 کے دوران رابطہ کر سکتے ہیں۔", + "You can decline a request without any cost": "آپ بغیر کسی قیمت کے درخواست مسترد کر سکتے ہیں", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "آپ نقد یا کارڈ کے ذریعے ادائیگی کر سکتے ہیں۔", + "You can resend in": "دوبارہ بھیج سکتے ہیں", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "آپ Intaleq ایپ کو اپنے دوستوں کے ساتھ شیئر کر سکتے ہیں اور انعامات حاصل کر سکتے ہیں", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "آپ ہمارے ساتھ جاری نہیں رہ سکتے ۔\nآپ کو ڈرائیور لائسنس کی تجدید کرنی چاہیے", + "You canceled VIP trip": "You canceled VIP trip", + "You deserve the gift": "آپ تحفے کے مستحق ہیں", + "You dont Add Emergency Phone Yet!": "آپ نے ابھی تک ایمرجنسی فون شامل نہیں کیا!", + "You dont have Points": "آپ کے پاس پوائنٹس نہیں ہیں", + "You have already received your gift for inviting": "آپ دعوت دینے کے لیے اپنا تحفہ پہلے ہی وصول کر چکے ہیں", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "آپ پہلے ہی یہ پرومو کوڈ استعمال کر چکے ہیں۔", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "ڈرائیور کی کال ہے", + "You have copied the promo code.": "آپ نے پرومو کوڈ کاپی کر لیا ہے۔", + "You have earned 20": "آپ نے 20 کمائے ہیں", + "You have finished all times ": "آپ نے تمام اوقات ختم کر دیے ہیں ", + "You have got a gift for invitation": "آپ کو دعوت دینے پر تحفہ ملا ہے", + "You have in account": "آپ کے اکاؤنٹ میں ہے", + "You have promo!": "آپ کے پاس پرومو ہے!", + "You must Verify email !.": "آپ کو ای میل کی تصدیق کرنی ہوگی!", + "You must be charge your Account": "آپ کو اپنا اکاؤنٹ چارج کرنا ہوگا", + "You must restart the app to change the language.": "زبان تبدیل کرنے کے لیے آپ کو ایپ دوبارہ شروع کرنی چاہیے۔", + "You should have upload it .": "آپ کو اسے اپ لوڈ کرنا چاہیے۔", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "آپ کو ایک منتخب کرنا چاہیے", + "You should select your country": "آپ کو اپنا ملک منتخب کرنا چاہیے", + "You trip distance is": "آپ کے سفر کا فاصلہ ہے", + "You will arrive to your destination after ": "آپ اپنی منزل پر پہنچیں گے بعد از ", + "You will arrive to your destination after timer end.": "ٹائمر ختم ہونے کے بعد آپ اپنی منزل پر پہنچ جائیں گے۔", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "آپ ڈرائیور کو قیمت ادا کریں گے یا ہم اگلے سفر پر آپ سے لے لیں گے", + "You will be thier in": "آپ وہاں ہوں گے میں", + "You will choose allow all the time to be ready receive orders": "آپ آرڈرز وصول کرنے کے لیے ہر وقت اجازت کا انتخاب کریں گے", + "You will choose one of above !": "آپ کو اوپر والوں میں سے ایک کا انتخاب کرنا ہوگا!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "آپ کو اس سفر کے لیے اپنے کام کی قیمت ملے گی", + "You will receive a code in SMS message": "آپ کو ایس ایم ایس پیغام میں ایک کوڈ موصول ہوگا", + "You will receive a code in WhatsApp Messenger": "آپ کو واٹس ایپ میسنجر میں ایک کوڈ موصول ہوگا", + "You will recieve code in sms message": "آپ کو SMS پیغام میں کوڈ موصول ہوگا", + "Your Account is Deleted": "آپ کا اکاؤنٹ حذف کر دیا گیا ہے", + "Your Budget less than needed": "آپ کا بجٹ ضرورت سے کم ہے", + "Your Choice, Our Priority": "آپ کا انتخاب، ہماری ترجیح", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "آپ کی سواری کا دورانیہ ہے ", + "Your Wallet balance is ": "آپ کا والٹ بیلنس ہے: ", + "Your are far from passenger location": "آپ مسافر کی لوکیشن سے دور ہیں", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "آپ کا ڈیٹا 2 ہفتوں بعد مٹا دیا جائے گا\nاور آپ 1 ماہ بعد ایپ استعمال کرنے کے لیے واپس نہیں آ سکیں گے ", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Your email address", + "Your fee is ": "آپ کی فیس ہے ", + "Your invite code was successfully applied!": "آپ کا دعوتی کوڈ کامیابی سے لاگو ہو گیا!", + "Your journey starts here": "آپ کا سفر یہاں سے شروع ہوتا ہے", + "Your name": "آپ کا نام", + "Your order is being prepared": "آپ کا آرڈر تیار ہو رہا ہے", + "Your order sent to drivers": "آپ کا آرڈر ڈرائیورز کو بھیج دیا گیا", + "Your password": "Your password", + "Your past trips will appear here.": "آپ کے پچھلے سفر یہاں ظاہر ہوں گے۔", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "آپ کا ذاتی دعوتی کوڈ ہے:", + "Your trip cost is": "آپ کے سفر کی قیمت ہے", + "Your trip distance is": "آپ کے سفر کا فاصلہ ہے", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nہم سستی کو بھی ترجیح دیتے ہیں، مسابقتی قیمتوں کی پیشکش کرتے ہیں تاکہ آپ کی سواریوں کو قابل رسائی بنایا جا سکے۔", + "accepted": "accepted", + "accepted your order at price": "accepted your order at price", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "جاری رکھنے کے لیے، آپ کو استعمال کی شرائط اور رازداری کی پالیسی کا جائزہ لینا اور اتفاق کرنا چاہیے۔", + "airport": "airport", + "an error occurred": "ایک خرابی پیش آ گئی: @error", + "and I have a trip on": "اور میرے پاس ایک سفر ہے پر", + "and acknowledge our": "اور تسلیم کریں ہماری", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "Intaleq ایک محفوظ، قابل اعتماد، اور قابل رسائی رائیڈ ہیلنگ ایپ ہے۔", + "arrival time to reach your point": "آپ کے پوائنٹ تک پہنچنے کا وقت", + "as the driver.": "as the driver.", + "before": "پہلے", + "begin": "begin", + "by": "by", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "change device", + "committed_to_safety": "Intaleq حفاظت کے لیے پرعزم ہے۔", + "complete profile subtitle": "شروع کرنے کے لیے پروفایل مکمل کریں", + "complete registration button": "رجسٹریشن مکمل کریں", + "complete, you can claim your gift": "مکمل، آپ اپنا تحفہ حاصل کر سکتے ہیں", + "contacts. Others were hidden because they don't have a phone number.": "رابطے۔ دیگر چھپا دیے گئے کیونکہ ان کا فون نمبر نہیں ہے۔", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copied to clipboard", + "created time": "تخلیق کا وقت", + "deleted": "deleted", + "distance is": "فاصلہ ہے", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "ڈرائیونگ لائسنس", + "due to a previous trip.": "due to a previous trip.", + "duration is": "دورانیہ ہے", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "ای میل (اختیاری)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "براہ کرم 5 ہندسوں کا او ٹی پی درج کریں", + "face detect": "چہرے کی شناخت", + "failed to send otp": "او ٹی پی بھیجنے میں ناکامی۔", + "first name label": "پہلا نام", + "first name required": "پہلا نام درکار ہے", + "for": "کے لیے", + "for your first registration!": "آپ کی پہلی رجسٹریشن کے لیے!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "07:30 سے 10:30 تک (جمعرات، جمعہ، ہفتہ، پیر)", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "12:00 سے 15:00 تک (جمعرات، جمعہ، ہفتہ، پیر)", + "from 23:59 till 05:30": "23:59 سے 05:30 تک", + "from 3 times Take Attention": "3 بار سے توجہ دیں", + "from your favorites": "from your favorites", + "from your list": "آپ کی فہرست سے", + "get_a_ride": "Intaleq کے ساتھ، آپ منٹوں میں منزل تک سواری حاصل کر سکتے ہیں۔", + "get_to_destination": "اپنی منزل پر تیزی اور آسانی سے پہنچیں۔", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "مسافر کے سفر منسوخ کرنے سے پہلے\nاپنی مسافر کی لوکیشن پر جائیں", + "has completed": "مکمل کر لیا ہے", + "hour": "گھنٹہ", + "i agree": "میں متفق ہوں", + "if you don't have account": "اگر آپ کا اکاؤنٹ نہیں ہے", + "if you dont have account": "اگر آپ کا اکاؤنٹ نہیں ہے", + "if you want help you can email us here": "اگر آپ مدد چاہتے ہیں تو آپ ہمیں یہاں ای میل کر سکتے ہیں", + "image verified": "تصویر کی تصدیق ہو گئی", + "in your": "in your", + "insert amount": "رقم درج کریں", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "چلا رہا ہے ایک ", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "joined": "شامل ہوا", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "آخری نام", + "last name required": "آخری نام درکار ہے", + "login or register subtitle": "لاگ ان یا رجسٹر کرنے کے لیے اپنا موبائل نمبر درج کریں", + "m": "منٹ", + "message From Driver": "ڈرائیور کا پیغام", + "message From passenger": "مسافر کا پیغام", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "ماڈل :", + "my location": "میری لوکیشن", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "مختلف", + "of": "میں سے", + "one last step title": "ایک آخری قدم", + "otp sent subtitle": "ایک 5 ہندسوں کا کوڈ بھیجا گیا\n@phoneNumber", + "otp sent success": "او ٹی پی کامیابی سے واٹس ایپ پر بھیج دیا گیا۔", + "otp verification failed": "او ٹی پی کی تصدیق ناکام ہو گئی۔", + "passenger agreement": "مسافر معاہدہ", + "pending": "pending", + "phone not verified": "phone not verified", + "phone number label": "فون نمبر", + "phone number required": "فون نمبر درکار ہے", + "please go to picker location exactly": "براہ کرم بالکل اسی لوکیشن پر جائیں جہاں سے اٹھانا ہے", + "please order now": "ابھی آرڈر کریں", + "please wait till driver accept your order": "براہ کرم انتظار کریں جب تک ڈرائیور آپ کا آرڈر قبول نہ کرے", + "price is": "قیمت ہے", + "privacy policy": "رازداری کی پالیسی۔", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "رجسٹریشن ناکام ہو گئی۔", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "safe_and_comfortable": "محفوظ اور آرام دہ سواری کا لطف اٹھائیں۔", + "seconds": "سیکنڈز", + "security_warning": "security_warning", + "send otp button": "او ٹی پی (OTP) بھیجیں", + "server error try again": "سرور کی خرابی، دوبارہ کوشش کریں۔", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "ملتا جلتا", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "استعمال کی شرائط", + "the 300 points equal 300 L.E": "300 پوائنٹس 300 روپے کے برابر ہیں", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "300 پوائنٹس آپ کے لیے 300 روپے کے برابر ہیں \nتو جائیں اور اپنے پیسے کمائیں", + "the 500 points equal 30 JOD": "500 پوائنٹس 30 روپے کے برابر ہیں", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "500 پوائنٹس آپ کے لیے 30 روپے کے برابر ہیں \nتو جائیں اور اپنے پیسے کمائیں", + "this will delete all files from your device": "یہ آپ کے آلے سے تمام فائلیں حذف کر دے گا", + "to arrive you.": "to arrive you.", + "token change": "ٹوکن کی تبدیلی", + "token updated": "ٹوکن اپ ڈیٹ ہو گیا", + "trips": "سفر", + "type here": "یہاں ٹائپ کریں", + "unknown": "unknown", + "upgrade price": "upgrade price", + "verify and continue button": "تصدیق کریں اور جاری رکھیں", + "verify your number title": "اپنے نمبر کی تصدیق کریں", + "wait 1 minute to receive message": "پیغام موصول ہونے کے لیے 1 منٹ انتظار کریں", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "wallet due to a previous trip.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "Intaleq میں خوش آمدید", + "welcome to siro": "welcome to siro", + "welcome user": "خوش آمدید، @firstName!", + "welcome_message": "Intaleq میں خوش آمدید!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "اپنی کار کے لیے رنگ لکھیں", + "write Expiration Date for your car": "اپنی کار کے لیے میعاد ختم ہونے کی تاریخ لکھیں", + "write Make for your car": "اپنی کار کے لیے میک لکھیں", + "write Model for your car": "اپنی کار کے لیے ماڈل لکھیں", + "write Year for your car": "اپنی کار کے لیے سال لکھیں", + "write vin for your car": "اپنی کار کے لیے vin لکھیں", + "year :": "سال :", + "you canceled order": "you canceled order", + "you gain": "آپ نے حاصل کیا", + "you have a negative balance of": "you have a negative balance of", + "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 Intaleq Wallet": "آپ ڈرائیور کے وقت کی قیمت ادا کریں گے، اپنا Intaleq والٹ دیکھیں", + "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 Siro Wallet", + "your ride is Accepted": "آپ کی سواری قبول کر لی گئی ہے", + "your ride is applied": "آپ کی سواری لاگو ہو گئی ہے", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "میعاد ختم ہونے کی تاریخ", + "⚠️ You need to choose an amount!": "⚠️ آپ کو ایک رقم منتخب کرنے کی ضرورت ہے!", + "💰 Pay with Wallet": "💰 والٹ سے ادائیگی کریں", + "💳 Pay with Credit Card": "💳 کریڈٹ کارڈ سے ادائیگی کریں", +}; diff --git a/siro_rider/lib/controller/local/zh.dart b/siro_rider/lib/controller/local/zh.dart new file mode 100644 index 0000000..42261d9 --- /dev/null +++ b/siro_rider/lib/controller/local/zh.dart @@ -0,0 +1,1715 @@ +final Map zh = { + " ')[0]).toString()}.\\n\${' I am using": " ')[0]).toString()}.\\n\${' I am using", + " I am currently located at ": " أنا حالياً في ", + " I am using": " أنا استخدم", + " If you need to reach me, please contact the driver directly at": " إذا بغيتني، كلم الكابتن على", + " KM": " كم", + " Minutes": " دقائق", + " Next as Cash !": " التالي كاش!", + " You Earn today is ": " دخلك اليوم: ", + " You Have in": " عندك في", + " \$index": " \$index", + " \${locationSearch.pickingWaypointIndex + 1}": " \${locationSearch.pickingWaypointIndex + 1}", + " and acknowledge our Privacy Policy.": " وتقر بسياسة الخصوصية.", + " and acknowledge the ": " and acknowledge the ", + " as the driver.": " ككابتن.", + " in your": " in your", + " in your wallet": " بمحفظتك", + " is ON for this month": " متصل هالشهر", + " joined": " joined", + " tips\\nTotal is": " tips\\nTotal is", + " tips\nTotal is": " إكرامية\nالمجموع", + " to arrive you.": " عشان يوصلك.", + " to ride with": " عشان اركب مع", + " wallet due to a previous trip.": " wallet due to a previous trip.", + " with license plate ": " لوحتها ", + "--": "--", + ". I am at least 18 years old.": ". I am at least 18 years old.", + "0.05 \${'JOD": "0.05 \${'JOD", + "0.47 \${'JOD": "0.47 \${'JOD", + "1 Passenger": "1 Passenger", + "1 \${'JOD": "1 \${'JOD", + "1 \${'LE": "1 \${'LE", + "1. Describe Your Issue": "١. وش المشكلة؟", + "10 and get 4% discount": "10 وخذ خصم 4%", + "100 and get 11% discount": "100 وخذ خصم 11%", + "10000 \${'LE": "10000 \${'LE", + "100000 \${'LE": "100000 \${'LE", + "15 \${'LE": "15 \${'LE", + "15000 \${'LE": "15000 \${'LE", + "2 Passengers": "2 Passengers", + "2. Attach Recorded Audio": "٢. أرفق تسجيل صوتي", + "2. Attach Recorded Audio (Optional)": "2. Attach Recorded Audio (Optional)", + "20 \${'LE": "20 \${'LE", + "20 and get 6% discount": "20 وخذ خصم 6%", + "200 \${'JOD": "200 \${'JOD", + "20000 \${'LE": "20000 \${'LE", + "3 Passengers": "3 Passengers", + "3 digit": "3 digit", + "3. Review Details & Response": "٣. مراجعة التفاصيل والرد", + "3000 LE": "3000 ر.س", + "4 Passengers": "4 Passengers", + "40 and get 8% discount": "40 وخذ خصم 8%", + "40000 \${'LE": "40000 \${'LE", + "5 digit": "5 أرقام", + "A new version of the app is available. Please update to the latest version.": "A new version of the app is available. Please update to the latest version.", + "A trip with a prior reservation, allowing you to choose the best captains and cars.": "مشوار بحجز مسبق، يمديك تختار أفضل الكباتن والسيارات.", + "AI Page": "صفحة الذكاء الاصطناعي", + "About Intaleq": "About Intaleq", + "About Siro": "About Siro", + "About Us": "من نحن", + "Accept": "Accept", + "Accept Order": "قبول الطلب", + "Accept Ride's Terms & Review Privacy Notice": "الموافقة على الشروط", + "Accepted Ride": "المشوار مقبول", + "Accepted your order": "Accepted your order", + "Account": "Account", + "Actions": "Actions", + "Active Duration:": "المدة الفعلية:", + "Active Users": "Active Users", + "Add Card": "إضافة بطاقة", + "Add Credit Card": "إضافة بطاقة ائتمان", + "Add Home": "إضافة البيت", + "Add Location": "إضافة موقع", + "Add Location 1": "إضافة موقع 1", + "Add Location 2": "إضافة موقع 2", + "Add Location 3": "إضافة موقع 3", + "Add Location 4": "إضافة موقع 4", + "Add Payment Method": "إضافة طريقة دفع", + "Add Phone": "إضافة رقم", + "Add Promo": "ضيف خصم", + "Add SOS Phone": "Add SOS Phone", + "Add Stops": "إضافة وقفات", + "Add Work": "Add Work", + "Add a Stop": "Add a Stop", + "Add a new waypoint stop": "Add a new waypoint stop", + "Add funds using our secure methods": "ضيف رصيد بطرق آمنة", + "Add wallet phone you use": "Add wallet phone you use", + "Address": "العنوان", + "Address: ": "العنوان:", + "Admin DashBoard": "لوحة التحكم", + "Advanced Tools": "Advanced Tools", + "Affordable for Everyone": "أسعار تناسب الكل", + "After this period\\nYou can't cancel!": "After this period\\nYou can't cancel!", + "After this period\\nYou can\\'t cancel!": "After this period\\nYou can\\'t cancel!", + "After this period\nYou can't cancel!": "بعد هالوقت\nما تقدر تلغي!", + "After this period\nYou can\'t cancel!": "After this period\nYou can\'t cancel!", + "Age is": "Age is", + "Age is ": "العمر: ", + "Age is ": "Age is ", + "Alert": "Alert", + "Alerts": "تنبيهات", + "Align QR Code within the frame": "Align QR Code within the frame", + "Allow Location Access": "السماح بالوصول للموقع", + "Already have an account? Login": "Already have an account? Login", + "An OTP has been sent to your number.": "An OTP has been sent to your number.", + "An error occurred": "An error occurred", + "An error occurred during the payment process.": "خطأ في الدفع.", + "An error occurred while picking contacts:": "صار خطأ وحنا نختار الأسماء:", + "An error occurred while picking contacts: \$e": "An error occurred while picking contacts: \$e", + "An unexpected error occurred. Please try again.": "صار خطأ غير متوقع. حاول مرة ثانية.", + "App Tester Login": "App Tester Login", + "App with Passenger": "التطبيق مع الراكب", + "Appearance": "Appearance", + "Applied": "تم التقديم", + "Apply": "Apply", + "Apply Order": "قبول الطلب", + "Apply Promo Code": "Apply Promo Code", + "Approaching your area. Should be there in 3 minutes.": "قربت منك. 3 دقايق وأكون عندك.", + "Are You sure to ride to": "متأكد تبي تروح لـ", + "Are you Sure to LogOut?": "بتسجل خروج؟", + "Are you sure to cancel?": "متأكد تبي تلغي؟", + "Are you sure to delete recorded files": "متأكد تبي تحذف الملفات؟", + "Are you sure to delete this location?": "متأكد تبي تحذف هالموقع؟", + "Are you sure to delete your account?": "متأكد تبي تحذف حسابك؟", + "Are you sure you want to delete this file?": "Are you sure you want to delete this file?", + "Are you sure you want to logout?": "Are you sure you want to logout?", + "Are you sure? This action cannot be undone.": "متأكد؟ ما تقدر تتراجع بعدين.", + "Are you want to change": "Are you want to change", + "Are you want to go this site": "تبي تروح هالمكان؟", + "Are you want to go to this site": "تبي تروح هنا؟", + "Are you want to wait drivers to accept your order": "تبي تنتظر الكباتن؟", + "Arrival time": "وقت الوصول", + "Arrived": "Arrived", + "Associate Degree": "دبلوم", + "Attach this audio file?": "ترفق هالملف الصوتي؟", + "Attention": "Attention", + "Audio Recording": "Audio Recording", + "Audio file not attached": "Audio file not attached", + "Audio uploaded successfully.": "تم رفع الصوت.", + "Available for rides": "متاح للمشاوير", + "Average of Hours of": "معدل الساعات", + "Awaiting response...": "Awaiting response...", + "Awfar Car": "سيارة توفير", + "Bachelor's Degree": "بكالوريوس", + "Back": "Back", + "Bahrain": "البحرين", + "Balance": "الرصيد", + "Balance limit exceeded": "تجاوزت حد الرصيد", + "Balance not enough": "الرصيد ما يكفي", + "Balance:": "الرصيد:", + "Be Slowly": "على مهلك", + "Be sure for take accurate images please\\nYou have": "Be sure for take accurate images please\\nYou have", + "Be sure for take accurate images please\nYou have": "تأكد إن الصورة واضحة\nعندك", + "Be sure to use it quickly! This code expires at": "استعجل عليه! الكود ينتهي في", + "Because we are near, you have the flexibility to choose the ride that works best for you.": "لك الحرية في الاختيار.", + "Before we start, please review our terms.": "قبل نبدأ، راجع شروطنا لاهنت.", + "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.": "Best choice for a comfortable car with a flexible route and stop points. This airport offers visa entry at this price.", + "Best choice for cities": "أفضل خيار للمدن", + "Best choice for comfort car and flexible route and stops point": "أفضل خيار لسيارة مريحة ومسار مرن", + "Birth Date": "تاريخ الميلاد", + "Bonus gift": "Bonus gift", + "BookingFee": "رسوم الحجز", + "Bottom Bar Example": "مثال الشريط السفلي", + "But you have a negative salary of": "بس عليك سالب بقيمة", + "By selecting 'I Agree' below, I have reviewed and agree to the Terms of Use and acknowledge the Privacy Notice. I am at least 18 years of age.": "باختيار 'أوافق'، أقر بأني قريت الشروط وعمري 18 وفوق.", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the": "By selecting \"I Agree\" below, I confirm that I have read and agree to the", + "By selecting \"I Agree\" below, I confirm that I have read and agree to the ": "By selecting \"I Agree\" below, I confirm that I have read and agree to the ", + "By selecting \"I Agree\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "باختيار \"أوافق\"، أكون وافقت على الشروط و ", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the", + "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ": "By selecting \\\"I Agree\\\" below, I confirm that I have read and agree to the ", + "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ": "By selecting \\\"I Agree\\\" below, I have reviewed and agree to the Terms of Use and acknowledge the ", + "CODE": "验证码", + "Call": "Call", + "Call Connected": "Call Connected", + "Call End": "انتهاء المكالمة", + "Call Ended": "Call Ended", + "Call Income": "مكالمة واردة", + "Call Income from Driver": "اتصال من الكابتن", + "Call Income from Passenger": "مكالمة من الراكب", + "Call Left": "مكالمات باقية", + "Call Options": "Call Options", + "Call Page": "صفحة الاتصال", + "Call Support": "Call Support", + "Call left": "Call left", + "Calling": "Calling", + "Camera Access Denied.": "ما في وصول للكاميرا.", + "Camera not initialized yet": "الكاميرا لسه", + "Camera not initilaized yet": "الكاميرا لسه", + "Can I cancel my ride?": "أقدر ألغي المشوار؟", + "Can we know why you want to cancel Ride ?": "ليش تبي تلغي؟", + "Cancel": "إلغاء", + "Cancel Ride": "إلغاء المشوار", + "Cancel Search": "إلغاء البحث", + "Cancel Trip": "إلغاء المشوار", + "Cancel Trip from driver": "إلغاء من الكابتن", + "Canceled": "ملغي", + "Cannot apply further discounts.": "ما تقدر تخصم أكثر.", + "Captain": "Captain", + "Capture an Image of Your Criminal Record": "صور صحيفة خلو السوابق", + "Capture an Image of Your Driver License": "صور رخصتك", + "Capture an Image of Your Driver's License": "صور رخصتك", + "Capture an Image of Your ID Document Back": "صور ظهر الهوية", + "Capture an Image of Your ID Document front": "صور الهوية (وجه)", + "Capture an Image of Your car license back": "صور استمارة السيارة (قفا)", + "Capture an Image of Your car license front": "صور استمارة السيارة (وجه)", + "Car": "سيارة", + "Car Color:": "Car Color:", + "Car Details": "تفاصيل السيارة", + "Car License Card": "استمارة السيارة", + "Car Make:": "Car Make:", + "Car Model:": "Car Model:", + "Car Plate is ": "اللوحة: ", + "Car Plate:": "Car Plate:", + "Card Number": "رقم البطاقة", + "CardID": "رقم البطاقة", + "Cash": "كاش", + "Change Country": "تغيير الدولة", + "Change Home location ?": "Change Home location ?", + "Change Photo": "Change Photo", + "Change Ride": "Change Ride", + "Change Route": "Change Route", + "Change Work location ?": "Change Work location ?", + "Changed my mind": "我改变了主意", + "Chassis": "رقم الشاصي", + "Chat with us anytime": "Chat with us anytime", + "Check back later for new offers!": "شيك بعدين يمكن فيه عروض!", + "Choose Language": "اختر اللغة", + "Choose a contact option": "اختر طريقة تواصل", + "Choose between those Type Cars": "اختر نوع السيارة", + "Choose from Gallery": "Choose from Gallery", + "Choose from Map": "اختر من الخريطة", + "Choose from contact": "Choose from contact", + "Choose how you want to call the driver": "Choose how you want to call the driver", + "Choose the trip option that perfectly suits your needs and preferences.": "اختر اللي يناسبك.", + "Choose who this order is for": "الطلب لمين؟", + "Choose your ride": "Choose your ride", + "City": "المدينة", + "Claim your 20 LE gift for inviting": "اطلب هديتك (20 ريال) للدعوة", + "Click here point": "Click here point", + "Click here to Show it in Map": "اضغط للعرض على الخريطة", + "Click here to begin your trip\\n\\nGood luck, ": "Click here to begin your trip\\n\\nGood luck, ", + "Click to track the trip": "Click to track the trip", + "Close": "إغلاق", + "Close panel": "Close panel", + "Closest & Cheapest": "الأقرب والأرخص", + "Closest to You": "الأقرب لك", + "Code": "代码", + "Code not approved": "الكود مرفوض", + "Color": "اللون", + "Color is ": "اللون: ", + "Comfort": "مريح", + "Comfort choice": "خيار الراحة", + "Coming": "Coming", + "Communication": "التواصل", + "Complaint": "شكوى", + "Complaint cannot be filed for this ride. It may not have been completed or started.": "ما تقدر ترفع شكوى على هالمشوار. يمكن ما كمل أو ما بدأ.", + "Complaint data saved successfully": "Complaint data saved successfully", + "Complete Payment": "Complete Payment", + "Complete your profile": "Complete your profile", + "Confirm": "تأكيد", + "Confirm & Find a Ride": "أكد ودور كابتن", + "Confirm Attachment": "تأكيد الإرفاق", + "Confirm Cancellation": "Confirm Cancellation", + "Confirm Pick-up Location": "Confirm Pick-up Location", + "Confirm Pickup Location": "Confirm Pickup Location", + "Confirm Selection": "تأكيد الاختيار", + "Confirm Trip": "Confirm Trip", + "Confirm your Email": "أكد إيميلك", + "Connected": "متصل", + "Connecting...": "Connecting...", + "Connection Error": "连接错误", + "Connection failed. Please try again.": "Connection failed. Please try again.", + "Contact Options": "خيارات التواصل", + "Contact Support": "تواصل مع الدعم", + "Contact Us": "اتصل بنا", + "Contact permission is permanently denied. Please enable it in settings to continue.": "Contact permission is permanently denied. Please enable it in settings to continue.", + "Contact permission is required to pick contacts": "نحتاج صلاحية الأسماء.", + "Contact us for any questions on your order.": "تواصل معنا لو عندك سؤال.", + "Contacts Loaded": "تم تحميل الأسماء", + "Continue": "متابعة", + "Copy": "نسخ", + "Copy Code": "نسخ الكود", + "Copy this Promo to use it in your Ride!": "انسخ الكود واستخدمه!", + "Cost Duration": "تكلفة الوقت", + "Cost Of Trip IS ": "تكلفة المشوار: ", + "Could not add invite": "Could not add invite", + "Could not create ride. Please try again.": "Could not create ride. Please try again.", + "Country Picker Page Placeholder": "Country Picker Page Placeholder", + "Counts of Hours on days": "عدد الساعات بالأيام", + "Create Wallet to receive your money": "أنشئ محفظة لاستلام فلوسك", + "Criminal Document Required": "صحيفة خلو السوابق مطلوبة", + "Criminal Record": "خلو السوابق", + "Crop Photo": "Crop Photo", + "Cropper": "قص الصورة", + "Current Balance": "الرصيد الحالي", + "Current Location": "الموقع الحالي", + "Customer MSISDN doesn’t have customer wallet": "Customer MSISDN doesn’t have customer wallet", + "Customer not found": "العميل غير موجود", + "Customer phone is not active": "جوال العميل مو شغال", + "DISCOUNT": "خصم", + "Dark Mode": "Dark Mode", + "Date": "التاريخ", + "Date and Time Picker": "Date and Time Picker", + "Date of Birth is": "تاريخ الميلاد:", + "Date of Birth: ": "تاريخ الميلاد:", + "Days": "أيام", + "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,": "Dear ,\\n\\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\\n 👉 Download link: \\n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\\n iOS [https://getapp.cc/app/6458734951]\\n\\n I look forward to keeping you close during my adventure!\\n\\n Siro ,", + "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,": "Dear ,\n\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\n 👉 Download link: \n Android [https://play.google.com/store/apps/details?id=com.mobileapp.store.ride]\n iOS [https://getapp.cc/app/6458734951]\n\n I look forward to keeping you close during my adventure!\n\n Intaleq ,", + "Decline": "Decline", + "Delete": "Delete", + "Delete Account": "Delete Account", + "Delete All": "Delete All", + "Delete All Recordings?": "Delete All Recordings?", + "Delete My Account": "حذف حسابي", + "Delete Permanently": "حذف نهائي", + "Delete Recording?": "Delete Recording?", + "Deleted": "انحذف", + "Destination": "الوصول", + "Destination Set": "Destination Set", + "Destination selected": "Destination selected", + "Detect Your Face ": "تحقق من وجهك", + "Device Change Detected": "Device Change Detected", + "Direct talk with our team": "Direct talk with our team", + "Displacement": "سعة المحرك", + "Distance": "Distance", + "Distance To Passenger is ": "المسافة للراكب: ", + "Distance from Passenger to destination is ": "المسافة للوجهة: ", + "Distance is ": "المسافة: ", + "Distance of the Ride is ": "مسافة المشوار: ", + "Do you have an invitation code from another driver?": "عندك كود دعوة من كابتن ثاني؟", + "Do you want to change Home location": "تغير موقع البيت؟", + "Do you want to change Work location": "تغير موقع الدوام؟", + "Do you want to pay Tips for this Driver": "تبي تعطي الكابتن إكرامية؟", + "Do you want to send an emergency message to your SOS contact?": "Do you want to send an emergency message to your SOS contact?", + "Doctoral Degree": "دكتوراه", + "Document Number: ": "رقم الوثيقة:", + "Documents check": "فحص المستندات", + "Don't Cancel": "不要取消", + "Don't forget your personal belongings.": "لا تنسى أغراضك.", + "Don't forget your ride!": "Don't forget your ride!", + "Don't have an account? Register": "Don't have an account? Register", + "Done": "تم", + "Don’t forget your personal belongings.": "انتبه لأغراضك الشخصية.", + "Double tap to open search or enter destination": "Double tap to open search or enter destination", + "Double tap to set or change this waypoint on the map": "Double tap to set or change this waypoint on the map", + "Download the Intaleq Driver app now and earn rewards!": "حمل تطبيق كابتن انطلق واكسب مكافآت!", + "Download the Intaleq app now and enjoy your ride!": "حمل تطبيق انطلق واستمتع بمشوارك!", + "Download the Siro Driver app now and earn rewards!": "Download the Siro Driver app now and earn rewards!", + "Download the Siro app now and enjoy your ride!": "Download the Siro app now and enjoy your ride!", + "Download the app now:": "حمل التطبيق:", + "Drawing route on map...": "Drawing route on map...", + "Driver": "كابتن", + "Driver Accepted the Ride for You": "الكابتن قبل المشوار عشانك", + "Driver Applied the Ride for You": "الكابتن قدم الطلب لك", + "Driver Cancelled Your Trip": "الكابتن كنسل الرحلة", + "Driver Car Plate": "لوحة الكابتن", + "Driver Finish Trip": "الكابتن خلص المشوار", + "Driver Is Going To Passenger": "الكابتن متوجه للراكب", + "Driver List": "Driver List", + "Driver Name": "اسم الكابتن", + "Driver Name:": "Driver Name:", + "Driver Phone": "Driver Phone", + "Driver Phone:": "Driver Phone:", + "Driver Referral": "Driver Referral", + "Driver Registration": "تسجيل الكابتن", + "Driver Registration & Requirements": "تسجيل الكباتن", + "Driver Wallet": "محفظة الكابتن", + "Driver already has 2 trips within the specified period.": "الكابتن عنده مشوارين بهالوقت.", + "Driver asked me to cancel": "司机要求我取消订单", + "Driver is Going To You": "Driver is Going To You", + "Driver is on the way": "الكابتن بالطريق", + "Driver is taking too long": "司机来得太慢了", + "Driver is waiting at pickup.": "الكابتن ينتظرك عند نقطة الركوب.", + "Driver joined the channel": "الكابتن دخل الشات", + "Driver left the channel": "الكابتن طلع من الشات", + "Driver phone": "جوال الكابتن", + "Driver's License": "رخصة القيادة", + "Drivers License Class": "فئة الرخصة", + "Drivers License Class: ": "فئة الرخصة:", + "Duration To Passenger is ": "الوقت للراكب: ", + "Duration is": "المدة:", + "Duration of Trip is ": "مدة المشوار: ", + "Duration of the Ride is ": "مدة المشوار: ", + "EGP": "EGP", + "Edit Profile": "تعديل الملف", + "Edit Your data": "تعديل بياناتك", + "Education": "التعليم", + "Egypt": "مصر", + "Egypt' ? 'LE": "Egypt' ? 'LE", + "Egypt': return 'EGP": "Egypt': return 'EGP", + "Electric": "كهربائية", + "Email": "Email", + "Email Support": "Email Support", + "Email Us": "راسلنا", + "Email Wrong": "الإيميل غلط", + "Email is": "الإيميل:", + "Email you inserted is Wrong.": "الإيميل اللي كتبته غلط.", + "Emergency Mode Triggered": "Emergency Mode Triggered", + "Emergency SOS": "Emergency SOS", + "Employment Type": "نوع الوظيفة", + "Enable Location": "تفعيل الموقع", + "Enable Location Access": "Enable Location Access", + "End": "End", + "End Ride": "إنهاء المشوار", + "Enjoy a safe and comfortable ride.": "استمتع بمشوار آمن ومريح.", + "Enjoy competitive prices across all trip options, making travel accessible.": "أسعار منافسة.", + "Enter Your First Name": "دخل اسمك الأول", + "Enter a password": "Enter a password", + "Enter a valid email": "Enter a valid email", + "Enter driver's phone": "رقم الكابتن", + "Enter phone": "دخل الرقم", + "Enter promo code": "دخل الكود", + "Enter promo code here": "اكتب الكود هنا", + "Enter the 3-digit code": "Enter the 3-digit code", + "Enter the 5-digit code": "Enter the 5-digit code", + "Enter the promo code and get": "دخل الكود واحصل على", + "Enter your City": "Enter your City", + "Enter your Note": "اكتب ملاحظة", + "Enter your Password": "Enter your Password", + "Enter your code below to apply the discount.": "Enter your code below to apply the discount.", + "Enter your complaint here": "Enter your complaint here", + "Enter your complaint here...": "اكتب شكواك هنا...", + "Enter your email address": "دخل إيميلك", + "Enter your feedback here": "اكتب ملاحظتك", + "Enter your first name": "دخل اسمك", + "Enter your last name": "دخل اسم العائلة", + "Enter your password": "Enter your password", + "Enter your phone number": "دخل رقمك", + "Enter your promo code": "Enter your promo code", + "Error": "خطأ", + "Error uploading proof": "Error uploading proof", + "Error', 'An application error occurred.": "Error', 'An application error occurred.", + "Error: \${snapshot.error}": "Error: \${snapshot.error}", + "Evening": "مساء", + "Exclusive offers and discounts always with the Intaleq app": "عروض حصرية دائماً مع انطلق", + "Exclusive offers and discounts always with the Siro app": "Exclusive offers and discounts always with the Siro app", + "Expiration Date": "تاريخ الانتهاء", + "Expiration Date ": "تاريخ الانتهاء: ", + "Expiry Date": "تاريخ الانتهاء", + "Expiry Date: ": "تاريخ الانتهاء:", + "Face Detection Result": "نتيجة التحقق", + "Failed": "Failed", + "Failed to book trip: ": "Failed to book trip: ", + "Failed to book trip: \$e": "Failed to book trip: \$e", + "Failed to book trip: \\\$e": "Failed to book trip: \\\$e", + "Failed to get location": "Failed to get location", + "Failed to initiate call session. Please try again.": "Failed to initiate call session. Please try again.", + "Failed to initiate payment. Please try again.": "Failed to initiate payment. Please try again.", + "Failed to search, please try again later": "搜索失败,请稍后重试", + "Failed to send OTP": "Failed to send OTP", + "Failed to upload photo": "Failed to upload photo", + "Fast matching": "Fast matching", + "Fastest Complaint Response": "استجابة سريعة للشكاوى", + "Favorite Places": "Favorite Places", + "Fee is": "السعر:", + "Feed Back": "رأيك", + "Feedback": "ملاحظات", + "Feedback data saved successfully": "حفظنا تقييمك", + "Female": "أنثى", + "Find answers to common questions": "إجابات الأسئلة", + "Finish Monitor": "إنهاء المتابعة", + "Finished": "Finished", + "First Name": "الاسم الأول", + "First name": "الاسم الأول", + "Fixed Price": "Fixed Price", + "Flag-down fee": "فتح الباب", + "For App Reviewers / Testers": "For App Reviewers / Testers", + "For Drivers": "للكباتن", + "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 Siro and Delivery trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance": "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 Siro and scooter trips, the price is calculated dynamically. For Comfort trips, the price is based on time and distance", + "For official inquiries": "For official inquiries", + "Found another transport": "找到了其他交通工具", + "Free Call": "Free Call", + "Frequently Asked Questions": "الأسئلة المتكررة", + "Frequently Questions": "الأسئلة الشائعة", + "From": "من", + "From :": "من:", + "From : ": "من: ", + "From : Current Location": "من: موقعك الحالي", + "From:": "From:", + "Fuel": "الوقود", + "Full Name (Marital)": "الاسم الكامل", + "FullName": "الاسم الكامل", + "GPS Required Allow !.": "شغل الـ GPS!", + "Gender": "الجنس", + "General": "General", + "Get": "Get", + "Get Details of Trip": "تفاصيل المشوار", + "Get Direction": "الاتجاهات", + "Get a discount on your first Intaleq ride!": "لك خصم على أول مشوار في انطلق!", + "Get a discount on your first Siro ride!": "Get a discount on your first Siro ride!", + "Get it Now!": "خذها الحين!", + "Get to your destination quickly and easily.": "وصل وجهتك بسرعة وسهولة.", + "Getting Started": "البداية", + "Gift Already Claimed": "أخذت الهدية من قبل", + "Go To Favorite Places": "للأماكن المفضلة", + "Go to next step\\nscan Car License.": "Go to next step\\nscan Car License.", + "Go to next step\nscan Car License.": "الخطوة الجاية\nمسح الاستمارة.", + "Go to passenger Location now": "رح لموقع الراكب الحين", + "Go to this Target": "روح للهدف", + "Go to this location": "رح لهالموقع", + "Grant": "Grant", + "H and": "س و", + "Have a Promo Code?": "Have a Promo Code?", + "Have a promo code?": "عندك كود خصم؟", + "Heading your way now. Please be ready.": "جايك بالطريق. خلك جاهز.", + "Height: ": "الطول:", + "Hello this is Captain": "هلا، معك الكابتن", + "Hello this is Driver": "هلا، أنا الكابتن", + "Hello! I'm inviting you to try Intaleq.": "هلا! أدعوك تجرب تطبيق انطلق.", + "Hello! I'm inviting you to try Siro.": "Hello! I'm inviting you to try Siro.", + "Hello! I\'m inviting you to try Intaleq.": "Hello! I\'m inviting you to try Intaleq.", + "Hello! I\\'m inviting you to try Siro.": "Hello! I\\'m inviting you to try Siro.", + "Hello, I'm at the agreed-upon location": "Hello, I'm at the agreed-upon location", + "Help Details": "تفاصيل المساعدة", + "Helping Center": "مركز المساعدة", + "Here recorded trips audio": "تسجيلات المشاوير هنا", + "Hi": "هلا", + "Hi ,I Arrive your location": "Hi ,I Arrive your location", + "Hi ,I Arrive your site": "Hi ,I Arrive your site", + "Hi ,I will go now": "هلا، أنا بطلع الحين", + "Hi! This is": "هلا! هذا", + "Hi, Where to": "Hi, Where to", + "Hi, Where to ": "هلا، لوين؟", + "Hi, Where to ": "Hi, Where to ", + "High School Diploma": "ثانوي", + "History of Trip": "سجل المشاوير", + "Home": "Home", + "Home Page": "Home Page", + "Home Saved": "Home Saved", + "How can I pay for my ride?": "كيف أدفع؟", + "How can I register as a driver?": "كيف أسجل كابتن؟", + "How do I communicate with the other party (passenger/driver)?": "كيف أتواصل؟", + "How do I request a ride?": "كيف أطلب مشوار؟", + "How many hours would you like to wait?": "كم ساعة تبي تنتظر؟", + "How much longer will you be?": "How much longer will you be?", + "I Agree": "أوافق", + "I Arrive your site": "وصلت موقعك", + "I added the wrong pick-up/drop-off location": "الموقع غلط", + "I am currently located at": "I am currently located at", + "I arrive you": "وصلت", + "I cant register in your app in face detection ": "مو قادر أسجل بسبب بصمة الوجه", + "I don't have a reason": "ما عندي سبب", + "I don't need a ride anymore": "ما عاد أحتاج مشوار", + "I want to order for myself": "بطلب لنفسي", + "I want to order for someone else": "بطلب لشخص ثاني", + "I was just trying the application": "أجرب التطبيق بس", + "I will go now": "بمشي الحين", + "I will slow down": "بهدي السرعة", + "I'm Safe": "I'm Safe", + "I'm waiting for you": "أنا أنتظرك", + "I've been trying to reach you but your phone is off.": "I've been trying to reach you but your phone is off.", + "ID Documents Back": "ظهر الهوية", + "ID Documents Front": "وجه الهوية", + "If you in Car Now. Press Start The Ride": "إذا ركبت، اضغط ابدأ المشوار", + "If you need assistance, contact us": "تحتاج مساعدة؟ كلمنا", + "If you need to reach me, please contact the driver directly at": "If you need to reach me, please contact the driver directly at", + "If you want add stop click here": "تبي تضيف وقفة اضغط هنا", + "If you want order to another person": "If you want order to another person", + "If you want to make Google Map App run directly when you apply order": "تبي قوقل ماب يفتح علطول؟", + "Image Upload Failed": "Image Upload Failed", + "Image detecting result is ": "نتيجة الفحص: ", + "In-App VOIP Calls": "مكالمات صوتية بالتطبيق", + "Including Tax": "شامل الضريبة", + "Incorrect sms code": "⚠️ رمز التحقق غلط. حاول مرة ثانية.", + "Increase Fare": "زيد السعر", + "Increase Fee": "زيد السعر", + "Increase Your Trip Fee (Optional)": "زيد سعر المشوار (اختياري)", + "Increasing the fare might attract more drivers. Would you like to increase the price?": "لو زودت السعر ممكن يجيك كابتن أسرع. تبي تزيد السعر؟", + "Insert": "إدخال", + "Insert Emergincy Number": "دخل رقم الطوارئ", + "Insert SOS Phone": "Insert SOS Phone", + "Insert Wallet phone number": "Insert Wallet phone number", + "Insert Your Promo Code": "حط كود الخصم", + "Inspection Date": "تاريخ الفحص الدوري", + "InspectionResult": "نتيجة الفحص", + "Intaleq": "انطلق", + "Intaleq Balance": "رصيد انطلق", + "Intaleq LLC": "شركة انطلق", + "Intaleq Over": "انتهى المشوار", + "Intaleq Passenger": "Intaleq Passenger", + "Intaleq Support": "Intaleq Support", + "Intaleq Wallet": "محفظة انطلق", + "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 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 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": "Intaleq's Response", + "Invalid MPIN": "رمز خطأ", + "Invalid OTP": "كود غلط", + "Invalid QR Code": "Invalid QR Code", + "Invalid QR Code format": "Invalid QR Code format", + "Invitation Used": "الدعوة مستخدمة", + "Invitations Sent": "Invitations Sent", + "Invite": "Invite", + "Invite sent successfully": "أرسلنا الدعوة", + "Is the Passenger in your Car ?": "الراكب معك؟", + "Issue Date": "تاريخ الإصدار", + "IssueDate": "تاريخ الإصدار", + "JOD": "ر.س", + "Join": "انضمام", + "Join Intaleq as a driver using my referral code!": "سجل كابتن في انطلق بكود الدعوة حقي!", + "Join Siro as a driver using my referral code!": "Join Siro as a driver using my referral code!", + "Join a channel": "Join a channel", + "Jordan": "الأردن", + "KM": "كم", + "Keep it up!": "كفو عليك!", + "Kuwait": "الكويت", + "LE": "ر.س", + "Lady": "نواعم", + "Lady Captain for girls": "كابتن سيدة للبنات", + "Lady Captains Available": "كباتن سيدات", + "Language": "اللغة", + "Language Options": "خيارات اللغة", + "Last Name": "Last Name", + "Last name": "اسم العائلة", + "Latest Recent Trip": "آخر مشوار", + "Learn more about our app and mission": "Learn more about our app and mission", + "Leave": "مغادرة", + "Leave a detailed comment (Optional)": "Leave a detailed comment (Optional)", + "Lets check Car license ": "نشيك الاستمارة", + "Lets check License Back Face": "نشيك ظهر الرخصة", + "License Categories": "فئات الرخصة", + "License Type": "نوع الرخصة", + "Light Mode": "Light Mode", + "Link a phone number for transfers": "اربط رقم للتحويلات", + "Listen": "Listen", + "Location": "Location", + "Location Link": "رابط الموقع", + "Location Received": "Location Received", + "Log Off": "تسجيل خروج", + "Log Out Page": "صفحة الخروج", + "Login": "Login", + "Login Captin": "دخول الكابتن", + "Login Driver": "دخول كابتن", + "Logout": "Logout", + "Lowest Price Achieved": "أقل سعر", + "Made :": "الصنع:", + "Make": "الشركة المصنعة", + "Make is ": "الشركة:", + "Male": "رجل", + "Map Error": "Map Error", + "Map Passenger": "خريطة الراكب", + "Marital Status": "الحالة الاجتماعية", + "Master's Degree": "ماجستير", + "Maximum fare": "أعلى سعر", + "Message": "Message", + "Microphone permission is required for voice calls": "Microphone permission is required for voice calls", + "Minimum fare": "أقل سعر", + "Minute": "دقيقة", + "Mishwar Vip": "مشوار VIP", + "Model": "الموديل", + "Model is": "الموديل:", + "Morning": "صباح", + "Most Secure Methods": "طرق آمنة", + "Move map to select destination": "Move map to select destination", + "Move map to set start location": "Move map to set start location", + "Move map to set stop": "Move map to set stop", + "Move map to your home location": "Move map to your home location", + "Move map to your pickup point": "Move map to your pickup point", + "Move map to your work location": "Move map to your work location", + "Move the map to adjust the pin": "حرك الخريطة عشان تظبط الموقع", + "Mute": "Mute", + "My Balance": "رصيدي", + "My Card": "بطاقتي", + "My Cared": "بطاقاتي", + "My Profile": "ملفي", + "My current location is:": "موقعي الحالي:", + "My location is correct. You can search for me using the navigation app": "My location is correct. You can search for me using the navigation app", + "MyLocation": "موقعي", + "N/A": "N/A", + "Name": "الاسم", + "Name (Arabic)": "الاسم (عربي)", + "Name (English)": "الاسم (إنجليزي)", + "Name :": "الاسم:", + "Name in arabic": "الاسم بالعربي", + "Name of the Passenger is ": "اسم الراكب: ", + "National ID": "رقم الهوية", + "National Number": "رقم الهوية", + "NationalID": "رقم الهوية/الإقامة", + "Nearby": "Nearby", + "Nearest Car": "Nearest Car", + "Nearest Car for you about ": "أقرب سيارة لك بعد ", + "Nearest Car: ~": "Nearest Car: ~", + "Need assistance? Contact us": "Need assistance? Contact us", + "Network error occurred": "Network error occurred", + "Next": "التالي", + "Night": "ليل", + "No": "لا", + "No ,still Waiting.": "لا، لسه أنتظر.", + "No Captain Accepted Your Order": "No Captain Accepted Your Order", + "No Car in your site. Sorry!": "ما في سيارة عندك. المعذرة!", + "No Car or Driver Found in your area.": "ما لقينا سيارة أو كابتن حولك.", + "No Drivers Found": "未找到司机", + "No I want": "لا أبي", + "No Notifications": "No Notifications", + "No Promo for today .": "ما في عروض اليوم.", + "No Recordings Found": "No Recordings Found", + "No Response yet.": "ما في رد للحين.", + "No Rides now!": "No Rides now!", + "No SIM card, no problem! Call your driver directly through our app. We use advanced technology to ensure your privacy.": "ما عندك شريحة؟ عادي! كلم الكابتن من التطبيق.", + "No accepted orders? Try raising your trip fee to attract riders.": "ماحد قبل؟ ارفع السعر.", + "No audio files found.": "ما لقينا ملفات صوتية.", + "No cars nearby": "No cars nearby", + "No contacts available": "No contacts available", + "No contacts found": "ما لقينا جهات اتصال", + "No contacts with phone numbers were found on your device.": "ما في أرقام بجهازك.", + "No driver accepted my request": "ماحد قبل طلبي", + "No drivers accepted your request yet": "ماحد قبل طلبك لسه", + "No drivers available": "No drivers available", + "No drivers available at the moment. Please try again later.": "No drivers available at the moment. Please try again later.", + "No drivers found at the moment.\\nPlease try again later.": "No drivers found at the moment.\\nPlease try again later.", + "No drivers found at the moment.\nPlease try again later.": "目前未找到司机。\n请稍后重试。", + "No face detected": "ما تعرفنا على الوجه", + "No favorite places yet!": "No favorite places yet!", + "No i want": "No i want", + "No image selected yet": "ما اخترت صورة", + "No invitation found yet!": "ما فيه دعوات!", + "No notification data found.": "No notification data found.", + "No one accepted? Try increasing the fare.": "ماحد قبل؟ جرب تزيد السعر.", + "No passenger found for the given phone number": "ما لقينا راكب بهالرقم", + "No promos available right now.": "ما فيه عروض حالياً.", + "No ride found yet": "ما لقينا مشوار", + "No routes available for this destination.": "No routes available for this destination.", + "No trip data available": "No trip data available", + "No trip history found": "ما فيه سجل مشاوير", + "No trip yet found": "ما لقينا مشوار", + "No user found": "No user found", + "No user found for the given phone number": "ما لقينا مستخدم بهالرقم", + "No wallet record found": "ما لقينا سجل للمحفظة", + "No, I don't have a code": "لا، ما عندي", + "No, I want to cancel this trip": "No, I want to cancel this trip", + "No, thanks": "لا، شكراً", + "No,I want": "No,I want", + "No.Iwant Cancel Trip.": "No.Iwant Cancel Trip.", + "Not Connected": "غير متصل", + "Not set": "مو محدد", + "Note: If no country code is entered, it will be saved as Syrian (+963).": "Note: If no country code is entered, it will be saved as Syrian (+963).", + "Notice": "Notice", + "Notifications": "الإشعارات", + "Now move the map to your pickup point": "Now move the map to your pickup point", + "Now select start pick": "Now select start pick", + "Now set the pickup point for the other person": "Now set the pickup point for the other person", + "OK": "OK", + "Occupation": "المهنة", + "Ok": "تم", + "Ok , See you Tomorrow": "تمام، أشوفك بكره", + "Ok I will go now.": "أبشر، رايح له الحين.", + "Old and affordable, perfect for budget rides.": "اقتصادية ومناسبة للميزانية.", + "On Trip": "On Trip", + "Open": "Open", + "Open Settings": "افتح الإعدادات", + "Open destination search": "Open destination search", + "Open in Google Maps": "Open in Google Maps", + "Or pay with Cash instead": "أو ادفع كاش", + "Order": "طلب", + "Order Accepted": "Order Accepted", + "Order Applied": "تم الطلب", + "Order Cancelled": "Order Cancelled", + "Order Cancelled by Passenger": "الطلب تكنسل من الراكب", + "Order Details Intaleq": "تفاصيل الطلب", + "Order Details Siro": "Order Details Siro", + "Order History": "سجل الطلبات", + "Order Request Page": "صفحة الطلب", + "Order Under Review": "Order Under Review", + "Order VIP Canceld": "Order VIP Canceld", + "Order for myself": "اطلب لنفسي", + "Order for someone else": "اطلب لغيرك", + "OrderId": "رقم الطلب", + "OrderVIP": "طلب VIP", + "Origin": "الانطلاق", + "Other": "غير ذلك", + "Our dedicated customer service team ensures swift resolution of any issues.": "فريقنا يحل مشاكلك بسرعة.", + "Owner Name": "اسم المالك", + "Passenger": "Passenger", + "Passenger Cancel Trip": "الراكب ألغى المشوار", + "Passenger Name is ": "اسم الراكب: ", + "Passenger Referral": "Passenger Referral", + "Passenger cancel order": "Passenger cancel order", + "Passenger cancelled order": "Passenger cancelled order", + "Passenger come to you": "الراكب جايك", + "Passenger name : ": "اسم الراكب: ", + "Password": "Password", + "Password must br at least 6 character.": "كلمة المرور 6 حروف ع الأقل.", + "Paste WhatsApp location link": "حط رابط موقع الواتساب", + "Paste location link here": "الصق الرابط هنا", + "Paste the code here": "الصق الكود", + "Pay": "Pay", + "Pay by Cliq": "Pay by Cliq", + "Pay by MTN Wallet": "Pay by MTN Wallet", + "Pay by Sham Cash": "Pay by Sham Cash", + "Pay by Syriatel Wallet": "Pay by Syriatel Wallet", + "Pay directly to the captain": "ادفع للكابتن كاش", + "Pay from my budget": "ادفع من رصيدي", + "Pay with Credit Card": "ادفع بالبطاقة", + "Pay with PayPal": "Pay with PayPal", + "Pay with Wallet": "ادفع بالمحفظة", + "Pay with Your": "ادفع بـ", + "Pay with Your PayPal": "ادفع بـ PayPal", + "Payment Failed": "فشل الدفع", + "Payment History": "سجل المدفوعات", + "Payment Method": "طريقة الدفع", + "Payment Options": "خيارات الدفع", + "Payment Successful": "الدفع ناجح", + "Payments": "الدفع", + "Perfect for adventure seekers who want to experience something new and exciting": "لمحبي المغامرة", + "Perfect for passengers seeking the latest car models with the freedom to choose any route they desire": "مثالي للي يبون سيارات جديدة وحرية اختيار الطريق", + "Permission Required": "Permission Required", + "Permission denied": "ما في صلاحية", + "Personal Information": "المعلومات الشخصية", + "Phone": "Phone", + "Phone Number": "Phone Number", + "Phone Number Check": "Phone Number Check", + "Phone Number is": "الجوال:", + "Phone Wallet Saved Successfully": "Phone Wallet Saved Successfully", + "Phone number is verified before": "Phone number is verified before", + "Phone number isn't an Egyptian phone number": "Phone number isn't an Egyptian phone number", + "Phone number must be exactly 11 digits long": "Phone number must be exactly 11 digits long", + "Phone number seems too short": "Phone number seems too short", + "Phone verified. Please complete registration.": "Phone verified. Please complete registration.", + "Pick destination on map": "Pick destination on map", + "Pick from map": "اختر من الخريطة", + "Pick from map destination": "Pick from map destination", + "Pick location on map": "Pick location on map", + "Pick on map": "Pick on map", + "Pick or Tap to confirm": "Pick or Tap to confirm", + "Pick start point on map": "Pick start point on map", + "Pick your destination from Map": "حدد وجهتك من الخريطة", + "Pick your ride location on the map - Tap to confirm": "حدد موقعك ع الخريطة - اضغط للتأكيد", + "Plan Your Route": "Plan Your Route", + "Plate": "لوحة", + "Plate Number": "رقم اللوحة", + "Please Try anther time ": "جرب وقت ثاني", + "Please Wait If passenger want To Cancel!": "انتظر يمكن الراكب يلغي!", + "Please add contacts to your phone.": "Please add contacts to your phone.", + "Please check your internet and try again.": "Please check your internet and try again.", + "Please check your internet connection": "请检查您的网络连接", + "Please don't be late": "Please don't be late", + "Please don't be late, I'm waiting for you at the specified location.": "Please don't be late, I'm waiting for you at the specified location.", + "Please enter": "الرجاء إدخال", + "Please enter Your Email.": "دخل الإيميل لاهنت.", + "Please enter Your Password.": "دخل كلمة المرور.", + "Please enter a correct phone": "دخل رقم جوال صح", + "Please enter a description of the issue.": "Please enter a description of the issue.", + "Please enter a phone number": "دخل رقم جوال", + "Please enter a valid 16-digit card number": "دخل رقم بطاقة صح (16 رقم)", + "Please enter a valid email.": "Please enter a valid email.", + "Please enter a valid phone number.": "Please enter a valid phone number.", + "Please enter a valid promo code": "دخل كود صحيح", + "Please enter phone number": "Please enter phone number", + "Please enter the CVV code": "كود CVV", + "Please enter the cardholder name": "اسم صاحب البطاقة", + "Please enter the complete 6-digit code.": "دخل الرمز كامل (6 أرقام).", + "Please enter the expiry date": "تاريخ الانتهاء", + "Please enter the number without the leading 0": "Please enter the number without the leading 0", + "Please enter your City.": "دخل مدينتك.", + "Please enter your Question.": "اكتب سؤالك.", + "Please enter your complaint.": "Please enter your complaint.", + "Please enter your feedback.": "اكتب ملاحظتك لاهنت.", + "Please enter your first name.": "دخل الاسم الأول.", + "Please enter your last name.": "دخل اسم العائلة.", + "Please enter your phone number": "Please enter your phone number", + "Please enter your phone number.": "دخل رقم الجوال.", + "Please go to Car Driver": "تفضل عند الكابتن", + "Please go to Car now": "Please go to Car now", + "Please go to Car now ": "روح للسيارة الحين", + "Please help! Contact me as soon as possible.": "فزعة! كلمني بسرعة.", + "Please make sure not to leave any personal belongings in the car.": "تأكد إنك ما نسيت شي في السيارة.", + "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 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 Siro app", + "Please paste the transfer message": "Please paste the transfer message", + "Please put your licence in these border": "حط الرخصة داخل الإطار", + "Please select a reason first": "Please select a reason first", + "Please set a valid SOS phone number.": "Please set a valid SOS phone number.", + "Please slow down": "Please slow down", + "Please stay on the picked point.": "خليك في الموقع المحدد لا هنت.", + "Please try again in a few moments": "Please try again in a few moments", + "Please verify your identity": "تحقق من هويتك", + "Please wait for the passenger to enter the car before starting the trip.": "انتظر الراكب يركب قبل تبدأ.", + "Please wait while we prepare your trip.": "Please wait while we prepare your trip.", + "Please write the reason...": "请填写原因...", + "Point": "نقطة", + "Potential security risks detected. The application may not function correctly.": "اكتشفنا مخاطر أمنية. يمكن التطبيق ما يشتغل صح.", + "Potential security risks detected. The application will close in @seconds seconds.": "Potential security risks detected. The application will close in @seconds seconds.", + "Pre-booking": "Pre-booking", + "Preferences": "Preferences", + "Price": "Price", + "Price of trip": "Price of trip", + "Privacy Notice": "Privacy Notice", + "Privacy Policy": "سياسة الخصوصية", + "Professional driver": "Professional driver", + "Profile": "الملف الشخصي", + "Profile photo updated": "Profile photo updated", + "Promo": "كود خصم", + "Promo Already Used": "الكود مستخدم", + "Promo Code": "كود الخصم", + "Promo Code Accepted": "انقبل الكود", + "Promo Copied!": "تم نسخ الكود!", + "Promo End !": "انتهى العرض!", + "Promo Ended": "انتهى العرض", + "Promo Error": "Promo Error", + "Promo code copied to clipboard!": "نسخت الكود!", + "Promo', 'Show latest promo": "Promo', 'Show latest promo", + "Promos": "العروض", + "Promos For Today": "Promos For Today", + "Pyament Cancelled .": "إلغاء الدفع.", + "Qatar": "قطر", + "Quick Access": "Quick Access", + "Quick Actions": "إجراءات سريعة", + "Quick Message": "Quick Message", + "Quiet & Eco-Friendly": "هادية وصديقة للبيئة", + "Rate Captain": "قيم الكابتن", + "Rate Driver": "قيم الكابتن", + "Rate Passenger": "قيم الراكب", + "Rating is": "Rating is", + "Rating is ": "التقييم: ", + "Rating is ": "Rating is ", + "Rayeh Gai": "رايح جاي", + "Rayeh Gai: Round trip service for convenient travel between cities, easy and reliable.": "رايح جاي: خدمة مريحة للسفر بين المدن.", + "Reach out to us via": "Reach out to us via", + "Received empty route data.": "Received empty route data.", + "Recent Places": "الأماكن الأخيرة", + "Recharge my Account": "شحن حسابي", + "Record": "Record", + "Record saved": "انحفظ التسجيل", + "Record your trips to see them here.": "Record your trips to see them here.", + "Recorded Trips (Voice & AI Analysis)": "مشاوير مسجلة", + "Recorded Trips for Safety": "مشاوير مسجلة للأمان", + "Refresh Map": "刷新地图", + "Refuse Order": "رفض الطلب", + "Register": "تسجيل", + "Register Captin": "تسجيل كابتن", + "Register Driver": "تسجيل كابتن", + "Register as Driver": "سجل كابتن", + "Rejected Orders Count": "Rejected Orders Count", + "Religion": "الديانة", + "Remove waypoint": "Remove waypoint", + "Report": "Report", + "Resend Code": "إعادة إرسال", + "Resend code": "Resend code", + "Reward Claimed": "Reward Claimed", + "Reward Earned": "Reward Earned", + "Reward Status": "Reward Status", + "Ride Management": "إدارة المشاوير", + "Ride Summaries": "ملخص المشاوير", + "Ride Summary": "ملخص المشوار", + "Ride Today : ": "مشوار اليوم: ", + "Ride Wallet": "محفظة المشوار", + "Rides": "مشاوير", + "Rouats of Trip": "مسارات المشوار", + "Route": "Route", + "Route Not Found": "الطريق غير معروف", + "Route and prices have been calculated successfully!": "Route and prices have been calculated successfully!", + "SOS": "SOS", + "SOS Phone": "رقم الطوارئ", + "SYP": "叙利亚镑", + "Safety & Security": "الأمان", + "Saudi Arabia": "السعودية", + "Save": "Save", + "Save Changes": "Save Changes", + "Save Credit Card": "حفظ البطاقة", + "Save Name": "Save Name", + "Saved Sucssefully": "تم الحفظ", + "Scan Driver License": "امسح الرخصة", + "Scan ID MklGoogle": "مسح الهوية MklGoogle", + "Scan Id": "مسح الهوية", + "Scan QR": "Scan QR", + "Scan QR Code": "Scan QR Code", + "Scheduled Time:": "Scheduled Time:", + "Scooter": "سكوتر", + "Search country": "Search country", + "Search for a starting point": "Search for a starting point", + "Search for another driver": "寻找其他司机", + "Search for waypoint": "ابحث عن نقطة توقف", + "Search for your Start point": "ابحث عن نقطة البداية", + "Search for your destination": "ابحث عن وجهتك", + "Searching for nearby drivers...": "正在寻找附近的司机...", + "Searching for the nearest captain...": "جاري البحث عن أقرب كابتن...", + "Secure": "Secure", + "Security Warning": "⚠️ تنبيه أمني", + "See you on the road!": "نشوفك بالدرب!", + "Select Appearance": "Select Appearance", + "Select Country": "اختر الدولة", + "Select Date": "اختر التاريخ", + "Select Education": "Select Education", + "Select Gender": "Select Gender", + "Select Order Type": "اختر نوع الطلب", + "Select Payment Amount": "اختر المبلغ", + "Select This Ride": "Select This Ride", + "Select Time": "اختر الوقت", + "Select Waiting Hours": "اختر ساعات الانتظار", + "Select Your Country": "اختر دولتك", + "Select betweeen types": "Select betweeen types", + "Select date and time of trip": "Select date and time of trip", + "Select one message": "اختر رسالة", + "Select recorded trip": "اختر مشوار مسجل", + "Select your destination": "اختر وجهتك", + "Select your preferred language for the app interface.": "اختر لغة التطبيق.", + "Selected Date": "التاريخ المحدد", + "Selected Date and Time": "التاريخ والوقت", + "Selected Time": "الوقت المحدد", + "Selected driver": "الكابتن المختار", + "Selected file:": "الملف المختار:", + "Send Email": "Send Email", + "Send Intaleq app to him": "أرسل له تطبيق انطلق", + "Send Invite": "إرسال دعوة", + "Send SOS": "Send SOS", + "Send Siro app to him": "Send Siro app to him", + "Send Verfication Code": "أرسل الرمز", + "Send Verification Code": "أرسل كود التحقق", + "Send WhatsApp Message": "Send WhatsApp Message", + "Send a custom message": "أرسل رسالة", + "Send to Driver Again": "Send to Driver Again", + "Server Error": "Server Error", + "Server error": "Server error", + "Server error. Please try again.": "Server error. Please try again.", + "Session expired. Please log in again.": "الجلسة انتهت. سجل دخولك مرة ثانية.", + "Set Destination": "Set Destination", + "Set Location on Map": "Set Location on Map", + "Set Phone Number": "Set Phone Number", + "Set Wallet Phone Number": "حط رقم للمحفظة", + "Set as Home": "Set as Home", + "Set as Stop": "Set as Stop", + "Set as Work": "Set as Work", + "Set pickup location": "حدد موقع الانطلاق", + "Setting": "إعدادات", + "Settings": "الإعدادات", + "Sex is ": "الجنس: ", + "Share": "Share", + "Share App": "شارك التطبيق", + "Share Trip": "Share Trip", + "Share Trip Details": "شارك تفاصيل المشوار", + "Share this code with your friends and earn rewards when they use it!": "شارك الكود واكسب!", + "Share with friends and earn rewards": "شارك مع ربعك واكسب", + "Share your experience to help us improve...": "Share your experience to help us improve...", + "Show Invitations": "عرض الدعوات", + "Show Promos": "عرض الخصومات", + "Show Promos to Charge": "عروض الشحن", + "Show latest promo": "عرض الخصومات", + "Showing": "عرض", + "Sign In by Apple": "دخول بـ Apple", + "Sign In by Google": "دخول بـ Google", + "Sign In with Google": "Sign In with Google", + "Sign Out": "تسجيل خروج", + "Sign in for a seamless experience": "Sign in for a seamless experience", + "Sign in to continue": "Sign in to continue", + "Sign in with Apple": "Sign in with Apple", + "Sign in with Google for easier email and name entry": "ادخل بقوقل أسهل", + "Simply open the Intaleq app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "افتح التطبيق، حدد وجهتك، واطلب المشوار.", + "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \"Request Ride\". The app will connect you with a nearby driver.", + "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.": "Simply open the Siro app, enter your destination, and tap \\\"Request Ride\\\". The app will connect you with a nearby driver.", + "Siro": "Siro", + "Siro Balance": "Siro Balance", + "Siro LLC": "Siro LLC", + "Siro Over": "Siro Over", + "Siro Passenger": "Siro Passenger", + "Siro Support": "Siro Support", + "Siro Wallet": "Siro Wallet", + "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:": "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:", + "Siro is committed to safety, and all of our captains are carefully screened and background checked.": "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 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 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.": "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.", + "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 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.": "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.", + "Siro offers a variety of options including Economy, Comfort, and Luxury to suit your needs and budget.": "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 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 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 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 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 provides in-app chat functionality to allow you to communicate with your driver or passenger during your ride.", + "Siro's Response": "Siro's Response", + "Something went wrong. Please try again.": "Something went wrong. Please try again.", + "Sorry 😔": "抱歉 😔", + "Sorry, there are no cars available of this type right now.": "抱歉,目前没有此类车型。", + "Spacious van service ideal for families and groups. Comfortable, safe, and cost-effective travel together.": "خدمة فان واسعة للعوايل والمجموعات. راحة وأمان وتوفير.", + "Speaker": "Speaker", + "Speaking...": "Speaking...", + "Speed Over": "Speed Over", + "Standard Call": "Standard Call", + "Start Point": "Start Point", + "Start Record": "ابدأ التسجيل", + "Start the Ride": "ابدأ المشوار", + "Statistics": "الإحصائيات", + "Stay calm. We are here to help.": "Stay calm. We are here to help.", + "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 Siro app.": "Step-by-step instructions on how to request a ride through the Siro app.", + "Stop": "Stop", + "Submit": "Submit", + "Submit ": "إرسال ", + "Submit Complaint": "إرسال الشكوى", + "Submit Question": "أرسل سؤال", + "Submit Rating": "Submit Rating", + "Submit a Complaint": "رفع شكوى", + "Submit rating": "إرسال التقييم", + "Success": "تم", + "Support & Info": "Support & Info", + "Support is Away": "Support is Away", + "Support is currently Online": "Support is currently Online", + "Switch Rider": "تغيير الراكب", + "Syria": "叙利亚", + "Syria': return 'SYP": "Syria': return 'SYP", + "Syria'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.": "خدمة مشاركة مشاوير رائدة في الخليج.", + "System Default": "System Default", + "Take Image": "صور", + "Take Picture Of Driver License Card": "صور الرخصة", + "Take Picture Of ID Card": "صور الهوية", + "Take a Photo": "Take a Photo", + "Tap on the promo code to copy it!": "اضغط ع الكود عشان تنسخه!", + "Tap to apply your discount": "Tap to apply your discount", + "Tap to search your destination": "Tap to search your destination", + "Target": "الهدف", + "Tariff": "التعرفة", + "Tariffs": "التعرفة", + "Tax Expiry Date": "تاريخ انتهاء الضريبة", + "Terms of Use": "Terms of Use", + "Terms of Use & Privacy Notice": "Terms of Use & Privacy Notice", + "Thanks": "شكراً", + "The Driver Will be in your location soon .": "الكابتن بيوصلك قريب.", + "The audio file is not uploaded yet.\\\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\\nDo you want to submit without it?": "The audio file is not uploaded yet.\\nDo you want to submit without it?", + "The audio file is not uploaded yet.\nDo you want to submit without it?": "The audio file is not uploaded yet.\nDo you want to submit without it?", + "The captain is responsible for the route.": "الكابتن مسؤول عن الطريق.", + "The distance less than 500 meter.": "المسافة أقل من 500 متر.", + "The driver accept your order for": "الكابتن قبل بـ", + "The driver accepted your order for": "The driver accepted your order for", + "The driver accepted your trip": "الكابتن قبل مشوارك", + "The driver canceled your ride.": "الكابتن ألغى مشوارك.", + "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?": "The driver cancelled the trip for an emergency reason.\\nDo you want to search for another driver immediately?", + "The driver cancelled the trip for an emergency reason.\nDo you want to search for another driver immediately?": "司机因紧急情况取消了行程。\n您想立即寻找其他司机吗?", + "The driver cancelled the trip.": "The driver cancelled the trip.", + "The driver on your way": "الكابتن جايك", + "The driver waiting you in picked location .": "الكابتن ينتظرك في الموقع.", + "The driver waitting you in picked location .": "الكابتن ينتظرك.", + "The drivers are reviewing your request": "الكباتن يشوفون طلبك", + "The email or phone number is already registered.": "الإيميل أو الرقم مسجل.", + "The full name on your criminal record does not match the one on your driver's license. Please verify and provide the correct documents.": "الاسم في خلو السوابق ما يطابق الرخصة.", + "The invitation was sent successfully": "أرسلنا الدعوة", + "The national number on your driver's license does not match the one on your ID document. Please verify and provide the correct documents.": "رقم الهوية في الرخصة ما يطابق الهوية.", + "The order Accepted by another Driver": "الطلب راح لكابتن ثاني", + "The order has been accepted by another driver.": "الطلب أخذه كابتن ثاني.", + "The payment was approved.": "تم الدفع.", + "The payment was not approved. Please try again.": "الدفع ما انقبل. جرب مرة ثانية.", + "The price may increase if the route changes.": "ممكن يزيد السعر لو تغير الطريق.", + "The promotion period has ended.": "خلصت فترة العرض.", + "The reason is": "The reason is", + "The trip has started! Feel free to contact emergency numbers, share your trip, or activate voice recording for the journey": "بدأ المشوار! تقدر تكلم الطوارئ، تشارك رحلتك، أو تسجل صوت.", + "There is no Car or Driver in your area.": "您所在的区域没有车辆或司机。", + "There is no data yet.": "ما في بيانات.", + "There is no help Question here": "ما في سؤال مساعدة", + "There is no notification yet": "ما في إشعارات", + "There no Driver Aplly your order sorry for that ": "ماحد قبل طلبك، المعذرة", + "There's heavy traffic here. Can you suggest an alternate pickup point?": "زحمة هنا. تقدر تغير موقع الركوب؟", + "This action cannot be undone.": "This action cannot be undone.", + "This action is permanent and cannot be undone.": "This action is permanent and cannot be undone.", + "This amount for all trip I get from Passengers": "هذا المبلغ من كل الركاب", + "This amount for all trip I get from Passengers and Collected For me in": "المبلغ المجمع لي في", + "This is a scheduled notification.": "هذا إشعار مجدول.", + "This is for delivery or a motorcycle.": "This is for delivery or a motorcycle.", + "This is for scooter or a motorcycle.": "هذا للسكوتر أو الدباب.", + "This is the total number of rejected orders per day after accepting the orders": "This is the total number of rejected orders per day after accepting the orders", + "This phone number has already been invited.": "هالرقم قد أرسلنا له دعوة.", + "This price is": "هالسعر هو", + "This price is fixed even if the route changes for the driver.": "السعر ثابت حتى لو تغير الطريق.", + "This price may be changed": "السعر ممكن يتغير", + "This ride is already applied by another driver.": "This ride is already applied by another driver.", + "This ride is already taken by another driver.": "المشوار راح لكابتن ثاني.", + "This ride type allows changes, but the price may increase": "تقدر تغير بس السعر بيزيد", + "This ride type does not allow changes to the destination or additional stops": "ما تقدر تغير الوجهة أو توقف", + "This trip goes directly from your starting point to your destination for a fixed price. The driver must follow the planned route": "مشوار مباشر بسعر ثابت. الكابتن يلتزم بالمسار.", + "This trip is for women only": "المشوار للنساء فقط", + "Time": "Time", + "Time to arrive": "وقت الوصول", + "Tip is ": "الإكرامية: ", + "To :": "To :", + "To : ": "إلى: ", + "To Home": "To Home", + "To Work": "To Work", + "To become a passenger, you must review and agree to the ": "عشان تصير راكب، لازم توافق على ", + "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, 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 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 change Language the App": "To change Language the App", + "To change some Settings": "لتغيير الإعدادات", + "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 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 Intaleq support directly.": "للتسجيل زر موقعنا.", + "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 Siro support directly.", + "To use Wallet charge it": "عشان تستخدم المحفظة اشحنها", + "Today's Promos": "عروض اليوم", + "Top up Balance": "Top up Balance", + "Top up Balance to continue": "Top up Balance to continue", + "Top up Wallet": "شحن المحفظة", + "Top up Wallet to continue": "اشحن المحفظة عشان تكمل", + "Total Amount:": "المبلغ الكلي:", + "Total Budget from trips by\\nCredit card is ": "Total Budget from trips by\\nCredit card is ", + "Total Budget from trips by\nCredit card is ": "إجمالي الدخل بالبطاقة: ", + "Total Budget from trips is ": "إجمالي الدخل: ", + "Total Connection Duration:": "مدة الاتصال:", + "Total Cost": "التكلفة الكلية", + "Total Cost is ": "التكلفة الكلية: ", + "Total Duration:": "المدة الكلية:", + "Total For You is ": "لك: ", + "Total From Passenger is ": "المجموع من الراكب: ", + "Total Hours on month": "ساعات الشهر", + "Total Invites": "Total Invites", + "Total Points is": "مجموع النقاط", + "Total Price": "Total Price", + "Total budgets on month": "ميزانية الشهر", + "Total points is ": "مجموع النقاط ", + "Total price from ": "السعر الكلي من ", + "Travel in a modern, silent electric car. A premium, eco-friendly choice for a smooth ride.": "تنقل بسيارة كهربائية حديثة وهادية. خيار فخم وصديق للبيئة.", + "Trip Cancelled": "المشوار تكنسل", + "Trip Cancelled. The cost of the trip will be added to your wallet.": "تم إلغاء المشوار. المبلغ رجع لمحفظتك.", + "Trip Cancelled. The cost of the trip will be deducted from your wallet.": "Trip Cancelled. The cost of the trip will be deducted from your wallet.", + "Trip Monitor": "Trip Monitor", + "Trip Monitoring": "متابعة المشوار", + "Trip Status:": "Trip Status:", + "Trip booked successfully": "Trip booked successfully", + "Trip finished": "انتهت الرحلة", + "Trip finished ": "Trip finished ", + "Trip has Steps": "الرحلة فيها وقفات", + "Trip is Begin": "بدأ المشوار", + "Trip updated successfully": "Trip updated successfully", + "Trips recorded": "المشاوير المسجلة", + "Trips: \$trips / \$target": "Trips: \$trips / \$target", + "Trusted driver": "Trusted driver", + "Turkey": "تركيا", + "Type here Place": "اكتب المكان", + "Type something...": "اكتب شي...", + "Type your Email": "اكتب إيميلك", + "Type your message": "اكتب رسالتك", + "Type your message...": "Type your message...", + "USA": "أمريكا", + "Uncompromising Security": "أمان تام", + "Unknown Driver": "Unknown Driver", + "Unknown Location": "Unknown Location", + "Update": "تحديث", + "Update Available": "Update Available", + "Update Education": "تحديث التعليم", + "Update Gender": "تحديث الجنس", + "Update Name": "Update Name", + "Uploaded": "تم الرفع", + "Use Touch ID or Face ID to confirm payment": "استخدم البصمة لتأكيد الدفع", + "Use code:": "استخدم الكود:", + "Use my invitation code to get a special gift on your first ride!": "استخدم كودي عشان يجيك هدية بأول مشوار!", + "Use my referral code:": "استخدم كود الدعوة:", + "User does not exist.": "المستخدم مو موجود.", + "User does not have a wallet #1652": "User does not have a wallet #1652", + "User not found": "User not found", + "User with this phone number or email already exists.": "هالرقم أو الإيميل مسجل من قبل.", + "Uses cellular network": "Uses cellular network", + "VIN": "رقم الهيكل", + "VIN :": "رقم الهيكل:", + "VIN is": "رقم الهيكل:", + "VIP Order": "طلب VIP", + "Valid Until:": "صالح لين:", + "Van": "عائلية (فان)", + "Van for familly": "فان للعائلة", + "Variety of Trip Choices": "خيارات متنوعة", + "Vehicle Details Back": "تفاصيل المركبة (خلف)", + "Vehicle Details Front": "تفاصيل المركبة (أمام)", + "Vehicle Options": "خيارات السيارات", + "Verification Code": "رمز التحقق", + "Verified Passenger": "Verified Passenger", + "Verified driver": "Verified driver", + "Verify": "تأكيد", + "Verify Email": "تأكيد الإيميل", + "Verify Email For Driver": "تأكيد إيميل الكابتن", + "Verify OTP": "تأكيد الرمز", + "Vibration": "Vibration", + "Vibration feedback for all buttons": "اهتزاز لكل الأزرار", + "View Map": "View Map", + "View your past transactions": "شوف عملياتك السابقة", + "Visit Website/Contact Support": "الموقع / الدعم", + "Visit our website or contact Intaleq support for information on driver registration and requirements.": "زور موقعنا أو كلم الدعم.", + "Visit our website or contact Siro support for information on driver registration and requirements.": "Visit our website or contact Siro support for information on driver registration and requirements.", + "Voice Call": "Voice Call", + "Voice call over internet": "Voice call over internet", + "Wait for the trip to start first": "Wait for the trip to start first", + "Waiting VIP": "Waiting VIP", + "Waiting for Captin ...": "بانتظار الكابتن...", + "Waiting for Driver ...": "بانتظار الكابتن...", + "Waiting for trips": "Waiting for trips", + "Waiting for your location": "ننتظر موقعك", + "Waiting...": "Waiting...", + "Wallet": "المحفظة", + "Wallet is blocked": "المحفظة موقوفة", + "Wallet!": "المحفظة!", + "Warning": "Warning", + "Warning: Intaleqing detected!": "تحذير: سرعة عالية!", + "Warning: Siroing detected!": "Warning: Siroing detected!", + "Warning: Speeding detected!": "تنبيه: سرعة عالية!", + "Waypoint has been set successfully": "Waypoint has been set successfully", + "We Are Sorry That we dont have cars in your Location!": "آسفين، ما في سيارات حولك!", + "We apologize 😔": "我们深表歉意 😔", + "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", + "We are process picture please wait ": "نعالج الصورة، انتظر شوي", + "We are search for nearst driver": "ندور أقرب كابتن", + "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 couldn't find a valid route to this destination. Please try selecting a different point.": "ما لقينا طريق للوجهة هذي. جرب تختار نقطة ثانية.", + "We have sent a verification code to your mobile number:": "طرشنا لك رمز التحقق على جوالك:", + "We haven't found any drivers yet. Consider increasing your trip fee to make your offer more attractive to drivers.": "ما لقينا كباتن للحين. فكر تزيد السعر عشان يوافقون أسرع.", + "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 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 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 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 speed 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 speed 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 speed is exceeding 100 km/h. Please slow down for your safety...": "We noticed the speed is exceeding 100 km/h. Please slow down for your safety...", + "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 أرقام لإيميلك", + "We use location to get accurate and nearest driver for you": "We use location to get accurate and nearest driver for you", + "We use location to get accurate and nearest passengers for you": "We use location to get accurate and nearest passengers for you", + "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.": "We use your precise location to find the nearest available driver and provide accurate pickup and dropoff information. You can manage this in Settings.", + "We will look for a new driver.\\nPlease wait.": "We will look for a new driver.\\nPlease wait.", + "We will look for a new driver.\nPlease wait.": "بنشوف لك كابتن ثاني.\nانتظر لاهنت.", + "We're here to help you 24/7": "We're here to help you 24/7", + "Welcome Back": "Welcome Back", + "Welcome Back!": "هلا بك من جديد!", + "Welcome to Intaleq!": "حياك الله في انطلق!", + "Welcome to Siro!": "Welcome to Siro!", + "What are the requirements to become a driver?": "وش الشروط؟", + "What safety measures does Intaleq offer?": "وش إجراءات الأمان؟", + "What safety measures does Siro offer?": "What safety measures does Siro offer?", + "What types of vehicles are available?": "وش أنواع السيارات؟", + "WhatsApp": "WhatsApp", + "WhatsApp Location Extractor": "جلب الموقع من واتساب", + "When": "متى", + "Where are you going?": "وين رايح؟", + "Where are you, sir?": "Where are you, sir?", + "Where to": "وين الوجهة؟", + "Where you want go ": "وين تبي تروح ", + "Why Choose Intaleq?": "ليش انطلق؟", + "Why Choose Siro?": "Why Choose Siro?", + "Why do you want to cancel?": "Why do you want to cancel?", + "With Intaleq, you can get a ride to your destination in minutes.": "مع انطلق، توصل وجهتك بدقايق.", + "With Siro, you can get a ride to your destination in minutes.": "With Siro, you can get a ride to your destination in minutes.", + "Work": "الدوام", + "Work & Contact": "العمل والتواصل", + "Work Saved": "Work Saved", + "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.": "Work time is from 10:00 AM to 16:00 PM.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.": "Work time is from 12:00 - 19:00.\\nYou can send a WhatsApp message or email.", + "Work time is from 12:00 - 19:00.\nYou can send a WhatsApp message or email.": "الدوام من 12 لـ 7.\nأرسل واتساب أو إيميل.", + "Working Hours:": "Working Hours:", + "Write note": "اكتب ملاحظة", + "Wrong pickup location": "上车地点错误", + "Year": "السنة", + "Year is": "السنة:", + "Yes": "Yes", + "Yes, you can cancel your ride under certain conditions (e.g., before driver is assigned). See the Intaleq cancellation policy for details.": "是的,您可以在特定条件下(例如分配司机前)取消行程。详情请参阅 Intaleq 取消政策。", + "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 Siro 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 Are Stopped For this Day !": "توقفت اليوم!", + "You Can Cancel Trip And get Cost of Trip From": "تقدر تلغي وتأخذ حقك من", + "You Can cancel Ride After Captain did not come in the time": "تقدر تلغي إذا تأخر الكابتن", + "You Dont Have Any amount in": "ما عندك رصيد في", + "You Dont Have Any places yet !": "ما عندك أماكن!", + "You Have": "عندك", + "You Have Tips": "عندك إكرامية", + "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!": "You Refused 3 Rides this Day that is the reason \\nSee you Tomorrow!", + "You Refused 3 Rides this Day that is the reason \nSee you Tomorrow!": "رفضت 3 مشاوير اليوم.\nنشوفك بكره!", + "You Should be select reason.": "لازم تختار سبب.", + "You Should choose rate figure": "لازم تختار تقييم", + "You are Delete": "أنت بتحذف", + "You are Stopped": "أنت موقوف", + "You are not in near to passenger location": "أنت بعيد عن الراكب", + "You can buy Points to let you online\\nby this list below": "You can buy Points to let you online\\nby this list below", + "You can buy Points to let you online\nby this list below": "اشتر نقاط عشان تكون متصل\nمن القائمة", + "You can buy points from your budget": "تقدر تشتري نقاط من رصيدك", + "You can call or record audio during this trip.": "تقدر تتصل أو تسجل صوت خلال المشوار.", + "You can call or record audio of this trip": "تقدر تتصل أو تسجل صوت", + "You can cancel Ride now": "تقدر تلغي الحين", + "You can cancel trip": "تقدر تكنسل", + "You can change the Country to get all features": "غير الدولة عشان كل الميزات", + "You can change the destination by long-pressing any point on the map": "You can change the destination by long-pressing any point on the map", + "You can change the language of the app": "تغيير اللغة", + "You can change the vibration feedback for all buttons": "تقدر تغير اهتزاز الأزرار", + "You can claim your gift once they complete 2 trips.": "تقدر تأخذ الهدية إذا كملوا مشوارين.", + "You can communicate with your driver or passenger through the in-app chat feature once a ride is confirmed.": "عن طريق الشات في التطبيق.", + "You can contact us during working hours from 10:00 - 16:00.": "You can contact us during working hours from 10:00 - 16:00.", + "You can contact us during working hours from 12:00 - 19:00.": "كلمناه من 12 لـ 7.", + "You can decline a request without any cost": "تقدر ترفض بدون تكلفة", + "You can only use one device at a time. This device will now be set as your active device.": "You can only use one device at a time. This device will now be set as your active device.", + "You can pay for your ride using cash or credit/debit card. You can select your preferred payment method before confirming your ride.": "ادفع كاش أو بطاقة.", + "You can resend in": "تقدر تعيد الإرسال بعد", + "You can share the Intaleq App with your friends and earn rewards for rides they take using your code": "شارك التطبيق مع ربعك واكسب مكافآت.", + "You can share the Siro App with your friends and earn rewards for rides they take using your code": "You can share the Siro 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 can't continue with us .\nYou should renew Driver license": "ما تقدر تكمل معنا.\nلازم تجدد الرخصة", + "You canceled VIP trip": "You canceled VIP trip", + "You deserve the gift": "تستاهل الهدية", + "You dont Add Emergency Phone Yet!": "ما ضفت رقم طوارئ!", + "You dont have Points": "ما عندك نقاط", + "You have already received your gift for inviting": "قد استلمت هديتك على هالدعوة", + "You have already received your gift for inviting \$passengerName.": "You have already received your gift for inviting \$passengerName.", + "You have already used this promo code.": "استخدمت هالكود من قبل.", + "You have been successfully referred!": "You have been successfully referred!", + "You have call from driver": "عندك اتصال من الكابتن", + "You have copied the promo code.": "نسخت كود الخصم.", + "You have earned 20": "كسبت 20", + "You have finished all times ": "خلصت محاولاتك", + "You have got a gift for invitation": "جتك هدية عشان الدعوة", + "You have in account": "عندك بالحساب", + "You have promo!": "عندك خصم!", + "You must Verify email !.": "لازم تأكد الإيميل!", + "You must be charge your Account": "لازم تشحن حسابك", + "You must restart the app to change the language.": "لازم تعيد تشغيل التطبيق لتغيير اللغة.", + "You should have upload it .": "لازم ترفعها طال عمرك.", + "You should ideintify your gender for this type of trip!": "You should ideintify your gender for this type of trip!", + "You should restart app to change language": "You should restart app to change language", + "You should select one": "لازم تختار واحد", + "You should select your country": "اختر دولتك", + "You trip distance is": "مسافة المشوار:", + "You will arrive to your destination after ": "بتوصل بعد ", + "You will arrive to your destination after timer end.": "بتوصل بعد انتهاء المؤقت.", + "You will be charged for the cost of the driver coming to your location.": "You will be charged for the cost of the driver coming to your location.", + "You will be pay the cost to driver or we will get it from you on next trip": "بتدفع للكابتن أو نأخذها منك المشوار الجاي", + "You will be thier in": "بتوصل خلال", + "You will choose allow all the time to be ready receive orders": "اختر 'السماح طوال الوقت' لاستقبال الطلبات", + "You will choose one of above !": "اختر واحد من اللي فوق!", + "You will choose one of above!": "You will choose one of above!", + "You will get cost of your work for this trip": "بتاخذ حق مشوارك", + "You will receive a code in SMS message": "بيجيك كود برسالة نصية", + "You will receive a code in WhatsApp Messenger": "بيجيك كود ع الواتساب", + "You will recieve code in sms message": "بيجيك كود في رسالة", + "Your Account is Deleted": "انحذف حسابك", + "Your Budget less than needed": "رصيدك أقل من المطلوب", + "Your Choice, Our Priority": "اختيارك يهمنا", + "Your Journey Begins Here": "Your Journey Begins Here", + "Your QR Code": "Your QR Code", + "Your Rewards": "Your Rewards", + "Your Ride Duration is ": "مدة المشوار: ", + "Your Wallet balance is ": "رصيدك بالمحفظة: ", + "Your are far from passenger location": "أنت بعيد عن الراكب", + "Your complaint has been submitted.": "Your complaint has been submitted.", + "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ": "Your data will be erased after 2 weeks\\nAnd you will can't return to use app after 1 month ", + "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month": "Your data will be erased after 2 weeks\\nAnd you will can\\'t return to use app after 1 month", + "Your data will be erased after 2 weeks\nAnd you will can't return to use app after 1 month ": "بتمسح بياناتك بعد أسبوعين\nوما تقدر ترجع بعد شهر", + "Your device appears to be compromised. The app will now close.": "Your device appears to be compromised. The app will now close.", + "Your email address": "Your email address", + "Your fee is ": "أجرتك: ", + "Your invite code was successfully applied!": "تم تطبيق كود الدعوة!", + "Your journey starts here": "مشوارك يبدأ هنا", + "Your name": "اسمك", + "Your order is being prepared": "طلبك يتجهز", + "Your order sent to drivers": "أرسلنا طلبك للكباتن", + "Your password": "Your password", + "Your past trips will appear here.": "مشاويرك السابقة بتطلع هنا.", + "Your payment is being processed and your wallet will be updated shortly.": "Your payment is being processed and your wallet will be updated shortly.", + "Your personal invitation code is:": "كود الدعوة حقك:", + "Your trip cost is": "تكلفة مشوارك:", + "Your trip distance is": "مسافة مشوارك:", + "Your trip is scheduled": "Your trip is scheduled", + "Your valuable feedback helps us improve our service quality.": "Your valuable feedback helps us improve our service quality.", + "\"": "\"", + "\$countOfInvitDriver / 2 \${'Trip": "\$countOfInvitDriver / 2 \${'Trip", + "\$countPoint \${'LE": "\$countPoint \${'LE", + "\$displayPrice \${CurrencyHelper.currency}\", \"Price": "\$displayPrice \${CurrencyHelper.currency}\", \"Price", + "\$firstName \$lastName": "\$firstName \$lastName", + "\$passengerName \${'has completed": "\$passengerName \${'has completed", + "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD": "\$pricePoint \${box.read(BoxName.countryCode) == 'Jordan' ? 'JOD", + "\$title \${'Saved Successfully": "\$title \${'Saved Successfully", + "\${'Age": "\${'Age", + "\${'Balance:": "\${'Balance:", + "\${'Car": "\${'Car", + "\${'Car Plate is ": "\${'Car Plate is ", + "\${'Claim your 20 LE gift for inviting": "\${'Claim your 20 LE gift for inviting", + "\${'Code": "\${'Code", + "\${'Color": "\${'Color", + "\${'Color is ": "\${'Color is ", + "\${'Cost Duration": "\${'Cost Duration", + "\${'DISCOUNT": "\${'DISCOUNT", + "\${'Date of Birth is": "\${'Date of Birth is", + "\${'Distance is": "\${'Distance is", + "\${'Duration is": "\${'Duration is", + "\${'Email is": "\${'Email is", + "\${'Expiration Date ": "\${'Expiration Date ", + "\${'Fee is": "\${'Fee is", + "\${'How was your trip with": "\${'How was your trip with", + "\${'Keep it up!": "\${'Keep it up!", + "\${'Make is ": "\${'Make is ", + "\${'Model is": "\${'Model is", + "\${'Negative Balance:": "\${'Negative Balance:", + "\${'Pay": "\${'Pay", + "\${'Phone Number is": "\${'Phone Number is", + "\${'Plate": "\${'Plate", + "\${'Please enter": "\${'Please enter", + "\${'Rides": "\${'Rides", + "\${'Selected Date and Time": "\${'Selected Date and Time", + "\${'Selected driver": "\${'Selected driver", + "\${'Sex is ": "\${'Sex is ", + "\${'Showing": "\${'Showing", + "\${'Stop": "\${'Stop", + "\${'Tip is": "\${'Tip is", + "\${'Tip is ": "\${'Tip is ", + "\${'Total price to ": "\${'Total price to ", + "\${'Update": "\${'Update", + "\${'VIN is": "\${'VIN is", + "\${'Valid Until:": "\${'Valid Until:", + "\${'We have sent a verification code to your mobile number:": "\${'We have sent a verification code to your mobile number:", + "\${'Where to": "\${'Where to", + "\${'Year is": "\${'Year is", + "\${'You are Delete": "\${'You are Delete", + "\${'You can resend in": "\${'You can resend in", + "\${'You have a balance of": "\${'You have a balance of", + "\${'You have a negative balance of": "\${'You have a negative balance of", + "\${'You have call from Passenger": "\${'You have call from Passenger", + "\${'You have call from driver": "\${'You have call from driver", + "\${'You will be thier in": "\${'You will be thier in", + "\${'Your Ride Duration is ": "\${'Your Ride Duration is ", + "\${'Your fee is ": "\${'Your fee is ", + "\${'Your trip distance is": "\${'Your trip distance is", + "\${'\${'Hi! This is": "\${'\${'Hi! This is", + "\${'\${tip.toString()}\\\$\${' tips\\nTotal is": "\${'\${tip.toString()}\\\$\${' tips\\nTotal is", + "\${'you have a negative balance of": "\${'you have a negative balance of", + "\${'you will pay to Driver": "\${'you will pay to Driver", + "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE": "\${(double.parse(controller.totalPassenger.toString())) * (double.parse(box.read(BoxName.tipPercentage.toString())))} \${box.read(BoxName.countryCode) == 'Egypt' ? 'LE", + "\${AppInformation.appName} Balance": "\${AppInformation.appName} Balance", + "\${AppInformation.appName} \${'Balance": "\${AppInformation.appName} \${'Balance", + "\${\"Car Color:": "\${\"Car Color:", + "\${\"Where you want go ": "\${\"Where you want go ", + "\${\"Working Hours:": "\${\"Working Hours:", + "\${controller.distance.toStringAsFixed(1)} \${'KM": "\${controller.distance.toStringAsFixed(1)} \${'KM", + "\${controller.driverCompletedRides} \${'rides": "\${controller.driverCompletedRides} \${'rides", + "\${controller.driverRatingCount} \${'reviews": "\${controller.driverRatingCount} \${'reviews", + "\${controller.minutes} \${'min": "\${controller.minutes} \${'min", + "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}": "\${controller.prfoileData['first_name'] ?? ''} \${controller.prfoileData['last_name'] ?? ''}", + "\${res['name']} \${'Saved Sucssefully": "\${res['name']} \${'Saved Sucssefully", + "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.", + "\nWe also prioritize affordability, offering competitive pricing to make your rides accessible.": "\nونهتم بالأسعار تكون مناسبة.", + "accepted": "accepted", + "accepted your order at price": "accepted your order at price", + "addHome' ? 'Add Home": "addHome' ? 'Add Home", + "addWork' ? 'Add Work": "addWork' ? 'Add Work", + "agreement subtitle": "للمتابعة، وافق على الشروط والخصوصية.", + "airport": "airport", + "an error occurred": "صار خطأ غير متوقع: @error", + "and I have a trip on": "وعندي مشوار على", + "and acknowledge our": "وتقر بـ", + "and acknowledge our Privacy Policy.": "and acknowledge our Privacy Policy.", + "and acknowledge the": "and acknowledge the", + "app_description": "انطلق تطبيق آمن وموثوق.", + "arrival time to reach your point": "وقت الوصول لنقطتك", + "as the driver.": "as the driver.", + "before": "قبل", + "begin": "begin", + "by": "by", + "cancelled": "cancelled", + "carType'] ?? 'Car": "carType'] ?? 'Car", + "change device": "change device", + "committed_to_safety": "نهتم بسلامتك.", + "complete profile subtitle": "كمل بياناتك عشان تبدأ", + "complete registration button": "إتمام التسجيل", + "complete, you can claim your gift": "اكتمل، اطلب هديتك", + "contacts. Others were hidden because they don't have a phone number.": "جهة اتصال. الباقي مخفي عشان ما عندهم أرقام.", + "contacts. Others were hidden because they don\\'t have a phone number.": "contacts. Others were hidden because they don\\'t have a phone number.", + "copied to clipboard": "copied to clipboard", + "created time": "وقت الإنشاء", + "deleted": "deleted", + "distance is": "المسافة هي", + "driverName'] ?? 'Captain": "driverName'] ?? 'Captain", + "driver_license": "رخصة_قيادة", + "due to a previous trip.": "due to a previous trip.", + "duration is": "المدة:", + "e.g. 0912345678": "e.g. 0912345678", + "email optional label": "الإيميل (اختياري)", + "email', 'support@intaleqapp.com', 'Hello": "email', 'support@intaleqapp.com', 'Hello", + "endName'] ?? 'Destination": "endName'] ?? 'Destination", + "enter otp validation": "دخل الكود (5 أرقام)", + "face detect": "التحقق من الوجه", + "failed to send otp": "فشل إرسال الرمز.", + "first name label": "الاسم الأول", + "first name required": "الاسم الأول مطلوب", + "for": "لـ", + "for your first registration!": "لتسجيلك الأول!", + "from 07:30 till 10:30 (Thursday, Friday, Saturday, Monday)": "من 7:30 لـ 10:30", + "from 12:00 till 15:00 (Thursday, Friday, Saturday, Monday)": "من 12:00 لـ 3:00", + "from 23:59 till 05:30": "من 11:59 م لـ 5:30 ص", + "from 3 times Take Attention": "من 3 مرات، انتبه", + "from your favorites": "from your favorites", + "from your list": "من قائمتك", + "get_a_ride": "مع انطلق، الموتر يجيك بدقايق.", + "get_to_destination": "وصل وجهتك بسرعة.", + "go to your passenger location before\\nPassenger cancel trip": "go to your passenger location before\\nPassenger cancel trip", + "go to your passenger location before\nPassenger cancel trip": "رح لموقع الراكب قبل يكنسل", + "has completed": "كمل", + "hour": "ساعة", + "i agree": "موافق", + "if you don't have account": "ما عندك حساب", + "if you dont have account": "إذا ما عندك حساب", + "if you want help you can email us here": "تبي مساعدة؟ راسلنا", + "image verified": "الصورة تمام", + "in your": "in your", + "insert amount": "دخل المبلغ", + "insert sos phone": "insert sos phone", + "is calling you": "is calling you", + "is driving a": "is driving a", + "is driving a ": "يسوق ", + "is reviewing your order. They may need more information or a higher price.": "is reviewing your order. They may need more information or a higher price.", + "joined": "انضم", + "label': 'Dark Mode": "label': 'Dark Mode", + "label': 'Light Mode": "label': 'Light Mode", + "label': 'System Default": "label': 'System Default", + "last name label": "اسم العائلة", + "last name required": "اسم العائلة مطلوب", + "login or register subtitle": "دخل رقم جوالك للدخول أو التسجيل", + "m": "د", + "message From Driver": "رسالة من الكابتن", + "message From passenger": "رسالة من الراكب", + "message'] ?? 'An unknown server error occurred": "message'] ?? 'An unknown server error occurred", + "message'] ?? 'Claim failed": "message'] ?? 'Claim failed", + "message']?.toString() ?? 'Failed to create invoice": "message']?.toString() ?? 'Failed to create invoice", + "message']?.toString() ?? 'Invalid Promo": "message']?.toString() ?? 'Invalid Promo", + "min": "min", + "min added to fare": "min added to fare", + "model :": "الموديل:", + "my location": "موقعي", + "name_ar'] ?? data['name'] ?? 'Unknown Location": "name_ar'] ?? data['name'] ?? 'Unknown Location", + "not similar": "غير مطابق", + "of": "من", + "one last step title": "خطوة أخيرة", + "otp sent subtitle": "أرسلنا كود من 5 أرقام على\n@phoneNumber", + "otp sent success": "تم إرسال الرمز للواتساب.", + "otp verification failed": "رمز التحقق غلط.", + "passenger agreement": "اتفاقية الراكب", + "pending": "pending", + "phone not verified": "phone not verified", + "phone number label": "رقم الجوال", + "phone number required": "مطلوب رقم الجوال", + "please go to picker location exactly": "رح لموقع الركوب بالضبط", + "please order now": "اطلب الحين", + "please wait till driver accept your order": "انتظر الكابتن يقبل", + "price is": "السعر:", + "privacy policy": "سياسة الخصوصية.", + "profile', localizedTitle: 'Profile": "profile', localizedTitle: 'Profile", + "promo_code']} \${'copied to clipboard": "promo_code']} \${'copied to clipboard", + "registration failed": "فشل التسجيل.", + "reject your order.": "reject your order.", + "rejected": "rejected", + "remaining": "remaining", + "reviews": "reviews", + "rides": "rides", + "safe_and_comfortable": "استمتع بمشوار آمن.", + "seconds": "ثانية", + "security_warning": "security_warning", + "send otp button": "أرسل كود التحقق", + "server error try again": "خطأ في السيرفر، حاول مرة ثانية.", + "shareApp', localizedTitle: 'Share App": "shareApp', localizedTitle: 'Share App", + "similar": "مطابق", + "startName'] ?? 'Start Point": "startName'] ?? 'Start Point", + "terms of use": "شروط الاستخدام", + "the 300 points equal 300 L.E": "300 نقطة بـ 300 ر.س", + "the 300 points equal 300 L.E for you \\nSo go and gain your money": "the 300 points equal 300 L.E for you \\nSo go and gain your money", + "the 300 points equal 300 L.E for you \nSo go and gain your money": "300 نقطة تساوي 300 ر.س لك\nرح اكسب فلوسك", + "the 500 points equal 30 JOD": "الـ 500 نقطة تساوي 30 ر.س", + "the 500 points equal 30 JOD for you \\nSo go and gain your money": "the 500 points equal 30 JOD for you \\nSo go and gain your money", + "the 500 points equal 30 JOD for you \nSo go and gain your money": "الـ 500 نقطة بـ 30 ر.س لك\nروح اكسب فلوسك", + "this will delete all files from your device": "بيمسح كل الملفات من جهازك", + "to arrive you.": "to arrive you.", + "token change": "تغيير الرمز", + "token updated": "تحدث الرمز", + "trips": "مشاوير", + "type here": "اكتب هنا", + "unknown": "unknown", + "upgrade price": "upgrade price", + "verify and continue button": "تحقق وكمال", + "verify your number title": "تحقق من رقمك", + "wait 1 minute to receive message": "انتظر دقيقة توصلك الرسالة", + "wait 1 minute to recive message": "wait 1 minute to recive message", + "wallet due to a previous trip.": "wallet due to a previous trip.", + "wallet', localizedTitle: 'Wallet": "wallet', localizedTitle: 'Wallet", + "welcome to intaleq": "حياك في انطلق", + "welcome to siro": "welcome to siro", + "welcome user": "يا هلا، @firstName!", + "welcome_message": "أهلاً بك في انطلق!", + "whatsapp', getRandomPhone(), 'Hello": "whatsapp', getRandomPhone(), 'Hello", + "with license plate": "with license plate", + "with type": "with type", + "witout zero": "witout zero", + "write Color for your car": "اكتب اللون", + "write Expiration Date for your car": "اكتب تاريخ الانتهاء", + "write Make for your car": "اكتب الشركة", + "write Model for your car": "اكتب الموديل", + "write Year for your car": "اكتب السنة", + "write vin for your car": "اكتب رقم الهيكل", + "year :": "السنة:", + "you canceled order": "you canceled order", + "you gain": "كسبت", + "you have a negative balance of": "you have a negative balance of", + "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 Intaleq Wallet": "بتدفع حق وقت الكابتن، شوف محفظتك في انطلق", + "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 Siro Wallet", + "your ride is Accepted": "مشوارك انقبل", + "your ride is applied": "انطلب مشوارك", + "} \${AppInformation.appName}\${' to ride with": "} \${AppInformation.appName}\${' to ride with", + "ُExpire Date": "تاريخ الانتهاء", + "⚠️ You need to choose an amount!": "⚠️ لازم تختار مبلغ!", + "💰 Pay with Wallet": "💰 ادفع بالمحفظة", + "💳 Pay with Credit Card": "💳 ادفع بالبطاقة", +};