⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
hospital.dev-unit.com
/
public
/
View File Name :
messages.js
/*! * Lang.js for Laravel localization in JavaScript. * * @version 1.1.10 * @license MIT https://github.com/rmariuzzo/Lang.js/blob/master/LICENSE * @site https://github.com/rmariuzzo/Lang.js * @author Rubens Mariuzzo <rubens@mariuzzo.com> */ (function(root,factory){"use strict";if(typeof define==="function"&&define.amd){define([],factory)}else if(typeof exports==="object"){module.exports=factory()}else{root.Lang=factory()}})(this,function(){"use strict";function inferLocale(){if(typeof document!=="undefined"&&document.documentElement){return document.documentElement.lang}}function convertNumber(str){if(str==="-Inf"){return-Infinity}else if(str==="+Inf"||str==="Inf"||str==="*"){return Infinity}return parseInt(str,10)}var intervalRegexp=/^({\s*(\-?\d+(\.\d+)?[\s*,\s*\-?\d+(\.\d+)?]*)\s*})|([\[\]])\s*(-Inf|\*|\-?\d+(\.\d+)?)\s*,\s*(\+?Inf|\*|\-?\d+(\.\d+)?)\s*([\[\]])$/;var anyIntervalRegexp=/({\s*(\-?\d+(\.\d+)?[\s*,\s*\-?\d+(\.\d+)?]*)\s*})|([\[\]])\s*(-Inf|\*|\-?\d+(\.\d+)?)\s*,\s*(\+?Inf|\*|\-?\d+(\.\d+)?)\s*([\[\]])/;var defaults={locale:"en"};var Lang=function(options){options=options||{};this.locale=options.locale||inferLocale()||defaults.locale;this.fallback=options.fallback;this.messages=options.messages};Lang.prototype.setMessages=function(messages){this.messages=messages};Lang.prototype.getLocale=function(){return this.locale||this.fallback};Lang.prototype.setLocale=function(locale){this.locale=locale};Lang.prototype.getFallback=function(){return this.fallback};Lang.prototype.setFallback=function(fallback){this.fallback=fallback};Lang.prototype.has=function(key,locale){if(typeof key!=="string"||!this.messages){return false}return this._getMessage(key,locale)!==null};Lang.prototype.get=function(key,replacements,locale){if(!this.has(key,locale)){return key}var message=this._getMessage(key,locale);if(message===null){return key}if(replacements){message=this._applyReplacements(message,replacements)}return message};Lang.prototype.trans=function(key,replacements){return this.get(key,replacements)};Lang.prototype.choice=function(key,number,replacements,locale){replacements=typeof replacements!=="undefined"?replacements:{};replacements.count=number;var message=this.get(key,replacements,locale);if(message===null||message===undefined){return message}var messageParts=message.split("|");var explicitRules=[];for(var i=0;i<messageParts.length;i++){messageParts[i]=messageParts[i].trim();if(anyIntervalRegexp.test(messageParts[i])){var messageSpaceSplit=messageParts[i].split(/\s/);explicitRules.push(messageSpaceSplit.shift());messageParts[i]=messageSpaceSplit.join(" ")}}if(messageParts.length===1){return message}for(var j=0;j<explicitRules.length;j++){if(this._testInterval(number,explicitRules[j])){return messageParts[j]}}var pluralForm=this._getPluralForm(number);return messageParts[pluralForm]};Lang.prototype.transChoice=function(key,count,replacements){return this.choice(key,count,replacements)};Lang.prototype._parseKey=function(key,locale){if(typeof key!=="string"||typeof locale!=="string"){return null}var segments=key.split(".");var source=segments[0].replace(/\//g,".");return{source:locale+"."+source,sourceFallback:this.getFallback()+"."+source,entries:segments.slice(1)}};Lang.prototype._getMessage=function(key,locale){locale=locale||this.getLocale();key=this._parseKey(key,locale);if(this.messages[key.source]===undefined&&this.messages[key.sourceFallback]===undefined){return null}var message=this.messages[key.source];var entries=key.entries.slice();var subKey="";while(entries.length&&message!==undefined){var subKey=!subKey?entries.shift():subKey.concat(".",entries.shift());if(message[subKey]!==undefined){message=message[subKey];subKey=""}}if(typeof message!=="string"&&this.messages[key.sourceFallback]){message=this.messages[key.sourceFallback];entries=key.entries.slice();subKey="";while(entries.length&&message!==undefined){var subKey=!subKey?entries.shift():subKey.concat(".",entries.shift());if(message[subKey]){message=message[subKey];subKey=""}}}if(typeof message!=="string"){return null}return message};Lang.prototype._findMessageInTree=function(pathSegments,tree){while(pathSegments.length&&tree!==undefined){var dottedKey=pathSegments.join(".");if(tree[dottedKey]){tree=tree[dottedKey];break}tree=tree[pathSegments.shift()]}return tree};Lang.prototype._applyReplacements=function(message,replacements){for(var replace in replacements){message=message.replace(new RegExp(":"+replace,"gi"),function(match){var value=replacements[replace];var allCaps=match===match.toUpperCase();if(allCaps){return value.toUpperCase()}var firstCap=match===match.replace(/\w/i,function(letter){return letter.toUpperCase()});if(firstCap){return value.charAt(0).toUpperCase()+value.slice(1)}return value})}return message};Lang.prototype._testInterval=function(count,interval){if(typeof interval!=="string"){throw"Invalid interval: should be a string."}interval=interval.trim();var matches=interval.match(intervalRegexp);if(!matches){throw"Invalid interval: "+interval}if(matches[2]){var items=matches[2].split(",");for(var i=0;i<items.length;i++){if(parseInt(items[i],10)===count){return true}}}else{matches=matches.filter(function(match){return!!match});var leftDelimiter=matches[1];var leftNumber=convertNumber(matches[2]);if(leftNumber===Infinity){leftNumber=-Infinity}var rightNumber=convertNumber(matches[3]);var rightDelimiter=matches[4];return(leftDelimiter==="["?count>=leftNumber:count>leftNumber)&&(rightDelimiter==="]"?count<=rightNumber:count<rightNumber)}return false};Lang.prototype._getPluralForm=function(count){switch(this.locale){case"az":case"bo":case"dz":case"id":case"ja":case"jv":case"ka":case"km":case"kn":case"ko":case"ms":case"th":case"tr":case"vi":case"zh":return 0;case"af":case"bn":case"bg":case"ca":case"da":case"de":case"el":case"en":case"eo":case"es":case"et":case"eu":case"fa":case"fi":case"fo":case"fur":case"fy":case"gl":case"gu":case"ha":case"he":case"hu":case"is":case"it":case"ku":case"lb":case"ml":case"mn":case"mr":case"nah":case"nb":case"ne":case"nl":case"nn":case"no":case"om":case"or":case"pa":case"pap":case"ps":case"pt":case"so":case"sq":case"sv":case"sw":case"ta":case"te":case"tk":case"ur":case"zu":return count==1?0:1;case"am":case"bh":case"fil":case"fr":case"gun":case"hi":case"hy":case"ln":case"mg":case"nso":case"xbr":case"ti":case"wa":return count===0||count===1?0:1;case"be":case"bs":case"hr":case"ru":case"sr":case"uk":return count%10==1&&count%100!=11?0:count%10>=2&&count%10<=4&&(count%100<10||count%100>=20)?1:2;case"cs":case"sk":return count==1?0:count>=2&&count<=4?1:2;case"ga":return count==1?0:count==2?1:2;case"lt":return count%10==1&&count%100!=11?0:count%10>=2&&(count%100<10||count%100>=20)?1:2;case"sl":return count%100==1?0:count%100==2?1:count%100==3||count%100==4?2:3;case"mk":return count%10==1?0:1;case"mt":return count==1?0:count===0||count%100>1&&count%100<11?1:count%100>10&&count%100<20?2:3;case"lv":return count===0?0:count%10==1&&count%100!=11?1:2;case"pl":return count==1?0:count%10>=2&&count%10<=4&&(count%100<12||count%100>14)?1:2;case"cy":return count==1?0:count==2?1:count==8||count==11?2:3;case"ro":return count==1?0:count===0||count%100>0&&count%100<20?1:2;case"ar":return count===0?0:count==1?1:count==2?2:count%100>=3&&count%100<=10?3:count%100>=11&&count%100<=99?4:5;default:return 0}};return Lang}); (function () { Lang = new Lang(); Lang.setMessages({"ar.js":{"about_us_description":"\u0648\u0635\u0641","about_us_mission":"\u0645\u0647\u0645\u0629","about_us_title":"\u0639\u0646\u0648\u0627\u0646","active":"\u0646\u0634\u064a\u0637","all_notification_read":"\u062a\u0645\u062a \u0642\u0631\u0627\u0621\u0629 \u0643\u0627\u0641\u0629 \u0627\u0644\u0625\u062e\u0637\u0627\u0631\u0627\u062a \u0628\u0646\u062c\u0627\u062d.","all_required_fields":"\u064a\u0631\u062c\u0649 \u0645\u0644\u0621 \u0643\u0627\u0641\u0629 \u0627\u0644\u062d\u0642\u0648\u0644 \u0627\u0644\u0645\u0637\u0644\u0648\u0628\u0629.","amount_not_zero":"\u0644\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0627\u0644\u0645\u0628\u0644\u063a \u0635\u0641\u0631\u0627\u064b.","apply":"\u064a\u062a\u0642\u062f\u0645","appointment":"\u0645\u064a\u0639\u0627\u062f","appointment_cancel":"\u062a\u0645 \u0625\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u0648\u0639\u062f \u0628\u0646\u062c\u0627\u062d.","appointment_saved":"\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0645\u0648\u0639\u062f \u0628\u0646\u062c\u0627\u062d.","apr":"\u0623\u0628\u0631\u064a\u0644","are_u_sure":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f\u061f","are_you_sure_want_to_cancel":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u063a\u0627\u0621","are_you_sure_want_to_change":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0644\u062a\u063a\u064a\u064a\u0631","are_you_sure_want_to_delete_this":"\u0647\u0644 \u062a\u0631\u064a\u062f \u0628\u0627\u0644\u062a\u0623\u0643\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0627","are_you_sure_want_to_return_this_item":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0625\u0631\u062c\u0627\u0639 \u0647\u0630\u0627 \u0627\u0644\u0639\u0646\u0635\u0631","aug":"\u0623\u063a\u0633\u0637\u0633","available_quantity":"\u0627\u0644\u0643\u0645\u064a\u0629 \u0627\u0644\u0645\u062a\u0648\u0641\u0631\u0629","bill_date":"\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u062d\u062f\u064a\u062f \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0641\u0627\u062a\u0648\u0631\u0629.","break_time_greater_than_zero":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0648\u0642\u062a \u0627\u0644\u0627\u0633\u062a\u0631\u0627\u062d\u0629 \u0623\u0643\u0628\u0631 \u0645\u0646 \u0627\u0644\u0635\u0641\u0631","break_to_time_greater_than_from_time":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0648\u0642\u062a \u0627\u0644\u0627\u0633\u062a\u0631\u0627\u062d\u0629 \u0623\u0643\u0628\u0631 \u0645\u0646 \u0648\u0642\u062a \u0627\u0644\u0627\u0633\u062a\u0631\u0627\u062d\u0629.","break_to_time_greater_than_zero":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0648\u0642\u062a \u0627\u0644\u0627\u0633\u062a\u0631\u0627\u062d\u0629 \u0623\u0643\u0628\u0631 \u0645\u0646 \u0627\u0644\u0635\u0641\u0631","cancel":"\u064a\u0644\u063a\u064a","canceled":"\u0645\u0644\u063a\u064a","captcha_key":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0641\u062a\u0627\u062d Google captcha.","captcha_secret":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0633\u0631 \u0643\u0644\u0645\u0629 \u0627\u0644\u062a\u062d\u0642\u0642 \u0641\u064a Google.","card_template":"\u0646\u0645\u0648\u0630\u062c \u0627\u0644\u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u0630\u0643\u064a\u0629 \u0644\u0644\u0645\u0631\u064a\u0636","change_status":"\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0648\u0636\u0639","changed_appointment":"\u062a\u0645 \u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0645\u0648\u0639\u062f","charchter_160":"\u0644\u0627 \u064a\u062c\u0648\u0632 \u0623\u0646 \u062a\u0632\u064a\u062f \u0627\u0644\u0631\u0633\u0627\u0644\u0629 \u0639\u0646 160 \u062d\u0631\u0641\u064b\u0627.","choose_bed":"\u0627\u062e\u062a\u0631 \u0627\u0644\u0633\u0631\u064a\u0631","choose_case":"\u0627\u062e\u062a\u0631 \u0627\u0644\u062d\u0627\u0644\u0629","completed":"\u0645\u0643\u062a\u0645\u0644","currency":"\u0639\u0645\u0644\u0629","custom":"\u0645\u062e\u0635\u0635","date_required":"\u062d\u0642\u0644 \u0627\u0644\u062a\u0627\u0631\u064a\u062e \u0645\u0637\u0644\u0648\u0628","deactive":"\u063a\u064a\u0631 \u0646\u0634\u0637","dec":"\u062f\u064a\u0633\u0645\u0628\u0631","deduction_not_greater_than_salary":"\u0644\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0627\u0633\u062a\u0642\u0637\u0627\u0639\u0627\u062a \u0623\u0643\u0628\u0631 \u0645\u0646 \u0627\u0644\u0631\u0627\u062a\u0628 \u0627\u0644\u0623\u0633\u0627\u0633\u064a + \u0627\u0644\u0639\u0644\u0627\u0648\u0629","deleted":"\u062a\u0645 \u0627\u0644\u062d\u0630\u0641","department":"\u0642\u0633\u0645","disconnect_or_reconnect":"\u064a\u0631\u062c\u0649 \u0642\u0637\u0639 \u0627\u0644\u0627\u062a\u0635\u0627\u0644 \u0648\u0625\u0639\u0627\u062f\u0629 \u062a\u0648\u0635\u064a\u0644 \u062a\u0642\u0648\u064a\u0645 Google \u0627\u0644\u062e\u0627\u0635 \u0628\u0643","discount_less_than_amount":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0627\u0644\u062e\u0635\u0645 \u0623\u0642\u0644 \u0645\u0646 \u0627\u0644\u0645\u0628\u0644\u063a \u0627\u0644\u0625\u062c\u0645\u0627\u0644\u064a.","doctor_schedule_not_available_on_this_date":"\u062c\u062f\u0648\u0644 \u0627\u0644\u0637\u0628\u064a\u0628 \u063a\u064a\u0631 \u0645\u062a\u0627\u062d \u0647\u0630\u0627 \u0627\u0644\u062a\u0627\u0631\u064a\u062e.","document_file_size":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0627\u0644\u0645\u0633\u062a\u0646\u062f \u0645\u0644\u0641\u064b\u0627 \u0645\u0646 \u0627\u0644\u0646\u0648\u0639: jpeg\u060c jpg\u060c png\u060c pdf\u060c doc\u060c docx.\u060c mp3\u060c mp4","document_must_be_file_type":"\u064a\u062c\u0628 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0627\u0644\u0645\u0633\u062a\u0646\u062f \u0645\u0644\u0641\u064b\u0627 \u0645\u0646 \u0627\u0644\u0646\u0648\u0639: jpeg\u060c jpg\u060c png\u060c pdf\u060c doc\u060c docx.","enter_lot_no":"\u0623\u062f\u062e\u0644 \u0631\u0642\u0645 \u0627\u0644\u0642\u0637\u0639\u0629.","enter_purchase_price":"\u0623\u062f\u062e\u0644 \u0633\u0639\u0631 \u0627\u0644\u0634\u0631\u0627\u0621.","enter_sale_price":"\u0623\u062f\u062e\u0644 \u0633\u0639\u0631 \u0627\u0644\u0628\u064a\u0639.","expiry_date":"\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621","feb":"\u0634\u0647\u0631 \u0641\u0628\u0631\u0627\u064a\u0631","field_not_contain_white_space":"\u0644\u0627 \u064a\u062d\u062a\u0648\u064a \u0627\u0644\u062d\u0642\u0644 \u0639\u0644\u0649 \u0645\u0633\u0627\u062d\u0629 \u0628\u064a\u0636\u0627\u0621 \u0641\u0642\u0637","field_required":"\u0627\u0644\u062d\u0642\u0644 \u0645\u0637\u0644\u0648\u0628.","fill_physical_info":"\u0627\u0645\u0644\u0623 \u0623\u064a \u062a\u0641\u0627\u0635\u064a\u0644 \u0639\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u0627\u0644\u0645\u0627\u062f\u064a\u0629.","flutterWave_public_key":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0627\u0644\u0645\u0641\u062a\u0627\u062d \u0627\u0644\u0639\u0627\u0645 FlutterWave.","flutterWave_secret_key":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0641\u062a\u0627\u062d FlutterWave \u0627\u0644\u0633\u0631\u064a.","fri":"\u0627\u0644\u062c\u0645\u0639\u0629","friday":"\u062c\u0645\u0639\u0629","from":"\u0645\u0646","google_meet":"\u062c\u0648\u062c\u0644 \u0645\u064a\u062a","has_been_changed":"\u062a\u063a\u064a\u0631.","has_been_deleted":"\u0642\u062f \u062a\u0645 \u062d\u0630\u0641.","holiday":"\u0639\u0637\u0644\u0629","home_page_box_description":"\u0648\u0635\u0641 \u0645\u0631\u0628\u0639 \u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629","home_page_box_title":"\u0639\u0646\u0648\u0627\u0646 \u0645\u0631\u0628\u0639 \u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629","home_page_certified_box_description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0648\u0635\u0641 \u0627\u0644\u0635\u0646\u062f\u0648\u0642 \u0627\u0644\u0645\u0639\u062a\u0645\u062f","home_page_certified_box_title":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0635\u0646\u062f\u0648\u0642 \u0627\u0644\u0645\u0639\u062a\u0645\u062f","home_page_certified_doctor_description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0648\u0635\u0641 \u0627\u0644\u0637\u0628\u064a\u0628 \u0627\u0644\u0645\u0639\u062a\u0645\u062f","home_page_certified_doctor_text":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0646\u0635 \u0637\u0628\u064a\u0628 \u0645\u0639\u062a\u0645\u062f","home_page_certified_doctor_title":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0637\u0628\u064a\u0628 \u0627\u0644\u0645\u0639\u062a\u0645\u062f","home_page_description":"\u0648\u0635\u0641 \u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629","home_page_experience":"\u062a\u062c\u0631\u0628\u0629 \u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629","home_page_step_1_description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0648\u0635\u0641 \u0627\u0644\u062e\u0637\u0648\u0629 1","home_page_step_1_title":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u062e\u0637\u0648\u0629 1 \u0627\u0644\u0639\u0646\u0648\u0627\u0646","home_page_step_2_description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u062e\u0637\u0648\u0629 2 \u0627\u0644\u0648\u0635\u0641","home_page_step_2_title":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u062e\u0637\u0648\u0629 2 \u0627\u0644\u0639\u0646\u0648\u0627\u0646","home_page_step_3_description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u062e\u0637\u0648\u0629 3 \u0627\u0644\u0648\u0635\u0641","home_page_step_3_title":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u062e\u0637\u0648\u0629 3 \u0627\u0644\u0639\u0646\u0648\u0627\u0646","home_page_step_4_description":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0648\u0635\u0641 \u0627\u0644\u062e\u0637\u0648\u0629 4","home_page_step_4_title":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629 \u0627\u0644\u062e\u0637\u0648\u0629 4 \u0627\u0644\u0639\u0646\u0648\u0627\u0646","home_page_title":"\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0631\u0626\u064a\u0633\u064a\u0629","hospital":"\u0645\u0633\u062a\u0634\u0641\u0649","hospital_type":"\u0646\u0648\u0639 \u0627\u0644\u0645\u0633\u062a\u0634\u0641\u0649","image_must_be":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0635\u0648\u0631\u0629 \u0645\u0644\u0641\u064b\u0627 \u0645\u0646 \u0627\u0644\u0646\u0648\u0639: jpg\u060c jpeg\u060c png.","invalid_country_code":"\u0631\u0645\u0632 \u0627\u0644\u0628\u0644\u062f \u063a\u064a\u0631 \u0635\u0627\u0644\u062d","invalid_number":"\u0631\u0642\u0645 \u063a\u064a\u0631 \u0635\u0627\u0644\u062d","ipd_timeline":"IPD \u0627\u0644\u062c\u062f\u0648\u0644 \u0627\u0644\u0632\u0645\u0646\u064a","item_returned":"\u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0623\u0646\u0643 \u062a\u0631\u064a\u062f \u0625\u0631\u062c\u0627\u0639 \u0647\u0630\u0627 \u0627\u0644\u0639\u0646\u0635\u0631","jan":"\u064a\u0646\u0627\u064a\u0631","jul":"\u064a\u0648\u0644\u064a\u0648","jun":"\u064a\u0648\u0646\u064a\u0648","last_30_days":"\u0622\u062e\u0631 30 \u064a\u0648\u0645\u064b\u0627","last_7_days":"\u0627\u062e\u0631 7 \u0627\u064a\u0627\u0645","last_month":"\u0627\u0644\u0634\u0647\u0631 \u0627\u0644\u0645\u0627\u0636\u064a","lunch_break":"\u0627\u0633\u062a\u0631\u0627\u062d\u0629","mar":"\u064a\u0645\u0634\u064a","may":"\u064a\u0645\u0643\u0646","medicine_bill":"\u0641\u0627\u062a\u0648\u0631\u0629 \u0627\u0644\u0637\u0628","medicine_bill_already_use":"\u0647\u0630\u0627 \u0627\u0644\u062f\u0648\u0627\u0621 \u0645\u0633\u062a\u062e\u062f\u0645 \u0628\u0627\u0644\u0641\u0639\u0644 \u0641\u064a \u0641\u0648\u0627\u062a\u064a\u0631 \u0627\u0644\u0623\u062f\u0648\u064a\u0629\u060c \u0647\u0644 \u0623\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0631\u063a\u0628\u062a\u0643 \u0641\u064a \u062d\u0630\u0641\u0647\u061f","medicine_required":"\u0645\u0637\u0644\u0648\u0628 \u0645\u062c\u0627\u0644 \u0627\u0644\u0637\u0628.","mon":"\u0645\u0648\u0646","monday":"\u0627\u0644\u0623\u062d\u062f","n\/a":"\u0644\u0627 \u064a\u0648\u062c\u062f","net_amount_not_empty":"\u0644\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0627\u0644\u0645\u0628\u0644\u063a \u0627\u0644\u0635\u0627\u0641\u064a \u0641\u0627\u0631\u063a\u064b\u0627.","net_amount_not_zero":"\u0644\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0627\u0644\u0645\u0628\u0644\u063a \u0627\u0644\u0635\u0627\u0641\u064a \u0635\u0641\u0631\u0627\u064b.","no_ipd_patient_found":"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0645\u0631\u064a\u0636 IPD","notification_read":"\u062a\u0645\u062a \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0625\u0634\u0639\u0627\u0631 \u0628\u0646\u062c\u0627\u062d.","nov":"\u0634\u0647\u0631 \u0646\u0648\u0641\u0645\u0628\u0631","oct":"\u0627\u0643\u062a\u0648\u0628\u0631","old_patient_email_exists":"\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0645\u0648\u062c\u0648\u062f \u0628\u0627\u0644\u0641\u0639\u0644\u060c \u064a\u0631\u062c\u0649 \u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0631\u064a\u0636 \u0642\u062f\u064a\u0645.","open_ai_key":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0641\u062a\u0627\u062d Openai.","paid":"\u0645\u062f\u0641\u0648\u0639","password_not_match":"\u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u0648\u062a\u0623\u0643\u064a\u062f \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u063a\u064a\u0631 \u0645\u062a\u0637\u0627\u0628\u0642\u064a\u0646.","patient_not_exists_or_status_is_not_active":"\u0627\u0644\u0645\u0631\u064a\u0636 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f \u0623\u0648 \u0627\u0644\u062d\u0627\u0644\u0629 \u063a\u064a\u0631 \u0646\u0634\u0637\u0629.","patient_required":"\u062d\u0642\u0644 \u0627\u0644\u0645\u0631\u064a\u0636 \u0645\u0637\u0644\u0648\u0628.","payment_type":"\u0627\u062e\u062a\u0631 \u0646\u0648\u0639 \u0627\u0644\u062f\u0641\u0639","paypal_client_id":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0639\u0631\u0641 \u0639\u0645\u064a\u0644 Paypal.","paypal_mode":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0648\u0636\u0639 \u0628\u0627\u064a \u0628\u0627\u0644.","paypal_secret":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0633\u0631 \u0628\u0627\u064a \u0628\u0627\u0644.","paystack_key":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0641\u062a\u0627\u062d paystack \u0627\u0644\u0639\u0627\u0645.","paystack_secret":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0641\u062a\u0627\u062d paystack \u0627\u0644\u0633\u0631\u064a.","paytm_id":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0639\u0631\u0641 \u0627\u0644\u062a\u0627\u062c\u0631 paytm.","paytm_key":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0641\u062a\u0627\u062d \u0627\u0644\u062a\u0627\u062c\u0631 paytm.","pending":"\u0642\u064a\u062f \u0627\u0644\u0627\u0646\u062a\u0638\u0627\u0631","phone_number":"\u0631\u0642\u0645 \u0627\u0644\u062a\u0644\u064a\u0641\u0648\u0646","phonepe_env":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 Phonepe Env.","phonepe_merchant_id":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0639\u0631\u0641 \u062a\u0627\u062c\u0631 Phonepe.","phonepe_merchant_transaction_id":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0639\u0631\u0641 \u0645\u0639\u0627\u0645\u0644\u0629 \u062a\u0627\u062c\u0631 Phonepe.","phonepe_merchant_user_id":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0639\u0631\u0641 \u0645\u0633\u062a\u062e\u062f\u0645 Phonepe \u0627\u0644\u062a\u0627\u062c\u0631.","phonepe_salt_index":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0624\u0634\u0631 \u0645\u0644\u062d Phonepe.","phonepe_salt_key":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 Phonepe Salt Key.","please_enter_valid_Instagram_url":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0639\u0646\u0648\u0627\u0646 URL \u0635\u0627\u0644\u062d \u0644\u0640 Instagram","please_enter_valid_facebook_url":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0639\u0646\u0648\u0627\u0646 URL \u0635\u0627\u0644\u062d \u0644\u0644\u0641\u064a\u0633\u0628\u0648\u0643","please_enter_valid_linkedin_url":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0639\u0646\u0648\u0627\u0646 URL \u0635\u0627\u0644\u062d \u0644\u0640 LinkedIn","please_enter_valid_twitter_url":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0639\u0646\u0648\u0627\u0646 URL \u0635\u0627\u0644\u062d \u0644\u062a\u0648\u064a\u062a\u0631","please_select_doctor":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0637\u0628\u064a\u0628","privacy_policy":"\u0633\u064a\u0627\u0633\u0629 \u0627\u0644\u062e\u0635\u0648\u0635\u064a\u0629","purchase_medicine":"\u0634\u0631\u0627\u0621 \u0627\u0644\u0637\u0628","qr_code_not_found":"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0631\u0645\u0632 \u0627\u0644\u0627\u0633\u062a\u062c\u0627\u0628\u0629 \u0627\u0644\u0633\u0631\u064a\u0639\u0629.","qty_cannot_be_zero":"\u0644\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0643\u0645\u064a\u0629 \u0635\u0641\u0631\u0627\u064b.","qty_must_be_less_than_available_qty":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0643\u0645\u064a\u0629 \u0623\u0642\u0644 \u0645\u0646 \u0627\u0644\u0643\u0645\u064a\u0629 \u0627\u0644\u0645\u062a\u0648\u0641\u0631\u0629.","quantity_greater_than_0":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0643\u0645\u064a\u0629 \u0623\u0643\u0628\u0631 \u0645\u0646 0.","quantity_not_empty":"\u0644\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0643\u0645\u064a\u0629 \u0635\u0641\u0631\u064b\u0627 \u0623\u0648 \u0641\u0627\u0631\u063a\u0629.","razor_pay_secret":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0633\u0631 razorpay.","razorpay_key":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0641\u062a\u0627\u062d razorpay.","sat":"\u0642\u0639\u062f","saturday":"\u0627\u0644\u0633\u0628\u062a","select_account":"\u062d\u062f\u062f \u062d\u0633\u0627\u0628","select_appointment_date":"\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u062d\u062f\u064a\u062f \u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0645\u0648\u0639\u062f.","select_bed_type":"\u062d\u062f\u062f \u0646\u0648\u0639 \u0627\u0644\u0633\u0631\u064a\u0631","select_calendar":"\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u062d\u062f\u064a\u062f \u0627\u0644\u062a\u0642\u0648\u064a\u0645.","select_category":"\u0627\u062e\u062a\u0631 \u0627\u0644\u0641\u0626\u0629","select_charge":"\u062d\u062f\u062f \u0627\u0644\u0634\u062d\u0646","select_charge_category":"\u062d\u062f\u062f \u0641\u0626\u0629 \u0627\u0644\u0634\u062d\u0646","select_charge_type":"\u062d\u062f\u062f \u0646\u0648\u0639 \u0627\u0644\u0641\u0626\u0629","select_code":"\u062d\u062f\u062f \u0627\u0644\u0631\u0645\u0632","select_doctor":"\u0627\u062e\u062a\u0631 \u062f\u0643\u062a\u0648\u0631","select_doctors":"\u0627\u062e\u062a\u0631 \u0627\u0644\u0623\u0637\u0628\u0627\u0621","select_dose_interval":"\u062d\u062f\u062f \u0627\u0644\u0641\u0627\u0635\u0644 \u0627\u0644\u0632\u0645\u0646\u064a \u0644\u0644\u062c\u0631\u0639\u0629","select_duration":"\u062d\u062f\u062f \u0627\u0644\u0645\u062f\u0629","select_employee":"\u062d\u062f\u062f \u0627\u0644\u0645\u0648\u0638\u0641","select_ipd_patient":"\u062d\u062f\u062f \u0645\u0631\u064a\u0636 IPD","select_item":"\u062d\u062f\u062f \u0627\u0644\u0639\u0646\u0635\u0631","select_medicine":"\u0627\u062e\u062a\u0631 \u0627\u0644\u0637\u0628","select_medicine_category":"\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u062d\u062f\u064a\u062f \u0641\u0626\u0629 \u0627\u0644\u062f\u0648\u0627\u0621","select_parameter_name":"\u062d\u062f\u062f \u0627\u0633\u0645 \u0627\u0644\u0645\u0639\u0644\u0645\u0629","select_patient":"\u0627\u062e\u062a\u0631 \u0627\u0644\u0645\u0631\u064a\u0636","select_service":"\u0627\u062e\u062a\u0631 \u0627\u0644\u062e\u062f\u0645\u0629","select_time_slot":"\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u062d\u062f\u064a\u062f \u0627\u0644\u0641\u062a\u0631\u0629 \u0627\u0644\u0632\u0645\u0646\u064a\u0629 \u0644\u0644\u0645\u0648\u0639\u062f.","select_type_number":"\u062d\u062f\u062f \u0631\u0642\u0645 \u0627\u0644\u0646\u0648\u0639","select_user":"\u0627\u062e\u062a\u0631 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645","send_mail":"\u0627\u0631\u0633\u0644 \u0628\u0631\u064a\u062f","sending":"\u0625\u0631\u0633\u0627\u0644...","sep":"\u0633\u0628\u062a\u0645\u0628\u0631","smart_patient_card":"\u0627\u0644\u0628\u0637\u0627\u0642\u0629 \u0627\u0644\u0630\u0643\u064a\u0629 \u0644\u0644\u0645\u0631\u064a\u0636","status":"\u062d\u0627\u0644\u0629","stripe_key":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0645\u0641\u062a\u0627\u062d \u0627\u0644\u0634\u0631\u064a\u0637.","stripe_secret":"\u0627\u0644\u0631\u062c\u0627\u0621 \u0625\u062f\u062e\u0627\u0644 \u0633\u0631 \u0627\u0644\u0634\u0631\u064a\u0637.","sun":"\u0634\u0645\u0633","sunday":"\u0627\u0644\u0623\u062d\u062f","tax_less_100":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0636\u0631\u0627\u0626\u0628 \u0623\u0642\u0644 \u0645\u0646 100%.","tax_not_empty":"\u0644\u0627 \u064a\u0645\u0643\u0646 \u0623\u0646 \u064a\u0643\u0648\u0646 \u0645\u0628\u0644\u063a \u0627\u0644\u0636\u0631\u064a\u0628\u0629 \u0635\u0641\u0631\u064b\u0627 \u0623\u0648 \u0641\u0627\u0631\u063a\u064b\u0627.","template_required":"\u062d\u0642\u0644 \u0627\u0633\u0645 \u0627\u0644\u0642\u0627\u0644\u0628 \u0645\u0637\u0644\u0648\u0628.","terms_condition_required":"\u0627\u0644\u0634\u0631\u0648\u0637 \u0648\u0627\u0644\u0623\u062d\u0643\u0627\u0645 \u0645\u0637\u0644\u0648\u0628\u0629.","terms_conditions":"\u0627\u0644\u0628\u0646\u0648\u062f \u0648 \u0627\u0644\u0638\u0631\u0648\u0641","this_month":"\u0647\u0630\u0627 \u0627\u0644\u0634\u0647\u0631","this_week":"\u0647\u0630\u0627 \u0627\u0644\u0627\u0633\u0628\u0648\u0639","thu":"\u0627\u0644\u062e\u0645\u064a\u0633","thursday":"\u064a\u0648\u0645 \u0627\u0644\u062e\u0645\u064a\u0633","to":"\u0644","today":"\u0627\u0644\u064a\u0648\u0645","too_long":"\u0637\u0648\u064a\u0644 \u062c\u062f\u0627","too_short":"\u0642\u0635\u064a\u0631 \u062c\u062f\u0627","tue":"\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621","tuesday":"\u064a\u0648\u0645 \u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621","u_want_to_complete_this_payment":"\u062a\u0631\u064a\u062f \u0625\u0643\u0645\u0627\u0644 \u0647\u0630\u0647 \u0627\u0644\u062f\u0641\u0639\u0629!","unpaid":"\u063a\u064a\u0631 \u0645\u062f\u0641\u0648\u0639\u0629 \u0627\u0644\u0623\u062c\u0631","update_quantity":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0643\u0645\u064a\u0629 \u0627\u0644\u062a\u062d\u062f\u064a\u062b \u0623\u0642\u0644 \u0645\u0646 \u0627\u0644\u0643\u0645\u064a\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629.","value_field_required":"\u062d\u0642\u0644 \u0627\u0644\u0642\u064a\u0645\u0629 \u0645\u0637\u0644\u0648\u0628.","value_must_be_greter_then":"\u064a\u062c\u0628 \u0623\u0646 \u062a\u0643\u0648\u0646 \u0627\u0644\u0642\u064a\u0645\u0629 \u0623\u0643\u0628\u0631 \u0645\u0646 1","warning":"\u062a\u062d\u0630\u064a\u0631 !","wed":"\u062a\u0632\u0648\u062c","wednesday":"\u0627\u0644\u0623\u0631\u0628\u0639\u0627\u0621","yesterday":"\u0623\u0645\u0633","your_payment_failed":"\u0641\u0634\u0644 \u0627\u0644\u062f\u0641\u0639 \u0627\u0644\u062e\u0627\u0635 \u0628\u0643.","zoom":"\u062a\u0643\u0628\u064a\u0631"},"en.js":{"about_us_description":"Description","about_us_mission":"Mission","about_us_title":"Title","active":"Active","all_notification_read":"All Notification read successfully.","all_required_fields":"Please fill all the required fields.","amount_not_zero":"Amount can not be zero.","apply":"Apply","appointment":"Appointment","appointment_cancel":"Appointment cancelled successfully.","appointment_saved":"Appointment saved successfully.","apr":"April","are_u_sure":"Are you sure?","are_you_sure_want_to_cancel":"Are you sure want to cancel","are_you_sure_want_to_change":"Are you sure want to change ","are_you_sure_want_to_delete_this":"Are you sure want to delete this ","are_you_sure_want_to_return_this_item":"Are you sure want to return this item","aug":"August","available_quantity":"Available Quantity","bill_date":"Please Select Bill Date.","break_time_greater_than_zero":"Break From time must be greater than Zero","break_to_time_greater_than_from_time":"Break To time must be greater than Break From time.","break_to_time_greater_than_zero":"Break To time must be greater than Zero","cancel":"Cancel","canceled":"Canceled","captcha_key":"Please enter Google captcha Key.","captcha_secret":"Please enter Google captcha Secret.","card_template":"Patient Smart Card Template","change_status":"Change status","changed_appointment":"Changed Appointment","charchter_160":"The message may not be greater than 160 characters.","choose_bed":"Choose Bed","choose_case":"Choose Case","completed":"Completed","currency":"Currency","custom":"Custom","date_required":"Date field is required","deactive":"Deactive","dec":"December","deduction_not_greater_than_salary":"Deductions cannot be greater than Basic salary + Allowance","deleted":"Deleted","department":"Department","disconnect_or_reconnect":"Please disconnect and reconnect your google calendar","discount_less_than_amount":"The discount should be less than the total amount.","doctor_schedule_not_available_on_this_date":"Doctor Schedule not available this date.","document_file_size":"The document must be a file of type: jpeg, jpg, png, pdf, doc, docx., mp3, mp4","document_must_be_file_type":"The document must be a file of type: jpeg, jpg, png, pdf, doc, docx.","enter_lot_no":"Enter lot number .","enter_purchase_price":"Enter purchase price.","enter_sale_price":"Enter sale price.","expiry_date":"Expiry Date","feb":"February","field_not_contain_white_space":"field is not contain only white space","field_required":"field is Required.","fill_physical_info":"Fill Any Details Of Physical information.","flutterWave_public_key":"Please enter FlutterWave Public Key.","flutterWave_secret_key":"Please enter FlutterWave secret Key.","fri":"FRI","friday":"Friday","from":"From","google_meet":"Google Meet","has_been_changed":"has been Changed.","has_been_deleted":"has been deleted.","holiday":"Holiday","home_page_box_description":"Home Page Box Description","home_page_box_title":"Home Page Box Title","home_page_certified_box_description":"Home Page Certified Box Description","home_page_certified_box_title":"Home Page Certified Box Title","home_page_certified_doctor_description":"Home Page Certified Doctor Description","home_page_certified_doctor_text":"Home Page Certified Doctor Text","home_page_certified_doctor_title":"Home Page Certified Doctor Title","home_page_description":"Home Page Description","home_page_experience":"Home Page Experience","home_page_step_1_description":"Home Page Step 1 Description","home_page_step_1_title":"Home Page Step 1 Title","home_page_step_2_description":"Home Page Step 2 Description","home_page_step_2_title":"Home Page Step 2 Title","home_page_step_3_description":"Home Page Step 3 Description","home_page_step_3_title":"Home Page Step 3 Title","home_page_step_4_description":"Home Page Step 4 Description","home_page_step_4_title":"Home Page Step 4 Title","home_page_title":"Home Page Title","hospital":"Hospital","hospital_type":"Hospital Type","image_must_be":"The image must be a file of type: jpg, jpeg, png.","invalid_country_code":"Invalid country code","invalid_number":"Invalid number","ipd_timeline":"IPD Timeline","item_returned":"Item returned successfully.","jan":"January","jul":"July","jun":"June","last_30_days":"Last 30 days","last_7_days":"Last 7 days","last_month":"Last month","lunch_break":"Break","mar":"March","may":"May","medicine_bill":"Medicine Bill","medicine_bill_already_use":"This medicine is already used in medicine bills, are you sure want to delete it?","medicine_required":"Medicine field is required.","mon":"MON","monday":"Monday","n\/a":"Not Available","net_amount_not_empty":"Net amount can not be empty.","net_amount_not_zero":"Net amount can not be zero.","no_ipd_patient_found":"No IPD Patient Found","notification_read":"Notification read successfully.","nov":"November","oct":"October","old_patient_email_exists":"Email already exists, please select old patient.","open_ai_key":"Please enter Openai Key.","paid":"Paid","password_not_match":"Password and Confirm password not match.","patient_not_exists_or_status_is_not_active":"Patient not exists or status is not active.","patient_required":"Patient field is required.","payment_type":"Choose Payment Type","paypal_client_id":"Please enter Paypal Client ID","paypal_mode":"Please enter paypal mode.","paypal_secret":"Please enter paypal secret.","paystack_key":"Please enter paystack public Key.","paystack_secret":"Please enter paystack secret Key.","paytm_id":"Please enter paytm merchant Id.","paytm_key":"Please enter paytm merchant Key.","pending":"Pending","phone_number":"Phone Number","phonepe_env":"Please enter Phonepe Env.","phonepe_merchant_id":"Please enter Phonepe Merchant Id.","phonepe_merchant_transaction_id":"Please enter Phonepe Merchant Transaction Id .","phonepe_merchant_user_id":"Please enter Phonepe Merchant User Id.","phonepe_salt_index":"Please enter Phonepe Salt Index.","phonepe_salt_key":"Please enter Phonepe Salt Key.","please_enter_valid_Instagram_url":"Please enter a valid Instagram URL","please_enter_valid_facebook_url":"Please enter a valid facebook URL","please_enter_valid_linkedin_url":"Please enter a valid LinkedIn URL","please_enter_valid_twitter_url":"Please enter a valid Twitter URL","please_select_doctor":"Please select Doctor","privacy_policy":"Privacy Policy","purchase_medicine":"Purchase Medicine","qr_code_not_found":"QR code not found.","qty_cannot_be_zero":"Quantity cannot be zero.","qty_must_be_less_than_available_qty":"Quantity must be less than Available quantity.","quantity_greater_than_0":"Quantity should be greater than 0.","quantity_not_empty":"Quantity cannot be zero or empty.","razor_pay_secret":"Please enter razorpay Secret.","razorpay_key":"Please enter razorpay key.","sat":"SAT","saturday":"Saturday","select_account":"Select Account","select_appointment_date":"Please select appointment date.","select_bed_type":"Select Bed Type","select_blood_group":"Select Blood Group","select_calendar":"Please select a calendar.","select_category":"Select Category","select_charge":"Select Charge","select_charge_category":"Select Charge Category","select_charge_type":"Select Category Type","select_code":"Select Code","select_doctor":"Select Doctor","select_doctors":"Select Doctors","select_dose_interval":"Select Dose Interval","select_duration":"Select Duration","select_employee":"Select Employee","select_ipd_patient":"Select IPD Patient","select_item":"Select Item","select_medicine":"Select Medicine","select_medicine_category":"Please Select Medication Category","select_parameter_name":"Select Parameter Name","select_patient":"Select Patient","select_service":"Select Service","select_time_slot":"Please select appointment time slot.","select_type_number":"Select Type Number","select_user":"Select User","send_mail":"Send Mail","sending":"Sending...","sep":"September","smart_patient_card":"Patient Smart Card","status":"Status","stripe_key":"Please enter Stripe key.","stripe_secret":"Please enter Stripe Secret","sun":"SUN","sunday":"Sunday","tax_less_100":"Taxes should be less than 100%.","tax_not_empty":"The tax amount can not be zero or empty.","template_required":"Template Name field is required.","terms_condition_required":"The Terms & Conditions is required.","terms_conditions":"Terms & Conditions","this_month":"This month","this_week":"This Week","thu":"THU","thursday":"Thursday","to":"To","today":"Today","too_long":"Too long","too_short":"Too short","tue":"TUE","tuesday":"Tuesday","u_want_to_complete_this_payment":"You want to complete this payment!","unpaid":"Unpaid","update_quantity":"Update quantity should be less than previous quantity.","value_field_required":"The value field is required.","value_must_be_greter_then":"Value must be greter then 1","warning":"Warning !","wed":"WED","wednesday":"Wednesday","yesterday":"Yesterday","your_payment_failed":"Your Payment is failed.","zoom":"Zoom"}}); })();