-
Notifications
You must be signed in to change notification settings - Fork 3
/
quiet
14 lines (13 loc) · 27.4 KB
/
quiet
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*!
* 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 <[email protected]>
*/
(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({"en.lang":{"01":"01 -","02":"02","03":"03","04":"04","0_proposals":"0 Proposals Received Yet","404_error":"404 Error","404_img":"404","about":"About","about_us_note":"About Us Note","acc_almost_created_note":"Almost creation of your account hasbeen completed. Verification of your account is necessary.","acc_creation_note":"Your account has been created. You can got to your dashboard page by clicking on the \"Goto Dashboard\" button.","acc_settings":"Account Settings","access_denied":"Access Denied","account_settings_saved":"Account settings saved","action":"Action","ad":"Advertisement 255px X 255px","ad_img":"Ad Image","add_cat":"Add New Category","add_dpt":"Add Department","add_lang":"Add New Language","add_location":"Add New Location","add_packages":"Add New Package","add_page":"Add Page","add_pages":"Add Page","add_review_option":"Add Review Option","add_skill":"Add New Skill","add_socials":"Add Social Icons","add_template_content":"Add your Template Content Here*","add_your_feedback":"Add Your Feedback*","add_your_team":"Would you like to add your team?","admin_detail":"Admin Details","agree_terms":"Agree Our Terms And Conditions.","all_jobs":"All Jobs","all_pages":"All Pages","all_projects":"All Projects","all_proposals":"All Proposals","almost_there":"You're Almost There","amount":"Amount","amount_note":"Total amount the client will see on your proposal","android_app_link":"Android App Link","app_sec_subtitle":"App Section Subtitle","app_sec_title":"App Section Title","apply_filter":"Click \u201cApply Filter\u201d to apply latest","attachments":"Attachments","attachments_note":"Show \u201cAttachments\u201d after hiring","awards_certifications":"Awards & Certifications","banner_desc":"Banner Description","banner_photo":"Banner Photo","banner_settings":"Banner Settings","banner_subtitle":"Banner Subtitle","banner_title":"Banner Title","banner_video_link":"Banner Video Link","basic":"Basic","btn_add":"Add","btn_apply_filters":"Apply Filters","btn_delete_account":"Delete Account","btn_gotit":"Got It","btn_load_more":"Load More","btn_login_now":"Login Now","btn_save":"Save","btn_save_update":"Save & Update","btn_send":"Send","btn_send_feedback":"Send Feedback","btn_send_offer":"Send Offer","btn_sendnow":"Send Now","btn_startnow":"Start Now","btn_submit":"Submit","by_cats":"By Categories","by_locs":"By Locations","by_skills":"By Skills","cancelled_jobs":"Cancelled Jobs","cancelled_projects":"Cancelled Projects","card_no":"Card No","cat_deleted":"Category Deleted","cat_desc":"The description is not prominent by default;\r\n however, some themes may show it.","cat_icon":"Icon","cat_updated":"Category Updated","cats":"Categories","change_pass":"Change Your Password","changes_by_you":"changes made by you","chat_message_module":"Chat Message Module","check_pkg_expiry":"Check Package Expiry","checkout":"Checkout","click_follow":"Click To Follow","click_here":"click here","click_view":"Click to view","client_feedback":"Client Feedback","commision_note":"Add default commision","commision_settings":"Commision Settings","company_banner":"Company Banner","company_desc":"Company Description","company_details":"Company Details","company_followers":"Company Followers","company_title":"Company Title","company_url":"Company URL","completed":"Completed","completed_jobs":"Completed Jobs","completed_projects":"Completed Projects","compnies_followed":"Companies you followed","confirm_pass":"Confirm Password","congrats":"Congratulations!","continue":"Continue","conversational":"Conversational","copyright_text":"Copyright Text","cover_letter":"Cover Letter","crafted_projects":"Crafted Projects","crashed_note":"Sorry, the page you are looking for might be crashed or not existed, you can go back to","create_account":"Create Account","create_page":"Create Page","create_pages":"Create Some Pages To Use This Option","curr_bal":"Current Balance","curr_hired_freelancers":"Current Hired Freelancers","curr_pkg":"Current Package","cvv_no":"CVV No.","dashboard":"Dashboard","date":"Date","delete_account":"Delete Account","desc":"The name is how it appears on your site.","description":"Description","dispute_desc":"Brief description of dispute","dispute_question":"Briefly explain, why you are raising this dispute?","dispute_raised":"Dispute Raised","download_app_img":"Download App Image","download_app_sec_settings":"Download App Section Settings","download_doc":"Click here to Download Document","dpt_deleted":"Department Deleted","dpt_updated":"Department Updated","dpts":"Departments","duration":"Duration:","duration_req":"Job duration is required","earnings":"Earnings","edit_cat":"Edit Category","edit_dpt":"Edit Department","edit_email_template":"Edit Email Template","edit_job":"Edit Job","edit_lang":"Edit Language","edit_location":"Edit Location","edit_package":"Edit Package","edit_page":"Edit Page","edit_review_options":"Edit Review Option","edit_skill":"Edit Skill","editions":"Editions","education":"Education","email_address":"Email Address","email_banner":"Email banner","email_logo":"Email Logo","email_note":"Email address for sending and receiving emails","email_notifications_note":"Your email address on which message alerts, weekly or chat messages will be delivered","email_notify":"Email Notifications","email_sender_avatar":"Email Sender Avatar","email_sender_name":"Email Sender Name","email_sender_tagline":"Email Sender Tagline","email_sender_url":"Email Sender URL","email_settings":"Email Settings","email_settings_saved":"Email settings saved","email_template_updated":"Email Template Updated","email_templates":"Email Templates","employer_detail":"Employer Details","employers":"Employers","enabale_disable_pvt_chat":"Enable\/Disbale Private Quick Chat","enable_trial":"Enable Trial Package","english_level":"English Level","english_level_note":"Choose your english level","english_level_req":"English level is required","enter_code":"Enter Verification Code","enter_department":"Enter Your Department","enter_latitude":"Enter Latitude (Optional)","enter_logitude":"Enter Longitude (Optional)","experience":"Experience","experience_education":"Experience & Education","expiry_month":"Expiry Month","expiry_year":"Expiry Year","explore":"Explore","explore_cats":"Explore Categories","expriry_date":"Expiry Date","fee_deduction":"Service Fee deduction","feedback_submit":"Feedback Submitted","feedbacks":"Feedbacks","file_size":"File size: 300 kb","files_attached":"file(s) attached","flag_img":"Flag","fluent":"Fluent","followed_companies":"Followed Companies","following":"Following","footer_logo":"Footer Logo","footer_menu":"Footer Main Menu","footer_menu_1":"Footer Menu 1","footer_menu_2":"Footer Menu 2","footer_menu_note":"Select pages to be displayed in the footer menu","footer_settings":"Footer Settings","forget_pass":"Forgot password?","freelancer_desc":"Freelancer Description","freelancer_level_req":"Freelancer level is required","freelancer_title":"Freelancer Title","freelancer_type":"Freelancer Type","freelancer_url":"Freelancer URL","freelancers":"Freelancers","freelancers_liked":"Freelancers you liked","from":"From","from_email_id":"From : Email ID\/Address","from_email_name":"From Email Name","full_profile":"Full Profile","gateway_note":"Paypal Payment Gateway","general_settings":"General Settings","get_handy":"To Get It Handy.","go_home":"Go Back to Home","goto_dashboard":"Goto Dashboard","grand_total":"Grand Total:","gross_amnt":"Gross Amount","handling_amnt":"Handling Amount","have_account":"Already Have an Account?","hire_now":"Hire Now","hired":"Hired","hired_freelancer_note":"You\u2019re Late: We\u2019re sorry but the job you want to apply is no longer\r\n available for public\/freelancers anymore.","hired_freelancers":"Hired Freelancers","home":"Home","home_banner_bg":"Home banner - background image","home_banner_inner_bg":"Home banner - Inner image","home_page_settings":"Home Page Settings","homepage":"HomePage","hourly_rate":"Hourly Rate","icon":"Icon","img":"image","insurance_amnt":"Insurance Amount","invalid_verify_code":"Verification Code is invalid","invoice_id":"Invoice ID","invoices":"Invocies","ios_app_link":"IOS App Link","is_featured":"Featured","issue_date":"Issue Date","item_title":"Item Title","job_cancelled":"your job is cancelled.","job_cats":"Job Categories","job_cost":"Job Cost","job_desc":"Job Description","job_detail":"Job Detail","job_dtl":"Job Details","job_dtl_note":"Add Job Detail Here","job_id":"Job ID:","job_note":"Number of connects per job proposal","job_proposal":"Job Proposal","job_proposals":"Job Proposals","job_title":"Job Title","job_title_req":"Job title is required","job_type":"Job Type","jobs":"Jobs","jobs_you_saved":"Jobs you saved","join_for_free":"Join Now For FREE","join_for_good":"Join For a Good Start","join_for_good_reason":"Join for good reasons and benefit yourself!","join_now":"Join Now","lang_deleted":"Language Deleted","lang_note":"Select your language","lang_updated":"Language Updated","langs":"Languages","latest_jobs":"Latest Jobs","level_1":"Level 1","liked_freelancers":"Liked Freelancers","link_crashed":"Link Might Crashed or Not Working!","location":"Location","location_deleted":"Location Deleted","location_img":"Location Image","location_title":"Location title is required","location_updated":"Location Updated","locations":"Locations","login":"Login","logout":"Logout","manage_account":"Manage Account","manage_email_notifications":"Manage Email Notifications","manage_job":"Manage Jobs","member_since":"Member since","memo":"Memo","menu_title":"Menu Title","message_alerts":"Get chat messages on this email","msg_center":"Message Center","msg_sent":"Message sent successfully","msgs":"Messages","my_skills":"My Skills","name":"Name","native":"Native Or Bilingual","need_help":"Need help?","net_amnt":"Net Amount","new_msgs":"New Messages","no_access":"You Have No Permission to Access This Page","no_edu":"No education to show.","no_exp":"No experience to show.","no_feedback":"No Feedbacks To Show.","no_followers":"No Followers","no_freelancers":"No, Freelancer Hired Yet!","no_freelancers_hired":"You haven't hired any freelancers yet.","no_jobs_posted":"No jobs posted Yet.","no_liked_freelancer":"Sorry, No Saved Freelancers Found","no_of_connects":"No. of Connects","no_of_employee":"No. Of Emplyee","no_of_employees":"No. of employees you have","no_of_featuredjobs":"No. of Feautured Jobs","no_of_jobs":"No. of Jobs","no_of_skills":"No. of Skills","no_ongoing_project":"No ongoing projects yet!","no_permission":"No Permission","no_pkg_found":"Sorry, No Packages Found","no_projects":"No projects to show.","no_record":"No Record Found","no_records_found":"Sorry, No Record Found","no_saved_employers":"Sorry, No Saved Employers Found","no_saved_jobs":"Sorry, No Saved Jobs Found","no_skills":"No Skills Found","not_allowed_msg":"Sorry you are not allowed to send message.","not_send_offer":"Sorry, you cannot send the offer.","offer_sent":"Offer Sent Successfully","ongoing_jobs":"Ongoing Jobs","ongoing_project":"Ongoing Projects","ongoing_projects":"Ongoing Projects","open_jobs":"Open Jobs","orders":"Orders","package":"Package","packages":"Packages","page_created":"Page Created","page_deleted":"Page Deleted","page_updated":"Page Updated","pages":"Pages","paid_by":"Paid By","parent_desc":"Location parents","pass":"Password","pass_changed":"Password changed successfully","pass_not_match":"Old Password does not match","past_earnings":"Past Earnings","pay_amount_via":"Pay Amount Via","pay_detl":"Payment Details","pay_project":"Pay Project Payment","pay_rec":"Payment Received","pay_sender_note":"The sender of this payment is","pay_status":"Payment Status","payment_settings":"Payment Settings","payout_id":"Payout ID","payout_note":"Add your payout ID here, this would be useful in case of refund","paypal":"Paypal","paypal_fee":"PayPal Fee","paypal_note":"Go to the Resolution Center for help with the transaction, to settle a dispute\r\n or to open a claim.","paypal_settings":"Paypal Settings","paypal_warning_note":"Payment without a shipping address are not covered by PayPals seller protection policies and programs","pending_bal":"Pending Balance","per_hour":"\/ hr","personal_detail":"Personal Details & Skills","ph_add_desc":"Add Description","ph_add_tagline":"Add Your Tagline Here","ph_cat_delete_message":"Category Deleted!","ph_cat_title":"Category Title","ph_confirm_pass":"Confirm Password","ph_cover_letter":"Cover Letter","ph_delete_confirm_title":"Are you sure ?","ph_delete_title":"Success","ph_desc":"Description","ph_desc_optional":"Description (Optional)","ph_dpt_delete_message":"Department Deleted!","ph_dpt_title":"Department Title","ph_email":"Email","ph_enter_latitude":"Enter Latitude (Optional)","ph_enter_logitude":"Enter Longitude (Optional)","ph_enter_pass":"Enter Password","ph_first_name":"First Name","ph_job_completion_time":"Add completion Time","ph_lang_delete_message":"Language Deleted!","ph_lang_title":"Language Title","ph_last_name":"Last Name","ph_location_delete_message":"Location Deleted!","ph_location_title":"Location Title","ph_oldpass":"Old Password","ph_page_title":"Page Title","ph_parent_category_title":"Select Parent Category","ph_pass":"Password","ph_payout_id":"Payout ID","ph_paypal_id":"Paypal ID","ph_paypal_pass":"Paypal Password","ph_paypal_secret":"Paypal Secret Key","ph_pkg_price":"Price","ph_pkg_subtitle":"Package SubTitle","ph_pkg_title":"Package Title","ph_proposal_amount":"Enter Your Proposal Amount:","ph_reasons":"Reasons","ph_retry_pass":"Retry Password","ph_retype_pass":"Retype Password","ph_review_option_title":"Review Option Title","ph_sales_tax":"Sales Tax","ph_search_cats":"Search Categories","ph_search_dpts":"Search Departments","ph_search_freelancer":"Search Freelancer","ph_search_help":"Searching Might Help","ph_search_langs":"Search Languages","ph_search_locations":"Search Locations","ph_search_packages":"Search Packages","ph_search_rate":"Search Rate","ph_search_skills":"Search Skills","ph_search_templates":"Search Email Templates","ph_select_gender":"Select Gender","ph_select_location":"Select Location","ph_select_projects":"Select Projects","ph_service_hoyrly_rate":"Your Service Hourly Rate ($)","ph_skill_delete_message":"Skill Deleted!","ph_skill_title":"Skill Title","ph_type_msg":"Type your message here","ph_your_address":"Your Address","pkg_inv":"Package Invoices","post_job":"Post a Job","posted_jobs":"Posted Jobs","previous":"Previous","print":"Print","pro_info":"Professional Info","product_name":"Product Name","product_price":"Price","product_qty":"Quantity","product_subtotal":"Subtotal","professional":"Professional","professional_by_cats":"Professional by categories","profile_banner":"Profile Banner","profile_img":"Profile Image","profile_photo":"Profile Photo","profile_public":"Make my profile public","profile_searchable":"Make profile Searchable","profile_settings":"Profile Settings","project_awards":"Projects & Awards","project_completed":"Project Completed","project_cost":"Project cost","project_history":"Project History","project_inv":"Project Invoices","project_length":"Project Length","project_level_req":"Project level is required","project_title":"Project Title","project_type":"Project Type","proposal_amount":"Proposal Amount","proposals":"Proposals","purchase_date":"Purchase Date","purchase_total":"Purchase Total","raise_dispute":"Raise a dispute","raise_dispute_text":"Raise a Dispute against","reason":"Reason","reason_for_dispute":"Please select a reason for creating dispute","received_proposals":"Received Proposals","receiving_amount":"Amount You\u2019ll Recive after","record_not_found":"Record Not Found","register_email_name_error":"Email is required","register_first_name_error":"First name is required","register_last_name_error":"Last name is required","register_location_error":"Location field is required","register_password_confirmation_error":"Password confirmation field is required","register_password_error":"Password field is required","register_termsconditions_error":"Please accept the term and conditions","remember":"Remember Me","report_employer":"Report This Employer","report_job":"Report This Job","report_submitted":"Report Submitted","report_user":"Report This User","reset_pass":"Reset Password","review_options":"Review Options","role":"Role","sales_tax":"Sales Tax","save":"Save","save_category":"Category saved successfully","save_changes_note":"Save all the latest changes made by you","save_department":"Department saved successfully","save_language":"Language saved successfully","save_location":"Location saved successfully","save_skills":"Skills saved successfully","saved":"Saved","saved_items":"My Saved Items","saved_jobs":"Saved Jobs","scan_with_smartphone":"Scan with your","search_company":"Search Company","search_loc":"Search Location","search_note":"If searchable option will be enabled then your profile will not show in the\r\n search result but your profile detail will be visible publically. To hide your\r\n profile all over the site you can disable your profile temporarily","search_now":"Search Now","search_results":"Search Result","sec_bg_img":"background image","sections":"Sections","select_duration":"Select Duration","select_english_level":"Select English Level","select_freelancer_level":"Select Freelancer Level","select_job_cats":"Select Job Categories","select_job_duration":"Select Job Duration","select_lang":"Select Language","select_location":"Select Location","select_locations":"Select Locations","select_pages":"Select Pages","select_pay_method":"Select Payment Method","select_project_level":"Select Project Level","select_reason":"Select Reason","select_status":"Select Status","select_users":"Select Users","send_offer":"Sending Offer","send_offer_note":"Send Offer to this freelancer by clicking on the button","send_pass_reset_link":"Send Password Reset Link","send_propsal":"Send Proposal","sending_msg":"Sending Message","served_hours":"Served Hours","service_fee":"ServiceFee","settings":"Settings","share_fb":"Share on Facebook","share_google":"Share on Google Plus","share_job":"Share This Job","share_linkedin":"Share on Linkedin","share_twitter":"Share on Twitter","shiping_amnt":"Shipping Amount","show_banner_opt":"Show Banner Options","signup_as_country":"Signup as company\/service seeker & post jobs.","signup_as_freelancer":"Signup as freelancer & get hired","site_logo":"Site Logo","site_title":"Site Title","skill_deleted":"Skill Deleted","skill_updated":"Skill Updated","skills":"Skills","skills_req":"Skills Required","slug":"Slug","smartphone":"Smart Phone","something_wrong":"Something went wrong!","sorry":"Sorry:","start_adding":"Start Adding Now","start_as":"Start As","start_as_sec":"Start As Section","start_search":"Start Your Search","subject":"Subject","sumbit_proposals":"Submit Proposals","taxes":"Taxes","thanks_note":"Thank you for purchase article","thanks_subscription":"Thank you for subscription","thankyou":"Thank You","title":"Title","total_cancelled_jobs":"Total Cancelled Jobs","total_completed_jobs":"Total Completed Jobs","total_earnings":"Total Earnings","total_ongoing_jobs":"Total Ongoing Jobs","transaction":"Transaction","transaction_detl":"Transaction Details","transaction_id":"Transaction ID","type":"Type","update_cat":"Update Category","update_dpt":"Update Department","update_email_template":"Update Email Template","update_lang":"Update Language","update_location":"Update Location","update_package":"Update Package","update_page":"Update Page","update_profile":"Profile update successfully","update_review_options":"Update Review Option","update_skill":"Update Skill","upload_file":"Upload File (Optional)","user_avatar":"User Avatar","verification_code_img":"Verification Code","verified_company":"Verified Company","verify_code":"Verification Code is required","verify_code_note":"We\u2019ve sent verification code on your email.","video_desc":"Banner Video Description","video_note":"Please Provide a Valid Video URL, Youtube link is preffered","video_title":"Banner Video Title","view_all":"View All","view_detail":"View Details","view_invoice":"View Invoice","view_job":"View Job","view_proposals":"View Proposals","view_saved_items":"View Saved Items","weekly_alerts":"Get your weekly alerts on this email","why_need_code":"Why I need code?","worketic":"Worketic","your_address":"Your Address","your_department":"Your Department?","your_details":"Your Details","your_loc":"Your Location","5":"5"}});
})();