File: /var/www/vhost/disk-apps/comfama.sports-crowd.com/public/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({"en.experiences":{"default_buttons":{"back":"\u2190 Back"},"monitor":{"datatables":{"columns":{"actions":"Actions","birthdate":"Birth Date","document":"Document","experience":"Experience","experience_plan":"Plan","guardian_document":"Guardian\u2019s Document","guardian_email":"Guardian\u2019s Email","guardian_name":"Guardian\u2019s Name","guardian_phone":"Guardian\u2019s Phone","name":"Student","payment_date":"Registration Date","payment_identifier":"Payment ID","payment_reference":"Payment Reference","payment_state":"Payment Status","payment_total":"Total Payment","payment_transaction":"Payment Transaction"}},"export_data":"Export Data","filter_experiences":"Experiences","filter_payment_end_date":"Payment End Date","filter_payment_start_date":"Payment Start Date","filter_state":"Payment Status","filters":"Filters","placeholder_date":"Select Date","placeholder_select":"Type the name","title":"Monitor Experiences"},"plan_prices":{"create":"Create","datatables":{"actions":{"delete":"Delete","edit":"Edit"},"columns":{"actions":"Actions","created_at":"Creation Date","description":"Description","duration":"Duration (days)","price":"Price"}},"edit":"Edit","labels":{"optional":"Optional"},"messages":{"create_error":"An error occurred while creating the experience plan price","create_question":"Do you want to create the plan price for the experience?","create_success":"The experience plan price has been successfully created","delete_question":"Do you want to delete the plan price for the experience?","edit_question":"Do you want to edit the plan price for the experience?","edit_success":"The experience plan price has been successfully updated","generic_error":"An error occurred","validation_error":"Ensure the form is correctly filled out"},"title":"Prices"},"plans":{"create":"Create","datatables":{"actions":{"delete":"Delete","edit":"Edit"},"columns":{"actions":"Actions","created_at":"Creation Date","description":"Description","name":"Name","type":"Type"}},"edit":"Edit","labels":{"optional":"Optional"},"messages":{"create_error":"An error occurred while creating the experience plan","create_question":"Do you want to create the plan for the experience?","create_success":"The experience plan has been successfully created","delete_question":"Do you want to delete the experience plan?","edit_question":"Do you want to edit the experience plan?","edit_success":"The experience plan has been successfully updated","generic_error":"An error occurred","validation_error":"Ensure the form is correctly filled out"},"title":"Plans"},"settings":{"create":"Create","datatables":{"actions":{"delete":"Delete","edit":"Edit"},"columns":{"actions":"Actions","active":"Active","apply_to":"Apply To","created_at":"Creation Date","description":"Description","experience_type":"Experience Type","icon":"Icon","includes":"Includes","name":"Experience","short_description":"Short Description","when":"When"}},"edit":"Edit","labels":{"optional":"Optional"},"messages":{"create_error":"An error occurred while creating the experience","create_question":"Do you want to create the experience?","create_success":"The experience has been successfully created","delete_question":"Do you want to delete the experience?","edit_question":"Do you want to edit the experience?","edit_success":"The experience has been successfully updated","generic_error":"An error occurred","validation_error":"Ensure the form is correctly filled out"},"title":"Experience Settings"}},"en.memberships":{"datatables":{"actions":{"delete":"Delete","edit":"Edit","validate":"Validate"},"columns":{"actions":"Actions","active":"Active membership","billing_interval":"Billing Interval","description":"Description","document":"Document","end_date":"End Date","membership":"Membership","membership_status":"Membership Status","name":"Name","payment_reference":"Payment Reference","payment_status":"Payment Status","payment_transaction_id":"Payment Transaction ID","price":"Price","start_date":"Start Date","user":"User"}},"defaults":{"billing_interval":"Choose an option","daily":"Daily","monthly":"Monthly","no":"No","weekly":"Weekly","yearly":"Yearly","yes":"Yes"},"labels":{"action":"Action:","billing_interval":"Billing Interval:","conditions":"Conditions:","deliverable":"Apply delivery:","description":"Description:","name":"Name","price":"Price:","tags":"Tags:","terms_and_conditions":"Document URL","terms_confirm":"Confirm text","terms_text":"Terms text:"},"messages":{"create_success":"Membership has been created successfully","edit_success":"Membership has been updated successfully","generic_error":"An error has occurred","validation_error":"Please check the form for errors","validation_success":"Membership payment has been validated successfully"},"texts":{"create":"Create","edit":"Edit","memberships":"Memberships"}},"en.messages":{" modal_info_admin_tag11":"Ok"," screen_add_deliveryMan_tag12":"Confirm password"," screen_admin_tag1":"Administrators"," screen_points_tag7":"Point modified successfully!"," subcategories_controller_tag1":"Created a subcategory"," subcategories_controller_tag9":"Activated\/Deactivated a category","Academy":"Academy","Administrators":"Administrators","App Publications":"App Publications","App Validations":"App Validations","April":"April","Associated companies":"Associated companies","Attributes":"Attributes","August":"August","B.Users":"B.Users","BI":"BI","Banners":"Banners","Bookcase Embed":"MagazineDIM","Branches":"Branches","Brands":"Brands","Bulk Ticketing":"Bulk Ticketing","Business Directory":"Business Directory","Business line":"Business line","Businesses":"Businesses","Catalog":"Catalog","Categories":"Categories","Changelogs":"Changelogs","Chats":"Chats","Comments":"Comments","Commerce Coins":"Commerce Coins","Communications":"Communications","Configuration":"Configuration","Counter":"Online payments","Coupons":"Coupons","Coverages":"Coverages","Create order":"Create order","Credit Coins":"Credit Coins","Custom Payment Message\/Email":"Custom Payment Message\/Email","Customer Service":"Customer Service","Customers":"Customers","Data Manager":"Data Manager","December":"December","Discounts":"Discounts","Document management":"Document management","Doors":"Doors","Dorsal":"Dorsal","Events":"Events","Facebook":"Facebook","February":"February","Field Values":"Values","Fields":"Fields","Flash Sale":"Flash Sale","Flash Tickets":"Flash Tickets","Forms":"Forms","Gana Users":"Gana Users","Grandstands":"Grandstands","Home":"Home","Home Banners":"Home Banners","ID":"IDs","Instagram Photos":"Instagram Photos","Integrations":"Integrations","Internal Reports":"Internal Reports","Internal Ticket Office":"Internal Ticket Office","Inventory":"Inventory","Inventory adjustments":"Inventory adjustments","January":"January","July":"July","June":"June","Manual Lists":"Manual Lists","Map":"Map","March":"March","Master Data":"Master Data","Match Tickets":"Match Tickets","Matches":"Matches","May":"May","Messengers":"Messengers","Monitor":"Monitor","Notifications":"Notifications","November":"November","October":"October","Order list":"Order list","Orders":"Orders","Organizers":"Organizers","Other Roles":"Other Roles","Parameters":"Parameters","Payment gateway":"Payment gateway","Payment methods":"Payment methods","Payments":"Payments","Pending Coverages":"Pending Coverages","Planning":"Planning","Players":"Players","Points":"Points","Popup":"Banner Advertising","Positions":"Positions","Products":"Products","Publications":"Publications","Radio Embed":"Podcast Episodes","Ref. wompi":"Ref. Payment gateway","Reports":"Reports","Results":"Results","Route simulation":"Route simulation","Sales":"Sales","Sales channel":"Sales channel","Sections":"Sections","Segmentation":"Segmentation","September":"September","Sms notifications":"Sms notifications","Stadium":"Stadium","State flow":"State flow","Statistics":"Statistics","Stock":"Stock","Subcategories":"Subcategories","Subscribers List":"Subscribers List","Suggestion box":"Suggestion box","Surveys":"Surveys","Symbolic ticket":"ID","Tags":"Tags","Team statistics":"Team statistics","Teams":"Teams","Ticket Backups":"Ticket Backups","Ticket Office":"Ticket Office","Ticketing Earn":"Ticketing Earn","Tickets":"Tickets","Tiktok Video":"TikTok Videos","Tournaments":"Tournaments","Treasury Reports":"Treasury Reports","Twitter":"Twitter","Units of measure":"Units of measure","Users":"Users","Video feed":"List of videos","Wallet":"Wallet","Welcome Logo":"Welcome Image","Youtube Video":"Youtube Videos","Zones":"Grandstands","_subscribers":{"is_credit":"Credit","payment":"Purchased","title_1":"Subscribers","title_2":"Document","title_3":"Mail","title_4":"Chair","title_5":"Price","title_6":"Row","title_7":"Tribune","title_8":"Sector"},"academyBriefCase":{"month":{"December":"December","april":"April","august":"August","february":"February","january":"January","july":"July","june":"June","march":"March","may":"May","november":"November","october":"October","september":"September"},"tag-1":"Student first names","tag-2":"Student last names","tag-21":"total","tag-22":"Pay registration","tag-3":"Student document","tag-4":"Process status","tag-5":"Student headquarters","tag-6":"Category","tag-7":"Coach(s)"},"academy_attendances":{"assistance_status":"Attendance Status","campus":"Headquarters","from_date":"Start Date","tag0":"Actions","tag1-1":"Student names","tag1-2":"Student surnames","tag1-3":"Student document","tag1-4":"Academy headquarters","tag1-5":"Student category","tag2":"Attendance date","tag3":"Registration time","tag4":"Comment","tag5":"Attendance reviewer","tag6":"HeadquartersStudent Category","tag7":"Registration Date","tag8":"Assistance Status","title_export_all":"Export attendances","title_list":"Attendances","to_date":"End Date"},"academy_attendances_module":"Attendances","academy_categories":"Categories","academy_categories_labels":{"cost_center":"Cost center","created_at":"Registration date","pension_service_item_code":"Pension service item code","registration_service_item_code":"Service item code enrollment","tag0":"Active","tag00":"Actions","tag1":"Name","tag2":"Registration value","tag3":"Monthly payment value","tag4":"Headquarters","tag5":"Display in","title_create":"Create","title_edit":"Edit","title_list":"Categories"},"academy_categories_show_in":{"all":"all","app":"app","web":"web"},"academy_coaches":{"tag0":"Active","tag00":"Actions","tag1":"First name","tag2":"Last name","tag3":"Email","tag4":"Phone","tag5":"No. document","tag6-1":"Assigned time(s)","tag6-2":"Assigned categories(s)","tag6-3":"Assigned location(s)","tag7":"Password","tag8":"Confirm password","tag9":"Registration date","title_create":"Create","title_edit":"Edit","title_export_all":"Export coaches","title_list":"Coaches"},"academy_coaches_module":"Coaches","academy_configurations":"Academy Config.","academy_discounts":{"adult":"Adults","children":"Children","created_at":"Registration date","tag0":"Active","tag00":"Actions","tag1":"Name","tag2":"Discount(%)","tag3":"Applies for payments of","tag4":"View in","title_create":"Create","title_edit":"Edit","title_list":"Discounts","type_academy":"Type of academy"},"academy_discounts_module":"Discounts","academy_document":{"all":"Both","app_certificate":"APP Certificate","created_at":"Registration date","external_form_exclusive":"Exclusive for signing documents","external_form_id":"External form identifier\/name","external_form_link":"External form link\/iframe","external_form_title":"External form parameters","juridic_person":"Legal person","natural_person":"Natural person","only_attempt":"Restrict only one attempt to sign document","single_attempt_alert":"Alert message for restricting only one attempt to sign document","tag1":"Document management","tag10":"Activate document","tag11":"Edit","tag12":"Deleted or non-existent document","tag2":"Name","tag3":"Document or template","tag4":"Required document","tag5":"Order","tag6":"Attach document or template, type (xlsx, csv, docx, pdf) (optional)","tag7":"Create document","tag8":"Registration date","tag9":"Actions","title":"Create","type_person":"Type of person"},"academy_locations":{"adult":"Adults","children":"Children","created_at":"Registration date","operation_center":"Operation center","price_list":"Price list","tag0":"Active","tag00":"Actions","tag1":"Name","tag2":"Capacity","tag3":"Address","tag4":"Gateway","title_create":"Create","title_edit":"Edit","title_list":"Locations","type_academy":"Type of academy"},"academy_locations_module":"Locations","academy_logs":{"filters":"Filters","tag0":"Actions","tag1":"Operation Description","tag2":"Data","tag3":"Task","tag4":"Module","tag5-1":"Names of person in charge","tag5-2":"Last name of person in charge","tag5-3":"Email of person in charge","tag6":"Date","tag6-1":"Start date","tag6-2":"End date","title_export_all":"Export logs","title_list":"Log academies"},"academy_logs_module":"Log","academy_news":{"backout":"Retirement","create_date":"Request date","create_date_max":"Final request date","create_date_min":"Initial request date","end_date":"End date","file":"Document","finished":"Completed","freezing":"Freeze","in_progress":"In process","init_date":"Start date","medical_disability":"Disability","pending":"Requested","reason":"Reason","receiver":"Recipient","request_certificate":"Request certificate","status":"Status","title_list":"News","type_new":"Type"},"academy_parameters":"Parameters","academy_parameters_labels":{"academy_categories":"Academy Categories","academy_places":"Academy Locations","address":"Address","app":"Application","app_components":"Mobile App Components","application_texts":"Texts","blood_type":"Blood Types","change_status_title":"Change Status","city_text":"City\/Municipality Field Text","confirm_revision_title":"Confirm Review","days_collection_advance_payments":"Days to Collect Advance Payments","department_text":"Department\/Province Field Text","documents_sign":"Document Signing","documents_sign_alert_text":"Document Signing Confirmation Text","documents_sign_button_text":"Document Signing Button Text","documents_sign_title":"Document Signing Title","documents_upload":"Document Upload","documents_upload_alert_text":"Document Upload Confirmation Text","documents_upload_button_text":"Document Upload Button Text","documents_upload_title":"Document Upload Title","enable_attach_support_button":"Enable Attach Payment Support Button","enable_collection_advance_payments":"Enable Collection of Advance Payments","enable_first_month_renewal_payment_for_children":"Enable First Month Payment Collection for Renewal of Children","enable_franchises":"Enable Franchises","enable_modify_payment_button":"Enable Modify Payment Button","enable_registration_renewal":"Enable Enrollment Renewal","enable_send_email_registration_renewal":"Enable Sending Enrollment Renewal Email","enrollment":"Pre-enrollment","enrollment_alert_text":"Pre-enrollment Confirmation Text","enrollment_button_text":"Pre-enrollment Button Text","enrollment_form_fields":"Pre-enrollment Form Fields","enrollment_title":"Pre-enrollment Title","full_enrollment":"Enrollment","full_enrollment_alert_text":"Enrollment Confirmation Text","full_enrollment_button_text":"Enrollment Button Text","full_enrollment_form_fields":"Enrollment Form Fields","full_enrollment_title":"Enrollment Title","help_information_contact":"Contact Information Text","help_information_responsable":"Responsible Information Text","inscription_value":"Enrollment Value","last_inscription_year":"Last Enrollment Year","master_data":"Master Data","maximum_payment_day_month":"Maximum Payment Day of the Month","medical_certificate_app":"Medical Certificate App","monthly_payment":"Monthly Payment","nit_text":"NIT Field Text","notification_texts":"Notifications","notification_texts_active_service":"Active Services","notification_texts_last_notification":"Last Notification","notification_texts_message":"Message","notification_texts_periodicity":"Periodicity","notify_payment_due_title":"Overdue Payment Message","notify_payment_enable_title":"Payment Activation Notification Message","notify_payment_pending_enrollment_title":"Pending Enrollment Payment Message","notify_payment_soon_due_days":"Days Before Informing About Upcoming Payments","notify_payment_soon_due_title":"Upcoming Payment Message","occupation":"Occupation","params":"Parameters\/Permissions","payment_activation_notification_schedule":"Payment Notification Sending Schedule","registration_end_date":"Registration End Date","registration_start_date":"Registration Start Date","relationship":"Relationship","school_grades":"School Grades","students_without_payments_title":"Students Without Scheduled Payments Message","success_save_parameters":"Parameters Successfully Saved","system":"System (WEB\/APP)","system_master_data":"Master Data","system_texts":"Texts\/Notifications","terms":"Terms and Conditions","terms_and_conditions_text":"Terms and Conditions Text","terms_and_conditions_title":"Terms and Conditions","title":"Academy Parameters","tshirt_sizes":"Uniform Sizes","uniform_types":"Uniform Types","view_terms":"View Document"},"academy_payments":{"buttonCancel":"Cancel","buttonOk":"Save changes","buttonTemplate":"Download template","detailProgramming":"This option will modify the future scheduling of PENDING monthly payments","import_error":"Error importing payments","import_successfully":"Successful import","noteTemplate":"Note: Remember that within the import file the \"Code\" column must not be modified; In addition, the \"Active\" column is used to activate or not the payments to the user in the APP (1: activate or 0: deactivate).","tag10":"Payment status","tag11":"Payment comment","tag12":"Pin","tag13":"Payment date","tag14":"Payment time","tag15":"Attach payment receipt (optional)","tag16":"Payment receipt","tag17-1":"Price discount","tag17-2":"Percentage discount (%)","tag18-1":"Subtotal","tag18-2":"Service charge","tag18-3":"Total price","tag19":"FREE","tag20":"Active payment","tag21":"Future payment day","tag22":"Payment activation date","tag23":"Payment due date","tag24":"Payment method","tag4":"Payment type","tag5":"Price to pay","tag6":"Period","tag7":"Beginning of period","tag8":"End of period","tag9-1":"Payment reference","tag9-2":"Payment ID","title":"Payments","titleEdit":"Modify payments","titlePay":"Upload Payment","titleProgramming":"Modify programming","updated_successfully":"Payment updated successfully"},"academy_periods":{"default":"Default","service_item_code":"Service item code","tag0":"Actions","tag1":"Name","tag10":"Payment end month","tag2":"Periodicity (# months)","tag3":"Discount","tag5":"Active","tag6":"Payment start month","tag7":"How many days before the start of the period should the payment button be enabled?","tag8":"Payment enablement days","tag9":"Payment end month","title_create":"Create","title_edit":"Edit","title_list":"Periods"},"academy_periods_module":"Periods","academy_purchases":{"filters":"Filters","gateway_payments":"Payment gateway","payment_method":"Payment method","placeholder_date":"Select date","placeholder_select":"Enter name","tag0":"Actions","tag1-1":"Student names","tag1-2":"Student last names","tag1-3":"Student document","tag1-4":"Student headquarters","tag1-5":"Student category","tag1-6":"Student schedule","tag1-7":"Coach(s)","tag1-8":"Process status","tag10-1":"Payment reference","tag10-2":"Payment ID","tag11":"Payment status","tag12":"Payment comment","tag13":"Payment support","tag14":"Payment date","tag14-1":"Payment start date","tag14-2":"Payment end date","tag15":"Modify payment schedule","tag16":"Error modifying payment schedule, the student has not yet paid the registration fee","tag17":"Student without making a monthly payment","tag18":"The student already registers payment in the monthly fee","tag19":"I selected the period to schedule","tag2-1":"App user names","tag2-2":"App user email","tag20":"Accept","tag21":"New payment schedule registered","tag22":"Error modifying payment schedule","tag3-1":"Names of person in charge","tag3-2":"Last name of person in charge","tag3-3":"Document of person in charge","tag4":"Segmentation","tag4-1":"Payment due","tag5":"Payment type","tag6-1":"Period","tag6-2":"Beginning of period","tag6-3":"End of period","tag6-4":"Payment activation date","tag6-5":"Payment due date","tag7":"Price to pay","tag8-1":"Price discount","tag8-2":"Percentage discount (%)","tag9-1":"Subtotal","tag9-2":"Service charge","tag9-3":"Total price","title_export_all":"Export payments","title_filter":"Confirmed payments","title_list":"Payments","validate_payments":"Validate payments"},"academy_renewal":{"actions":"Actions","created_at":"Date creation","document":"Document","end_date":"End date","filter_document":"Filter document","filters":"Filters","init_date":"Start date","link":"Link","placeholder_date":"Select date","placeholder_select":"Enter name","student_identification":"Student document","student_lastname":"Student last name","student_name":"Student first name","title":"Document repository","title_export_all":"Export data"},"academy_reports":{"title_1":"Reports","title_2":"Student names","title_3":"Document","title_4":"Period","title_5":"Administrator name","title_6":"The student currently has non sports report to date","title_7":"Close"},"academy_schedules":{"export":"Export","help_current_capacity":"This field shows the current capacity of the schedule and is automatically updated when a new child registers\/pays registration for the academy. NOTE: If it is the first time the schedule is created, it must be equal to the total capacity.","select":"Select","tag0":"Active","tag00":"Actions","tag1":"Name","tag2":"Total capacity","tag3":"Current capacity","tag4":"Category(s)","tag5":"Coach(s)","tag6":"Coach(s) email","tag7":"Coach(s)","tag8":"Location","tag9":"Registration date","title_create":"Create","title_edit":"Edit","title_list":"Schedules"},"academy_schedules_controller":{"without_schedules":"There are no schedules available","without_slots":"Currently, there are no slots available for the schedule \":schedule\" selected for the student. Do you want to perform any action?"},"academy_schedules_module":"Schedules","academy_states":{"condition_next_state":"Next state condition","condition_previous_state":"Previous state condition","created_at":"Registration date","tag0":"Actions","tag1":"Name","tag2":"Color","tag3":"Confirmation required","tag5":"Active","tag7":"Components visible in the APP","tag9":"Validate registration\/monthly payments","title_create":"Create state","title_edit":"Edit state","title_list":"State flow"},"academy_tournament_payments":{"filter_created_end_date":"Payment creation end date","filter_created_start_date":"Payment creation start date","filter_payment_end_date":"Payment end date","filter_payment_start_date":"Payment start date","filter_state":"Payment statuses","filter_tournament":"Tournaments","filters":"Filters","payment_method":"Payment Method","placeholder_date":"Select date","placeholder_select":"Enter name","tag00":"Actions","tag1-1":"Tournament","tag1-2":"Tournament price","tag2":"Price","tag3-1":"Price discount","tag3-2":"Percentage discount (%)","tag4":"Subtotal","tag5":"Service charge","tag6":"Total price","tag7":"Concept","tag7-1":"Student names","tag7-2":"Student last names","tag7-3":"Student document","tag7-4":"Headquarters","tag7-5":"Student Category","tag7-6":"Student Schedule","tag7-7":"Coach(s)","tag8-0":"Payment Creation Date","tag8-1":"Payment Reference","tag8-2":"Payment ID","tag8-3":"Payment Status","tag8-4":"Payment Comment","tag8-5":"Payment Gateway","tag8-6":"Payment Support","tag8-7":"Payment Date","title_create":"Create","title_edit":"Edit","title_export_all":"Export payments","title_list":"Tournament payments","title_validate_payments":"Validate payments"},"academy_tournaments":{"all_categories":"All categories","cost_center":"Cost center","enable_percentage_payment_installments":"Enable fee collection by percentage %","enable_price_payment_installments":"Enable fee collection by price $","fees":"Installments","filter_created_end_date":"Tournament creation end date","filter_created_start_date":"Tournament creation start date","filter_payment_end_date":"Tournament end date","filter_payment_start_date":"Tournament start date","filter_types":"Tournament types","filters":"Filters","help_message":"If you leave this field empty, all categories will be selected by default.","payment_installments":"Payment in installments","placeholder_date":"Select date","placeholder_select":"Type name","registration_service_item_code":"Registration service item code","segmentation":"Segmentation","tag0":"Active","tag00":"Actions","tag1":"Name","tag10":"Image","tag2":"Price","tag3":"Discount","tag4":"Payment deadline","tag5":"Tournament start date","tag6":"Tournament end date","tag7":"Categories","tag8":"Registration date","tag9":"Description","title_create":"Create","title_edit":"Edit","title_list":"Tournament settings","type":"Type"},"academy_tournaments_controller":{"inactive_tournament":"The tournament is not active, you cannot proceed to pay","maximum_date_of_payment":"The maximum payment date for the tournament has already expired, you cannot proceed with payment","payment_available":"Payment available","tournament_already_registered":"The tournament is already registered, please proceed with payment","tournament_registered":"The tournament has just been registered, please proceed with payment","without_tournaments":"There are no tournaments available"},"academy_users":{"address_advisor":"Responsible address","advisor_address":"Address","advisor_business_name":"Company name","advisor_cell_phone":"Cell phone","advisor_city":"City","advisor_information":"Responsible information","advisor_isic_code":"CIIU code","advisor_mail":"Mail","advisor_name_of_contact_person_nit":"Name of the contact person","advisor_nit":"Nit","advisor_phone":"Phone","advisor_property_name":"Name of the establishment","download_template":"Download template","emergency_contact":"Emergency contact","filters":"Filters","import_all_schedules":"Import Schedules","last_status_date":"Last status date","message":"Message","notification":"Notification","observations":"Observation","placeholder_date":"Select date","placeholder_select":"Type name","student_address":"Student address","student_already_registered":"There is already a student registered with this identity document!","tag1-1":"Contact first names","tag1-2":"Contact last names","tag1-3":"Contact email","tag1-4":"Contact document type","tag1-5":"Document contact","tag10":"Student photo","tag11":"Documents","tag12":"Address","tag13":"Neighborhood","tag14":"Phone (optional)","tag15-1":"First name","tag15-2":"Last name","tag15-3":"Type of document","tag15-4":"Document","tag15-5":"Relationship","tag15-6":"Occupation","tag18":"Mother Name","tag19":"Mother Occupation","tag2":"Academy headquarters","tag2-1":"Student first name","tag2-10":"Student phone number","tag2-12":"Student photo","tag2-2":"Student last name","tag2-3":"Student document type","tag2-4":"Student document","tag2-5":"Student educational institution","tag2-6":"Student education level","tag2-7":"Student date of birth","tag2-8":"Student age","tag2-9":"Student email","tag20":"Who do you live with?","tag21":"Educational Institution","tag22":"Educational Degree","tag23":"Working Day","tag24":"Surgical History","tag25":"Toxic History","tag26":"Health Observations","tag27-1":"Payment Status","tag27-2":"Last Payment Date","tag28":"Point of Care","tag29":"Active","tag3-1":"Last year at the academy","tag3-2":"Special condition (discounts)","tag30":"Student successfully modified!","tag31-1":"Uniform size","tag31-2":"Uniform type","tag32":"Shorts\/sweatshirt size","tag33":"Academy user successfully deleted!","tag34":"Process status","tag37":"Blood type","tag38":"EPS","tag39":"Academy headquarters","tag4":"Age","tag40":"Category","tag41":"Actions","tag42":"Active student","tag43":"Process status","tag44":"Confirm review","tag45":"Review status","tag46":"Successful data confirmation","tag47":"Student last name","tag48":"Document type","tag49":"City","tag5":"Mobile phone","tag50":"First name","tag51":"Last name","tag52-1":"Modify app contact","tag52-2":"Search or create app contact","tag53":"App manager created successfully","tag54":"Document registered successfully","tag55":"\u279c View Document","tag56":"Upload Document","tag57":"Student created successfully","tag58":"Category","tag59":"Payment Period","tag6":"Date of birth","tag60":"Segmentation","tag61":"Import students","tag64-1":"Schedule","tag64-1-1":"Available places","tag64-2":"Coach(s)","tag65":"The template for importing students in position: :position has no information","tag66":"Error importing template","tag67":"Template","tag68":"Template .xlsx","tag69":"Registration discount","tag7":"Identification document","tag70":"Last year at the academy","tag71":"Download ID","tag72":"There are no registered user IDs.","tag73":"Department","tag74":"Performance report","tag75":"Upload performance report","tag8":"Registration date","tag8-1":"Registration start date","tag8-2":"Registration end date","tag9":"Management status","term_condition_contract":"Terms, conditions and contract","title":"Monitor","titleAdd":"Create student","titleEdit":"Edit student","title_export_all":"Export students","title_import_all":"Import students","title_schedule_payments":"Schedule payments","type_person":"Type of person","write":"Write the "},"active":"Active","addProduct":{"title_1":"Products","title_2":"Select product","title_3":"Quantity","title_4":"Product","title_5":"Name","title_6":"Plu","title_7":"Unit price"},"administration_logs":{"filters":"Filters","tag0":"Actions","tag1":"Operation Description","tag2":"Data","tag3":"Task","tag4":"Module","tag5-1":"Names of person in charge","tag5-2":"Last name of person in charge","tag5-3":"Email of person in charge","tag6":"Date","tag6-1":"Start date","tag6-2":"End date","title_export_all":"Export logs","title_list":"Administration log"},"administration_logs_module":"Log","advertising":{"app_sections":"Application sections","business_category":"Business category","button_text":"Button text (Optional)","error_updating":"Error updating","frequency":"Frequency","frequency_amount":"Number of repetitions","no_action":"None","title_1":"App Posts","title_10":"End Date","title_11":"Targeting (Optional)","title_12":"Yes","title_13":"No","title_14":"Schedule (Optional)","title_15":"Create","title_16":"Created Successfully","title_17":"Error creating segmentation","title_18":"Edit","title_19":"Edited successfully","title_2":"Modal Banners","title_20":"Delete","title_21":"Message (Optional):","title_22":"Hide banner name in the app (Optional)","title_23":"Hide popup name in the app (Optional)","title_3":"Modal Popup","title_4":"Image","title_5":"Name","title_6":"Order","title_7":"Action Type","title_8":"Description","title_9":"Start Date","updated_successfully":"Updated successful"},"advertising_setting":{"title_1":"Business directory parameters"},"advertising_setting_module":"Directory Neg. Config.","already_exists":"Record :name already exists","already_exists_match_event_price":"This event and stand already has a price assigned","already_exists_stage":"Record already exists","answers":{"document":"Document","document_type":"Document type","title_1":"Create Price","title_13":"Results List","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Polls","title_18":"Poll responses","title_19":"Export all results","title_2":"Price","title_20":"Export results date range","title_21":"Email","title_3":"Form","title_4":"User","title_7":"Date","title_8":"Create","title_9":"Cancel"},"app_customization_config":"Parameters","app_section":{"active":"Active","add":"Create","button_color":"Button Color","button_link":"Button Link","button_width":"Button Width","chip_new":"Show Label Again","create":"Create","description":"Description","enable_on_home":"Enable Button on Home","enable_on_settings":"Enable button in Options","enable_on_tabs":"Enable button in Tabs\/Tabs bottom","enable_section_on_home":"Enable section on Home","icon_name":"Icon Name","image":"Image","link_section_home":"Image link session home","list":"Application Sections","name":"Name","no_parent":"None","options":"Options","parent_section":"Parent Section","path":"Path","priority":"Priority","segmentation":"Segmentation","tab":"Tab","text_color":"Text Color","title":"App Sections","update":"Edit","update_state":"Updated","validate_data_type":"Validate Data\/Show Alert"},"attributes":{"title_1":"Create attribute","title_10":"Attributes","title_11":"Attribute :name already exists","title_2":"Attributes","title_3":"Name","title_4":"Name to display","title_5":"More than one","title_6":"Required","title_7":"Active","title_8":"Attribute Type","title_9":"Import Attributes"},"business":{"filters":"Filters","placeholder_date":"Select date","placeholder_select":"Enter name","title_1":"Create","title_10":"Business data","title_11":"Description","title_12":"Edit","title_13":"Cancel","title_14":"Approve business","title_15":"Owner","title_16":"Business category","title_17":"Category","title_18":"Registration date","title_19-1":"Registration start date","title_19-2":"Registration end date","title_2":"Businesses","title_20-1":"Instagram account","title_20-2":"Facebook account","title_3":"Name","title_4":"Image","title_5":"Address","title_6":"Phone","title_7":"Years of operation","title_8":"Active","title_9":"Actions","title_export_all":"Export businesses","title_list":"Business"},"business_created_successfully":"Business created successfully. You must wait for it to be approved for it to be displayed in the business listing","business_deleted_successfully":"Business deleted successfully","business_rating":{"title_1":"Name","title_2":"Image","title_3":"Rating","title_4":"Comments","title_5":"Actions","title_6":"Active","title_7":"Select Comments","title_create":"Create","title_edit":"Edit Rating","title_list":"Business Rating List"},"business_rating_module":"Business Rating","business_rating_successfully":"Business Rating Successful","business_rating_updated_successfully":"Rating Updated Successfully","business_updated_successfully":"Business updated successfully","carnet":{"active":"Active","add":"Create","capacity":"Capacity","color":"Font color","create":"Create","download":"Download Card","download_for_print":"Download Card for printing","end_date":"End date","error_create":"Error creating token ticket!","error_delete":"Error deleting token ticket!","error_generate_tickets":"Error generating token tickets","error_update":"Error updating token ticket!","events":"Event","font":"Font name","font_color":"Font color (optional)","image":"Image","list":"Cards","name":"Name","optional":"Text or keyword (optional)","see_card_in":"See card in:","segmentation":"Segmentation","start_date":"Start date","subscriber":"Subscribers Only","ticket_not_have_price":"You must set the token ticket price first","title":"Carnets","to_create":"Symbolic ticket created successfully","to_delete":"Token ticket deleted successfully","to_generate_tickets":"Token tickets generated successfully","to_update":"Symbolic ticket updated successfully","update":"Edit","update_state":"Status has been updated successfully","word_fonts":"Font types (optional)"},"cell_empty":"The cell :cell in the column :column is not correct","collection_invoices":{"tag0":"Asset","tag00":"Actions","tag1":"Name","tag10":"Last payment date","tag2":"Image","tag3":"Total invoice","tag4":"Debt","tag5":"Current credit","tag6":"Payment gateway","tag7":"User who charged invoice","tag8":"Creation date","tag9":"Minimum collection percentage %","tag_detail0":"Invoice","tag_detail1":"Reference","tag_detail2":"Transaction ID","tag_detail3":"Payment origin","tag_detail4":"Total","tag_detail5":"Payment gateway","tag_detail6":"Payment date","title_create":"Create","title_detail":"Transactions","title_edit":"Edit","title_export_all":"Export transactions","title_list":"Collection accounts"},"collection_invoices_module":"Accounts collection","controller_admin_tag1":"Administrator created successfully!","controller_admin_tag2":"The document number already has a record!","controller_admin_tag3":"The email already has a record!","controller_admin_tag4":"Administrator modified successfully!","controller_admin_tag5":"Multiple session modified!","controller_admin_tag6":"Administrator deleted successfully!","controller_api_rate_msg1":"There are no comments for this order.","controller_brand_tag1":"A Brand with the name entered already exists","controller_brand_tag2":"Brand created successfully!","controller_brand_tag3":"Brand modified successfully!","controller_brand_tag4":"Brand deleted!","controller_channel_tag1":"A Sales Channel with the name entered already exists","controller_channel_tag2":"Sales Channel created successfully!","controller_channel_tag3":"Sales Channel modified successfully!","controller_chats_tag1":"Records Found","controller_chats_tag2":"Chat Deleted Successfully!","controller_client_tag1":"Client created successfully!","controller_client_tag2":"The document number already has a record!","controller_client_tag3":"The email already has a record!","controller_client_tag4":"Client modified successfully!","controller_client_tag5":"Customer segmentation","controller_coins_tag1":"Fan modified successfully","controller_coins_tag2":"Error generating payment with coin credit","controller_coins_tag3":"Payment error since there is not enough credit to complete the purchase","controller_coins_tag4":"Payment with coin credit successful","controller_coins_tag5":"Transaction modified successfully","controller_company_tag1":"A record with the entered nit already exists","controller_company_tag2":"Company created successfully!","controller_company_tag3":"Company modified successfully!","controller_company_tag4":"Company deleted!","controller_credit_coins_tag1":"Fan credit successfully modified","controller_credit_coins_tag10":"Fan credit successfully registered","controller_credit_coins_tag11":"Fan credit error, the total coins cannot be greater than the coin credit","controller_credit_coins_tag12":"Credit inflated error, the debt coins cannot be greater than the credit coins","controller_credit_coins_tag13":"Credit Coins","controller_credit_coins_tag2":"Error generating payment with credit coins","controller_credit_coins_tag3":"Payment error since there is not enough credit to complete the purchase","controller_credit_coins_tag4":"Payment with credit coins successful","controller_credit_coins_tag5":"Transaction successfully modified","controller_credit_coins_tag6":"Payment error since the user is inactive and cannot make payments with the credit coins","controller_credit_coins_tag7":"No fan found for this email","controller_credit_coins_tag8":"Fan already has a registered credit","controller_credit_coins_tag9":"Error modifying fan","controller_deliveryMan_tag1":"Messenger created successfully!","controller_deliveryMan_tag10":"Customers without purchase","controller_deliveryMan_tag11":"Customers without purchase 15 days","controller_deliveryMan_tag12":"Customers","controller_deliveryMan_tag13":"The coupon code is invalid","controller_deliveryMan_tag14":"The coupon has already been used","controller_deliveryMan_tag15":"Sorry, the coupon limit has already been reached","controller_deliveryMan_tag2":"The document number already has a record!","controller_deliveryMan_tag3":"The mail has already been sent!","controller_deliveryMan_tag4":"Courier modified successfully!","controller_deliveryMan_tag5":"Multiple session modified!","controller_deliveryMan_tag6":"Courier deleted successfully!","controller_deliveryMan_tag7":"The email already has a record, so you must recover the account to use it again, do you want to recover the account?","controller_deliveryMan_tag8":"Account recovered!","controller_deliveryMan_tag9":"Image modified","controller_line_tag1":"A Business Line with the name entered already exists","controller_line_tag2":"Business Line created successfully!","controller_line_tag3":"Business Line modified successfully!","controller_order_tag1":"The entered code already has a record","controller_order_tag2":"The courier is offline!","controller_order_tag3":"The courier is inactive!","controller_order_tag4":"The order could not be created","controller_order_tag5":"","controller_order_tag6":"","controller_order_tag7":"","controller_order_tag8":"","controller_other_users_tag0":"User created successfully!","controller_other_users_tag1":"User deleted with success!","controller_other_users_tag2":"User modified successfully!","controller_other_users_tag3":"Error modifying user!","controller_payment_tag1":"A Payment Method with the name entered already exists","controller_payment_tag2":"Payment method created successfully!","controller_payment_tag3":"Payment method modified successfully!","controller_sizing_tag1":"A unit of measure with the name entered already exists","controller_sizing_tag2":"Unit of measure created successfully!","controller_sizing_tag3":"Unit of measure modified successfully!","controller_sizing_tag4":"Unit of measure deleted!","controller_sucursal_tag1":"Branch created with success!","controller_sucursal_tag2":"Branch modified successfully!","controller_sucursal_tag3":"Branch deleted successfully!","controller_sucursal_tag4":"A record with the entered email already exists","controller_sucursal_tag5":"The entered email is already in use in the system","controller_sucursal_tag6":"Error creating branch!","controller_sucursal_tag7":"Error updating branch!","coverages":{"title_1":"Add","title_2":"Coverages","title_3":"Name","title_4":"Asset","title_5":"Cost of address per coverage","title_6":"The coverage import template in position: :position has no information"},"coverages_pending":{"title_1":"Clients pending for coverage","title_2":"Email","title_3":"City","title_4":"Registration date"},"create":"Create","create_block":"A block has been generated for the seat(s), which ends at :dateblock while you finalize the purchase, after this time your reservation will be released.","create_block_2":"The block was generated with the following pin: ","create_block_3":"If the purchase is completed successfully you will receive your ticket in the MY TICKETS section and in the email (check spam and junk mail).","create_sms_notifications":{"title_1":"Sms notifications","title_10":"Error when creating sms notification!","title_11":"Segment","title_12":"Link | Url","title_13":"Cell phone number","title_14":"Notification type","title_15":"Active notification","title_16":"Username (API)","title_17":"Passwords (API)","title_18":"Notification text","title_19":"Url (API)","title_2":"Create sms notification","title_3":"Send sms notification to all clients","title_4":"Message","title_5":"Date","title_6":"Time","title_7":"Add","title_8":"Cancel","title_9":"Sms notification created successfully!"},"create_ticket":"The purchase of the ticket(s) has been successfully generated","created_at":"Creation date","created_successfully":"Record created successfully","data_manager":{"title_1":"Add Data Management","title_2":"Name","title_3":"Type","title_4":"Url","title_5":"Active"},"data_policy":{"accepted":"Data processing policy accepted.","created_at":"Registration date","document":"Document\/File","error_active":"The selected data processing policies cannot currently be activated because other data processing policies are active.","tag0":"Active","tag00":"Actions","title_create":"Create","title_edit":"Edit","title_list":"Data processing policy","version":"Version"},"delete":"Delete","delete_relation_data":"This record cannot be deleted","deleted_successfully":"Record deleted successfully","disabled":"Disabled","doors":{"title_1":"Create door","title_10":"Edit door","title_11":"Update","title_12":"Add door","title_13":"Door list","title_14":"Active","title_15":"Actions","title_16":"Options","title_2":"Door","title_3":"Name","title_8":"Create","title_9":"Cancel"},"dorsal":{"title_1":"Create Dorsal","title_10":"Edit Bib","title_11":"Update","title_12":"Add Bib","title_13":"Bib List","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Number of pixels to shift (positive down, negative up) the bib name\/surname.","title_18":"Number of pixels to shift (positive down, negative up) the bib number.","title_2":"Dorsal","title_3":"Name","title_4":"Image","title_5":"Text Offset","title_6":"Text Color","title_7":"Number Offset","title_8":"Create","title_9":"Cancel"},"e_commerce_modal":{"title_1":"Register product","title_10":"Plu","title_11":"Age of majority","title_12":"Add","title_2":"Name","title_3":"Brand","title_4":"Price","title_5":"Unit quantity","title_6":"Unit of measure","title_7":"Unit of measure value","title_8":"Category","title_9":"Subcategory"},"equipment_categories":{"title_1":"Create Category","title_10":"Edit Category","title_11":"Update","title_12":"Add Category","title_13":"Category List","title_14":"Active","title_15":"Actions","title_16":"Options","title_2":"ID","title_3":"Name","title_4":"Categories","title_8":"Create","title_9":"Cancel"},"erp_config":"ERP parameters configuration","erp_logs":{"action":"Action","data":"Order or payment","date":"Date","error":"Error","filter_end_date":"End date","filter_start_date":"Start date","filters":"Filters","object":"View Order\/Payment","origin":"Module","placeholder_date":"Select date","placeholder_select":"Enter name","resolved":"Reviewed","tag0":"Actions","title_export_all":"Export logs","title_list":"ERP Log"},"erp_parameters":{"academy_sync":"Academy synchronization","shop_sync":"Store synchronization","title":"ERP parameters"},"error_creating":"Error creating record","error_file_pdf":"Format error, the uploaded document is not PDF","error_global":"There was an error, try again later.","error_removing":"Error deleting record","error_updating":"Error updating record","error_updating_responsible_app":"Error updating record, the responsible app does not have an address created.","error_validation_1":"This chair is not for sale for this event","error_validation_10":"This sector is not enabled for sales, select your chair in another sector.","error_validation_11":"This purchase exceeds the limit of tickets allowed for this sector, you can buy :number ticket(s)","error_validation_12":"There are no credit type credits to generate","error_validation_13":"The user with document :document is not a registered user","error_validation_14":"There was an error generating the credit with chair :seat","error_validation_15":"Chair :seat not found. Line :line","error_validation_16":"The limit of tickets allowed to buy for the event has already been exceeded, you can buy :number ticket(s)","error_validation_17":"There are already blocked seats, please check and do the process again.","error_validation_18":"The following seat :seat does not exist, please validate and correct.","error_validation_19":"Error in dodocuments or emails that do not have a registered user.","error_validation_2":"This pass is not for sale for this event","error_validation_20":"Validate the event date.","error_validation_3":"Sorry, the chair :seat is already sold","error_validation_4":"The chair :seat has a lock, try again in a few minutes","error_validation_5":"This purchase exceeds the limit of ticket(s) allowed, you can buy a maximum of :number ticket(s).","error_validation_6":"This purchase exceeds the limit of season ticket(s) allowed, you can buy a maximum of :number season ticket(s).","error_validation_7":"The limit of allowed seat blocks has already been exceeded","error_validation_7_2":"The limit of allowed season ticket seat blocks has already been exceeded","error_validation_8":"The limit of saleable capacity for this location has already been reached","error_validation_9":"The :seat chair does not comply with social distancing.","error_validation_tickets":{"inactive_zone":"The zone is not active","zone_no_saleable":"The zone is not for sale or with prices at the moment"},"event_prices":{"download_template":"Download template","title_1":"Create price","title_10":"Edit price","title_11":"Update","title_12":"Add price","title_13":"Price list","title_14":"Active","title_15":"Actions","title_16":"Options","title_2":"Price","title_3":"Event","title_4":"Grandstand","title_5":"Price chair","title_6":"Subscription price","title_7":"Equipment","title_8":"Create","title_9":"Cancel"},"events":{"sales_type":"Type of sale","title_1":"Create event","title_10":"Edit event","title_11":"Update","title_12":"Add event","title_13":"Event list","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Start of sale","title_18":"End of sale","title_19":"Event name","title_2":"Event","title_20":"Internal pin","title_21":"External pin","title_22":"Match","title_23":"Ticket type","title_24":"User","title_25":"Start of blocking","title_26":"End of blocking","title_27-1":"Subtotal","title_27-2":"Service charge","title_27-3":"Total price","title_28":"Stadium to play","title_29":"Stadium name","title_3":"Name","title_30":"Segmentation","title_31":"Creation date","title_4":"Code","title_5":"Date","title_6":"Season","title_7":"Team","title_8":"Create","title_9":"Cancel"},"external_app":{"exist_answer":"There is already a previous answer to this survey. Therefore, this new request will not be saved","exits_form":"You have already submitted a registration, please contact the NUEVOSTALENTOS","ok_create":"Record created successfully","title_create":"Record created"},"fans":{"error_process":"Error processing data.","generation_type":"Generation type","line":"File line","log":"Log","main_zone":"Tribune","price":"Price","quantity":"Quantity","subzone":"Location","title_1":"Import file","title_10":"Import excel file of Fans","title_11":"Event","title_12":"Bulk","title_2":"First name","title_3":"Last name","title_4":"Document","title_5":"Cell phone","title_6":"Email","title_7":"Active","title_8":"Actions","title_9":"Fan type","user_data":"User data","user_id":"User"},"field_datasources":{"title_1":"Create datasources","title_10":"Edit datasource","title_11":"Update","title_12":"Add datasource","title_13":"List of datasources","title_14":"Active","title_15":"Actions","title_16":"Options","title_2":"Datasources","title_3":"Name","title_4":"Type","title_5":"Url","title_8":"Create","title_9":"Cancel"},"field_input":"Input type","field_values":{"title_1":"Create value","title_10":"Edit value","title_11":"Update","title_12":"Add value","title_13":"Value list","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Item list","title_18":"Add item","title_2":"Value","title_20":"Add","title_3":"Name","title_4":"Value","title_8":"Create","title_9":"Cancel"},"fields":{"title_1":"Create Field","title_10":"Edit Field","title_11":"Update","title_12":"Add Field","title_13":"Field List","title_14":"Active","title_15":"Actions","title_16":"Options","title_18":"Add Item","title_2":"Field","title_20":"Add","title_3":"Name","title_4":"Field","title_8":"Create","title_9":"Cancel"},"flash_ticket":{"apply_coupon":"Type of coupon to apply","apply_cupon_type":"Type of coupon to apply","coupon":"Coupons","coupons":"Coupons","help_message":"To enter more than one coupon, it is necessary to separate them with commas.","link_redeem":"Link to redeem coupon","maximum_user_ticket_sales_box_office":"Maximum tickets sales box office","message":"Message","modal":{"title_0":"Mass Notification Sending","title_1":"Notification Sending","title_2":"Message","title_3":"Cancel","title_4":"Send"},"optional":" (Optional)","segmentation":"Segmentation","show_image":"View image","show_in":"View in","tickets_generated":"Tickets generated successfully","title_0":"Flash Tickets","title_1":"Match","title_10":"Gift Price","title_11":"Tickets","title_12":"Ticket Value","title_13":"Ticket Text","title_14":"Value total","title_15":"Total","title_16":"Are you sure you want to generate the tickets?","title_17":"Image","title_18":"Description","title_19":"Registration date","title_2":"Grandstand","title_3":"App Price","title_4":"Saleable Capacity","title_5":"Maximum Web\/App Tickets","title_6":"Active","title_7":"Create Configuration","title_8":"Box Office Price","title_9":"Special Price"},"form_fields":{"tag_1":"Assign field?","tag_2":"You must select a form","tag_3":"You must select at least one field","title_1":"Assign fields","title_12":"Assign fields","title_13":"Field list","title_2":"Form fields","title_3":"Field","title_4":"Form","title_8":"Create","title_9":"Cancel"},"forms":{"multiple_answers":"Multiple answers per user","tag_1":"Create form?","tag_2":"Modify form?","tag_6":"Delete form?","tag_7":"You must select visibility","tag_8":"You must select a specialty","title_1":"Create Form","title_10":"Edit form","title_11":"Update","title_12":"Add form","title_13":"Form list","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Item list","title_18":"Add item","title_2":"Form","title_20":"Add","title_21":"Image","title_22":"Show on home","title_23":"Show in settings","title_24":"Show text","title_3":"Name","title_4":"Description","title_5":"Visibility","title_6":"Priority","title_7":"Specialty","title_8":"Create","title_9":"Cancel"},"franchises":"Franchises","g86":"Hide match to win role","hard":"Manual","home_image":{"title_1":"Create Home Image","title_10":"Edit Home Image","title_11":"Update","title_12":"Add Home Image","title_13":"Home Image List","title_14":"Active","title_15":"Actions","title_16":"Options","title_2":"Home Image","title_3":"Name","title_4":"Image","title_8":"Create","title_9":"Cancel"},"import_successfully":":cnt chairs were successfully imported","inactive":"Inactive","integrations":{"tag_1":"Create integration?","tag_2":"Modify integration?","tag_6":"Delete integration?","tag_7":"You must select visibility","tag_8":"You must select a specialty","title_1":"Create integration","title_10":"Edit integration","title_11":"Update","title_12":"Add integration","title_13":"Integration listing","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Password","title_18":"Public key","title_19":"Private key","title_2":"Integration","title_20":"Add","title_3":"Name","title_4":"Supplier","title_5":"End Point","title_6":"Synchronization from","title_7":"User","title_8":"Create","title_9":"Cancel"},"inventory_tweaks":{"btn_create":"Add adjustment","create":"Do you want to create the adjustment?","create_inventory_tweak":"Create inventory adjustment","created_at":"Movement date and time","description":"Comment","error_inventory_type_id":"Please indicate a movement type for the adjustment","filter_inventory_movement_type":"Filter by movement type","filter_product":"Filter by product","inventory_movement_type":"Movement type","product_attribute_id":"Attribute","product_id":"Product","quantity":"Quantity","title":"Inventory adjustments","user_id":"Responsive user"},"lealpay_error_token":"An error occurred when validating the leal token.","lealpay_error_user":"An error occurred when registering the user in the leal API.","lealpay_successs_token":"The leal token has been registered successfully.","lealpay_successs_user":"The user has been successfully registered in the leal API.","list_ticket_logs":{"date":"Date transferred","event":"Event","event_filter":"Filter by event","title":"List of transferred tickets","title_1":"Ticket code","title_2":"Previous user email","title_3":"New user email","title_4":"Payment reference ago","title_5":"Transfer amount"},"login_inactive_account":"Cannot log in, user account is inactive","login_nonexisting_account":"Cannot log in, user account does not exist","login_too_many_request":"The server is currently trying to respond to your request, please try again in about 15 seconds","login_unpermitted_account":"Cannot log in, user account is not authorized to log in","login_wrong_data":"Email or Password is incorrect","main_datasources":{"title_1":"Create header","title_10":"Edit header","title_11":"Update","title_12":"Add header","title_13":"Header list","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Item list","title_18":"Add item","title_19":"Item name","title_2":"Header","title_20":"Add","title_3":"Name","title_8":"Create","title_9":"Cancel"},"match_event_stages":{"actions":"Actions","created_at":"Registration Date","segmentation":"Segmentation","tag_1":"Event Settings","tag_10":"Configuration Type","tag_11":"Sector","tag_12":"Edit configuration","tag_13":"Import configurations","tag_14":"Download template","tag_15":"Import successful","tag_16":"Error importing configurations","tag_17":"NOTE: Remember that within the import file the \"Action\" column is used to add or delete the configuration. 1 to add or 0 to remove the configuration.","tag_18":"Ticket Tag","tag_2":"Create Configuration","tag_3":"Event","tag_4":"Chair","tag_5":"Grandstand","tag_6":"Total Capacity","tag_7":"Saleable Capacity","tribune_already_blocked_error":"A block for the selected tribune already exists"},"match_event_tickets":{"filter_user_deleted":"Deleted users filter","filters":"Filters","tickets_sent":"Tickets sent by mail","title_1":"Tickets sold","title_10-1":"Service charge","title_10-2":"Ticket price","title_11-1":"User","title_11-2":"User document","title_12":"Creation date","title_13":"Download tickets by mail","title_14":"Enter email of the user who wants to download the tickets","title_15":"Process tickets in bulk","title_16":"Enter ticket code separated with comma (,)","title_17":"Change status: 3. Cancelled 4. Reversed","title_18":"Modify","title_19":"Type of action that can be performed:","title_2":"Ticket code","title_20":"Remember that the action to be performed is filled out in the options column of the EXCEL file.","title_21":"Download template","title_22":"Template","title_23":"Are you sure you want to perform the cancellation, annulment, or deletion process? with the list of the EXCEL file?","title_24":"The mass ticket process was successfully completed","title_25":"Error when performing the mass ticket process!","title_26":"Download ticket report","title_27":"Generate special tickets","title_28":"Ticket text","title_29":"Quantity","title_3":"Payment Status","title_30":"Special ticket text","title_31":"Mass seat change","title_32":"NOTES:\n1. Remember that within the import file the \"Special_Ticket_Text\" column is used to identify if the ticket has a special access or promotion for entering the stadium. (eg: CHILD, FAMILY, etc.).\n2. Keep in mind that the massive change of seats does not configure or change the price of the previous zone (make sure that they are changes to zones with the same price).\n3. Exceptional case for the classic where south is changed to east, having different prices.","title_33":"Successful import","title_34":"Error importing massive change of seats","title_35":"Stadium entrance","title_36":"Transaction ID","title_37":"Mass assignment of ticket text","title_38":"NOTE:\nRemember that within the import file the \"Special_Ticket_Text\" column is used to identify if the ticket has a special access or promotion for entering the stadium. (eg: CHILD, FAMILY MEMBER, etc).","title_4":"App payment ref","title_5":"Payment ref third","title_6":"Match","title_7":"Ticket type","title_8":"Chair","title_9":"Ticket status"},"max_unit_by_product":"Maximum units by product","micro_trade":{"title_1":"Create","title_10":"Edit","title_11":"Cancel","title_12":"Category Data","title_2":"Categories","title_3":"Name","title_4":"Image","title_5":"Priority","title_6":"Asset","title_7":"Actions","title_8":"Create","title_9":"Description"},"modalOrdersDelivery":{"title_1":"Order","title_2":"Status"},"modal_":{"title_1":"Import file","title_2":"Log errors","title_3":"Close","title_4":"Amount","title_5":"Export file"},"modal_direction_tag1":"Register address","modal_direction_tag10":"Search address","modal_direction_tag2":"Neighborhood","modal_direction_tag3":"How to get there? (Optional)","modal_direction_tag4":"Help","modal_direction_tag5":"Add","modal_direction_tag6":"Important","modal_direction_tag7":"- The \"Add\" button is activated when validating the location on the map. To do this, you must select a search option or press the enter key after entering the address. If you try to edit the address, the button will be disabled again and you must repeat the previous process.","modal_direction_tag8":"- If you cannot find the address on the map, please enter a closer point and in the \u201cHow to get there?\u201d field enter the full address.","modal_direction_tag9":"- For greater search effectiveness, it is recommended to write the address without spaces after the \u201c#\u201d character. Example: Cra. 39 #5a-34, Cali, Valle del Cauca, Colombia.","modal_history_products1":"Last products purchased by the user","modal_history_products2":"Last 3 orders","modal_history_products3":"Plus","modal_history_products4":"Name","modal_history_products5":"Barcode","modal_history_products6":"Price","modal_history_products7":"Quantity","modal_info_admin_tag1":"Administrator information","modal_info_admin_tag10":"Cancel","modal_info_admin_tag2":"First name:","modal_info_admin_tag3":"Last name:","modal_info_admin_tag4":"No. document:","modal_info_admin_tag5":"Phone:","modal_info_admin_tag6":"Join date:","modal_info_admin_tag7":"Email:","modal_info_admin_tag8":"Active:","modal_info_admin_tag9":"Branch:","modal_info_clients_tag1":"Customer information","modal_info_clients_tag10":"Ok","modal_info_clients_tag2":"First name:","modal_info_clients_tag3":"Last name:","modal_info_clients_tag4":"No. document:","modal_info_clients_tag5":"Phone:","modal_info_clients_tag6":"Date entered:","modal_info_clients_tag7":"Email:","modal_info_clients_tag8":"Active:","modal_info_clients_tag9":"Cancel","modal_info_deliveryMan_tag1":"Informationcourier name","modal_info_deliveryMan_tag10":"Active:","modal_info_deliveryMan_tag11":"Cancel","modal_info_deliveryMan_tag12":"Ok","modal_info_deliveryMan_tag2":"First name:","modal_info_deliveryMan_tag3":"Last name:","modal_info_deliveryMan_tag4":"No. document:","modal_info_deliveryMan_tag5":"Phone:","modal_info_deliveryMan_tag6":"Date of entry:","modal_info_deliveryMan_tag7":"Email:","modal_info_deliveryMan_tag8":"Associated company:","modal_info_deliveryMan_tag9":"Plate:","modal_info_sucursal_tag1":"Branch information","modal_info_sucursal_tag2":"Code:","modal_info_sucursal_tag3":"Name:","modal_info_sucursal_tag4":"Email:","modal_info_sucursal_tag5":"Address:","modal_info_sucursal_tag6":"Phone:","modal_info_sucursal_tag7":"Coverage:","modal_info_sucursal_tag8":"Municipality:","modal_info_sucursal_tag9":"Cancel","modal_mailbox_tag1":"Name","modal_mailbox_tag2":"No. Document","modal_mailbox_tag3":"Message","modal_mailbox_tag4":"Mail","modal_mailbox_tag5":"Send Date","modal_mailbox_tag6":"Cancel","modal_mailbox_tag7":"Ok","modal_mailbox_title":"Details Mailbox","modal_new_delivery":{"title_1":"New delivery person","title_2":"Name","title_3":"Company","title_4":"Mobile","title_5":"Ok"},"modal_qualification_tag1":"Bad","modal_qualification_tag2":"Fair","modal_qualification_tag3":"Good","modal_qualification_tag4":"Very Good","modal_qualification_tag5":"Excellent","modal_qualification_tag6":"Comments","modal_qualification_tag7":"Rate","modal_subscribers":{"delete_subscriber_table_data":"Delete subscriber table data","single_match_subscriber":"Single match subscriber","title_1":"Import subscriber file","title_2":"Select area","title_3":"Import subscribers","title_4":"Registration errors","title_5":"Close","title_6":"Quantity","title_7":"Generate credit subscriptions","title_8":"Export subscribers"},"modal_user_ticket_change":{"tag_1":"Ticket Change","tag_2":"Modify User Ticket?","tag_3":"Successful Update","tag_4":"Document","tag_5":"Email","tag_6":"Assign"},"modules_footer":{"title_1":"Copyright","title_2":"2021","title_3":"AlianSap","title_4":"All rights reserved."},"multiple":"Multiple","multiselect_instruction":"Type the desired name and press ENTER to create a new value.","newOrderCreate":{"title":"Trigger newsletter"},"news_club":{"actions":"Actions","active":"Active","add":"Create","category":"Category","comments_enabled":"Comments enabled","compress":"Optimize your images to improve site loading speed! If you want, you can click on this icon to access an online image compressor.","created_at":"Creation date","delete":"Delete","description":"Enter the news text","description_title":"News text","edit":"Edit","enable_comments":"Enable comments","enable_reactions":"Enable reactions","end_date":"End date","help":"You can enter multiple links separated by commas.","image":"Image","init_date":"Start date","likes_enabled":"Reactions enabled","link":"News link","name":"Name","not_found":"News not found","preview":"Preview","segmentation":"Segmentation","size_photos":"Image must be less than 3MB","title":"News club"},"no":"No","no_ticket_code":"The ticket code was not found","official_facebook":{"tag0":"Active","tag00":" Actions","tag1":"Name\/Title","tag2":"Account\/Profile","tag3":"Official Account Owner","tag4":"Registration Date","title_create":"Create","title_edit":"Edit","title_list":"Facebook"},"official_instagram":{"featured_posts":"Featured posts","note":"NOTE : Separate featured posts by commas.","tag0":"Asset","tag00":"Actions","tag1":"Name\/Title","tag2":"Token","tag3":"Official account owner","tag4":"Registration date","tag5":"Max records to consult","title_create":" Create","title_edit":"Edit","title_list":"Instagram"},"official_tiktok":{"tag0":"Active","tag00":" Actions","tag1":"Code","tag2":"Publication","tag3":"Official account owner","tag4":"Registration date","title_create":"Create","title_edit":"Edit","title_list":"Tiktok"},"official_twitter ":{" tag1":"Name\/Title","tag0":"Active","tag00":"Actions","tag2":"Account\/Profile","tag3":"Official Account Owner","tag4":"Registration Date","title_create":"Create","title_edit":"Edit","title_list":"Twitter"},"official_youtube":{"featured_videos":"Featured videos","note":"NOTE: Separate featured videos with commas.","tag0":"Active","tag00":"Actions","tag1":"Name\/Title","tag2":"Channel ID","tag3":"Official account owner","tag4":"Registration date","tag5":"Max records to consult","title_create":"Create","title_edit":"Edit","title_list":"Youtube"},"optional":"(Optional)","optional_link":"Optional, if the document is loaded","optional_term":"Optional, if the link is loaded","order_logs":{"filters":"Filters","tag0":"Actions","tag1":"Operation description","tag2":"Data","tag3":"Task","tag4":"Module","tag5-1":"Name of person in charge","tag5-2":"Last name of person in charge","tag5-3":"Email of person in charge","tag6":"Date","tag6-1":"Start date","tag6-2":"End date","title_export_all":"Export logs","title_list":"Order log"},"order_logs_module":"Log","order_state_1":"Pending","order_state_2":"Accepted","order_state_3":"Picked","order_state_4":"In Route","order_state_5":"Delivered","order_state_6":"Completed","order_state_7":"Cancelled","order_state_8":"Frozen","order_state_9":"Returned","organizer":{"title_1":"Create Organizer","title_10":"Edit Organizer","title_11":"Update","title_12":"Add Organizer","title_13":"List of Organizers","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Number of pixels to shift (positive down, negative up) the first\/last name on the bib.","title_18":"Number of pixels to shift (positive down, negative up) the number on the bib.","title_2":"Organizer","title_3":"Name","title_4":"Logo","title_5":"Display Name","title_6":"Abbreviation","title_7":"Offset Number","title_8":"Create","title_9":"Cancel"},"parameters_club":{"parameters":"Parameters","parameters_time":"Amount of publication time in months:"},"paymentForms":{"webcheckout_form_1":"Payment portal","webcheckout_form_2":"You are trying to make a payment for a value of :value. To continue, fill out the following form:","webcheckout_form_3":"You are trying to make a payment for a value of :value. To continue press the following button:","webcheckout_form_4":"Card Number","webcheckout_form_5":"Expiration","webcheckout_form_6":"Security Code","webcheckout_form_7":"Pay :value"},"paymentGateway":{"client_signature":"Integrity Key\/Signature","title_1":"Create","title_10":"Edit","title_11":"Update","title_12":"Create","title_13":"Payment Gateways","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Production URL","title_18":"Test URL","title_19":"Is productive","title_2":"Payment Gateways","title_20":"User","title_21":"Password","title_22":"Public Client","title_23":"Secret Client","title_24":"Api Key (Optional)","title_25":"Api Login (Optional)","title_26":"Merchant Id (Optional)","title_27":"Account Id (Optional)","title_28":"Language","title_29":"Currency","title_3":"Name","title_30":"User Payment Page (Optional)","title_31":"User Confirmation Page (Optional)","title_32":"Payment Gateway Response Page (Optional)","title_33":"Payment Gateway Controller Route","title_34":"Image","title_35":"Payments Available in","title_4":"Description","title_8":"Create","title_9":"Cancel"},"paymentResponse":{"webcheckout_confirm_1":"Thank you for your purchase!","webcheckout_confirm_2":"Your invoice(s) have been generated, you can see them in your email or in the MY INVOICES section of the APP","webcheckout_confirm_3":"Your store items will arrive between 5 and 7 business days, you can see them in the MY ORDERS section of the APP","webcheckout_confirm_4":"We are sorry, the transaction is delayed.","webcheckout_confirm_5":"The transaction has failed.","webcheckout_confirm_6":"The purchase :code already records a payment.","webcheckout_confirm_7":"Your payment has been successfully received"},"payment_message":{"title_1":"Customize email subscribers\/tickets","title_10":"Footer text","title_11":"Download link text","title_12":"Image for email subscribers","title_13":"Image for email tickets","title_14":"Title (Link)","title_15":"View subscription email","title_16":"View Ticket Email","title_17":"Subscriber Message","title_18":"Ticket Message","title_19":"Clothing Message","title_2":"Select option","title_20":"Color Text","title_21":"Custom Email Message Successful!","title_22":"Custom Email Error!","title_3":"Title (Optional)","title_4":"Purchase confirmation text","title_5":"Logo text (team name)","title_6":"Greeting text","title_7":"Text 1","title_8":"Text 2","title_9":"Text 3"},"payment_method":{"code":"Code\/acronym","tag0":"Active","tag00":"Actions","tag1":"Name","tag2":"Registration date","title_create":"Create","title_edit":"Edit","title_list":"Payment methods"},"pending_data":"You must enter all required data in the form","photos_club":{"actions":"Actions","active":"Active","add":"Create","category":"Category","comments_enabled":"Comments enabled","compress":"Optimize your images to improve site loading speed! If you want, you can click on this icon to access an online image compressor.","created_at":"Creation date","delete":"Delete","description":"Description","edit":"Edit","enable_comments":"Enable comments","enable_reactions":"Enable reactions","end_date":"End date","help":"You can enter multiple links separated by commas.","image":"Image(s)","init_date":"Start date","likes_enabled":"Reactions enabled","link":"Link(s)","name":"Name","not_found":"Photos not found","preview":"Preview","size_photos":"Image must be less than 3 MB","title":"Photos club","title_table":"Photos"},"players":{"title_1":"Create Player","title_10":"When did you join the club","title_11":"Debut Date","title_12":"Debut Rival","title_13":"Retirement","title_14":"Achievements","title_15":"Height","title_16":"Palmar\u00e9s","title_17":"Position","title_18":"Team Category","title_19":"Player","title_2":"Players","title_20":"Create Player","title_21":"Cancel","title_22":"Edit Player","title_23":"Update","title_24":"Add Player","title_25":"Player List","title_26":"Active","title_27":"Actions","title_28":"Options","title_29":"Instagram","title_3":"Name","title_4":"Image","title_5":"Number","title_6":"Age","title_7":"Country of Origin","title_8":"Date of Birth","title_9":"Biography"},"podcasts_club":{"actions":"Actions","active":"Active","add":"Create","category":"Category","comments_enabled":"Comments enabled","compress":"Optimize your images to improve site loading speed! If you want, you can click on this icon to access an online image compressor.","created_at":"Creation date","delete":"Delete","description":"Description","edit":"Edit","enable_comments":"Enable comments","enable_reactions":"Enable reactions","end_date":"End date","help":"You can enter multiple links separated by commas.","image":"Image","init_date":"Start date","likes_enabled":"Reactions enabled","link":"Podcast link","name":"Name","not_found":"News not found","preview":"Preview","segmentation":"Segmentation","size_photos":"Image must be less than 3 MB","title":"Podcast"},"positions":{"title_1":"Create Position","title_10":"Edit Position","title_11":"Update","title_12":"Add Position","title_13":"Position List","title_14":"Active","title_15":"Actions","title_16":"Options","title_2":"Positions","title_3":"Name","title_8":"Create","title_9":"Cancel"},"productAttributes":{"title_1-1":"Create","title_1-2":"Edit","title_10":"EAN","title_11":"Width","title_12":"Length","title_13":"Height","title_14":"Observation","title_15":"Main Position","title_16":"Stowage Pattern","title_17":"SKU","title_18":"Units Available","title_19":"PUM","title_2":"Product Attributes","title_3":"Product","title_4":"Attribute","title_5":"Value","title_6":"Additional Price","title_7":"PMI Internal Code","title_8":"Packaging","title_9":"Weight \/ Measure"},"products_scraper":{"title_1":"Search","title_2":"Word","title_3":"Store","title_4":"Description","title_5":"Price"},"publications":{"date":"Creation date","interactions":"Interactions","new":"News","no_comments":"This content has no comments","no_reactions":"This content has no reactions","reactions":"Reactions","video":"Video","views":"Views"},"readonly":"Read only","ref_wompi":{"title_1":"Payment validator","title_2":"Transaction id","title_3":"Transaction reference","title_4":"Accounts","title_5":"Payment gateways","title_6":"Select gateway","title_7":"Transaction details","title_8":"Search"},"report":{"select":"Select Report","title":"Analytical Reports","title_create":"Create","title_edit":"Edit","title_settings":"Settings"},"report_redemptions":{"filter_app_sections":"App Section","filter_end_date":"End date","filter_start_date":"Start date","filters":"Filters","placeholder_date":"Select date","placeholder_select":"Type name","title_1":"Section App","title_2-1":"Beneficiary names","title_2-2":"Beneficiary surnames","title_2-3":"Beneficiary email","title_3-1":"Reviewer user names","title_3-2":"Reviewer user surnames","title_3-3":"Reviewer user email","title_4":"Option","title_5":"Registration date","title_export_all":"Export data","title_list":"Report redemptions"},"reports_academy":{"briefcase":"Academy portfolio reports"},"reports_internal":{"reports":"Internal reports"},"reports_state":{"report_reversed_cancelled":"Reversed and cancelled tickets by location","reporte_boleteria_abonado":"Subscribers report","reporte_boleteria_consolidado":"Consolidated report","reporte_boleteria_cortesia":"Courtesy tickets by location","reporte_boleteria_vendida_localidad":"Tickets sold by location and general","reporte_boleteria_venta_libre":"Free sale and credit report","reporte_hacienda":"Treasury reports","reporte_ingreso_por_tribuna":"Income report by tribune"},"reports_state_academy":{"reporte_acumulada_sede":"Accumulated portfolio report by location","reporte_alumno_profesor":"Portfolio report by student and teacher","reporte_sede_categoria":"Portfolio report by location and category"},"required":"Required","results":{"title_1":"Create price","title_13":"Results List","title_14":"Active","title_15":"Actions","title_16":"Options","title_2":"Price","title_3":"Form","title_4":"User","title_7":"Date","title_8":"Create","title_9":"Cancel"},"role_1":"SuperAdmin","role_2":"Admin","role_3":"Courier","role_4":"Customer","role_5":"Reports","roles_permissions":{"tag0":"Active","tag00":"Actions","tag1":"Name","tag2":"Main module","tag3":"Permissions (modules)","tag4":"Registration date","title_create":"Create","title_edit":"Edit","title_list":"Roles and permissions"},"route_planning":{"title_1":"Route simulation","title_10":"Delivery people","title_11":"External delivery person","title_12":"All","title_13":"Name","title_14":"Company","title_15":"Phone","title_16":"ID","title_2":"Simulate route","title_3":"Take and assign route","title_4":"Pending orders","title_5":"Code","title_6":"Address","title_7":"Lat","title_8":"Lng","title_9":"Transfer"},"scale":"Scale","screen_addOrder_tag1":"Orders","screen_addOrder_tag2":"New Order","screen_addOrder_tag3":"Order Type:","screen_addOrder_tag4":"-- Select","screen_add_admin_tag1":"Administrators","screen_add_admin_tag10":"Password","screen_add_admin_tag11":"Confirm password","screen_add_admin_tag12":"Create","screen_add_admin_tag2":"Create","screen_add_admin_tag3":"First Names","screen_add_admin_tag4":"Last Name","screen_add_admin_tag5":"Email","screen_add_admin_tag6":"No. document","screen_add_admin_tag7":"Phone","screen_add_admin_tag8":"Role","screen_add_admin_tag9":"Branch","screen_add_categories_modal_tag1":"Register address","screen_add_categories_modal_tag2":"Neighborhood (Optional)","screen_add_categories_modal_tag3":"How to get there?","screen_add_categories_modal_tag4":"Help","screen_add_categories_modal_tag5":"Add","screen_add_categories_modal_tag6":"Important","screen_add_categories_modal_tag7":"The \"Add\" button is activated when validating the location on the map. To do this, you must select a search option or press the enter key after entering the address. If you try to edit the address, the button will be disabled again and you must repeat the previous process.","screen_add_categories_modal_tag8":"If you cannot find the address on the map, please enter a closer point and in the \u201cHow to get there?\u201d field enter the full address.","screen_add_categories_modal_tag9":"For greater search effectiveness, it is recommended to write the address without spaces after the \u201c#\u201d character. Example: Cra. 39 #5a-34, Cali, Valle del Cauca, Colombia.","screen_add_categories_tag1":"Create","screen_add_categories_tag2":"Name","screen_add_categories_tag3":"Priority","screen_add_categories_tag4":"Image (Optional)","screen_add_categories_tag5":"Cancel","screen_add_categories_tag6":"Add","screen_add_clients_tag1":"Clients","screen_add_clients_tag10":"Confirm Password","screen_add_clients_tag11":"Address","screen_add_clients_tag12":"Neighborhood (Optional)","screen_add_clients_tag13":"Directions","screen_add_clients_tag14":"Add","screen_add_clients_tag2":"Create","screen_add_clients_tag3":"Create","screen_add_clients_tag4":"First Names","screen_add_clients_tag5":"Last Name","screen_add_clients_tag6":"Email","screen_add_clients_tag7":"Phone","screen_add_clients_tag8":"No. document","screen_add_clients_tag9":"Password","screen_add_company_tag1":"Companies Associates","screen_add_company_tag2":"Create Company","screen_add_company_tag3":"Name","screen_add_company_tag4":"Nit","screen_add_company_tag5":"Phone","screen_add_company_tag6":"Contact","screen_add_company_tag7":"Create","screen_add_company_tag8":"Cancel","screen_add_deliveryMan_tag1":"Messengers","screen_add_deliveryMan_tag10":"Branch","screen_add_deliveryMan_tag11":"Password","screen_add_deliveryMan_tag13":"Save changes","screen_add_deliveryMan_tag14":"Photo","screen_add_deliveryMan_tag2":"Create Messengers","screen_add_deliveryMan_tag3":"First Names","screen_add_deliveryMan_tag4":"Last Name","screen_add_deliveryMan_tag5":"Email","screen_add_deliveryMan_tag6":"No. document","screen_add_deliveryMan_tag7":"Phone","screen_add_deliveryMan_tag8":"Plate","screen_add_deliveryMan_tag9":"Associated company","screen_add_sizing_tag1":"Create Unit of Measure","screen_add_sizing_tag2":"Name","screen_add_sizing_tag3":"Abbreviation","screen_add_sizing_tag4":"Cancel","screen_add_sizing_tag5":"Add","screen_add_sizing_tag6":"Units of Measure","screen_add_subcategories_tag1":"Create","screen_add_subcategories_tag2":"Subcategory","screen_add_subcategories_tag3":"Name","screen_add_subcategories_tag4":"Priority","screen_add_subcategories_tag5":"Category","screen_add_subcategories_tag6":"Image","screen_add_sucursal_tag1":"Branches","screen_add_sucursal_tag10":"Municipality","screen_add_sucursal_tag11":"Address","screen_add_sucursal_tag12":"Neighborhood (Optional)","screen_add_sucursal_tag13":"How to get there?","screen_add_sucursal_tag14":"Add","screen_add_sucursal_tag15":"Cancel","screen_add_sucursal_tag2":"Add branch","screen_add_sucursal_tag3":"Add branch","screen_add_sucursal_tag4":"Email","screen_add_sucursal_tag5":"Name","screen_add_sucursal_tag6":"Code","screen_add_sucursal_tag7":"Phone","screen_add_sucursal_tag8":"Coverage","screen_add_sucursal_tag9":"Department","screen_admin_tag2":"Last Names","screen_admin_tag3":"First Names","screen_admin_tag4":"Email","screen_admin_tag5":"Role","screen_admin_tag6":"Active","screen_admin_tag7":"Create","screen_admin_tag8":"Segmentation","screen_admin_tag9":"Registration date","screen_alliance_tag1":"Order No.","screen_alliance_tag2":"Branch:","screen_alliance_tag3":"-- Select","screen_alliance_tag4":"Courier","screen_alliance_tag5":"Comments","screen_alliance_tag6":"Transfer","screen_alliance_tag7":"Accept","screen_alliance_tag8":"Cancel","screen_alliance_tag9":"Refresh Couriers","screen_banners_tag1":"Banners","screen_banners_tag10":"Edit Banner","screen_banners_tag11":"Add","screen_banners_tag12":"Cancel","screen_banners_tag13":"Modify","screen_banners_tag14":"Banner created successfully!","screen_banners_tag15":"Error creating banner!","screen_banners_tag16":"Banner updated successfully!","screen_banners_tag17":"Error updating banner!","screen_banners_tag18":"Banner modified successfully!","screen_banners_tag19":"Error when modifying Banner!","screen_banners_tag2":"Create Banner","screen_banners_tag20":"Banner deleted successfully!","screen_banners_tag21":"Error while deleting Banner!","screen_banners_tag22":"Description","screen_banners_tag23":"Targeting","screen_banners_tag24":"Search error","screen_banners_tag3":"Name","screen_banners_tag4":"Order","screen_banners_tag5":"Action","screen_banners_tag6":"Category","screen_banners_tag7":"Image","screen_banners_tag8":"Active","screen_banners_tag9":"Actions","screen_banners_tag_value":"Value","screen_bookcase_tag1":"Magazine","screen_bookcase_tag10":"Edit Journal","screen_bookcase_tag11 ":"Add","screen_bookcase_tag12":"Cancel","screen_bookcase_tag13":"Modify","screen_bookcase_tag14":"Magazine created successfully!","screen_bookcase_tag15":"Error creating magazine!","screen_bookcase_tag16":"Magazine updated successfully!","screen_bookcase_tag17":" Error updating journal!","screen_bookcase_tag18":"Journal modified successfully!","screen_bookcase_tag19":"Error modifying journal!","screen_bookcase_tag2":"Create Magazine","screen_bookcase_tag20":"Journal deleted successfully!","screen_bookcase_tag21":"Error deleting magazine!","screen_bookcase_tag3":"Id","screen_bookcase_tag4":"Link","screen_bookcase_tag5":"Active","screen_bookcase_tag6":"Actions","screen_brand_tag1":"Add Brand","screen_brand_tag2":"Name","screen_brand_tag3":"Add","screen_brand_tag4":"Brands","screen_brand_tag5":"Active","screen_categories_tag1":"New Category","screen_categories_tag10":"Category modified successfully!","screen_categories_tag11":"Category deleted successfully!","screen_categories_tag12":"Branch: ","screen_categories_tag13":"Category already exists","screen_categories_tag2":"Categories","screen_categories_tag3":"Image","screen_categories_tag4":"Name","screen_categories_tag5":"Active","screen_categories_tag5_1":"Priority","screen_categories_tag6":"Actions","screen_categories_tag7":"Categories","screen_categories_tag8":"Category created successfully!","screen_categories_tag9":"Category updated successfully!","screen_changelogs_tag1":"Changelogs","screen_changelogs_tag10":"User","screen_changelogs_tag11":"Module","screen_changelogs_tag12":"Task","screen_changelogs_tag2":"Data","screen_changelogs_tag3":"Description","screen_changelogs_tag4":"Creation Date","screen_changelogs_tag5":"Create Changelogs","screen_changelogs_tag6":"Add","screen_changelogs_tag7":"Cancel","screen_changelogs_tag8":"Changelog created successfully!","screen_changelogs_tag9":"Changelog creation failed!","screen_chats_tag1":"Chats","screen_chats_tag2":"Name","screen_chats_tag3":"Document","screen_chats_tag4":"Mail","screen_chats_tag5":"Actions","screen_check_chat_tag1":"Chat","screen_check_chat_tag2":"Send","screen_check_chat_tag3":"Check","screen_check_chat_tag4":"No Messages","screen_clients_accept_terms":"I authorize data processing","screen_clients_tag0":"Actions","screen_clients_tag1":"Load clients","screen_clients_tag10":"All","screen_clients_tag11":"Subscriber","screen_clients_tag12":"Subscriber Filter","screen_clients_tag13":"Document","screen_clients_tag14":"Document Type","screen_clients_tag15":"Phone","screen_clients_tag16":"Registration Date","screen_clients_tag17":"Last Login Date","screen_clients_tag18":"Last Login Time","screen_clients_tag19":"Date of Birth","screen_clients_tag2":"Clients","screen_clients_tag20":"Sex","screen_clients_tag21":"Device","screen_clients_tag22":"Segmentation","screen_clients_tag23":"Customer segmentation","screen_clients_tag24":"Registration start date","screen_clients_tag25":"Registration end date","screen_clients_tag26":"Last login start date","screen_clients_tag27":"Last login end date","screen_clients_tag28":"Filter by segmentation","screen_clients_tag3":"Last names","screen_clients_tag4":"First names","screen_clients_tag5":"Email","screen_clients_tag6":"Active","screen_clients_tag7":"Create","screen_clients_tag8":"No purchases","screen_clients_tag9":"No purchases 15 days","screen_clients_terms_conditions":"Terms and conditions accepted","screen_coins_tag1":"Coins","screen_coins_tag2":"Last name","screen_coins_tag3":"First name","screen_coins_tag4":"Email","screen_coins_tag5":"Current Coins","screen_coins_tag6":"Active","screen_coins_tag7":"Back","screen_comments_stars_tag1":"Bad","screen_comments_stars_tag2":"Average","screen_comments_stars_tag3":"Good","screen_comments_stars_tag4":"Very Good","screen_comments_stars_tag5":"Excellent","screen_comments_tag1":"Comments","screen_comments_tag11":"Comment deleted successfully!","screen_comments_tag12":"Comment sent successfully!","screen_comments_tag13":"Comments","screen_comments_tag2":"Order","screen_comments_tag3":"Customer","screen_comments_tag4":"Document","screen_comments_tag5":"Customer comment","screen_comments_tag6":"Customer rating","screen_comments_tag7":"Actions","screen_comments_tag8":"Order date","screen_comments_tag9":"Report","screen_companies_tag1":"Create Company","screen_companies_tag2":" Associated Companies","screen_companies_tag3":"Name","screen_companies_tag4":"Nit","screen_companies_tag5":"Phone","screen_companies_tag6":"Contact","screen_companies_tag7":"Active","screen_companies_tag8":"Actions","screen_coupon_tag1":"Coupons","screen_coupon_tag10":"Edit","screen_coupon_tag11":"Add","screen_coupon_tag12":"Cancel","screen_coupon_tag13":"Modify","screen_coupon_tag14":"Coupon created successfully!","screen_coupon_tag15":"Error creating Coupon!","screen_coupon_tag16":"Coupon updated successfully!","screen_coupon_tag17":"Error updating coupon!","screen_coupon_tag18":"Coupon modified successfully!","screen_coupon_tag19":"Error modifying coupon!","screen_coupon_tag2":"Create","screen_coupon_tag20":"Coupon deleted successfully!","screen_coupon_tag21":"Error deleting coupon!","screen_coupon_tag22":"Exclusive for subscribers","screen_coupon_tag23":"Exclusive for subscribers","screen_coupon_tag24":"Number of coupons","screen_coupon_tag25":"Quantity","screen_coupon_tag26":"Number of coupons per user","screen_coupon_tag27":"Custom codes (Optional):","screen_coupon_tag28":"NOTE: Custom codes are those provided by the coupon issuing entities (Rappi, Exito, etc.). You must enter the codes separated by commas and without spaces.","screen_coupon_tag29":"The number of codes entered does not correspond to the number of coupons","screen_coupon_tag3":"Id","screen_coupon_tag4":"Name","screen_coupon_tag5":"Image","screen_coupon_tag6":"Code","screen_coupon_tag7-1":"Terms and conditions link","screen_coupon_tag7-2":"Terms and conditions document","screen_coupon_tag8":"Active","screen_coupon_tag8-1":"Registration date","screen_coupon_tag9":"Actions","screen_create_notifications_tag1":"Notifications","screen_create_notifications_tag10":"Notification creation failed!","screen_create_notifications_tag11":"Segment","screen_create_notifications_tag12":"Notification deleted successfully!","screen_create_notifications_tag13":"Notification deletion failed!","screen_create_notifications_tag2":"Create notification","screen_create_notifications_tag3":"Send notification to all customers","screen_create_notifications_tag4":"Message","screen_create_notifications_tag5":"Date","screen_create_notifications_tag6":"Time","screen_create_notifications_tag7":"Add","screen_create_notifications_tag8":"Cancel","screen_create_notifications_tag9":"Notification created successfully!","screen_credit_coins_tag1":"Credits","screen_credit_coins_tag10":"Credit Coins","screen_credit_coins_tag11":"Import","screen_credit_coins_tag12":"Export","screen_credit_coins_tag13":"Download template","screen_credit_coins_tag2":"Last Name","screen_credit_coins_tag3":"First Name","screen_credit_coins_tag4":"Email","screen_credit_coins_tag5":"Total Coins","screen_credit_coins_tag6":"Active","screen_credit_coins_tag7":"Back","screen_credit_coins_tag8":"Create Credit","screen_credit_coins_tag9":"Debt Coins","screen_deliveryMan_tag1":"Messengers","screen_deliveryMan_tag10":"Online?","screen_deliveryMan_tag11":"Registration date","screen_deliveryMan_tag2":"Last name","screen_deliveryMan_tag3":"First name","screen_deliveryMan_tag4":"No. document","screen_deliveryMan_tag5":"Phone","screen_deliveryMan_tag6":"Multiple session","screen_deliveryMan_tag7":"Create","screen_deliveryMan_tag8":"Active","screen_deliveryMan_tag9":"Upload messengers","screen_diligence_tag1":"No. Order","screen_diligence_tag2":"Branch:","screen_diligence_tag3":"-- Select","screen_diligence_tag4":"Courier","screen_diligence_tag5":"Comments","screen_diligence_tag6":"Transfer","screen_diligence_tag7":"Accept","screen_diligence_tag8":"Cancel","screen_diligence_tag9":"Refresh couriers","screen_discounts_tag1":"Discounts","screen_discounts_tag10":"Message to show to the user when they win the discount","screen_discounts_tag11":"Promotion amount","screen_discounts_tag12":"Discount start","screen_discounts_tag13":"Discount start time","screen_discounts_tag14":"Discount end time","screen_discounts_tag15":"Discount end time","screen_discounts_tag16":"Discount price $","screen_discounts_tag17":"Discount percentage %","screen_discounts_tag18":"User can redeem it more than 1 time","screen_discounts_tag19":"The discount is cumulative with other discounts","screen_discounts_tag2":"Create Discount","screen_discounts_tag20":"Coupon code","screen_discounts_tag21":"Products","screen_discounts_tag22":"Group discount products","screen_discounts_tag23":"Name","screen_discounts_tag24":"PLU","screen_discounts_tag25":"Price","screen_discounts_tag26":"List of products required for gift (if you want it to be 2x1 select the same or different product in the two tables)","screen_discounts_tag27":"Gift Product","screen_discounts_tag28":"Product","screen_discounts_tag29":"Select the product to which the discount will be applied discount on the second unit.","screen_discounts_tag3":"Name","screen_discounts_tag30":"Select the product to which the discount will be applied when reaching the maximum value in the purchase.","screen_discounts_tag31":"Discount modified successfully!","screen_discounts_tag32":"Error modifying Discount!","screen_discounts_tag33":"Redeemed","screen_discounts_tag34":"Total","screen_discounts_tag35":"Username","screen_discounts_tag36":"Email","screen_discounts_tag37":"Cellphone","screen_discounts_tag38":"No. document","screen_discounts_tag39":"Order","screen_discounts_tag4":"Active","screen_discounts_tag40":"Discount","screen_discounts_tag41":"List of users who have redeemed the discount","screen_discounts_tag42":"Discount information","screen_discounts_tag43":"Value to apply to the discount","screen_discounts_tag44":"Order value","screen_discounts_tag45":"Coupon code","screen_discounts_tag46":"Start date","screen_discounts_tag47":"End date","screen_discounts_tag48":"Edit discount","screen_discounts_tag49":"Modify","screen_discounts_tag5":"Actions","screen_discounts_tag50":"Cancel","screen_discounts_tag51":"List of Products required for the discount","screen_discounts_tag52":"Promotional Product","screen_discounts_tag53":"Discount updated successfully!","screen_discounts_tag54":"Error updating discount!","screen_discounts_tag55":"There can only be one shipping discount created and active!","screen_discounts_tag56":"What will the discount be applied to","screen_discounts_tag57":"Select Category","screen_discounts_tag58":"Quantity","screen_discounts_tag59":"Product Group","screen_discounts_tag6":"Discount name","screen_discounts_tag60":"Discount Type:","screen_discounts_tag7":"Minimum value to apply the discount","screen_discounts_tag8":"Discount created successfully!","screen_discounts_tag9":"Error creating Discount!","screen_ec_tag1":"Enter discount coupon","screen_ec_tag2":"Apply","screen_editEC_tag1":"Orders","screen_editEC_tag10":"Plu","screen_editEC_tag11":"Name","screen_editEC_tag12":"Quantity","screen_editEC_tag13":"Total Price","screen_editEC_tag14":"No products","screen_editEC_tag15":"Status","screen_editEC_tag16":"Available","screen_editEC_tag17":"Collected","screen_editEC_tag18":"Not collected","screen_editEC_tag19":"Available","screen_editEC_tag2":"Edit Order","screen_editEC_tag20":"Not available","screen_editEC_tag21":"Base price","screen_editEC_tag22":"Actions","screen_editEC_tag23":"Attributes","screen_editEC_tag24":"Comments","screen_editEC_tag25":"Subtotal:","screen_editEC_tag26":"Products not found:","screen_editEC_tag27":"Total value:","screen_editEC_tag28":"Actual cost:","screen_editEC_tag29":"Size","screen_editEC_tag3":"Date:","screen_editEC_tag4":"Comments","screen_editEC_tag5":"Transfers","screen_editEC_tag6":"Branch","screen_editEC_tag7":"Products","screen_editEC_tag8":"Save Changes","screen_editEC_tag9":"Branch","screen_editSale_tag1":"Orders","screen_editSale_tag10":"Status","screen_editSale_tag11":"Picked up","screen_editSale_tag12":"Pending","screen_editSale_tag13":"Status:","screen_editSale_tag2":"Edit Order","screen_editSale_tag3":"Date:","screen_editSale_tag4":"Comments","screen_editSale_tag5":"Transfers","screen_editSale_tag6":"Branch","screen_editSale_tag7":"Products","screen_editSale_tag8":"Save changes","screen_editSale_tag9":"Branch","screen_edit_Sucursal_modal_tag1":"Register address","screen_edit_Sucursal_modal_tag2":"Neighborhood (Optional)","screen_edit_Sucursal_modal_tag3":"How to get there?","screen_edit_Sucursal_modal_tag4":"Help","screen_edit_Sucursal_modal_tag5":"Add","screen_edit_Sucursal_modal_tag6":"Important","screen_edit_Sucursal_modal_tag7":"The \"Add\" button is activated when validating the location on the map. To do this, you must select a search option or press the enter key after entering the address. If you try to edit the address, the button will be disabled again and you must repeat the previous process.","screen_edit_Sucursal_modal_tag8":"If you cannot find the address on the map, please enter a closer point and in the \u201cHow to get there?\u201d field enter the full address.","screen_edit_Sucursal_modal_tag9":"For greater search effectiveness, it is recommended to write the address without spaces after the \u201c#\u201d character. Example: Cra. 39 #5a-34, Cali, Valle del Cauca, Colombia.","screen_edit_admin_tag1":"Edit","screen_edit_admin_tag2":"Save changes","screen_edit_brand_tag1":"Edit Brand","screen_edit_brand_tag2":"Name","screen_edit_brand_tag3":"Save Changes","screen_edit_brand_tag4":"Cancel","screen_edit_brand_tag5":"Modify Brand","screen_edit_brand_tag6":"Brand","screen_edit_categories_tag1":"Edit Category","screen_edit_categories_tag2":"Image","screen_edit_categories_tag3":"First name","screen_edit_categories_tag4":"Priority","screen_edit_categories_tag5":"Cancel","screen_edit_categories_tag6":"Save changes","screen_edit_clients_tag1":"Clients","screen_edit_clients_tag10":"Confirm password","screen_edit_clients_tag11":"Address","screen_edit_clients_tag12":"Neighborhood (Optional)","screen_edit_clients_tag13":"Instructions","screen_edit_clients_tag14":"Save changes","screen_edit_clients_tag15":"Main address","screen_edit_clients_tag16":"Subscriber","screen_edit_clients_tag2":"Edit","screen_edit_clients_tag3":"Edit","screen_edit_clients_tag4":"First Name","screen_edit_clients_tag5":"Last Name","screen_edit_clients_tag6":"Email","screen_edit_clients_tag7":"Phone","screen_edit_clients_tag8":"No. document","screen_edit_clients_tag9":"Password","screen_edit_coins_tag1":"Support Coins","screen_edit_coins_tag2":"Refresh Coins","screen_edit_coins_tag3":"First Name","screen_edit_coins_tag4":"Last Name","screen_edit_coins_tag5":"Mail","screen_edit_coins_tag6":"Save changes","screen_edit_coins_tag7":"Current Coins","screen_edit_company_tag1":"Edit Company","screen_edit_company_tag2":"Edit","screen_edit_company_tag3":"Cancel","screen_edit_credit_co ins_tag6":"Save changes","screen_edit_credit_coins_tag1":"Fan Coins","screen_edit_credit_coins_tag10":"Create Credit Coins","screen_edit_credit_coins_tag2":"Update Coins","screen_edit_credit_coins_tag3":"First Names","screen_edit_credit_coins_tag4":"Surnames","screen_edit_credit_coins_tag5":"Email","screen_edit_credit_coins_tag7":"Total Coins","screen_edit_credit_coins_tag8":"Debt Coins","screen_edit_credit_coins_tag9":"Credit Coins","screen_edit_deliveryMan_tag1":"Edit courier","screen_edit_deliveryMan_tag2":"OK","screen_edit_deliveryMan_tag3":"Change image","screen_edit_line_business_tag1":"Edit Business Line","screen_edit_line_business_tag2":"Name","screen_edit_line_business_tag3":"Save Changes","screen_edit_line_business_tag4":"Business Lines","screen_edit_line_business_tag5":"Modify Business Line","screen_edit_payment_tag1":"Edit Payment Method","screen_edit_payment_tag2":"Name","screen_edit_payment_tag3":"Save Changes","screen_edit_payment_tag4":"Cancel","screen_edit_sale_channel_tag1":"Edit Sales Channel","screen_edit_sale_channel_tag2":"Name","screen_edit_sale_channel_tag3":"Save Changes","screen_edit_sale_channel_tag4":"Sales Channel","screen_edit_sale_channel_tag5":"Modify Sales Channel","screen_edit_sizing_tag1":"Modify Measurement Units","screen_edit_sizing_tag2":"Modify","screen_edit_sucursal_tag1":"Branches","screen_edit_sucursal_tag10":"Municipality","screen_edit_sucursal_tag11":"Address","screen_edit_sucursal_tag12":"Neighborhood (Optional)","screen_edit_sucursal_tag13":"How to get there?","screen_edit_sucursal_tag14":"Save changes","screen_edit_sucursal_tag15":"Cancel","screen_edit_sucursal_tag2":"edit branch","screen_edit_sucursal_tag3":"Edit branch","screen_edit_sucursal_tag4":"Email","screen_edit_sucursal_tag5":"Name","screen_edit_sucursal_tag6":"Code","screen_edit_sucursal_tag7":"Phone","screen_edit_sucursal_tag8":"Coverage","screen_edit_sucursal_tag9":"Department","screen_evidence_tag1":"Orders","screen_evidence_tag10":"Email:","screen_evidence_tag11":"There is no courier assigned","screen_evidence_tag12":"No. order: ","screen_evidence_tag13":"Status:","screen_evidence_tag14":"Branch:","screen_evidence_tag15":"Photographic evidence","screen_evidence_tag16":"Branch","screen_evidence_tag17":"No files","screen_evidence_tag18":"Back","screen_evidence_tag19":"Photo","screen_evidence_tag2":"Order Evidence","screen_evidence_tag20":"Cancel","screen_evidence_tag3":"Order Evidence #","screen_evidence_tag4":"Customer:","screen_evidence_tag5":"Phone:","screen_evidence_tag6":"Email:","screen_evidence_tag7":"Courier:","screen_evidence_tag8":"Company:","screen_evidence_tag9":"Phone:","screen_header_tag1":"Logout","screen_header_tag2":"Number of unaccepted orders","screen_header_tag3":"Suggestion box messages","screen_header_tag4":"Toggle navigation","screen_home_tag1":"Messengers","screen_home_tag10":"States","screen_home_tag11":"Sales volumes","screen_home_tag12":"Users online last 7 days","screen_home_tag13":"New users last 3 months","screen_home_tag2":"Transfers","screen_home_tag3":"Orders","screen_home_tag4":"Customers","screen_home_tag5":"Year","screen_home_tag6":"Month","screen_home_tag7":"All","screen_home_tag8":"Search","screen_home_tag9":"Order times","screen_info_coins_tag1":"Transaction Details","screen_info_coins_tag2":"Available Coins","screen_info_coins_tag3":"Account Status","screen_info_coins_tag4":"Last transaction date","screen_info_coins_tag5":"Transactions","screen_info_coins_tag6":"Close","screen_info_coins_tag7":"Ok","screen_info_comments_tag1":"Comment details","screen_info_comments_tag10":"Comment:","screen_info_comments_tag11":"Rating:","screen_info_comments_tag12":"Cancel","screen_info_comments_tag2":"Order:","screen_info_comments_tag3":"Customer:","screen_info_comments_tag4":"Comment:","screen_info_comments_tag5":"Rating:","screen_info_comments_tag6":"Administrator:","screen_info_comments_tag7":"Comment:","screen_info_comments_tag8":"Rating:","screen_info_comments_tag9":"Messenger:","screen_info_credit_coins_tag1":"Transaction Details","screen_info_credit_coins_tag2":"Available Coins","screen_info_credit_coins_tag3":"Account Status","screen_info_credit_coins_tag4":"Last Transaction Date","screen_info_credit_coins_tag5":"Transactions","screen_info_credit_coins_tag6":"Close","screen_info_credit_coins_tag7":"Ok","screen_info_orders_tag1":"Order Information","screen_info_orders_tag10":"Status:","screen_info_orders_tag11":"Total time:","screen_info_orders_tag12":"Payment method:","screen_info_orders_tag13":"Courier rating:","screen_info_orders_tag14":"Observation:","screen_info_orders_tag15":"Products","screen_info_orders_tag16":"Transfers","screen_info_orders_tag17":"Subtotal:","screen_info_orders_tag17-2":"Service charge:","screen_info_orders_tag18":"Address:","screen_info_orders_tag19":"Discount:","screen_info_orders_tag2":"Code:","screen_info_orders_tag20":"Total Price:","screen_info_orders_tag21":"Cancel","screen_info_orders_tag22":"Order Type:","screen_info_orders_tag23":"Actual Cost:","screen_info_orders_tag24":"Active Discounts:","screen_info_orders_tag25":"Branch App User:","screen_info_orders_tag26":"Phone:","screen_info_orders_tag27":"Neighborhood:","screen_info_orders_tag3":"Branch:","screen_info_orders_tag4":"Customer:","screen_info_orders_tag5":"Address:","screen_info_orders_tag6":"Origin Branch:","screen_info_orders_tag7":"Destination Branch:","screen_info_orders_tag8":"Messenger:","screen_info_orders_tag9":"Done by:","screen_line_business_tag1":"Add Business Line","screen_line_business_tag2":"Name","screen_line_business_tag3":"Add","screen_line_business_tag4":"Lines","screen_line_business_tag5":"Active","screen_login_tag1":"Email","screen_login_tag10":"Forgot your password?","screen_login_tag11":"It happens to all of us, just enter your email and we will take care of the rest.","screen_login_tag12":"Cancel","screen_login_tag13":"Submit","screen_login_tag14":"Please enter a valid email","screen_login_tag2":"The email and password do not match. Try again.","screen_login_tag3":"Password","screen_login_tag4":"The email and password do not match. Please try again.","screen_login_tag5":"Log in","screen_login_tag6":"The user is inactive","screen_login_tag7":"The user is not registered","screen_login_tag8":"The email and password do not match. Please try again.","screen_login_tag9":"Login","screen_mailbox_email_tag1":"Hello, a new suggestion box has been received in the city of: ","screen_mailbox_email_tag2":"User name: ","screen_mailbox_email_tag3":"User email: ","screen_mailbox_email_tag4":"You can view the message in the web administrator, thank you very much.","screen_mailbox_tag1":"Suggestion box","screen_mailbox_tag2":"Name","screen_mailbox_tag3":"Document","screen_mailbox_tag4":"Mail","screen_mailbox_tag5":"Actions","screen_mailbox_tag6":"Date","screen_notifications_tag1":"Create notification","screen_notifications_tag10":"Link","screen_notifications_tag11":"Notification type","screen_notifications_tag2":"Notifications","screen_notifications_tag3":"Message","screen_notifications_tag4":"Scheduled date","screen_notifications_tag5":"Creation date","screen_notifications_tag6":"Responsible","screen_notifications_tag7":"Notification created successfully!","screen_notifications_tag8":"User","screen_notifications_tag9":"Segment","screen_orders_tag1":"Order report","screen_orders_tag10":"Branch","screen_orders_tag11":"Location","screen_orders_tag12":"Order Reference","screen_orders_tag13":"Order Reference Confirmation","screen_orders_tag14":"Branch","screen_orders_tag15":"Order Type","screen_orders_tag16":"Payment Status:","screen_orders_tag17":"Payment REF:","screen_orders_tag18":"Pending REF:","screen_orders_tag19":"Reference Code","screen_orders_tag2":"New order","screen_orders_tag20-1":"Payment Reference","screen_orders_tag20-2":"Payment ID","screen_orders_tag20-3":"Payment Status","screen_orders_tag21":"Order Type","screen_orders_tag22":"Mail","screen_orders_tag23":"Hello :fullname, the order registered in the store :store with code: :code has been updated, now the order is in status: :state. Greetings","screen_orders_tag24":"Payment Method","screen_orders_tag3":"Orders","screen_orders_tag4":"Code","screen_orders_tag5":"Date","screen_orders_tag6":"Customer","screen_orders_tag7":"Document","screen_orders_tag8":"Status","screen_orders_tag9":"Courier","screen_other_users_tag0":"All","screen_other_users_tag1":"Create","screen_other_users_tag10":"Registration Date","screen_other_users_tag2":"Other Roles","screen_other_users_tag3":"Last Name","screen_other_users_tag4":"First Name","screen_other_users_tag5":"Email","screen_other_users_tag6":"Active","screen_other_users_tag7":"Role","screen_other_users_tag8":"Edit","screen_other_users_tag9":"Segmentation","screen_parameters_app_tag0":"APP texts","screen_parameters_btn_setup":"Configure LiveScore ID","screen_parameters_live_save_team":"Update team","screen_parameters_live_score_country":"Country","screen_parameters_live_score_team":"Team","screen_parameters_tag1":"Parameters","screen_parameters_tag10":"Start time (business day)","screen_parameters_tag11":"End time (business day)","screen_parameters_tag12":"Start time of the day (holidays)","screen_parameters_tag13":"End time of the day (holidays)","screen_parameters_tag14":"Allow the creation of orders?","screen_parameters_tag15":"Coverage point","screen_parameters_tag16":"Activate registration discount?","screen_parameters_tag17":"Registration discount value","screen_parameters_tag18":"Days","screen_parameters_tag19":"Accept","screen_parameters_tag2":"Delivery cost","screen_parameters_tag20":"Activate automatic code for the order types:","screen_parameters_tag21":"Modified order type","screen_parameters_tag22":"Allow personal data modification?","screen_parameters_tag23":"Messenger permissions","screen_parameters_tag24":"BI URL","screen_parameters_tag25":"Minimum messenger version","screen_parameters_tag26":"Products by branch","screen_parameters_tag27":"External template","screen_parameters_tag28":"WhatsApp support cell phone","screen_parameters_tag29":"Home cost by coverage","screen_parameters_tag3":"Minimum order value","screen_parameters_tag30":"Chair blocking minutes for subscriptions","screen_parameters_tag31":"Free sale chair blocking minutes","screen_parameters_tag32":"Maximum number of passes that a user can buy","screen_parameters_tag33":"Maximum number of tickets that a user can buy","screen_parameters_tag34":"Maximum number of blocks that a user can make","screen_parameters_tag35":"Text message from user app for bag collectionDIM","screen_parameters_tag36":"Bag valueDIM","screen_parameters_tag37":"Bag collectionDIM","screen_parameters_tag38":"Pickup in store","screen_parameters_tag39":"Social distancing","screen_parameters_tag4":"DB City","screen_parameters_tag40":"Number of chairs to block on x-axis","screen_parameters_tag41":"Number of chairs to block on y-axis","screen_parameters_tag42":"Block chairs on top","screen_parameters_tag43":"Block chairs on bottom","screen_parameters_tag44":"Block chairs on left","screen_parameters_tag45":"Block chairs on right","screen_parameters_tag46":"Activate reference order","screen_parameters_tag47":"Activate create product button","screen_parameters_tag48":"Synchronization with Woocommerce","screen_parameters_tag49":"Synchronization with Shopify","screen_parameters_tag5":"PQRS","screen_parameters_tag50":"Sending emails when modifying inventory","screen_parameters_tag51":"Email notifications for inventory modification","screen_parameters_tag52":"Stadium image URL for flash ticket sales","screen_parameters_tag53":"Sale of tickets from external supplier","screen_parameters_tag54":"Sale of points ticketsDIM","screen_parameters_tag55":"Activate order types","screen_parameters_tag57":"Activate Pre-sale","screen_parameters_tag58":"End date and time of pre-sale","screen_parameters_tag59":"Deadline for new users to pre-sell","screen_parameters_tag6":"Minimum customer version","screen_parameters_tag60":"Message to users who do not comply with the pre-sale","screen_parameters_tag61":"Maximum quantity of products on VAT-free day","screen_parameters_tag62":"Activate VAT-free day","screen_parameters_tag63":"Activate pre-sale for APP subscribers","screen_parameters_tag64":"End date and time for subscribers to pre-sell","screen_parameters_tag65":"Message to users who do not comply with the pre-sale subscription","screen_parameters_tag66":"# of days before the match to see the ticket","screen_parameters_tag67":"Ticket background URL, Dimensions (315x456)","screen_parameters_tag68":"Sponsor URL, Dimensions (622x3)","screen_parameters_tag69":"Post-purchase image URL","screen_parameters_tag7":"Email notifications","screen_parameters_tag70":"Activate match mode","screen_parameters_tag71":"SportsCrowd merchant ID","screen_parameters_tag72":"SportsCrowd CMS ID","screen_parameters_tag73":"SportsCrowd branch ID","screen_parameters_tag74":"Currency value, 1 currency = ","screen_parameters_tag75":"Activate (subscriber pre-sale \/ ticket sales) WEB","screen_parameters_tag76":"Url of the ecommerce or allied company to apply discounts","screen_parameters_tag77":"Advertising image URL of the ecommerce or allied company to apply discounts","screen_parameters_tag78":"LEAL API commerce parameters configuration","screen_parameters_tag79":"Synchronize Data","screen_parameters_tag8":"Global shipping discount percentage","screen_parameters_tag80":"Activate flash ticket sales","screen_parameters_tag81":"Flash ticket sales icon URL","screen_parameters_tag82":"Flash ticket sales","screen_parameters_tag83":"Show purchase confirmation alert","screen_parameters_tag84":"Exclusive registration\/login parameters for subscribers","screen_parameters_tag85":"Exclusivity message","screen_parameters_tag86":"Exclusivity message","screen_parameters_tag87":"APP update parameters","screen_parameters_tag88":"Exclusivity message","screen_parameters_tag88-1":"Optional Android update","screen_parameters_tag88-2":"Optional iOS update","screen_parameters_tag89":"Message when activating the optional update","screen_parameters_tag9":"Terms","screen_parameters_ticketing_tag0":"TICKETING SALE","screen_parameters_ticketing_tag1":"Maximum number of tickets you can buy message","screen_parameters_ticketing_tag2":"Maximum number of season tickets you can buy message","screen_parameters_ticketing_tag3":"Message timeout for seat lock","screen_parameters_ticketing_tag4":"Message add tickets of the same type","screen_parameters_ticketing_tag5":"Message buy the same number of passes","screen_parameters_ticketing_tag6":"Message exclusivity only for sale of passes","screen_parameters_ticketing_tag7":"Message complete information for each subscriber","screen_parameters_ticketing_tag8":"Message availability view tickets","screen_parameters_ticketing_tag9":"Message pre-sale of passes is not active","screen_parameters_title_gateway":"Gateway\/Payment Parameters","screen_parameters_title_livescore":"Live Score parameters","screen_payment_tag1":"Add Payment Method","screen_payment_tag2":"Name","screen_payment_tag3":"Add","screen_payment_tag4":"Payment Methods","screen_payment_tag5":"Active","screen_points_tag1":"Points","screen_points_tag2":"Create point","screen_points_tag3":"Point created successfully!","screen_points_tag4":"Error creating Point!","screen_points_tag5":"Point updated successfully!","screen_points_tag6":"Error updating Point!","screen_points_tag8":"Point modification failed!","screen_popup_tag1":"PopUp","screen_popup_tag10":"Edit PopUp","screen_popup_tag11":"Add","screen_popup_tag12":"Cancel","screen_popup_tag13":"Modify","screen_popup_tag14":"PopUp created successfully!","screen_popup_tag15":"Error creating PopUp!","screen_popup_tag16":"PopUp updated successfully!","screen_popup_tag17":"Error updating PopUp!","screen_popup_tag18":"PopUp modified successfully!","screen_popup_tag19":"Error modifying the PopUp!","screen_popup_tag2":"Create PopUp","screen_popup_tag20":"PopUp deleted successfully!","screen_popup_tag21":"Error deleting the PopUp!","screen_popup_tag22":"Actions","screen_popup_tag23":"Category","screen_popup_tag3":"Image","screen_popup_tag4":"Title","screen_popup_tag5":"Message","screen_popup_tag6":"Text of the Button","screen_popup_tag7":"Action Type","screen_popup_tag8":"Value","screen_popup_tag9":"Active","screen_products_tag1":"Products","screen_products_tag10":"Size","screen_products_tag11":"Units available","screen_products_tag12":"Maximum units by size","screen_products_tag13":"Product for adults","screen_products_tag14":"Discount percentage %","screen_products_tag15":"Discount start","screen_products_tag16":"Discount end","screen_products_tag17":"Discount end time","screen_products_tag18":"Flash price","screen_products_tag19":"Start flash","screen_products_tag2":"Create Product","screen_products_tag20":"End flash","screen_products_tag21":"End flash time","screen_products_tag22":"Brand","screen_products_tag23":"Order","screen_products_tag24":"Image","screen_products_tag25":"Add","screen_products_tag26":"Cancel","screen_products_tag27":"Product modified successfully!","screen_products_tag28":"Error modifying Product!","screen_products_tag29":"Product deleted successfully!","screen_products_tag3":"Image","screen_products_tag30":"Error deleting Product!","screen_products_tag31":"Category or Subcategories","screen_products_tag32":"Enter the name","screen_products_tag33":"Unit","screen_products_tag34":"Product created successfully!","screen_products_tag35":"Error creating Product!","screen_products_tag36":"Edit Product","screen_products_tag37":"Modify","screen_products_tag38":"Cancel","screen_products_tag39":"Product updated successfully!","screen_products_tag4":"Name","screen_products_tag40":"Error updating product!","screen_products_tag41":"Import","screen_products_tag42":"Export","screen_products_tag43":"Import Products","screen_products_tag44":".xlsx File","screen_products_tag45":"File Imported Successfully: ","screen_products_tag46":"Error Importing File: ","screen_products_tag47":"Categories","screen_products_tag48":"Import Categories and Subcategories","screen_products_tag49":"Error! Product does not exist, PLU: ","screen_products_tag5":"PLU","screen_products_tag50":"Error! PLU cannot be empty, Category: ","screen_products_tag51":"Error! Category cannot be empty, PLU: ","screen_products_tag52":"Photos","screen_products_tag53":"Upload photos","screen_products_tag54":"Select branch","screen_products_tag55":"Branch: ","screen_products_tag56":"External Template","screen_products_tag57":"Export Categories","screen_products_tag58":" Product with PLU: :plu does not have an associated brand","screen_products_tag59":" Product at position: :position does not have a valid PLU","screen_products_tag6":"Barcode","screen_products_tag60":" Product with PLU: :plu does not have the correct attribute structure","screen_products_tag61":"The total available units for the product with PLU: :plu is not equal to the available units in its attributes","screen_products_tag62":"Units in dispatch","screen_products_tag63":"Sync Shopify","screen_products_tag64":"Sync Woocommerce","screen_products_tag65":"Product link","screen_products_tag66":"Product image successfully deleted!","screen_products_tag67":"Error deleting product image!","screen_products_tag68":"Image deleted or missing!","screen_products_tag69":"Error! The product does not have the category or subcategory selected","screen_products_tag7":"Price","screen_products_tag70":"Creation date","screen_products_tag71":"Segmentation","screen_products_tag72":"Segmentation price","screen_products_tag8":"Active","screen_products_tag9":"Actions","screen_radio_tag1":"Radio","screen_radio_tag10":"Edit Magazine","screen_radio_tag11":"Add","screen_radio_tag12":"Cancel","screen_radio_tag13":"Modify","screen_radio_tag14":"Radio created successfully!","screen_radio_tag15":"Error creating radio!","screen_radio_tag16":"Radio updated successfully!","screen_radio_tag17":"Error updating radio!","screen_radio_tag18":"Radio modified successfully!","screen_radio_tag19":"Error modifying radio!","screen_radio_tag2":"Create Radio","screen_radio_tag20":"Radio deleted successfully!","screen_radio_tag21":"Error deleting radio!","screen_radio_tag3":"Id","screen_radio_tag4":"Title","screen_radio_tag5":"Link","screen_radio_tag6":"Active","screen_radio_tag7":"Actions","screen_refund_tag1":"Order code","screen_report_tag1":"Orders","screen_report_tag2":"Generate report","screen_report_tag3":"Start Date","screen_report_tag4":"Start Time","screen_report_tag5":"Generate","screen_report_tag6":"Cancel","screen_report_tag7":"End Date","screen_report_tag8":"End Time","screen_report_tag9":"Ticket Type","screen_sale_channel_tag1":"Add Sales Channel","screen_sale_channel_tag2":"Name","screen_sale_channel_tag3":"Add","screen_sale_channel_tag4":"Channels","screen_sale_channel_tag5":"Active","screen_sale_tag1":"No. Order","screen_sale_tag10":"Picker","screen_sale_tag11":"-- Select","screen_sale_tag12":"Payment method","screen_sale_tag13":"Discount %","screen_sale_tag14":"Total","screen_sale_tag15":"Business Line","screen_sale_tag16":"Sales Channel","screen_sale_tag17":"Comments","screen_sale_tag18":"Origin Branch:","screen_sale_tag19":"City","screen_sale_tag2":"Document","screen_sale_tag20":"Email","screen_sale_tag21":"Addresses","screen_sale_tag22":"Products not found","screen_sale_tag23":"City (Coverage)","screen_sale_tag24":"Mail","screen_sale_tag25":"SUCCESSFUL PAYMENT REF:","screen_sale_tag26":"PENDING PAYMENT REF:","screen_sale_tag3":"First name","screen_sale_tag4":"Last name","screen_sale_tag5":"Address","screen_sale_tag6":"Neighborhood (Optional)","screen_sale_tag7":"Observations","screen_sale_tag8":"Phone \/ Cellular","screen_sale_tag9":"Branch","screen_send_comment_tag1":"Send comment","screen_send_comment_tag2":"Message:","screen_send_comment_tag3":"Branch:","screen_send_comment_tag4":"select a branch","screen_send_comment_tag5":"Cancel","screen_send_comment_tag6":"Send","screen_sizing_tag1":"Create Units of Measure","screen_sizing_tag2":"Units of Measure","screen_sizing_tag3":"Name","screen_sizing_tag4":"Abbreviation","screen_sizing_tag5":"Actions","screen_stocks_tag1":"Inventory","screen_stocks_tag2":"Details","screen_subcategories_tag1":"New Subcategory","screen_subcategories_tag2":"Subcategories","screen_subcategories_tag3":"Image","screen_subcategories_tag4":"Name","screen_subcategories_tag5":"Category","screen_subcategories_tag6":"Active","screen_subcategories_tag7":"Actions","screen_subcategories_tag8":"Priority","screen_sucursal_tag1":"Add branch","screen_sucursal_tag2":"Branches","screen_sucursal_tag3":"Code","screen_sucursal_tag4":"Name","screen_sucursal_tag5":"Address","screen_sucursal_tag6":"Phone","screen_sucursal_tag7":"Asset","screen_sucursal_tag8":"Actions","screen_transactions_coins_tag1":"Moves","screen_transactions_coins_tag2":"Type","screen_transactions_coins_tag3":"Date","screen_transactions_coins_tag4":"Reference","screen_transactions_coins_tag5":"Coins","screen_transactions_coins_tag6":"Detail","screen_transactions_coins_tag7":"Transaction cancelled","screen_transactions_credit_coins_tag1":"Transactions","screen_transactions_credit_coins_tag2":"Type","screen_transactions_credit_coins_tag3":"Date","screen_transactions_credit_coins_tag4":"Reference","screen_transactions_credit_coins_tag5":"Coins","screen_transactions_credit_coins_tag6":"Detail","screen_transactions_credit_coins_tag7":"Transaction cancelled","screen_transferMail_tag1":"Hello","screen_transferMail_tag2":"From order #","screen_transferMail_tag3":"A transfer of the following products was made:","screen_transferMail_tag4":"Branch origin:","screen_transferMail_tag5":"Final branch:","screen_transferMail_tag6":"Thank you,","screen_transfer_order_tag1":"Orders","screen_transfer_order_tag10":"Email:","screen_transfer_order_tag11":"There is no courier assigned","screen_transfer_order_tag12":"No. order:","screen_transfer_order_tag13":"Status:","screen_transfer_order_tag14":"Branch:","screen_transfer_order_tag15":"Transfers","screen_transfer_order_tag16":"Branch","screen_transfer_order_tag17":"Products","screen_transfer_order_tag18":"Transfer","screen_transfer_order_tag19":"Save Changes","screen_transfer_order_tag2":"Order Transfer","screen_transfer_order_tag20":"Cancel","screen_transfer_order_tag3":"Date:","screen_transfer_order_tag4":"Customer:","screen_transfer_order_tag5":"Phone:","screen_transfer_order_tag6":"Email:","screen_transfer_order_tag7":"Courier:","screen_transfer_order_tag8":"Company:","screen_transfer_order_tag9":"Phone:","screen_transfer_tag1":"No. Order","screen_transfer_tag10":"Origin branch:","screen_transfer_tag11":"Recent orders","screen_transfer_tag2":"Destination branch:","screen_transfer_tag3":"-- Select","screen_transfer_tag4":"Courier","screen_transfer_tag5":"Comments","screen_transfer_tag6":"Transfer","screen_transfer_tag7":"Accept","screen_transfer_tag8":"Cancel","screen_transfer_tag9":"Refresh couriers","seasons":{"title_1":"Create Season","title_10":"Edit Season","title_11":"Update","title_12":"Add Season","title_13":"Season List","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"End","title_18":"Seasons","title_2":"Tournaments","title_3":"Name","title_4":"Start","title_5":"Active","title_6":"Season tickets for sale","title_8":"Create","title_9":"Cancel"},"select":"Select","service":"Service","service_charges":{"tag0":"Active","tag00":"Actions","tag1":"Price","tag2":"Service(s)","tag3":"Rules","tag3-0":"JSON","tag3-1":"Matches","tag3-2":"Grandstands","tag3-3":"Payment Type","tag3-4":"Categories","tag4":"Segmentation","tag5":"Priority","title_academy":"Academy","title_active":"Active service charges","title_create":"Create","title_edit":"Edit","title_list":"Service charges","title_order":"Store","title_rules":"Rules","title_ticketing":"Ticketing"},"service_charges_module":"Service charges","smsparameters":"SMS notification parameters","social_network_accounts":{" tag2":"Registration date","tag0":"Active","tag00":"Actions","tag1":"Name","title_create":"Create","title_edit":"Edit","title_list":" Official accounts"},"state_invalid":"Invalid state number","state_invalid_2":"The ticket is not in the purchased state, it is not possible to change the state","statistics":{"active":"Active statistics","api_key":"API key","carousel_matches":"(Carousel - html - iframe) of matches","carousel_results":"(Carousel - html - iframe) of leaderboard","last_load_date":"Last synchronization date","sync":"Synchronize data","synchronization_frequency":"Synchronization frequency time (in minutes)","team_league":"Tournament ID","team_name":"Team name","team_season":"Tournament year","title":"Team statistics","title_datafactory_api":"DATAFACTORY API (MATCHES - STANDBY)","title_football_api":"FOOTBAL API (STANDBY)","title_serp_api":"SERPAPI API (MATCHES)","update":"Save settings"},"stock_modification":"Inventory modification","stock_modification_title":"Trigger newsletter","subcategories_controller_tag10":"Subcategory modified with success!","subcategories_controller_tag11":"Deleted a subcategory","subcategories_controller_tag12":"Subcategory deleted successfully!","subcategories_controller_tag13":"Subscribers","subcategories_controller_tag2":"Category created successfully!","subcategories_controller_tag3":"Subcategory image updated","subcategories_controller_tag4":"Subcategory updated successfully!","subcategories_controller_tag5":"Subcategory image uploaded","subcategories_controller_tag6":"Subcategory created successfully!","subcategories_controller_tag7":"A category was updated","subcategories_controller_tag8":"Subcategory updated successfully!","subject_new_order":"New order","subscribers":{"controller_delete_tag1":"Subscriber deleted successfully!","title_1":"Hincha Poderoso, your user is not registered in the application NUEVOSTALENTOS. Download it and register to continue with your purchase."},"symbolic_tickets":{"active":"Active","capacity":"Capacity","create":"Create","end_date":"Sale end date","error_create":"Error creating card!","error_delete":"Error deleting card!","error_generate_tickets":"Error generating symbolic tickets","error_update":"Error updating card!","events":"Event","image":"Image","name":"Name","segmentation":"Segmentation","start_date":"Sale start date","subscriber":"Subscribers Only","ticket_not_have_price":"You must set the symbolic ticket price first","title":"Cards","to_create":"Card created successfully","to_delete":"Card deleted successfully","to_generate_tickets":"Symbolic tickets generated successfully","to_update":"Card updated successfully","update":"Edit","update_state":"Status has been updated successfully"},"symbolic_tickets_price":{"comment":"Comment","price":"Price"},"symbolic_tickets_user":{"title_1":"Symbolic Ticket","title_2":"Amount","title_3":"User","title_4":"Payment Ref","title_5":"Payment Status","title_6":"Pin","title_7":"Symbolic Tickets Detail","title_8":"Valid Ticket?"},"tag":{"actions":"Actions","active":"Active","add":"Add Tag","alias":"Alias","alias_description":"(Lowercase - No special characters)","create":"Create Tag","description":"Description","edit":"Edit Label","image":"Image","list":"Tag list","name":"Name","tags":"Tags"},"teams":{"alias":"Alias","title_1":"Create Team","title_10":"Edit Team","title_11":"Update","title_12":"Add Team","title_13":"Team List","title_14":"Active","title_15":"Actions","title_16":"Options","title_2":"Tournament","title_3":"Name","title_4":"Logo","title_5":"Visibility","title_6":"Display Name","title_7":"Abbreviation","title_8":"Create","title_9":"Cancel"},"terms_conditions":{"accepted":"Terms and conditions accepted.","created_at":"Registration date","document":"Document\/File","error_active":"The selected terms and conditions cannot currently be activated because other terms and conditions are active.","tag0":"Active","tag00":"Actions","title_create":"Create","title_edit":"Edit","title_list":"Terms and conditions","version":"Version"},"text_notification_push":{"title":"Push notification text"},"ticket_backups":{"tille_9":"Chair","title_1":"Tickets Backup","title_10":"Add Chair","title_11":"Change Chair","title_12":"Select a chair","title_13":"Change chair","title_14":"Reservation date","title_15":"User Names","title_16":"User Email","title_17-1":"Seller Names","title_17-2":"Seller Email","title_18":"Mass Validation","title_19":"No Tickets","title_2":"App payment ref","title_20":"List of transactions without tickets","title_21":"Select a sector","title_22":"Transaction ID","title_23":"Gateway","title_24":"Third-party payment ref","title_25":"Match(es)","title_26":"Ticket type","title_27":"PIN","title_3":"Payment status","title_4":"Attempts","title_5":"Gateway comment","title_6-1":"Subtotal","title_6-2":"Service charge","title_6-3":"Total price","title_7":"Actions","title_8":"Tickets"},"ticket_logs":{"filters":"Filters","tag0":"Actions","tag1":"Operation description","tag2":"Data","tag3":"Task","tag4":"Module","tag5-1":"Name of person responsible","tag5-2":"Last name of person responsible","tag5-3":"Email of person responsible","tag6":"Date","tag6-1":"Start date","tag6-2":"End date","title_export_all":"Export logs","title_list":"Ticketing log"},"ticket_logs_module":"Log","ticket_tag":{"actions":"Actions","active":"Active","add":"Add Tag","alias":"Alias","alias_description":"(Lowercase - No special characters)","create":"Create Tag","description":"Description","edit":"Edit Tag","image":"Image","list":"Tag List","name":"Name","tags":"Tags"},"tickets":{"app_permissions":"APP permissions","app_ticketing_background":"APP ticket sales background image","enable_download_button":"Enable download button","enable_transfer_ticket":"Enable transfer of tickets","enable_tyc":"Enable terms and conditions","enable_validate_doors":"Enable door validation","matches":"Matches","parameterizable_buttons":"Parameterizable buttons","send_mail_tickets":"Configuration of sending tickets by email","send_mail_tickets_app_purchase":"Send APP ticket purchase email","send_mail_tickets_web_purchase":"Send WEB ticket purchase email","subscriber_button":"Subscribers button","terms":"Terms and conditions","ticket_button":"Ticket button","title_1":"Search user:","title_10":"Event","title_11":"Grandstand","title_12":"Sector","title_13":"Seat","title_14":"Available","title_15":"Courtesy","title_16":"Subscriber","title_17":"Sold","title_18":"Blocked","title_19":"Distancing","title_2":"Id","title_20":"Match","title_21":"Select ticket type","title_22":"Add","title_23":"Ticket sales form","title_24":"User","title_25":"List","title_26":"Total:","title_27":"Proceed with payment","title_28":"Modify","title_29":"Locked by Administration","title_3":"Names","title_30":"Parameters","title_31":"Limit amount to transfer tickets","title_4":"Last name","title_5":"Document","title_6":"Cell phone","title_7":"Email","title_8":"Ticket type:","title_9":"Price:","validation_app_permissions":"Stadium APP permissions","view_document":"View document","view_image":"View image","web_ticketing_background":"WEB ticket sales background image"},"tickets_matches":{"export":{"title_0":"Download report"},"modal":{"title_0":"Mass Notification Sending","title_1":"Notification Sending","title_2":"Message","title_3":"Cancel","title_4":"Send"},"title_1":"Tickets Matches","title_10":"Entry Date","title_11":"Entry Door","title_12":"Entry Attempts","title_13":"Special Ticket","title_2":"Ticket code","title_3":"Payment ref","title_4":"Match","title_5":"User","title_6":"Document","title_7":"Email","title_8":"Type of ticket","title_9":"Purchase Date"},"tournaments":{"title_1":"Create tournament","title_10":"Edit tournament","title_11":"Update","title_12":"Add tournament","title_13":"Tournament list","title_14":"Active","title_15":"Actions","title_16":"Options","title_17":"Fund","title_18":"Sponsor","title_2":"Tournament","title_3":"Name","title_4":"Logo","title_5":"Visibility","title_6":"Season tickets for sale","title_7":"Organizer","title_8":"Create","title_9":"Cancel"},"tutorial_slides":{"active":"Active","add":"Create","created_at":"Registration date","description":"Content","edit":"Edit","image":"Image","list":"Start app","name":"Title","order":"Order"},"type_person":{"juridical_person":"Legal person","natural_person":"Natural person"},"update":"Save changes","updated_successfully":"Record updated successfully","user_profile":{"updated":"Profile successfully updated"},"user_segmentation_import_tag_not_found":"Not foundsegmentation for the entered name","videos_club":{"actions":"Actions","active":"Active","add":"Create","category":"Category","comments_enabled":"Comments enabled","compress":"Optimize your images to improve site loading speed! If you want, you can click on this icon to access an online image compressor.","created_at":"Creation date","delete":"Delete","deleted_video":"Video deleted","deleted_video_error":"Video deleted or non-existent!","description":"Description","edit":"Edit","enable_comments":"Enable comments","enable_reactions":"Enable reactions","end_date":"End date","init_date":"Start date","likes_enabled":"Reactions enabled","link":"Link(s)","name":"Name","not_found":"Videos not found","preview":"Preview","size_photos":"Image must be less than 3 MB","title":"Videos club","title_table":"Video(s)","videos":"Video(s)"},"web_ticketing":{"confirm_email":"Confirm email","email":"Email","phone":"Phone\/Cell phone"},"webpay":{"webcheckout_confirm":"Payment successful","webcheckout_confirm_1":"Thank you for your purchase!","webcheckout_confirm_2":"Purchase order","webcheckout_confirm_3":"Total paid","webcheckout_confirm_4":"Authorization code","webcheckout_confirm_5":"Transaction date","webcheckout_confirm_6":"Payment type","webcheckout_confirm_7":"Number of installments","webcheckout_confirm_8":"Bank card","webcheckout_confirm_cerrar":"Close","webcheckout_done":"The order already records a payment","webcheckout_done_cerrar":"Close","webcheckout_rejected":"Payment aborted","webcheckout_rejected_2":"Please validate the process and try again","webcheckout_rejected_3":"The possible causes of this rejection are","webcheckout_rejected_4":"Error when entering your credit or debit card details (date and\/or security code)","webcheckout_rejected_5":"Your credit or debit card does not have sufficient balance","webcheckout_rejected_6":"Card not yet enabled in the financial system","webcheckout_rejected_order":"Purchase order rejected"},"welcome_logo":{"title_1":"Create Welcome Image","title_10":"Edit Welcome Image","title_11":"Update","title_12":"Add Welcome Image","title_13":"Welcome Image List","title_14":"Active","title_15":"Actions","title_16":"Options","title_2":"Welcome Image","title_3":"Name","title_4":"Image","title_8":"Create","title_9":"Cancel"},"wompi":{"webcheckout_confirm_1":"Thank you for your purchase!","webcheckout_confirm_2":"Your receipt(s) have been generated, you can see them in your email or in the MY RECEIPTS section of the APP","webcheckout_confirm_3":"Your store items will arrive between 5 and 7 business days, you can see them in the MY ORDERS section of the APP","webcheckout_confirm_abonado":"Your subscription receipts can be seen in the appNUEVOSTALENTOS","webcheckout_confirm_academy_1":"Thank you for your purchase!","webcheckout_confirm_academy_2":"The Academy experienceDIM it will be spectacular.","webcheckout_confirm_academy_3":"You can check the purchase and academy details in the app.","webcheckout_confirm_academy_cerrar":"Close","webcheckout_confirm_cerrar":"Close","webcheckout_done":"The order already records a payment.","webcheckout_done_cerrar":"Close","webcheckout_done_public":"Thank you for using NUEVOSTALENTOS","webcheckout_done_public_cerrar":"Close"},"worldpay_error_cvc":"Please enter the CVC number of the TC.","worldpay_error_month":"Please enter the month of expiration of the TC.","worldpay_error_name":"Please enter the name of the TC.","worldpay_error_number":"Please enter the number of the TC.","worldpay_error_token":"An error occurred when validating your TC.","worldpay_error_type":"Please indicate the type of credit card.","worldpay_error_year":"Please enter the year of expiration of the TC.","worldpay_successs_token":"Your TC has been registered successfully.","yes":"Yes","zones":{"title_1":"Chair:","title_10":"Origin:","title_11":"Total capacity:","title_12":"Saleable: (Activate for sub-stands that contain seats)","title_13":"Saleable capacity:","title_14":"Gate:","title_15":"Stadium image:","title_16":"Add stand","title_17":"Upload seats","title_18":"No stands created","title_19":"Stand\/sector form","title_2":"Tribune:","title_20":"Chair form","title_21":"Import seats","title_22":"Download template","title_23":"here","title_24":"Upload chair block","title_25":"Import chair block","title_26":"Block by administration","title_27":", add specific sectors to the template?","title_28":"Note: By holding ctrl and clicking you can select more than one sector)","title_3":"Origin:","title_4":"Letter:","title_5":"Code:","title_6":"Parent tribune name:","title_7":"Parent tribune ID:","title_8":"Parent tribune saleable:","title_9":"Is parent tribune:","view_stadium":"View stadium"}},"en.messagesClient":{"Accepted":"Accepted","April":"April","August":"August","Canceled":"Canceled","Collected":"Collected","Completed":"Completed","December":"December","Delivered":"Delivered","February":"February","In Route":"In Route","January":"January","July":"July","June":"June","March":"March","May":"May","November":"November","October":"October","Pending":"Pending","September":"September","academy_categories":{"create_question":"Create category?","delete_question":"Delete category?","edit_question":"Modify category?","error_get":"There was an error getting categories!","error_modifying":"Error modifying"},"academy_coaches":{"create_question":"Create coach?","delete_question":"Delete coach?","edit_question":"Modify coach?","error_get":"There was a An error occurred while getting trainers!","error_modifying":"Error coach"},"academy_discounts":{"create_question":"Create discount?","delete_question":"Delete discount?","edit_question":"Modify discount?","error_modifying":"Error modifying"},"academy_doc":{"error_delete":"Error deleting","error_update_active":"Error changing status","tag_1":"Create document?","tag_2":"Modify document?","tag_6":"Delete document?"},"academy_locations":{"create_question":"Create location?","delete_question":"Delete location?","edit_question":"Modify location?","error_get":"There was an error getting venues!","error_modifying":"Error modifying"},"academy_parameters_labels":{"change_status_message":"You must enter the message that is sent to the APP when the status changes","confirm_revision_message":"You must enter the confirmation message for status changes","notify_payment_enable_message":"You must enter the payment activation notification message","payment_activation_notification_schedule":"You must enter the payment activation notification schedule","required_academy_categories":"You must enter the academy categories","required_academy_places":"You must enter the academy locations","required_blood_type":"You must enter the blood types","required_city_text":"You must enter the city\/province field text","required_days_collection_advance_payments":"You must enter the days of advance payment","required_department_text":"You must enter the department\/province field text","required_documents_sign_alert_text":"You must enter the document signing confirmation text","required_documents_sign_button_text":"You must enter the document signing button text","required_documents_sign_title":"You must enter the document signing title","required_documents_upload_alert_text":"You must enter the document upload confirmation text","required_documents_upload_button_text":"You must enter the document upload button text","required_documents_upload_title":"You must enter the document upload title","required_enrollment_alert_text":"You must enter the pre-registration confirmation text","required_enrollment_button_text":"You must enter the text in the pre-registration button","required_enrollment_title":"You must enter the pre-registration title","required_frequency":"You must enter the frequency of automatic payments","required_full_enrollment_alert_text":"You must enter the enrollment confirmation text","required_full_enrollment_button_text":"You must enter the enrollment button text","required_full_enrollment_title":"You must enter the enrollment title","required_inscription_value":"You must enter the value of the registration","required_maximum_payment_day_month":"You must enter the maximum payment day of the month","required_monthly_payment":"You must enter the monthly payment amount","required_ocupation":"You must enter the occupations","required_relationship":"You must enter the relationships","required_school_grades":"You must enter the education grades","required_terms":"You must upload the terms and conditions file","required_tshirt_sizes":"You must enter the sizes of uniform","required_uniform_types":"You must enter the uniform types","terms_and_conditions_text":"You must upload the terms and conditions text"},"academy_payments":{"confirm_payment":"Are you sure you want to confirm payment?","error_confirm_payment":"Error confirming payment.","error_delete_payment":"Error deleting payment.","error_import_payments":"Error importing payments.","error_update_payment":"Error updating payment.","update_payment":"Are you sure you want to update payment?"},"academy_periods":{"create_question":"Create period?","delete_question":"Delete period?","edit_question":"Modify period?","error_modifying":"Error modifying"},"academy_purchases":{"create_question":"Create payment?","delete_question":"Delete payment?","edit_question":"Do you want to modify the payment schedule?","error_modifying":"Error modifying","reference_required":"Reference is required"},"academy_reports":{"delete_question":"Delete report?"},"academy_schedules":{"create_question":"Create schedule?","delete_question":"Delete schedule?","edit_question":"Modify schedule?","error_modifying":"Error modifying"},"academy_states":{"create_question":"Create state?","delete_question":"Delete state?","edit_question":"Modify state?","error_modifying":"Error modifying"},"academy_tournaments":{"create_question":"Create tournament?","delete_question":"Delete tournament?","edit_question":"Modify tournament?","error_modifying":"Error modifying"},"academy_user_tag1":"Are you sure you want to delete the student from the academy?","academy_user_tag10":"Do you want to assign the new contact app user to the student?","academy_user_tag11":"Error assigning the new app contact user to the student!","academy_user_tag2":"Error deleting student","academy_user_tag3":"Do you want to confirm the review of: ","academy_user_tag4":"Modify student?","academy_user_tag5":"Create app contact?","academy_user_tag6":"Error creating app contact?","academy_user_tag7":"Contact app created successfully","academy_user_tag8":"Do you want to create a student?","academy_user_tag9":"Error creating a student!","advertisingBanner":{"error_delete":"Error deleting banner","error_update_active":"Error changing banner status","tag_1":"Create banner?","tag_2":"Modify banner?","tag_6":"Delete banner?"},"advertisingPopups":{"error_delete":"Error deleting popup","error_update_active":"Error changing popup status","tag_1":"Create popup?","tag_2":"Modify popup?","tag_6":"Delete popup?"},"app_section":{"create_question":"Create section?","delete_question":"Delete section?","edit_question":"Modify section?"},"attribute_required":"Attribute type is required","banner_tag1":"There was an Error saving the image!","banner_tag2":"You must make sure to select all fields!","banner_tag3":"Create Banner?","banner_tag4":"There was an Error creating banner!","banner_tag5":"Modify Banner?","banner_tag6":"There was an Error updating banner!","banner_tag7":"There was an Error modifying banner!","banner_tag8":"Are you sure you want to delete this Banner?","banner_tag9":"There was an Error deleting Banner!","bookcase_tag1":"There was an Error saving magazine!","bookcase_tag2":"Make sure you select all fields!","bookcase_tag3":"Create magazine?","bookcase_tag4":"There was an Error creating magazine!","bookcase_tag5":"Modify magazine?","bookcase_tag6":"There was an Error updating the magazine!","bookcase_tag7":"There was an Error modifying the magazine!","bookcase_tag8":"Are you sure you want to delete this magazine?","bookcase_tag9":"There was an Error deleting the magazine!","brand_tag1":"There was an error creating the Brand","brand_tag2":"There was an error modifying the Brand","brand_tag3":"Create Brand?","brand_tag4":"Delete Brand?","brand_tag5":"Modify Brand?","business":{"error_delete":"Error deleting business","error_update_active":"Error changing business status","tag_1":"Create business?","tag_2":"Modify business?","tag_6":"Delete business?"},"business_rating":{"create_question":"Create status?","delete_question":"Delete status?","edit_question":"Modify status?"},"carnet":{"create_question":"Create ID?","delete_question":"Delete ID?","edit_question":"Modify ID?","if_exists":"Make sure the ID for the academy is created!"},"changelog_tag1":"Create Changelog?","changelog_tag2":"There was an Error creating the changelog!","channel_tag1":"There was an error creating the Sales Channel","channel_tag2":"There was an error modifying the Sales Channel","channel_tag3":"Create Sales Channel?","channel_tag4":"Delete Sales Channel?","channel_tag5":"Modify Sales Channel?","collection_invoices":{"create_question":"Create invoice?","delete_question":"Delete invoice?","edit_question":"Do you want to modify the invoice?","error_modifying":"Error modifying"},"company_tag1":"Create company?","company_tag2":"Error creating company","company_tag3":"Error modifying company","company_tag4":"Modify company?","company_tag5":"Are you sure you want to delete the company?","company_tag6":"Error deleting company!","configuration\/club-parameters":{"create_question":"Create?","delete_question":"Delete?","edit_question":"Modify?","podcast_deleted_error":"Delete failed","podcast_deleted_successfully":"Deleted"},"coupon_tag1":"There was an error saving the coupon!","coupon_tag2":"You must make sure to select all fields!","coupon_tag3":"Create coupon?","coupon_tag4":"There was an error creating the coupon!","coupon_tag5":"Modify coupon?","coupon_tag6":"There was an error updating the coupon!","coupon_tag7":"There was an error modifying the coupon!","coupon_tag8":"Are you sure you want to delete this coupon?","coupon_tag9":"There was an error deleting the coupon!","coupon_term_error":"A terms and conditions type must be uploaded for the coupon!","coverage_":{"msj_tag1":"Are you sure you want to delete the coverage record?","title_1":"Invalid file information","title_2":"Error deleting all coverages"},"create_register":"Create registration?","data_policy":{"create_question":"Create data processing policy?","delete_question":"Delete data processing policy?","edit_question":"Modify data processing policy?"},"delete_seat":"Delete seat?","discount_tag1":"There was an error when checking the discount!","discount_tag2":"Create Discount?","discount_tag3":"There was an error when creating discount!","discount_tag4":"You must enter Price or Discount Percentage!","discount_tag5":"You must select required products and gift product!","discount_tag6":"You must select required products!","discount_tag7":"You must select promotion product!","discount_tag8":"Modify Discount?","discount_tag9":"There was an Error updating discount!","doors":{"tag_1":"Create Door?","tag_2":"Modify Door?","tag_6":"Delete Door?"},"dorsals":{"error_delete":"Error deleting Bib","error_update_active":"Error Changing Bib Status","tag_1":"Create Bib","tag_2":"Modify Bib?","tag_6":"Delete Bib?"},"equipment_categories":{"tag_1":"Create Category?","tag_2":"Edit Category?","tag_3":"Remove Category?","tag_4":"Review required fields"},"error_delete":"Error deleting","event_prices":{"import_price":"Import prices","tag_1":"Create price?","tag_2":"Modify price?","tag_3":"You must select a zone","tag_6":"Delete price?"},"events":{"error_delete":"Error deleting event","sales_type_required":"You must select a type of sale","stadium_required":"You must select a stadium","tag_1":"Create event?","tag_10":"Modify ticket status?","tag_2":"Modify event?","tag_3":"You must select season","tag_4":"You must select a team","tag_6":"Delete event?","tag_7":"Modify ticket status?","tag_8":"Are you sure you want to send email?","tag_9":"Error sending email"},"field_datasources":{"tag_1":"Create datasource?","tag_2":"Modify datasource?","tag_3":"You must enter a url","tag_4":"You must select a type","tag_5":"You must select an option type","tag_6":"Delete datasource?"},"field_values":{"tag_1":"Create value?","tag_2":"Modify value?","tag_6":"Delete value?"},"fields":{"tag_1":"Create Field?","tag_10":"You must enter the name_control attribute","tag_2":"Modify Field?","tag_6":"Delete Field?","tag_7":"You must enter the field name.","tag_8":"You must enter the field type.","tag_9":"You must enter the data source."},"flash_ticket":{"tag_1":"Do you want to generate the tickets?","tag_2":"You must generate at least one ticket","tag_3":"You must select the text for the special tickets","tag_4":"You must select the text for the gift tickets"},"form_fields":{"tag_1":"Assign field?","tag_2":"You must select a form","tag_3":"You must select at least one field"},"forms":{"tag_1":"Create form?","tag_2":"Modify form?","tag_6":"Delete form?","tag_7":"You must select visibility","tag_8":"You must select a specialty"},"global":{"create_record":"Create Record?","delete_record":"Delete Record?","edit_record":"Edit Record?","fields_requireds":"Enter all required fields"},"home1":"Orders","home2":"Minutes","home_image":{"error_delete":"Error deleting Home Banners","error_update_active":"Error changing Home Banners status","tag_1":"Create Home Banners?","tag_2":"Modify Home Banners?","tag_6":"Delete Home Banners?"},"integrations":{"tag_1":"Create integration?","tag_2":"Modify integration?","tag_6":"Delete integration?"},"inventory_tweaks":{"create":"Do you want to create the tweak?","error_product":"Please enter the product","error_product_attribute":"Please enter a product attribute"},"line_tag1":"There was an error creating the Business Line","line_tag2":"There was an error modifying the Business Line","line_tag3":"Create Business Line?","line_tag4":"Delete Business Line?","line_tag5":"Modify Business Line?","main_datasources":{"tag_1":"Create header?","tag_2":"Modify header?","tag_4":"You must enter at least one item","tag_6":"Delete header?"},"match_event_stage":{"tag_1":"Validate the information in the configuration file"},"match_event_tickets":{"tag_1":"Generate special tickets?","tag_2":"Error generating special tickets"},"match_event_tickets_massive_process":{"title_1":"Are you sure you want to carry out the cancellation, annulment, deletion process? with the list of the EXCEL file?","title_2":"Process invoices?"},"micro_trade":{"error_delete":"Error deleting category","error_update_active":"Error changing category status","tag_1":"Create category?","tag_2":"Modify category?","tag_6":"Delete category?"},"news":{"create_question":"Create news?","delete_question":"Delete news?","edit_question":"Modify news?"},"notification_tag1":"Create Notification?","notification_tag2":"There was an Error creating the notification!","notification_tag3":"The date entered cannot be less than the current date","notification_tag4":"The time entered cannot be less than the current time","notification_tag5":"Delete Notification?","notification_tag6":"There was an error deleting notification!","official_facebook":{"create_question":"Create facebook account?","delete_question":"Delete facebook account?","edit_question":"Modify facebook account?","error_modifying":"Error modifying"},"official_instagram":{"create_question":"Create instagram post?","delete_question":"Delete instagram post?","edit_question":"Modify instagram post?","error_modifying":"Error modifying"},"official_tiktok":{"create_question":"Create tiktok post?","delete_question":"Delete tiktok post?","edit_question":"Modify tiktok post?","error_modifying":"Error modifying"},"official_twitter":{"create_question":"Create twitter account?","delete_question":"Delete account twitter?","edit_question":"Modify twitter account?","error_modifying":"Error modifying"},"official_youtube":{"create_question":"Create channel youtube?","delete_question":"Delete youtube channel?","edit_question":"Modify youtube channel?","error_modifying":"Error modifying"},"orders":{"order_created":"Order created #"},"orders_tag1":"The branch field is required!","orders_tag10":"The City field is required!","orders_tag11":"You must enter products to continue","orders_tag12":"The order value does not exceed the minimum required value","orders_tag13":"Are you sure you want to change the status of this product?","orders_tag14":"The status of the product has been successfully changed","orders_tag15":"The Reference Order number does not match","orders_tag16":"The Address field is required!","orders_tag17":"The City field is required!","orders_tag18":"The Payment Method field is required!","orders_tag19":"The Reference Order field is required!","orders_tag2":"The payment method field is required!","orders_tag20":"The Branch field is required!","orders_tag3":"You must select a branch for each transfer!","orders_tag4":"Create order?","orders_tag5":"Order created, Print order?","orders_tag6":"Error creating order","orders_tag7":"Modify order?","orders_tag8":"Error modifying order!","orders_tag9":"Order modified successfully!","organizer":{"error_delete":"Error deleting Organizer","error_update_active":"Error Changing Organizer Status","tag_1":"Create Organizer?","tag_2":"Modify Organizer?","tag_6":"Delete Organizer?"},"paymentGateway":{"error_delete":"Error deleting payment gateway","error_update_active":"Error changing payment gateway status","tag_1":"Create payment gateway?","tag_2":"Modify payment gateway?","tag_6":"Delete payment gateway?"},"payment_messages":{"tag_1":"Customize Email?"},"payment_method":{"create_question":"Create payment method?","delete_question":"Delete payment method?","edit_question":"Modify payment method?"},"payment_tag1":"There was an error creating the Payment Method","payment_tag2":"There was an error modifying the Payment Method","payment_tag3":"Create Payment Method?","payment_tag4":"Delete Payment Method?","payment_tag5":"Modify Payment Method?","photos":{"create_question":"Create photos?","delete_question":"Delete photos?","edit_question":"Modify photos?"},"players":{"tag_1":"Create Player?","tag_2":"Edit Player?","tag_3":"Remove Player?","tag_4":"Review required fields"},"podcasts":{"create_question":"Create podcast?","delete_question":"Delete podcast?","edit_question":"Modify podcast?","podcast_deleted_error":"Error deleting podcast","podcast_deleted_successfully":"Podcast deleted"},"popup_tag1":"There was an Error saving the popup!","popup_tag2":"Make sure you select all fields!","popup_tag3":"Create popup?","popup_tag4":"There was an Error creating the popup!","popup_tag5":"Modify popup?","popup_tag6":"There was an Error updating the popup!","popup_tag7":"There was an Error an Error modifying the popup!","popup_tag8":"Are you sure you want to delete this popup?","popup_tag9":"There was an Error deleting the popup!","positions":{"tag_1":"Create Position?","tag_2":"Edit Position?","tag_3":"Remove Position?","tag_4":"Review required fields"},"product_attribute_delete":"Are you sure you want to delete the attribute?","product_popup_delete":"Are you sure you want to delete the popup?","product_tag1":"There was an Error saving the image!","product_tag10":"Some flash price fields are missing!","product_tag11":"Are you sure you want to delete the product image(s)?","product_tag12":"There was an error deleting the product image(s)!","product_tag2":"Are you sure you want to delete this Product?","product_tag3":"There was an Error deleting Product!","product_tag4":"You must make sure to select: Unit, Brand, Category or subcategory!","product_tag5":"Create Product?","product_tag6":"There was an Error creating product!","product_tag7":"Modify Product?","product_tag8":"There was an Error updating product!","product_tag9":"Some discount percentage fields are missing!","radio_tag1":"There was an Error saving the podcast!","radio_tag2":"You must make sure to select all fields!","radio_tag3":"Create Podcast?","radio_tag4":"There was an Error creating the podcast!","radio_tag5":"Edit podcast?","radio_tag6":"There was an Error updating the podcast!","radio_tag7":"There was an Error modifying the podcast!","radio_tag8":"Are you sure you want to delete this podcast?","radio_tag9":"There was an Error deleting the podcast!","roles_permissions":{"create_question":"Create role?","delete_question":"Delete role?","edit_question":"Modify role?"},"salable_is_zero":"If salable capacity is less than or equal to zero, use the stand lock option.","salable_no_valid":"Salable capacity is greater than total capacity.","screen_add_subcategories_tag1":"There was an error creating the subcategory!","screen_add_subcategories_tag2":"Name, priority and category ... required!","screen_add_subcategories_tag3":"Create subcategory?","screen_add_subcategories_tag4":"Error creating subcategory!","screen_categories_tag1":"Make sure you fill in all fields!","screen_categories_tag2":"Create Category?","screen_categories_tag3":"No","screen_categories_tag4":"Warning","screen_categories_tag5":"Category created successfully!","screen_categories_tag6":"Error creating category!","screen_categories_tag7":"Are you sure you want to delete the Category?","screen_chats_error_tag1":"There was an error sending the order. message!","screen_chats_error_tag2":"You must select a branch","screen_chats_error_tag3":"There was an error sending the comment!","screen_chats_filter_tag1":"No record found","screen_delete_Categories_tag1":"Are you sure you want to delete the Category?","screen_delete_categories_tag2":"There was an error deleting the Category","screen_delete_chat_tag1":"Are you sure you want to delete the chat?","screen_delete_chat_tag2":"You must select at least one record!","screen_delete_comment_tag1":"Are you sure you want to delete the comment?","screen_delete_subcategories_tag1":"Are you sure you want to delete the Subcategory?","screen_delete_subcategories_tag2":"There was an error deleting the Subcategory?","screen_edit_Categories_tag5":"Modify Category?","screen_edit_Categories_tag6":"Error modifying Category","screen_edit_categories_tag2":"Name and priority fields are required!","screen_edit_categories_tag3":"Category updated successfully!","screen_edit_categories_tag4":"Error updating category!","screen_edit_categories_tag5":"Category modified successfully!","screen_edit_subcategories_tag1":"The fields name, category and priority are ...rity are required!","screen_edit_subcategories_tag2":"Are you sure you want to edit the Subcategory?","screen_edit_subcategories_tag3":"Subcategory updated successfully!","screen_edit_subcategories_tag4":"Error updating the Subcategory!","screen_edit_subcategories_tag5":"Error editing Subcategory!","seasons":{"error_delete":"Error deleting season","tag_1":"Create season?","tag_2":"Modify season?","tag_6":"Delete season?"},"seats":{"tag_1":"Create Seat?","tag_2":"Modify Seat?","tag_6":"Delete Seat?"},"select":"Select","service_charges":{"create_question":"Create service charge?","delete_question":"Delete service charge?","edit_question":"Do you want to modify the service charge settings?","error_modifying":"Error modifying"},"sizing_tag1":"Create unit of measure?","sizing_tag2":"Error creating unit of measure","sizing_tag3":"Error modifying unit of measure","sizing_tag4":"Modify unit of measure?","sizing_tag5":"Are you sure you want to delete the unit of measure?","sizing_tag6":"Error deleting unit of measure!","social_network_accounts":{"create_question":"Create official account?","delete_question":"Delete official account?","edit_question":"Modify official account?","error_modifying":"Error modifying"},"sucursal_tag1":"You must select a city!","sucursal_tag2":"You must select a coverage!","sucursal_tag3":"Create Branch?","sucursal_tag4":"Error creating branch!","sucursal_tag5":"Modify Branch?","sucursal_tag6":"Error modifying Branch!","sucursal_tag7":"Are you sure you want to delete the Branch?","sucursal_tag8":"Error deleting Branch!","symbolic_tickets":{"created":"The card has been created successfully","delete":"The card has been deleted successfully","error_created":"An error occurred when creating the card, please try again later.","error_delete":"An error occurred when deleting the card, please try again later.","error_save_image":"There was an error saving the image!","to_create":"Do you want to create the card?","to_delete":"Do you want to delete the card?","to_generate_tickets":"Do you want to generate tickets for the users?","to_update":"Do you want to update the card?","update_error":"An error occurred when updating the card, please try again later.","update_state":"The status has been updated successfully"},"tag":{"create_question":"Create Tag?","delete_question":"Delete Tag?","edit_question":"Modify Tag?"},"teams":{"tag_1":"Create team?","tag_2":"Modify team?","tag_6":"Delete team?"},"terms_conditions":{"create_question":"Create terms and conditions?","delete_question":"Delete terms and conditions?","edit_question":"Modify terms and conditions?"},"ticket_tag":{"create_question":"Create tag?","delete_question":"Delete Tag?","edit_question":"Modify Tag?","tag_1":"Do you want to generate the tickets?","tag_2":"You must generate at least one ticket"},"tickets":{"tag_1":"There was an error modifying the user!","tag_2":"Modify user data?","tag_3":"Successful update","title_11":"Tribune","title_12":"Sector","title_13":"Chair","title_14":"There was an error when modifying!","title_3":"First name","title_4":"Last name","title_5":"Document","title_6":"Cell phone","title_7":"Email","title_8":"Assign"},"tickets_parameters_labels":{"required_number_transfers":"You must enter information","required_terms":"You must upload the terms and conditions file"},"tournaments":{"tag_1":"Create tournament?","tag_2":"Modify tournament?","tag_6":"Delete tournament?"},"tutorial_slides":{"create_question":"Create tutorial?","delete_question":"Delete tutorial?","edit_question":"Modify tutorial?"},"update_register":"Update registration?","user_admin_tag1":"Create Administrator?","user_admin_tag2":"Error creating administrator!","user_admin_tag3":"Modify Administrator?","user_admin_tag4":"Error modifying messenger!","user_admin_tag5":"Are you sure you want to delete the administrator?","user_admin_tag6":"Error deleting administrator!","user_admin_tag7":"Are you sure you want to generate credit payments?","user_admin_tag8":"Error generating credits!","user_admin_tag9":"Error deleting report!","user_client_tag1":"Create client?","user_client_tag2":"Client created successfully!","user_client_tag3":"Check if the address is correct!","user_client_tag4":"Error creating client, the identification number or the email already has a record!","user_client_tag5":"Modify client?","user_client_tag6":"Error modifying client","user_deliveryMan_tag1":"Make sure to select the branch!","user_deliveryMan_tag2":"Make sure to select the company!","user_deliveryMan_tag3":"Create messenger?","user_deliveryMan_tag4":"Error creating messenger!","user_deliveryMan_tag5":"Modify messenger?","user_deliveryMan_tag6":"Error modifying messenger!","user_deliveryMan_tag7":"Error modifying multiple session!","user_deliveryMan_tag8":"Are you sure you want to delete the messenger?","user_deliveryMan_tag9":"Error recovering account!","user_other_tag1":"Are you sure you want to delete the user?","user_other_tag2":"Error deleting user","user_other_tag3":"Error modifying user","user_other_tag4":"Create user?","user_other_tag5":"Modify user?","user_other_tag6":"NOTE: Keep in mind If you do this, all user data will be lost, including ticket sales, orders, and messages. In addition, the user will have to register again in the app to log in again. Are you sure you want to delete the user?","user_subscribers":{"msj_tag1":"Are you sure you want to delete the subscriber record?","msj_tag2":"Error deleting subscriber record","title_1":"Subscriber(s) information is valid","title_2":"Select the zone"},"user_ticket_change":{"tag_1":"There was an error when transferring the tickets!","tag_2":"Modify user ticket?","tag_3":"Successful update","tag_4":"Document","tag_5":"Email","tag_6":"Assign"},"users":{"title_1":"Information is valid of the client(s)"},"videos":{"create_question":"Create video?","delete_question":"Delete video?","edit_question":"Modify video?","video_deleted_error":"Error deleting video","video_deleted_successfully":" Video deleted"},"wallet_coins_tag1":"Error blocking\/unblocking credit coins from the Fan!","wallet_coins_tag2":"Are you sure you want to update your account?","wallet_coins_tag3":"Error updating the Fan Coins credit!","wallet_coins_tag4":"Error modifying the Fan Coins credit!","wallet_coins_tag5":"Are you sure to cancel the transaction, this process modifies the total Fan Coins balance?","wallet_coins_tag6":"Are you sure you want to register the Fan Coins credit?","welcome_logo":{"error_delete":"Error deleting Welcome Image","error_update_active":"Error Changing Status of Welcome Image","tag_1":"Create Welcome Image?","tag_2":"Modify Welcome Image?","tag_6":"Delete Image Welcome?"},"zones":{"tag_1":"Create Zone?","tag_2":"Modify Zone?","tag_6":"Delete Zone?"}},"es.experiences":{"default_buttons":{"back":"\u2190 Volver"},"monitor":{"datatables":{"columns":{"actions":"Acciones","birthdate":"Fecha de nacimiento","document":"Documento","experience":"Experiencia","experience_plan":"Plan","guardian_document":"Documento del acudiente","guardian_email":"Correo del acudiente","guardian_name":"Nombres del acudiente","guardian_phone":"Telefono del acudiente","name":"Estudiante","payment_date":"Fecha de inscripci\u00f3n","payment_identifier":"ID de pago","payment_reference":"Referencia de pago","payment_state":"Estado de pago","payment_total":"Total pago","payment_transaction":"Transacci\u00f3n de pago"}},"export_data":"Exportar datos","filter_experiences":"Experiencias","filter_payment_end_date":"Fecha fin pago","filter_payment_start_date":"Fecha inicio pago","filter_state":"Estados de pago","filters":"Filtros","placeholder_date":"Seleccionar fecha","placeholder_select":"Escriba el nombre","title":"Monitor experiencias"},"plan_prices":{"create":"Crear","datatables":{"actions":{"delete":"Eliminar","edit":"Editar"},"columns":{"actions":"Acciones","created_at":"Fecha creaci\u00f3n","description":"Descripci\u00f3n","duration":"Tiempo (d\u00edas)","price":"Precio"}},"edit":"Editar","labels":{"optional":"Opcional"},"messages":{"create_error":"Ha sucedido un error al crear el precio del plan de la experiencia","create_question":"\u00bfDeseas crear el precio del plan para la experiencia?","create_success":"El precio del plan de la experiencia ha sido creada correctamente","delete_question":"\u00bfDeseas eliminar el precio del plan de la experiencia?","edit_question":"\u00bfDeseas editar el precio del plan de la experiencia?","edit_success":"El precio del plan de la experiencia ha sido actualizada correctamente","generic_error":"Ha sucedido un error","validation_error":"Asegurate que el formulario est\u00e1 correctamente diligenciado"},"title":"Precios"},"plans":{"create":"Crear","datatables":{"actions":{"delete":"Eliminar","edit":"Editar"},"columns":{"actions":"Acciones","created_at":"Fecha creaci\u00f3n","description":"Descripci\u00f3n","name":"Nombre","type":"Tipo"}},"edit":"Editar","labels":{"optional":"Opcional"},"messages":{"create_error":"Ha sucedido un error al crear el plan de la experiencia","create_question":"\u00bfDeseas crear el plan para la experiencia?","create_success":"El plan de la experiencia ha sido creada correctamente","delete_question":"\u00bfDeseas eliminar el plan de la experiencia?","edit_question":"\u00bfDeseas editar el plan de la experiencia?","edit_success":"El plan de la experiencia ha sido actualizada correctamente","generic_error":"Ha sucedido un error","validation_error":"Asegurate que el formulario est\u00e1 correctamente diligenciado"},"title":"Planes"},"settings":{"create":"Crear","datatables":{"actions":{"delete":"Eliminar","edit":"Editar"},"columns":{"actions":"Acciones","active":"Activo","apply_to":"Aplicar a","created_at":"Fecha creaci\u00f3n","description":"Descripci\u00f3n","experience_type":"Tipo de experiencia","icon":"Icono","includes":"Incluye","name":"Experiencia","short_description":"Descripci\u00f3n corta","when":"Cuando"}},"edit":"Editar","labels":{"optional":"Opcional"},"messages":{"create_error":"Ha sucedido un error al crear la experiencia","create_question":"\u00bfDeseas crear la experiencia?","create_success":"La experiencia ha sido creada correctamente","delete_question":"\u00bfDeseas eliminar la experiencia?","edit_question":"\u00bfDeseas editar la experiencia?","edit_success":"La experiencia ha sido actualizada correctamente","generic_error":"Ha sucedido un error","validation_error":"Asegurate que el formulario est\u00e1 correctamente diligenciado"},"title":"Configuraci\u00f3n experiencias"}},"es.memberships":{"datatables":{"actions":{"delete":"Eliminar","edit":"Editar","validate":"Validar"},"columns":{"actions":"Acciones","active":"Membres\u00eda activa","billing_interval":"Intervalo de facturaci\u00f3n","description":"Descripci\u00f3n","document":"Documento","end_date":"Fecha fin","membership":"Membres\u00eda","membership_status":"Estado de la membres\u00eda","name":"Nombre","payment_reference":"Referencia de pago","payment_status":"Estado del pago","payment_transaction_id":"ID de la transacci\u00f3n","price":"Total","start_date":"Fecha inicio","user":"Usuario"}},"defaults":{"billing_interval":"Seleccione una opci\u00f3n","daily":"Diario","monthly":"Mensual","no":"No","weekly":"Semanal","yearly":"Anual","yes":"Si"},"labels":{"action":"Acci\u00f3n:","billing_interval":"Frecuencia de facturaci\u00f3n:","conditions":"Condiciones:","deliverable":"Aplica delivery:","description":"Descripci\u00f3n:","name":"Nombre:","price":"Precio:","tags":"Segmentaci\u00f3n:","terms_and_conditions":"URL Documento","terms_confirm":"Confirma t\u00e9rminos","terms_text":"Texto de t\u00e9rminos:"},"messages":{"create_success":"La membres\u00eda ha sido creada correctamente","edit_success":"La membres\u00eda ha sido actualizada correctamente","generic_error":"Ha sucedido un error","validation_error":"Asegurate que el formulario est\u00e1 correctamente diligenciado","validation_success":"El pago de la membres\u00eda ha sido validado correctamente"},"texts":{"create":"Crear","edit":"Editar","memberships":"Membres\u00edas"}},"es.messages":{"Abril":"Abril","Academia":"Academia","Administradores":"Administradores","Agosto":"Agosto","Ajustes Inventario":"Ajustes inventario","App validaciones":"App validaciones","Atributos":"Atributos","BI":"BI","Banners":"Banners","Banners Home":"Banners Home","Billetera":"Billetera","Boleta simbolica":"Carn\u00e9","Boletas":"Boletas","Boleteria":"Boleteria","Boleteria Gana":"Boleteria Gana","Boleteria Taquilla":"Boleteria Taquilla","Boleteria masiva":"Boleteria masiva","Boleter\u00eda Flash":"Boleter\u00eda Flash","Boleter\u00eda Interna":"Boleter\u00eda Interna","Bookcase Embed":"Revista DIM","Buz\u00f3n de sugerencias":"Buz\u00f3n de sugerencias","Campos":"Campos","Canal de Venta":"Canal de Venta","Carnet":"Carn\u00e9s","Categor\u00edas":"Categor\u00edas","Cat\u00e1logo":"Cat\u00e1logo","Changelogs":"Changelogs","Chats":"Chats","Clientes":"Clientes","Coberturas":"Coberturas","Coberturas Pendientes":"Coberturas Pendientes","Comentarios":"Comentarios","Comercio Monedas":"Comercio Monedas","Comunicaciones":"Comunicaciones","Configuraci\u00f3n":"Configuraci\u00f3n","Contador":"Pagos en linea","Crear pedido":"Crear pedido","Cr\u00e9dito Monedas":"Cr\u00e9dito Monedas","Cupones":"Cupones","Datos maestros":"Datos maestros","Descuentos":"Descuentos","Diciembre":"Diciembre","Directorio Negocios":"Directorio Negocios","Dorsal":"Dorsal","Empresas asociadas":"Empresas asociadas","Encuestas":"Encuestas","Enero":"Enero","Entradas Partidos":"Entradas Partidos","Equipos":"Equipos","Estadio":"Estadio","Estad\u00edsticas":"Estad\u00edsticas","Estad\u00edsticas Equipo":"Estad\u00edsticas Equipo","Etiquetas":"Etiquetas","Eventos":"Eventos","Facebook":"Facebook","Febrero":"Febrero","Flujo de estados":"Flujo de estados","Formas de pago":"Formas de pago","Formularios":"Formularios","Fotos Instagram":"Fotos Instagram","Gestion de documentos":"Gestion de documentos","Gestor de Datos":"Gestor de Datos","Inicio":"Inicio","Integraciones":"Integraciones","Inventario":"Inventario","Jugadores":"Jugadores","Julio":"Julio","Junio":"Junio","Linea de negocio":"Linea de negocio","Lista abonados":"Lista abonados","Listado pedidos":"Listado pedidos","Listas Manuales":"Listas Manuales","Logo Bienvenida":"Imagen Bienvenida","Mapa":"Mapa","Marcas":"Marcas","Marzo":"Marzo","Mayo":"Mayo","Mensaje personalizado de pago\/correo":"Mensaje personalizado de pago\/correo","Mensajeros":"Mensajeros","Monitor":"Monitor","Negocios":"Negocios","Notificaciones":"Notificaciones","Notificaciones sms":"Notificaciones sms","Noviembre":"Noviembre","Octubre":"Octubre","Organizadores":"Organizadores","Otros Roles":"Otros Roles","Pagos":"Pagos","Partidos":"Partidos","Par\u00e1metros":"Par\u00e1metros","Pasarela de pagos":"Pasarela de pagos","Pedidos":"Pedidos","Planeaci\u00f3n":"Planeaci\u00f3n","Popup":"Banner Publicidad","Posiciones":"Posiciones","Productos":"Productos","Publicaciones":"Publicaciones","Publicaciones App":"Publicaciones App","Puertas":"Puertas","Puntos":"Puntos","Radio Embed":"Episodios Podcast","Ref. wompi":"Ref. Pasarela de pagos","Reportes":"Reportes","Reportes Hacienda":"Reportes hacienda","Reportes internos":"Reportes internos","Resultados":"Resultados","Secciones":"Secciones","Segmentaci\u00f3n":"Segmentaci\u00f3n","Septiembre":"Septiembre","Servicio al cliente":"Servicio al cliente","Simulaci\u00f3n de ruta":"Simulaci\u00f3n de ruta","Stock":"Stock","Subcategor\u00edas":"Subcategor\u00edas","Sucursales":"Sucursales","Ticket Backups":"Ticket Backups","Torneos":"Torneos","Tribunas":"Tribunas","Twitter":"Twitter","Unidades de medida":"Unidades de medida","Usuarios":"Usuarios","Usuarios B.":"Usuarios B.","Usuarios Gana":"Usuarios Gana","Valores campo":"Valores","Venta Flash":"Venta Flash","Ventas":"Ventas","Video Tiktok":"Videos de TikTok","Video Youtube":"Videos de Youtube","Video feed":"Lista de videos","Zonas":"Tribunas","_subscribers":{"is_credit":"Cr\u00e9dito","payment":"Comprado","title_1":"Abonados","title_2":"Documento","title_3":"Correo","title_4":"Silla","title_5":"Precio","title_6":"Fila","title_7":"Tribuna","title_8":"Sector"},"academyBriefCase":{"mes":{"abril":"Abril","agosto":"Agosto","diciembre":"Diciembre","enero":"Enero","febrero":"Febrero","julio":"Julio","junio":"Junio","marzo":"Marzo","mayo":"Mayo","noviembre":"Noviembre","octubre":"Octubre","septiembre":"Septiembre"},"tag-1":"Nombres alumno","tag-2":"Apellidos alumno","tag-21":"total","tag-22":"Pagar inscripci\u00f3n","tag-3":"Documento alumno","tag-4":"Estado proceso","tag-5":"Franquicia alumno","tag-6":"Categor\u00eda","tag-7":"Entrenador(es)"},"academy_attendances":{"assistance_status":"Estado de asistencia","campus":"Franquicia","from_date":"Fecha inicio","tag0":"Acciones","tag1-1":"Nombres alumno","tag1-2":"Apellidos alumno","tag1-3":"Documento alumno","tag1-4":"Franquicia de la academia","tag1-5":"Categoria alumno","tag2":"Fecha asistencia","tag3":"Hora de registro","tag4":"Comentario","tag5":"Revisor asistencia","tag6":"Franquicia Categoria alumno","tag7":"Fecha de registro","tag8":"Estado de asistencia","title_export_all":"Exportar asistencias","title_list":"Asistencias","to_date":"Fecha fin"},"academy_attendances_module":"Asistencias","academy_categories":"Categor\u00edas","academy_categories_labels":{"cost_center":"Centro de costo","created_at":"Fecha registro","pension_service_item_code":"C\u00f3digo item de servicio pensi\u00f3n","registration_service_item_code":"C\u00f3digo item de servicio inscripci\u00f3n","tag0":"Activo","tag00":"Acciones","tag1":"Nombre","tag2":"Valor inscripci\u00f3n","tag3":"Valor mensualidad","tag4":"Franquicia","tag5":"Visualizar en","title_create":"Crear","title_edit":"Editar","title_list":"Categor\u00edas"},"academy_categories_show_in":{"all":"todos","app":"app","web":"web"},"academy_coaches":{"tag0":"Activo","tag00":"Acciones","tag1":"Nombres","tag2":"Apellidos","tag3":"Correo","tag4":"Tel\u00e9fono","tag5":"No. documento","tag6-1":"Horario(s) asignado(s)","tag6-2":"Categorias(s) asignada(s)","tag6-3":"Franquicia(s) asignada(s)","tag7":"Contrase\u00f1a","tag8":"Confirmar contrase\u00f1a","tag9":"Fecha registro","title_create":"Crear","title_edit":"Editar","title_export_all":"Exportar entrenadores","title_list":"Entrenadores"},"academy_coaches_module":"Entrenadores","academy_configurations":"Academia Config.","academy_discounts":{"adult":"Adultos","children":"Ni\u00f1os","created_at":"Fecha registro","tag0":"Activo","tag00":"Acciones","tag1":"Nombre","tag2":"Descuento(%)","tag3":"Aplica para pagos de","tag4":"Visualizar en","title_create":"Crear","title_edit":"Editar","title_list":"Descuentos","type_academy":"Tipo de academia"},"academy_discounts_module":"Descuentos","academy_document":{"all":"Ambos","app_certificate":"Certificado APP","created_at":"Fecha registro","external_form_exclusive":"Exclusivo firmar documentos","external_form_id":"Identificador\/Nombre del formulario externo","external_form_link":"Enlace\/iframe del formulario externo","external_form_title":"Par\u00e1metros formulario externo","juridic_person":"Persona juri\u0301dica","natural_person":"Persona natural","only_attempt":"Restringir \u00fanico intento de firmar documento","single_attempt_alert":"Mensaje de alerta por restricci\u00f3n \u00fanico intento de firmar documento","tag1":"Gesti\u00f3n de documentos","tag10":"Activar documento","tag11":"Editar","tag12":"Documento eliminado o inexistente","tag2":"Nombre","tag3":"Documento o Plantilla","tag4":"Documento requerido","tag5":"Orden","tag6":"Adjuntar documento o plantilla, de tipo (xlsx, csv, docx, pdf) (opcional)","tag7":"Crear documento","tag8":"Fecha de inscripci\u00f3n","tag9":"Acciones","title":"Crear","type_person":"Tipo de persona"},"academy_locations":{"adult":"Adultos","children":"Ni\u00f1os","created_at":"Fecha registro","operation_center":"Centro de operaci\u00f3n","price_list":"Lista de precio","tag0":"Activo","tag00":"Acciones","tag1":"Nombre","tag2":"Capacidad","tag3":"Direcci\u00f3n","tag4":"Pasarela","title_create":"Crear","title_edit":"Editar","title_list":"Franquicia","type_academy":"Tipo de academia"},"academy_locations_module":"Franquicia","academy_logs":{"filters":"Filtros","tag0":"Acciones","tag1":"Descripci\u00f3n Operaci\u00f3n","tag2":"Datos","tag3":"Tarea","tag4":"M\u00f3dulo","tag5-1":"Nombres responsable","tag5-2":"Apellidos responsable","tag5-3":"Correo responsable","tag6":"Fecha","tag6-1":"Fecha inicio","tag6-2":"Fecha fin","title_export_all":"Exportar logs","title_list":"Log academias"},"academy_logs_module":"Log","academy_news":{"backout":"Retiro","create_date":"Fecha solicitud","create_date_max":"Fecha solicitud final","create_date_min":"Fecha solicitud inicial","end_date":"Fecha fin","file":"Documento","finished":"Finalizada","freezing":"Congelamiento","in_progress":"En tr\u00e1mite","init_date":"Fecha inicio","medical_disability":"Incapacidad","pending":"Solicitada","reason":"Motivo","receiver":"Destinatario","request_certificate":"Solicitar certificado","status":"Estado","title_list":"Novedades","type_new":"Tipo"},"academy_parameters":"Par\u00e1metros","academy_parameters_labels":{"academy_categories":"Categor\u00edas de academia","academy_places":"Sedes de la academia","address":"Direcci\u00f3n","app":"Aplicaci\u00f3n","app_components":"Componentes de aplicaci\u00f3n m\u00f3vil","application_texts":"Textos","blood_type":"Tipos de sangre","change_status_title":"Cambio estado","city_text":"Texto campo ciudad\/municipio","confirm_revision_title":"Confirmar revision","days_collection_advance_payments":"D\u00edas cobro de pagos anticipados","department_text":"Texto campo departamento\/provincia","documents_sign":"Firma de documentos","documents_sign_alert_text":"Texto de confirmaci\u00f3n de firma de documentos","documents_sign_button_text":"Texto en bot\u00f3n de firma de documentos","documents_sign_title":"Titulo de firma de documentos","documents_upload":"Carga de documentos","documents_upload_alert_text":"Texto de confirmaci\u00f3n de carga de documentos","documents_upload_button_text":"Texto en bot\u00f3n de carga de documentos","documents_upload_title":"Titulo de carga de documentos","enable_attach_support_button":"Habilitar bot\u00f3n para adjuntar soportes de pago","enable_collection_advance_payments":"Habilitar cobro de pagos anticipados","enable_first_month_renewal_payment_for_children":"Habilitar cobro primer mes ni\u00f1os de renovaci\u00f3n","enable_franchises":"Habilitar franquicias","enable_modify_payment_button":"Habilitar bot\u00f3n para modificar pagos","enable_registration_renewal":"Habilitar renovaci\u00f3n de inscripci\u00f3n","enable_send_email_registration_renewal":"Habilitar enviar email de renovaci\u00f3n de inscripci\u00f3n","enrollment":"Pre-inscripci\u00f3n","enrollment_alert_text":"Texto de confirmaci\u00f3n de pre-inscripci\u00f3n","enrollment_button_text":"Texto en bot\u00f3n de pre-inscripci\u00f3n","enrollment_form_fields":"Campos formulario de pre-inscripcci\u00f3n","enrollment_title":"T\u00edtulo de pre-inscripci\u00f3n","full_enrollment":"Inscripci\u00f3n","full_enrollment_alert_text":"Texto de confirmaci\u00f3n de inscripci\u00f3n","full_enrollment_button_text":"Texto en bot\u00f3n de inscripci\u00f3n","full_enrollment_form_fields":"Campos formulario de inscripcci\u00f3n","full_enrollment_title":"T\u00edtulo de inscripci\u00f3n","help_information_contact":"Texto de informaci\u00f3n contacto","help_information_responsable":"Texto de informaci\u00f3n responsable","inscription_value":"Valor de inscripci\u00f3n","last_inscription_year":"\u00daltimo a\u00f1o de inscripci\u00f3n","master_data":"Datos maestros","maximum_payment_day_month":"D\u00eda m\u00e1ximo cobro\/pago de mes","medical_certificate_app":"Certificado medico App","monthly_payment":"Valor mensualidad","nit_text":"Texto campo nit","notification_texts":"Notificaciones","notification_texts_active_service":"Servicios activos","notification_texts_last_notification":"Ultima notificaci\u00f3n","notification_texts_message":"Mensaje","notification_texts_periodicity":"Periodicidad","notify_payment_due_title":"Mensaje pagos vencidos","notify_payment_enable_title":"Mensaje notificaci\u00f3n activaci\u00f3n pago","notify_payment_pending_enrollment_title":"Mensaje pagos de inscripci\u00f3n pendientes de pago","notify_payment_soon_due_days":"Dias de anticipaci\u00f3n para informar de pagos a vencer","notify_payment_soon_due_title":"Mensaje pagos proximos a vencer","ocupation":"Ocupaci\u00f3n","params":"Parametros\/Permisos","payment_activation_notification_schedule":"Horario de env\u00edo de notificaciones pagos","ralationship":"Parentesco","registration_end_date":"Fecha fin de inscripciones","registration_start_date":"Fecha inicio de inscripciones","school_grades":"Grados de escolaridad","students_without_payments_title":"Mensaje alumnos sin pagos programados","success_save_parameters":"Par\u00e1metros guardados con \u00e9xito","system":"Sistema (WEB\/APP)","system_master_data":"Datos maestros","system_texts":"Textos\/Notificaciones","terms":"T\u00e9rminos y condiciones","terms_and_conditions_text":"Texto de t\u00e9rminos y condiciones","terms_and_conditions_title":"T\u00e9rminos y condiciones","title":"Par\u00e1metros de academia","tshirt_sizes":"Tallas de uniforme","uniform_types":"Tipos de uniforme","view_terms":"Ver documento"},"academy_payments":{"buttonCancel":"Cancelar","buttonOk":"Guardar cambios","buttonTemplate":"Descargar plantilla","detailProgramming":"Esta opci\u00f3n modificar\u00e1 la programaci\u00f3n futura de los pagos de mensualidad PENDIENTES","import_error":"Error importando pagos","import_successfully":"Importaci\u00f3n exitosa","noteTemplate":"Aviso: Recordar que dentro del archivo de importaci\u00f3n la columna \"Codigo\" no se debe modificar; adem\u00e1s, la columna \"Activo\" se utiliza para activar o no los pagos al usuario en el APP (1: activar o 0: inactivar).","tag10":"Estado de pago","tag11":"Comentario de pago","tag12":"Pin","tag13":"Fecha de pago","tag14":"Hora de pago","tag15":"Adjuntar soporte de pago (opcional)","tag16":"Soporte de pago","tag17-1":"Descuento precio","tag17-2":"Descuento porcentaje (%)","tag18-1":"Subtotal","tag18-2":"Cobro de servicio","tag18-3":"Precio total","tag19":"FREE","tag20":"Pago activo","tag21":"D\u00eda de futuros pagos","tag22":"Fecha activaci\u00f3n pago","tag23":"Fecha vencimiento pago","tag24":"M\u00e9todo de pago","tag4":"Tipo de pago","tag5":"Precio a pagar","tag6":"Periodo","tag7":"Inicio periodo","tag8":"Fin periodo","tag9-1":"Referencia de pago","tag9-2":"ID de pago","title":"Pagos","titleEdit":"Modificar pagos","titlePay":"Cargar Pago","titleProgramming":"Modificar programaci\u00f3n","updated_successfully":"Pago actualizado con \u00e9xito"},"academy_periods":{"default":"Por defecto","service_item_code":"C\u00f3digo item de servicio","tag0":"Acciones","tag1":"Nombre","tag10":"Mes de fin pago","tag2":"Periodicidad (# meses)","tag3":"Descuento","tag5":"Activo","tag6":"Mes de inicio pago","tag7":"\u00bfCuantos d\u00edas antes del inicio del periodo se debe habilitar el bot\u00f3n de pagos?","tag8":"D\u00edas habilitaci\u00f3n pago","tag9":"Mes de fin de pago","title_create":"Crear","title_edit":"Editar","title_list":"Per\u00edodos"},"academy_periods_module":"Per\u00edodos","academy_purchases":{"filters":"Filtros","gateway_payments":"Pasarela de pago","payment_method":"M\u00e9todo de pago","placeholder_date":"Seleccionar fecha","placeholder_select":"Escriba el nombre","tag0":"Acciones","tag1-1":"Nombres alumno","tag1-2":"Apellidos alumno","tag1-3":"Documento alumno","tag1-4":"Franquicia alumno","tag1-5":"Categor\u00eda alumno","tag1-6":"Horario alumno","tag1-7":"Entrenador(es)","tag1-8":"Estado proceso","tag10-1":"Referencia de pago","tag10-2":"ID de pago","tag11":"Estado de pago","tag12":"Comentario de pago","tag13":"Soporte de pago","tag14":"Fecha de pago","tag14-1":"Fecha inicio pago","tag14-2":"Fecha fin pago","tag15":"Modificar programaci\u00f3n de pago","tag16":"Error al modificar programaci\u00f3n de pago, el alumno a\u00fan no tiene pago la inscripci\u00f3n","tag17":"Alumno sin realizar pago de mensualidad","tag18":"El alumno ya registra pago en la mensualidad","tag19":"Seleccion\u00e9 el per\u00edodo a programar","tag2-1":"Nombres usuario App","tag2-2":"Correo usuario App","tag20":"Aceptar","tag21":"Nueva programaci\u00f3n de pago registrada","tag22":"Error al modificar programaci\u00f3n de pago","tag3-1":"Nombres responsable","tag3-2":"Apellidos responsable","tag3-3":"Documento responsable","tag4":"Segmentaci\u00f3n","tag4-1":"Pago vencido","tag5":"Tipo de pago","tag6-1":"Periodo","tag6-2":"Inicio periodo","tag6-3":"Fin periodo","tag6-4":"Fecha activaci\u00f3n pago","tag6-5":"Fecha vencimiento pago","tag7":"Precio a pagar","tag8-1":"Descuento precio","tag8-2":"Descuento porcentaje (%)","tag9-1":"Subtotal","tag9-2":"Cobro de servicio","tag9-3":"Precio total","title_export_all":"Exportar pagos","title_filter":"Pagos confirmados","title_list":"Pagos","validate_payments":"Validar pagos"},"academy_renewal":{"actions":"Acciones","created_at":"Fecha creaci\u00f3n","document":"Documento","end_date":"Fecha final","filter_document":"Filtrar documento","filters":"Filtros","init_date":"Fecha inicial","link":"Enlace","placeholder_date":"Seleccionar fecha","placeholder_select":"Escriba el nombre","student_identification":"Documento alumno","student_lastname":"Apellidos alumno","student_name":"Nombres alumno","title":"Repositorio documental","title_export_all":"Exportar datos"},"academy_reports":{"title_1":"Informes","title_2":"Nombres alumno","title_3":"Documento","title_4":"Periodo","title_5":"Nombre del administrador","title_6":"El alumno en estos momentos no tiene ning\u00fan informe deportivo hasta la fecha","title_7":"Cerrar"},"academy_schedules":{"export":"Exportar","help_current_capacity":"Este campo muestra la capacidad actual del horario y se actualiza automa\u0301ticamente al inscribirse\/pagar inscripci\u00f3n un nuevo ni\u00f1o en la academia. NOTA: Si es la primera vez que se crea el horario debe ser igual a la capacidad total.","required_select":"Debe seleccionar al menos un horario","select":"Seleccione","tag0":"Activo","tag00":"Acciones","tag1":"Nombre","tag2":"Capacidad total","tag3":"Capacidad actual","tag4":"Categor\u00eda(s)","tag5":"Entrenador(es)","tag6":"Correos entrenador(es)","tag7":"Entrenador(es)","tag8":"Franquicia","tag9":"Fecha registro","title_create":"Crear","title_edit":"Editar","title_list":"Horarios"},"academy_schedules_controller":{"without_schedules":"No hay horarios disponibles","without_slots":"Actualmente, no hay cupos disponibles para el horario \":schedule\" seleccionado para el alumno. \u00bfDeseas realizar alguna acci\u00f3n?"},"academy_schedules_module":"Horarios","academy_states":{"condition_next_state":"Condici\u00f3n estado siguiente","condition_previous_state":"Condici\u00f3n estado anterior","created_at":"Fecha registro","tag0":"Acciones","tag1":"Nombre","tag2":"Color","tag3":"Confirmaci\u00f3n requerida","tag5":"Activo","tag7":"Componentes visibles en el APP","tag9":"Validar pagos inscripci\u00f3n\/mensualidad","title_create":"Crear estado","title_edit":"Editar estado","title_list":"Flujo de estados"},"academy_tournament_payments":{"filter_created_end_date":"Fecha fin creaci\u00f3n pago","filter_created_start_date":"Fecha inicio creaci\u00f3n pago","filter_payment_end_date":"Fecha fin pago","filter_payment_start_date":"Fecha inicio pago","filter_state":"Estados de pago","filter_tournament":"Torneos","filters":"Filtros","payment_method":"M\u00e9todo de pago","placeholder_date":"Seleccionar fecha","placeholder_select":"Escriba el nombre","tag00":"Acciones","tag1-1":"Torneo","tag1-2":"Precio torneo","tag2":"Precio","tag3-1":"Descuento precio","tag3-2":"Descuento porcentaje (%)","tag4":"Subtotal","tag5":"Cobro de servicio","tag6":"Precio total","tag7":"Concepto","tag7-1":"Nombres alumno","tag7-2":"Apellidos alumno","tag7-3":"Documento alumno","tag7-4":"Franquicia alumno","tag7-5":"Categor\u00eda alumno","tag7-6":"Horario alumno","tag7-7":"Entrenador(es)","tag8-0":"Fecha creaci\u00f3n de pago","tag8-1":"Referencia de pago","tag8-2":"ID de pago","tag8-3":"Estado de pago","tag8-4":"Comentario de pago","tag8-5":"Pasarela de pago","tag8-6":"Soporte de pago","tag8-7":"Fecha de pago","title_create":"Crear","title_edit":"Editar","title_export_all":"Exportar pagos","title_list":"Pagos torneos","title_validate_payments":"Validar pagos"},"academy_tournaments":{"all_categories":"Todas las categor\u00edas","cost_center":"Centro de costo","enable_percentage_payment_installments":"Habilitar cobro de cuotas por porcentaje %","enable_price_payment_installments":"Habilitar cobro de cuotas por precio $","fees":"Cuotas","filter_created_end_date":"Fecha fin creaci\u00f3n torneo","filter_created_start_date":"Fecha inicio creaci\u00f3n torneo","filter_payment_end_date":"Fecha fin torneo","filter_payment_start_date":"Fecha inicio torneo","filter_types":"Tipos de torneo","filters":"Filtros","help_message":"Si dejas este campo vac\u00edo, se seleccionar\u00e1n todas las categor\u00edas por defecto.","payment_installments":"Pago en cuotas","placeholder_date":"Seleccionar fecha","placeholder_select":"Escriba el nombre","registration_service_item_code":"C\u00f3digo item de servicio inscripci\u00f3n","segmentation":"Segmentaci\u00f3n","tag0":"Activo","tag00":"Acciones","tag1":"Nombre","tag10":"Imagen","tag2":"Precio","tag3":"Descuento","tag4":"Fecha l\u00edmite de pago","tag5":"Fecha inicio torneo","tag6":"Fecha fin torneo","tag7":"Categor\u00edas","tag8":"Fecha registro","tag9":"Descripci\u00f3n","title_create":"Crear","title_edit":"Editar","title_list":"Configuraci\u00f3n torneos","type":"Tipo"},"academy_tournaments_controller":{"inactive_tournament":"El torneo no se encuentra activo, no puede proceder a pagar","maximum_date_of_payment":"La fecha m\u00e1xima de pago del torneo ya ha vencido, no puede proceder a pagar","payment_available":"Pago disponible","tournament_already_registered":"El torneo ya se encuentra inscripto, por favor proceder a realizar el pago","tournament_registered":"Se acaba de inscribir el torneo, por favor proceder a realizar el pago","without_tournaments":"No hay torneos disponibles"},"academy_users":{"address_advisor":"Direcci\u00f3n responsable","advisor_address":"Direcci\u00f3n","advisor_business_name":"Raz\u00f3n social","advisor_cell_phone":"Celular","advisor_city":"Ciudad","advisor_information":"Informaci\u00f3n responsable","advisor_isic_code":"Codigo CIIU","advisor_mail":"Correo","advisor_name_of_contact_person_nit":"Nombre de la persona de contacto","advisor_nit":"Nit","advisor_phone":"Telefono","advisor_property_name":"Nombre del establecimiento","download_template":"Descargar plantilla","emergency_contact":"Contacto de emergencia","filters":"Filtros","import_all_schedules":"Importar Horarios","last_status_date":"Fecha \u00faltimo estado","message":"Mensaje","notification":"Notificacion","observations":"Observaci\u00f3n","placeholder_date":"Seleccionar fecha","placeholder_select":"Escriba el nombre","student_address":"Direcci\u00f3n alumno","student_already_registered":"Ya existe un alumno registrado con este documento de identidad!","tag1-1":"Nombres contacto","tag1-2":"Apellidos contacto","tag1-3":"Correo contacto","tag1-4":"Tipo de documento contacto","tag1-5":"Documento contacto","tag10":"Foto alumno","tag11":"Documentos","tag12":"Direcci\u00f3n","tag13":"Barrio","tag14":"Tel\u00e9fono (opcional)","tag15-1":"Nombres","tag15-2":"Apellidos","tag15-3":"Tipo de documento","tag15-4":"Documento","tag15-5":"Relaci\u00f3n","tag15-6":"Ocupaci\u00f3n","tag18":"Nombre de la Madre","tag19":"Ocupaci\u00f3n de la Madre","tag2":" de la academia","tag2-1":"Nombres alumno","tag2-10":"Tel\u00e9fono alumno","tag2-12":"Foto alumno","tag2-2":"Apellidos alumno","tag2-3":"Tipo de documento alumno","tag2-4":"Documento alumno","tag2-5":"Instituci\u00f3n educativa alumno","tag2-6":"Grado de escolaridad alumno","tag2-7":"Fecha de nacimiento alumno","tag2-8":"Edad alumno","tag2-9":"Correo alumno","tag20":"Con quien vive?","tag21":"Instituci\u00f3n educativa","tag22":"Grado de escolaridad","tag23":"Jornada","tag24":"Historial Quir\u00fargico","tag25":"Historial T\u00f3xico","tag26":"Observaciones de Salud","tag27-1":"Estado de pago","tag27-2":"Fecha \u00faltimo pago","tag28":"Punto de atenci\u00f3n","tag29":"Activo","tag3-1":"\u00daltimo a\u00f1o en la academia","tag3-2":"Condici\u00f3n especial (descuentos)","tag30":"Alumno modificado con \u00e9xito!","tag31-1":"Talla de uniforme","tag31-2":"Tipo de uniforme","tag32":"Talla de pantaloneta\/sudadera","tag33":"\u00a1Usuario academia eliminado con \u00e9xito!","tag34":"Estado proceso","tag37":"Tipo de sangre","tag38":"EPS","tag39":"Franquicia de la academia","tag4":"Edad","tag40":"Categor\u00eda","tag41":"Acciones","tag42":"Alumno activo","tag43":"Estado proceso","tag44":"Confirmar revisi\u00f3n","tag45":"Estado de revisi\u00f3n","tag46":"Confirmaci\u00f3n exitosa de datos","tag47":"Apellidos alumno","tag48":"Tipo de documento","tag49":"Ciudad","tag5":"Tel\u00e9fono m\u00f3vil","tag50":"Nombres","tag51":"Apellidos","tag52-1":"Modificar contacto app","tag52-2":"Buscar o crear contacto app","tag53":"Responsable app creado con \u00e9xito","tag54":"Documento registrado con \u00e9xito","tag55":"\u279c Ver Documento","tag56":"Cargar documento","tag57":"Alumno creado con exito","tag58":"Categor\u00eda","tag59":"Per\u00edodo Pago","tag6":"Fecha de nacimiento","tag60":"Segmentaci\u00f3n","tag61":"Importar alumnos","tag64-1":"Horario","tag64-1-1":"Cupos disponibles","tag64-2":"Entrenador(es)","tag65":"La plantilla de importar alumnos en la posici\u00f3n: :position no tiene informaci\u00f3n","tag66":"Error al importar plantilla","tag67":"Plantilla","tag68":"Plantilla .xlsx","tag69":"Descuento inscripci\u00f3n","tag7":"Documento de identidad","tag70":"\u00daltimo a\u00f1o en la academia","tag71":"Descargar Carn\u00e9","tag72":"No existen carn\u00e9s del usuario registrados.","tag73":"Departamento","tag74":"Informe de rendimiento","tag75":"Cargar Informe de rendimiento","tag8":"Fecha de inscripci\u00f3n","tag8-1":"Fecha inicio inscripci\u00f3n","tag8-2":"Fecha fin inscripci\u00f3n","tag9":"Estado de gesti\u00f3n","term_condition_contract":"T\u00e9rminos condiciones y contrato","title":"Monitor","titleAdd":"Crear alumno","titleEdit":"Editar alumno","title_export_all":"Exportar alumnos","title_import_all":"Importar alumnos","title_schedule_payments":"Programar pagos","type_person":"Tipo de persona","write":"Escriba la "},"active":"Activo","addProduct":{"title_1":"Productos","title_2":"Seleccionar producto","title_3":"Cantidad","title_4":"Producto","title_5":"Nombre","title_6":"Plu","title_7":"Precio unidad"},"administration_logs":{"filters":"Filtros","tag0":"Acciones","tag1":"Descripci\u00f3n Operaci\u00f3n","tag2":"Datos","tag3":"Tarea","tag4":"M\u00f3dulo","tag5-1":"Nombres responsable","tag5-2":"Apellidos responsable","tag5-3":"Correo responsable","tag6":"Fecha","tag6-1":"Fecha inicio","tag6-2":"Fecha fin","title_export_all":"Exportar logs","title_list":"Log administraci\u00f3n"},"administration_logs_module":"Log","advertising":{"app_sections":"Secciones de la aplicaci\u00f3n","business_category":"Categor\u00eda de negocio","button_text":"Texto del bot\u00f3n (Opcional)","error_updating":"Error al actualizar","frequency":"Frecuencia","frequency_amount":"N\u00famero de repeticiones","no_action":"Ninguna","title_1":"Publicaciones App","title_10":"Fecha fin","title_11":"Segmentaci\u00f3n (Opcional)","title_12":"Si","title_13":"No","title_14":"Programar (Opcional)","title_15":"Crear","title_16":"Se creo con \u00e9xito ","title_17":"Error al crear segmentaci\u00f3n","title_18":"Editar","title_19":"Se edito con \u00e9xito","title_2":"Modal Banners","title_20":"Eliminar","title_21":"Mensaje (Opcional):","title_22":"Ocultar nombre del banner en la app (Opcional)","title_23":"Ocultar nombre del popup en la app (Opcional)","title_3":"Modal Popup","title_4":"Imagen","title_5":"Nombre","title_6":"Orden","title_7":"Tipo de acci\u00f3n","title_8":"Descripci\u00f3n","title_9":"Fecha inicio","updated_successfully":"Actualizaci\u00f3n exitosa"},"advertising_setting":{"title_1":"Par\u00e1metros de directorio negocios"},"advertising_setting_module":"Directorio Neg. Config.","already_exists":"El registro :name ya existe","already_exists_match_event_price":"Este evento y tribuna ya tiene un precio asignado","already_exists_stage":"El registro ya existe","answers":{"document":"Documento","document_type":"Tipo de documento","title_1":"Crear precio","title_13":"Listado de resultados","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Encuestas","title_18":"Respuestas de la encuesta","title_19":"Exportar todos resultados","title_2":"Precio","title_20":"Exportar resultados rango fechas","title_21":"Correo electr\u00f3nico","title_3":"Formulario","title_4":"Usuario","title_7":"Fecha","title_8":"Crear","title_9":"Cancelar"},"app_customization_config":"Par\u00e1metros","app_section":{"active":"Activo","add":"Crear","button_color":"Color de bot\u00f3n","button_link":"Link del bot\u00f3n","button_width":"Ancho del bot\u00f3n","chip_new":"Mostrar etiqueta de nuevo","create":"Crear","description":"Descripci\u00f3n","enable_on_home":"Activar bot\u00f3n en Home","enable_on_settings":"Activar bot\u00f3n en Opciones","enable_on_tabs":"Activar bot\u00f3n en Pesta\u00f1as\/Tabs inferior","enable_section_on_home":"Activar secci\u00f3n en Home","icon_name":"Nombre del icono","image":"Imagen","link_section_home":"Link de imagen sesi\u00f3n home","list":"Secciones de aplicaci\u00f3n","name":"Nombre","no_parent":"Ninguno","options":"Opciones","parent_section":"Secci\u00f3n padre","path":"Ruta","priority":"Prioridad","segmentation":"Segmentaci\u00f3n","tab":"Pesta\u00f1a\/Tab","text_color":"Color del texto","title":"Secciones App","update":"Editar","update_state":"Se ha actualizado el estado correctamente","validate_data_type":"Validar datos\/mostrar alerta"},"attributes":{"title_1":"Crear atributo","title_10":"atributos","title_11":"El atributo :name ya existe","title_2":"Atributos","title_3":"Nombre","title_4":"Nombre a mostrar","title_5":"Mas de uno","title_6":"Requerido","title_7":"Activo","title_8":"Tipo de atributo","title_9":"Importar atributos"},"business":{"filters":"Filtros","placeholder_date":"Seleccionar fecha","placeholder_select":"Escriba el nombre","title_1":"Crear","title_10":"Datos negocio","title_11":"Descripci\u00f3n","title_12":"Editar","title_13":"Cancelar","title_14":"Aprobar negocio","title_15":"Propietario","title_16":"Categor\u00eda del negocio","title_17":"Categor\u00eda","title_18":"Fecha registro","title_19-1":"Fecha registro inicio","title_19-2":"Fecha registro fin","title_2":"Negocios","title_20-1":"Cuenta instagram","title_20-2":"Cuenta facebook","title_3":"Nombre","title_4":"Imagen","title_5":"Direcci\u00f3n","title_6":"Tel\u00e9fono","title_7":"A\u00f1os de funcionamiento","title_8":"Activo","title_9":"Acciones","title_export_all":"Exportar negocios","title_list":"Negocios"},"business_created_successfully":"Negocio creado exitosamente. Debes esperar a que sea aprobado para que se visualice en el listado de negocios","business_deleted_successfully":"Negocio eliminado exitosamente","business_rating":{"title_1":"Nombre","title_2":"Imagen","title_3":"Calificaci\u00f3n","title_4":"Comentarios","title_5":"Acciones","title_6":"Activo","title_7":"Seleccionar comentarios","title_create":"Crear","title_edit":"Editar calificaci\u00f3n","title_list":"Lista de calificaci\u00f3n comercial"},"business_rating_module":"Calificaci\u00f3n comercial","business_rating_successfully":"Calificaci\u00f3n del negocio exitosa","business_rating_updated_successfully":"Calificaci\u00f3n actualizada exitosamente","business_updated_successfully":"Negocio actualizado exitosamente","carnet":{"active":"Activo","add":"Crear","capacity":"Capacidad","color":"Color fuente","create":"Crear","download":"Descargar Carn\u00e9","download_for_print":"Descargar Carn\u00e9 para imprimir","end_date":"Fecha de fin","error_create":"\u00a1Error al crear ticket simb\u00f3lico!","error_delete":"\u00a1Error al eliminar ticket simb\u00f3lico!","error_generate_tickets":"Error al generar tickets simb\u00f3licos","error_update":"\u00a1Error al actualizar ticket simb\u00f3lico!","events":"Evento","font":"Nombre de la fuente","font_color":"Color fuente (opcional)","image":"Imagen","list":"Carn\u00e9s","name":"Nombre","optional":"Texto o palabra clave (opcional)","see_card_in":"Ver carnet en:","segmentation":"Segmentaci\u00f3n","start_date":"Fecha de inicio","subscriber":"Exclusivo Abonados","ticket_not_have_price":"Debe configurar el precio de la boleta simbolica primero","title":"Carn\u00e9s","to_create":"Ticket simb\u00f3lico creado correctamente","to_delete":"Ticket simb\u00f3lico eliminado correctamente","to_generate_tickets":"Tickets simb\u00f3licos generados correctamente","to_update":"Ticket simb\u00f3lico actualizado correctamente","update":"Editar","update_state":"Se ha actualizado el estado correctamente","word_fonts":"Tipos de fuente (opcional)"},"cell_empty":"La celda :cell en la columna :column no es correcta","collection_invoices":{"tag0":"Activo","tag00":"Acciones","tag1":"Nombre","tag10":"Fecha \u00faltimo pago","tag2":"Imagen","tag3":"Total factura","tag4":"Deuda","tag5":"Abono actual","tag6":"Pasarela de pago","tag7":"Usuario que cargo factura","tag8":"Fecha de creaci\u00f3n","tag9":"Porcentaje m\u00ednimo de cobro %","tag_detail0":"Factura","tag_detail1":"Referencia","tag_detail2":"Id de transacci\u00f3n","tag_detail3":"Origen del pago","tag_detail4":"Total","tag_detail5":"Pasarela de pago","tag_detail6":"Fecha de pago","title_create":"Crear","title_detail":"Transacciones","title_edit":"Editar","title_export_all":"Exportar transacciones","title_list":"Cuentas de cobro"},"collection_invoices_module":"Cuentas de cobro","controller_admin_tag1":"\u00a1Administrador creado con \u00e9xito!","controller_admin_tag2":"El numero de documento ya cuenta con un registro!","controller_admin_tag3":"El correo ya cuenta con un registro!","controller_admin_tag4":"Administrador modificado con \u00e9xito!","controller_admin_tag5":"\u00a1Sesi\u00f3n multiple modificada!","controller_admin_tag6":"\u00a1Administrador borrado con \u00e9xito!","controller_api_rate_msg1":"No hay observaciones para este pedido.","controller_brand_tag1":"Ya existe una Marca con el nombre ingresado","controller_brand_tag2":"Marca creada con \u00e9xito!","controller_brand_tag3":"Marca modificada con \u00e9xito!","controller_brand_tag4":"Marca eliminada!","controller_channel_tag1":"Ya existe un Canal de Venta con el nombre ingresado","controller_channel_tag2":"Canal de Venta creado con \u00e9xito!","controller_channel_tag3":"Canal de Venta modificado con \u00e9xito!","controller_chats_tag1":"Registros encontrados","controller_chats_tag2":"Chat eliminado exitosamente!","controller_client_tag1":"Cliente creado con \u00e9xito!","controller_client_tag2":"El numero de documento ya cuenta con un registro!","controller_client_tag3":"El correo ya cuenta con un registro!","controller_client_tag4":"Cliente modificado con \u00e9xito!","controller_client_tag5":"Segmentaci\u00f3n de clientes","controller_coins_tag1":"Hincha modificado con \u00e9xito","controller_coins_tag2":"Error al generar pago con cr\u00e9dito monedas","controller_coins_tag3":"Error de pago ya que no se tiene el cr\u00e9dito suficiente para terminar la compra","controller_coins_tag4":"\u00c9xito de pago con cr\u00e9dito monedas","controller_coins_tag5":"Transacci\u00f3n modificada con \u00e9xito","controller_company_tag1":"Ya existe un registro con el nit ingresado","controller_company_tag2":"Empresa creada con \u00e9xito!","controller_company_tag3":"Empresa modificada con \u00e9xito!","controller_company_tag4":"Empresa eliminada!","controller_credit_coins_tag1":"Cr\u00e9dito hincha modificado con \u00e9xito","controller_credit_coins_tag10":"Cr\u00e9dito hincha registrado con \u00e9xito","controller_credit_coins_tag11":"Error cr\u00e9dito hincha, el total monedas no puede ser mayor al cr\u00e9dito monedas","controller_credit_coins_tag12":"Error cr\u00e9dito hincha, la deuda monedas no puede ser mayor al cr\u00e9dito monedas","controller_credit_coins_tag13":"Cr\u00e9dito Monedas","controller_credit_coins_tag2":"Error al generar pago con cr\u00e9dito monedas","controller_credit_coins_tag3":"Error de pago ya que no se tiene el cr\u00e9dito suficiente para terminar la compra","controller_credit_coins_tag4":"\u00c9xito de pago con cr\u00e9dito monedas","controller_credit_coins_tag5":"Transacci\u00f3n modificada con \u00e9xito","controller_credit_coins_tag6":"Error de pago ya que el usuario se encuentra inactivo y no puede realizar pagos con el cr\u00e9dito de monedas","controller_credit_coins_tag7":"No se ha encontrado hincha para este correo electr\u00f3nico","controller_credit_coins_tag8":"Hincha ya posee un cr\u00e9dito registrado","controller_credit_coins_tag9":"Error modificando hincha","controller_deliveryMan_tag1":"Mensajero creado con \u00e9xito!","controller_deliveryMan_tag10":"Clientes sin compra","controller_deliveryMan_tag11":"Clientes sin compra 15 d\u00edas","controller_deliveryMan_tag12":"Clientes","controller_deliveryMan_tag13":"El c\u00f3digo del cup\u00f3n es invalido","controller_deliveryMan_tag14":"El cup\u00f3n ya fue utilizado","controller_deliveryMan_tag15":"Lo sentimos, el tope de cupones ya llego a su limite","controller_deliveryMan_tag2":"El numero de documento ya cuenta con un registro!","controller_deliveryMan_tag3":"El correo ya cuenta con un registro!","controller_deliveryMan_tag4":"Mensajero modificado con \u00e9xito!","controller_deliveryMan_tag5":"\u00a1Sesi\u00f3n multiple modificada!","controller_deliveryMan_tag6":"Mensajero eliminado con \u00e9xito!","controller_deliveryMan_tag7":"El correo ya cuenta con un registro, por lo que debe recuperar la cuenta para volver hacer uso del mismo, desea recuperar la cuenta?","controller_deliveryMan_tag8":"\u00a1Cuenta recuperada!","controller_deliveryMan_tag9":"Imagen modificada","controller_line_tag1":"Ya existe una Linea de negocio con el nombre ingresado","controller_line_tag2":"Linea de negocio creada con \u00e9xito!","controller_line_tag3":"Linea de Negocio modificada con \u00e9xito!","controller_order_tag1":"El c\u00f3digo ingresado ya cuenta con un registro","controller_order_tag2":"El mensajero esta fuera de linea!","controller_order_tag3":"El mensajero se encuentra inactivo!","controller_order_tag4":"El pedido no pudo ser creado","controller_order_tag5":"","controller_order_tag6":"","controller_order_tag7":"","controller_order_tag8":"","controller_other_users_tag0":"Usuario creado con \u00e9xito!","controller_other_users_tag1":"Usuario eliminado con \u00e9xito!","controller_other_users_tag2":"Usuario modificado con \u00e9xito!","controller_other_users_tag3":"Error modificando usuario!","controller_payment_tag1":"Ya existe una Forma de pago con el nombre ingresado","controller_payment_tag2":"Forma de pago creada con \u00e9xito!","controller_payment_tag3":"Forma de pago modificada con \u00e9xito!","controller_sizing_tag1":"Ya existe una unidad de medida con el nombre ingresado","controller_sizing_tag2":"Unidad de medida creada con \u00e9xito!","controller_sizing_tag3":"Unidad de medida modificada con \u00e9xito!","controller_sizing_tag4":"Unidad de medida eliminada!","controller_sucursal_tag1":"Sucursal creada con \u00e9xito!","controller_sucursal_tag2":"Sucursal modificada con \u00e9xito!","controller_sucursal_tag3":"Sucursal eliminada con \u00e9xito!","controller_sucursal_tag4":"Ya existe un registro con el correo ingresado","controller_sucursal_tag5":"El correo ingresado ya se encuentra en uso en el sistema","controller_sucursal_tag6":"\u00a1Error al crear sucursal!","controller_sucursal_tag7":"\u00a1Error al actualizar sucursal!","coverages":{"title_1":"Agregar","title_2":"Coberturas","title_3":"Nombre","title_4":"Activo","title_5":"Costo domicilio por cobertura","title_6":"La plantilla de importar cobertura en la posici\u00f3n: :position no tiene informaci\u00f3n"},"coverages_pending":{"title_1":"Clientes pendientes por cobertura","title_2":"Email","title_3":"Ciudad","title_4":"Fecha registro"},"create":"Crear","create_block":"Se ha generado un bloqueo de la(s) silla(s), que termina a las :dateblock mientras finalizas la compra, pasado este tiempo se liberar\u00e1 tu reserva.","create_block_2":"El bloqueo se gener\u00f3 con el siguiente pin: ","create_block_3":"Si la compra finaliza con \u00e9xito recibir\u00e1s tu boleta en la secci\u00f3n de MIS BOLETAS y en el correo (revisa spam y correos no deseados).","create_sms_notifications":{"title_1":"Notificaciones sms","title_10":"\u00a1Error al crear notificaci\u00f3n sms!","title_11":"Segmento","title_12":"Link | Url","title_13":"Numero de celular","title_14":"Tipo de notificaci\u00f3n","title_15":"Notificaci\u00f3n activa","title_16":"Nombre de Usuario (API)","title_17":"Contrase\u00f1as (API)","title_18":"Texto de notificaci\u00f3n","title_19":"Url (API)","title_2":"Crear notificaci\u00f3n sms","title_3":"Enviar notificaci\u00f3n de sms a todos los clientes","title_4":"Mensaje","title_5":"Fecha","title_6":"Hora","title_7":"Agregar","title_8":"Cancelar","title_9":"\u00a1Notificaci\u00f3n sms creada con \u00e9xito!"},"create_ticket":"Se ha generado exitosamente la compra de la(s) boleta(s)","created_at":"Fecha creaci\u00f3n","created_successfully":"Registro creado exitosamente","data_manager":{"title_1":"Agregar Gestar de Datos","title_2":"Nombre","title_3":"Tipo","title_4":"Url","title_5":"Activo"},"data_policy":{"accepted":"Pol\u00edtica de tratamiento de datos aceptada.","created_at":"Fecha registro","document":"Documento\/Archivo","error_active":"Actualmente, no se pueden activar las pol\u00edticas de tratamiento de datos seleccionadas porque existen otras pol\u00edticas de tratamiento de datos activas.","tag0":"Activo","tag00":"Acciones","title_create":"Crear","title_edit":"Editar","title_list":"Pol\u00edtica de tratamiento de datos","version":"Versi\u00f3n"},"delete":"Eliminar","delete_relation_data":"Este registro no se puede eliminar","deleted_successfully":"Registro eliminado exitosamente","disabled":"Deshabilitado","doors":{"title_1":"Crear puerta","title_10":"Editar puerta","title_11":"Actualizar","title_12":"Agregar puerta","title_13":"Listado puertas","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_2":"Puerta","title_3":"Nombre","title_8":"Crear","title_9":"Cancelar"},"dorsal":{"title_1":"Crear Dorsal","title_10":"Editar Dorsal","title_11":"Actualizar","title_12":"Agregar Dorsal","title_13":"Listado Dorsal","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Cantidad de p\u00edxeles a desplazar (abajo positivo, arriba negativo) el nombre\/apellido de la dorsal.","title_18":"Cantidad de p\u00edxeles a desplazar (abajo positivo, arriba negativo) el n\u00famero de la dorsal.","title_2":"Dorsal","title_3":"Nombre","title_4":"Imagen","title_5":"Compensaci\u00f3n Texto","title_6":"Color Texto","title_7":"Compensaci\u00f3n N\u00famero","title_8":"Crear","title_9":"Cancelar"},"e_commerce_modal":{"title_1":"Registrar producto","title_10":"Plu","title_11":"Mayor\u00eda de edad","title_12":"Agregar","title_2":"Nombre","title_3":"Marca","title_4":"Precio","title_5":"Cantidad de unidades","title_6":"Unidad de medida","title_7":"Valor unidad de medida","title_8":"Categor\u00eda","title_9":"Sub categor\u00eda"},"equipment_categories":{"title_1":"Crear Categor\u00eda","title_10":"Editar Categor\u00eda","title_11":"Actualizar","title_12":"Agregar Categor\u00eda","title_13":"Listado Categor\u00eda","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_2":"ID","title_3":"Nombre","title_4":"Categor\u00edas","title_8":"Crear","title_9":"Cancelar"},"erp_config":"Configuraci\u00f3n par\u00e1metros ERP","erp_logs":{"action":"Acci\u00f3n","data":"Pedido o pago","date":"Fecha","error":"Error","filter_end_date":"Fecha fin","filter_start_date":"Fecha inicio","filters":"Filtros","object":"Ver Pedido\/Pago","origin":"M\u00f3dulo","placeholder_date":"Seleccionar fecha","placeholder_select":"Escriba el nombre","resolved":"Revisado","tag0":"Acciones","title_export_all":"Exportar logs","title_list":"Log ERP"},"erp_parameters":{"academy_sync":"Sincronizaci\u00f3n academia","shop_sync":"Sincronizaci\u00f3n tienda","title":"Par\u00e1metros ERP"},"error_creating":"Error al crear registro","error_file_pdf":"Error de formato, el documento cargado no es PDF","error_global":"Hubo un error, intenta m\u00e1s tarde.","error_removing":"Error al eliminar registro","error_updating":"Error al actualizar registro","error_updating_responsible_app":"Error al actualizar registro, el responsable app no tiene creada una direcci\u00f3n.","error_validation_1":"Esta silla no esta en venta para este evento","error_validation_10":"Este sector no se encuentra habilitado para ventas, selecciona tu silla en otro sector.","error_validation_11":"Esta compra supera el l\u00edmite de boletas permitidas para este sector, puedes comprar :number boleta(s)","error_validation_12":"No hay abonos tipo cr\u00e9dito para generar","error_validation_13":"El usuario con documento :document no es un usuario registrado","error_validation_14":"Hubo un error al generar el abono con silla :seat","error_validation_15":"Silla :seat no encontrada. Linea :line","error_validation_16":"Ya se ha superado el limite de boletas permitidas a comprar para el evento, puedes comprar :number boleta(s)","error_validation_17":"Ya existen sillas bloqueadas, por favor revisar y volver hacer el proceso.","error_validation_18":"la siguiente silla :seat no existe validar y corregir.","error_validation_19":"Error en documentos o correos que no cuenta con usuario registrado.","error_validation_2":"Este abono no esta en venta para este evento","error_validation_20":"Validar la fecha del evento.","error_validation_3":"Lo sentimos, la silla :seat ya se encuentra vendida","error_validation_4":"La silla :seat cuenta con un bloqueo, intenta de nuevo en unos minutos","error_validation_5":"Esta compra supera el l\u00edmite de boleta(s) permitidas, puedes comprar m\u00e1ximo :number boleta(s).","error_validation_6":"Esta compra supera el l\u00edmite de abono(s) permitidos, puedes comprar m\u00e1ximo :number abono(s).","error_validation_7":"Ya se ha superado el limite de bloqueos de sillas permitidos","error_validation_7_2":"Ya se ha superado el limite de bloqueos de sillas de abonado permitidos","error_validation_8":"Ya se ha alcanzado el limite de aforo vendible para esta localidad","error_validation_9":"La silla :seat no cumple con el distanciamiento social.","error_validation_tickets":{"inactive_zone":"La zona no se encuentra activa","zone_no_saleable":"La zona no se encuentra a la venta o con precios en el momento"},"event_prices":{"download_template":"Descargar plantilla","title_1":"Crear precio","title_10":"Editar precio","title_11":"Actualizar","title_12":"Agregar precio","title_13":"Listado precios","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_2":"Precio","title_3":"Evento","title_4":"Tribuna","title_5":"Precio silla","title_6":"Precio abono","title_7":"Equipo","title_8":"Crear","title_9":"Cancelar"},"events":{"sales_type":"Tipo de venta","title_1":"Crear evento","title_10":"Editar evento","title_11":"Actualizar","title_12":"Agregar evento","title_13":"Listado eventos","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Inicio de venta","title_18":"Fin de venta","title_19":"Nombre del evento","title_2":"Evento","title_20":"Pin interno","title_21":"Pin externo","title_22":"Partido","title_23":"Tipo de boleta","title_24":"Usuario","title_25":"Inicio de bloqueo","title_26":"Fin de bloqueo","title_27-1":"Subtotal","title_27-2":"Cobro de servicio","title_27-3":"Precio total","title_28":"Estadio a jugar","title_29":"Nombre del estadio","title_3":"Nombre","title_30":"Segmentaci\u00f3n","title_31":"Fecha creaci\u00f3n","title_4":"C\u00f3digo","title_5":"Fecha","title_6":"Temporada","title_7":"Equipo","title_8":"Crear","title_9":"Cancelar"},"external_app":{"exist_answer":"Ya existe una respuesta previa de esta encuesta. Por lo que, no se guardara esta nueva solicitud","exits_form":"Ya has enviado una inscripci\u00f3n, contacta con el NUEVOSTALENTOS","ok_create":"Se ha creado el registro correctamente","title_create":"Registro creado"},"fans":{"error_process":"Error procesando los datos.","generation_type":"Tipo de generaci\u00f3n","line":"Linea archivo","log":"Log","main_zone":"Tribuna","price":"Precio","quantity":"Cantidad","subzone":"Localidad","title_1":"Importar archivo","title_10":"Importar archivo excel de Fans","title_11":"Evento","title_12":"Masiva","title_2":"Nombre","title_3":"Apellido","title_4":"Documento","title_5":"Celular","title_6":"Correo Electronico","title_7":"Activo","title_8":"Acciones","title_9":"Tipo de fans","user_data":"Datos de usuario","user_id":"Usuario"},"field_datasources":{"title_1":"Crear datasources","title_10":"Editar datasource","title_11":"Actualizar","title_12":"Agregar datasource","title_13":"Listado datasources","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_2":"Datasources","title_3":"Nombre","title_4":"Tipo","title_5":"Url","title_8":"Crear","title_9":"Cancelar"},"field_input":"Tipo de input","field_values":{"title_1":"Crear valor","title_10":"Editar valor","title_11":"Actualizar","title_12":"Agregar valor","title_13":"Listado valor","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Listado items","title_18":"Agregar item","title_2":"Valor","title_20":"Agregar","title_3":"Nombre","title_4":"Valor","title_8":"Crear","title_9":"Cancelar"},"fields":{"title_1":"Crear Campo","title_10":"Editar Campo","title_11":"Actualizar","title_12":"Agregar Campo","title_13":"Listado Campos","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_18":"Agregar item","title_2":"Campo","title_20":"Agregar","title_3":"Nombre","title_4":"Campo","title_8":"Crear","title_9":"Cancelar"},"flash_ticket":{"apply_coupon":"Tipo de cup\u00f3n a aplicar ","apply_cupon_type":"Tipo de cup\u00f3n a aplicar","coupon":"Cupones","coupons":"Cup\u00f3ns","help_message":"Para ingresar m\u00e1s de un cup\u00f3n, es necesario separarlos mediante comas.","link_redeem":"Link para redimir cupon","maximum_user_ticket_sales_box_office":"M\u00e1ximo boletas venta taquilla","message":"Mensaje","modal":{"title_0":"Envio Masivo Notificaciones","title_1":"Envio Notificaciones","title_2":"Mensaje","title_3":"Cancelar","title_4":"Enviar"},"optional":" (Opcional)","segmentation":"Segmentaci\u00f3n","show_image":"Ver imagen","show_in":"Ver en","tickets_generated":"Boletas generadas con exito","title_0":"Boleter\u00eda Flash","title_1":"Partido","title_10":"Precio obsequio","title_11":"Boletas","title_12":"Valor boleta","title_13":"Texto en boleta","title_14":"Valor total","title_15":"Total","title_16":"\u00bfEst\u00e1 segur@ que desea generar las boletas?","title_17":"Imagen","title_18":"Descripci\u00f3n","title_19":"Fecha registro","title_2":"Tribuna","title_3":"Precio App","title_4":"Capacidad vendible","title_5":"M\u00e1ximo boletas Web\/App","title_6":"Activo","title_7":"Crear Configuraci\u00f3n","title_8":"Precio taquilla","title_9":"Precio especial"},"form_fields":{"tag_1":"\u00bfAsignar campo?","tag_2":"Debe seleccionar un formulario","tag_3":"Debe selecionar al menos un campo","title_1":"Asignar campos","title_12":"Asignar campos","title_13":"Listado campos","title_2":"Campos del formulario","title_3":"Campo","title_4":"Formulario","title_8":"Crear","title_9":"Cancelar"},"forms":{"multiple_answers":"M\u00faltiple respuesta por usuario","tag_1":"\u00bfCrear formulario?","tag_2":"\u00bfModificar formulario?","tag_6":"\u00bfEliminar formulario?","tag_7":"Debes seleccionar visibilidad","tag_8":"Debes seleccionar una especialidad","title_1":"Crear formulario","title_10":"Editar formulario","title_11":"Actualizar","title_12":"Agregar formulario","title_13":"Listado formulario","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Listado items","title_18":"Agregar item","title_2":"Formulario","title_20":"Agregar","title_21":"Imagen","title_22":"Mostrar en home","title_23":"Mostrar en ajustes","title_24":"Mostrar texto","title_3":"Nombre","title_4":"Descripci\u00f3n","title_5":"Visibilidad","title_6":"Prioridad","title_7":"Especialidad","title_8":"Crear","title_9":"Cancelar"},"franchises":"Franquicias","hard":"Manual","home_image":{"title_1":"Crear Imagen Home","title_10":"Editar Imagen Home","title_11":"Actualizar","title_12":"Agregar Imagen Home","title_13":"Listado Imagenes Home","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_2":"Imagen Home","title_3":"Nombre","title_4":"Imagen","title_8":"Crear","title_9":"Cancelar"},"import_successfully":"Se importaron :cnt sillas de manera exitosa","inactive":"Inactivo","integrations":{"tag_1":"\u00bfCrear integraci\u00f3n?","tag_2":"\u00bfModificar integraci\u00f3n?","tag_6":"\u00bfEliminar integraci\u00f3n?","tag_7":"Debes seleccionar visibilidad","tag_8":"Debes seleccionar una especialidad","title_1":"Crear integraci\u00f3n","title_10":"Editar integraci\u00f3n","title_11":"Actualizar","title_12":"Agregar integraci\u00f3n","title_13":"Listado integraci\u00f3n","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Contrase\u00f1a","title_18":"Llave publica","title_19":"Llave privada","title_2":"Integraci\u00f3n","title_20":"Agregar","title_3":"Nombre","title_4":"Proveedor","title_5":"End Point","title_6":"Sincronizaci\u00f3n a partir","title_7":"Usuario","title_8":"Crear","title_9":"Cancelar"},"inventory_tweaks":{"btn_create":"Agregar ajuste","create":"Desea crear el ajuste ?","create_inventory_tweak":"Crear ajuste de inventario","created_at":"Fecha y hora mov.","description":"Comentario","error_inventory_type_id":"Por favor indique un tipo de movimiento para el ajuste","filter_inventory_movement_type":"Filtrar por tipo de movimiento","filter_product":"Filtrar por producto","inventory_movement_type":"Tipo movimiento","product_attribute_id":"Atributo","product_id":"Producto","quantity":"Cantidad","title":"Ajustes de inventario","user_id":"Usuario resp."},"lealpay_error_token":"Ha ocurrido un error al validar token leal.","lealpay_error_user":"Ha ocurrido un error al registrar el usuario en la API leal.","lealpay_successs_token":"Se ha registrado correctamente token leal.","lealpay_successs_user":"Se ha registrado correctamente el usuario en la API leal.","list_ticket_logs":{"date":"Fecha de cedida","event":"Evento","event_filter":"Filtrar por evento","title":"Lista de boletas cedidas","title_1":"C\u00f3digo de boleta","title_2":"Correo del usuario anterior","title_3":"Correo del nuevo usuario","title_4":"Referencia de pago","title_5":"Cantidad de transferencias"},"login_inactive_account":"No se puede iniciar sesi\u00f3n, cuenta de usuario inactiva","login_nonexisting_account":"No se puede iniciar sesi\u00f3n, cuenta de usuario inexistente","login_too_many_request":"El servidor actualmente est\u00e1 intentando responder a tu solicitud, intenta en unos 15 segundos","login_unpermitted_account":"No se puede iniciar sesi\u00f3n, cuenta de usuario no tienes permisos para ingresar","login_wrong_data":"Correo electr\u00f3nico o Contrase\u00f1a son err\u00f3neos","main_datasources":{"title_1":"Crear cabecera","title_10":"Editar cabecera","title_11":"Actualizar","title_12":"Agregar cabecera","title_13":"Listado cabecera","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Listado items","title_18":"Agregar item","title_19":"Nombre del item","title_2":"Cabecera","title_20":"Agregar","title_3":"Nombre","title_8":"Crear","title_9":"Cancelar"},"match_event_stages":{"actions":"Acciones","created_at":"Fecha registro","segmentation":"Segmentaci\u00f3n","tag_1":"Configuraciones del evento","tag_10":"Tipo de configuraci\u00f3n","tag_11":"Sector","tag_12":"Editar configuraci\u00f3n","tag_13":"Importar configuraciones","tag_14":"Descargar plantilla","tag_15":"Importaci\u00f3n exitosa","tag_16":"Error importando configuraciones","tag_17":"NOTA: Recordar que dentro del archivo de importaci\u00f3n la columna \"Accion\" se utiliza para agregar o eliminar la configuraci\u00f3n. 1 para agregar o 0 para eliminar la configuraci\u00f3n.","tag_18":"Etiqueta boleta","tag_2":"Crear configuraci\u00f3n","tag_3":"Evento","tag_4":"Silla","tag_5":"Tribuna","tag_6":"Capacidad Total","tag_7":"Capacidad Vendible","tribune_already_blocked_error":"Ya se existe un bloque de la tribuna seleccionada"},"match_event_tickets":{"filter_user_deleted":"Filtro usuarios eliminados","filters":"Filtros","tickets_sent":"Boletas enviadas v\u00eda correo","title_1":"Boletas vendidas","title_10-1":"Cobro de servicio","title_10-2":"Precio boleta","title_11-1":"Usuario","title_11-2":"Documento del usuario","title_12":"Fecha creaci\u00f3n","title_13":"Descargar boletas por correo","title_14":"Ingresar correo del usuario que desea descargar las boletas","title_15":"Procesar boletas masivamente","title_16":"Ingrese codigo de las boletas separadas con coma (,)","title_17":"Cambiar estado: 3. Anulado 4. Reversado","title_18":"Modificar","title_19":"Tipo de acci\u00f3n que se pueden realizar:","title_2":"C\u00f3digo de la boleta","title_20":"Recuerde que la acci\u00f3n a realizar se diligencia en la columna opciones del archivo EXCEL.","title_21":"Descargar plantilla","title_22":"Plantilla","title_23":"\u00bfEsta seguro que deseas realizar el proceso de anulaci\u00f3n, cancelaci\u00f3n, eliminaci\u00f3n. con el listado del archivo EXCEL?","title_24":"Se realizo exitosamente el proceso de boletas masivas","title_25":"\u00a1Error al realizar proceso de boletas masivas!","title_26":"Descargar reporte boletas","title_27":"Generar boletas especiales","title_28":"Texto en boleta","title_29":"Cantidad","title_3":"Estado de pago","title_30":"Texto boleta especial","title_31":"Cambio masivo sillas","title_32":"NOTAS:\n 1. Recordar que dentro del archivo de importaci\u00f3n la columna \"Texto_Boleta_Especial\" se utiliza para identificar si la boleta tiene un acceso o promoci\u00f3n especial para ingreso al estadio. (ejp: NI\u00d1O, FAMILIAR, etc).\n 2. Tener en cuenta que el cambio masivo de sillas, no configura o cambia el precio de la zona anterior (asegurarse que sean cambios a zonas con mismo precio).\n 3. Caso excepcional para el cl\u00e1sico donde se cambia sur por oriental, teniendo diferentes precios.","title_33":"Importaci\u00f3n exitosa","title_34":"Error importando cambio masivo sillas","title_35":"Ingreso al estadio","title_36":"Id de transacci\u00f3n","title_37":"Asignaci\u00f3n masiva texto boletas","title_38":"NOTA:\n Recordar que dentro del archivo de importaci\u00f3n la columna \"Texto_Boleta_Especial\" se utiliza para identificar si la boleta tiene un acceso o promoci\u00f3n especial para ingreso al estadio. (ejp: NI\u00d1O, FAMILIAR, etc).","title_4":"Ref de pago app","title_5":"Ref de pago tercero","title_6":"Partido","title_7":"Tipo de boleta","title_8":"Silla","title_9":"Estado de boleta"},"max_unit_by_product":"Maximo de unidades por producto","micro_trade":{"title_1":"Crear","title_10":"Editar","title_11":"Cancelar","title_12":"Datos categor\u00eda","title_2":"Categor\u00edas","title_3":"Nombre","title_4":"Imagen","title_5":"Prioridad","title_6":"Activo","title_7":"Acciones","title_8":"Crear","title_9":"Descripci\u00f3n"},"modalOrdersDelivery":{"title_1":"Orden","title_2":"Estado"},"modal_":{"title_1":"Importar archivo","title_2":"Errores del registro","title_3":"Cerrar","title_4":"Cantidad","title_5":"Exportar archivo"},"modal_direction_tag1":"Registrar direcci\u00f3n","modal_direction_tag10":"Buscar direcci\u00f3n","modal_direction_tag2":"Barrio","modal_direction_tag3":"\u00bfC\u00f3mo llegar? (Opcional)","modal_direction_tag4":"Ayuda","modal_direction_tag5":"Agregar","modal_direction_tag6":"Importante","modal_direction_tag7":"- El bot\u00f3n \"Agregar\", se activa al momento de validar la ubicaci\u00f3n en el mapa, para ello se debe seleccionar una opci\u00f3n de la b\u00fasqueda o presionar la tecla enter luego de ingresar la direcci\u00f3n. Si trata de editar la direcci\u00f3n el bot\u00f3n se vuelve a desactivar y debe repetir el proceso anterior.","modal_direction_tag8":"- Si no encuentra la direcci\u00f3n en el mapa, por favor ingrese un punto m\u00e1s cercano y en el campo \u201cC\u00f3mo llegar?\u2019\u2019 ingresar la direcci\u00f3n completa.","modal_direction_tag9":"- Para mayor efectividad en la b\u00fasqueda se recomienda escribir la direcci\u00f3n sin espacios luego del car\u00e1cter \"#\". Ejemplo: Cra. 39 #5a-34, Cali, Valle del Cauca, Colombia.","modal_history_products1":"\u00daltimos productos comprados por el usuario","modal_history_products2":"\u00daltimos 3 pedidos","modal_history_products3":"Plu","modal_history_products4":"Nombre","modal_history_products5":"Codigo de barras","modal_history_products6":"Precio","modal_history_products7":"Cantidad","modal_info_admin_tag1":"Informaci\u00f3n Administrador","modal_info_admin_tag10":"Cancelar","modal_info_admin_tag11":"Ok","modal_info_admin_tag2":"Nombre:","modal_info_admin_tag3":"Apellido:","modal_info_admin_tag4":"No. documento:","modal_info_admin_tag5":"Tel\u00e9fono:","modal_info_admin_tag6":"Fecha ingreso:","modal_info_admin_tag7":"Correo:","modal_info_admin_tag8":"Activo:","modal_info_admin_tag9":"Sucursal:","modal_info_clients_tag1":"Informaci\u00f3n cliente","modal_info_clients_tag10":"Ok","modal_info_clients_tag2":"Nombre:","modal_info_clients_tag3":"Apellido:","modal_info_clients_tag4":"No. documento:","modal_info_clients_tag5":"Tel\u00e9fono:","modal_info_clients_tag6":"Fecha ingreso:","modal_info_clients_tag7":"Correo:","modal_info_clients_tag8":"Activo:","modal_info_clients_tag9":"Cancelar","modal_info_deliveryMan_tag1":"Informaci\u00f3n mensajero","modal_info_deliveryMan_tag10":"Activo:","modal_info_deliveryMan_tag11":"Cancelar","modal_info_deliveryMan_tag12":"Ok","modal_info_deliveryMan_tag2":"Nombre:","modal_info_deliveryMan_tag3":"Apellido:","modal_info_deliveryMan_tag4":"No. documento:","modal_info_deliveryMan_tag5":"Tel\u00e9fono:","modal_info_deliveryMan_tag6":"Fecha ingreso:","modal_info_deliveryMan_tag7":"Correo:","modal_info_deliveryMan_tag8":"Empresa asociada:","modal_info_deliveryMan_tag9":"Placa:","modal_info_sucursal_tag1":"Informaci\u00f3n sucursal","modal_info_sucursal_tag2":"C\u00f3digo:","modal_info_sucursal_tag3":"Nombre:","modal_info_sucursal_tag4":"Correo:","modal_info_sucursal_tag5":"Direcci\u00f3n:","modal_info_sucursal_tag6":"Tel\u00e9fono:","modal_info_sucursal_tag7":"Cobertura:","modal_info_sucursal_tag8":"Municipio:","modal_info_sucursal_tag9":"Cancelar","modal_mailbox_tag1":"Nombre","modal_mailbox_tag2":"No. Documento","modal_mailbox_tag3":"Mensaje","modal_mailbox_tag4":"Correo","modal_mailbox_tag5":"Fecha env\u00edo","modal_mailbox_tag6":"Cancelar","modal_mailbox_tag7":"Ok","modal_mailbox_title":"Detalle Buz\u00f3n","modal_new_delivery":{"title_1":"Nuevo repartidor","title_2":"Nombre","title_3":"Empresa","title_4":"Celular","title_5":"Ok"},"modal_qualification_tag1":"Malo","modal_qualification_tag2":"Regular","modal_qualification_tag3":"Bueno","modal_qualification_tag4":"Muy Bueno","modal_qualification_tag5":"Excelente","modal_qualification_tag6":"Observaciones","modal_qualification_tag7":"Calificar","modal_subscribers":{"delete_subscriber_table_data":"Eliminar datos tabla abonados","single_match_subscriber":"Abonado \u00fanico partido","title_1":"Importar archivo de abonados","title_2":"Seleccione la zona","title_3":"Importar abonados","title_4":"Errores del registro","title_5":"Cerrar","title_6":"Cantidad","title_7":"Generar abonos a cr\u00e9dito","title_8":"Exportar abonados"},"modal_user_ticket_change":{"tag_1":"Cambio de boletas","tag_2":"\u00bfModificar boleta del usuario?","tag_3":"Actualizacion exitosa","tag_4":"Documento","tag_5":"Correo electr\u00f3nico","tag_6":"Asignar"},"modules_footer":{"title_1":"Copyright","title_2":"2021","title_3":"AlianSap","title_4":"All rights reserved."},"multiple":"Multiple","multiselect_instruction":"Escribe el nombre deseado y presiona ENTER para crear un valor nuevo.","newOrderCreate":{"title":"Trigger newsletter"},"news_club":{"actions":"Acciones","active":"Activo","add":"Crear","category":"Categor\u00eda","comments_enabled":"Comentarios habilitados","compress":"\u00a1Optimiza tus im\u00e1genes para mejorar la velocidad de carga del sitio! Si deseas, puedes hacer clic en este icono para acceder a un compresor de im\u00e1genes online.","created_at":"Fecha creaci\u00f3n","delete":"Eliminar","description":"Ingresa el texto de la noticia","description_title":"Texto de la noticia","edit":"Editar","enable_comments":"Habilitar comentarios","enable_reactions":"Habilitar reacciones","end_date":"Fecha fin","help":"Puedes ingresar varios enlaces separados por comas.","image":"Imagen","init_date":"Fecha inicio","likes_enabled":"Reacciones habilitadas","link":"Enlace de noticia","name":"Nombre","not_found":"Noticias no encontradas","preview":"Vista previa","segmentation":"Segmentaci\u00f3n","size_photos":"La imagen debe ser menor a 3 MB","title":"Noticias club"},"no":"No","no_ticket_code":"No se encontro el codigo de la boleta","official_facebook":{"tag0":"Activo","tag00":"Acciones","tag1":"Nombre\/T\u00edtulo","tag2":"Cuenta\/Perfil","tag3":"Propietario cuenta oficial","tag4":"Fecha registro","title_create":"Crear","title_edit":"Editar","title_list":"Facebook"},"official_instagram":{"featured_posts":"Publicaciones destacadas","note":"NOTA: Separe por comas las publicaciones destacadas.","tag0":"Activo","tag00":"Acciones","tag1":"Nombre\/T\u00edtulo","tag2":"Token","tag3":"Propietario cuenta oficial","tag4":"Fecha registro","tag5":"Max registros a consultar","title_create":"Crear","title_edit":"Editar","title_list":"Instagram"},"official_tiktok":{"tag0":"Activo","tag00":"Acciones","tag1":"C\u00f3digo","tag2":"Publicaci\u00f3n","tag3":"Propietario cuenta oficial","tag4":"Fecha registro","title_create":"Crear","title_edit":"Editar","title_list":"Tiktok"},"official_twitter":{"tag0":"Activo","tag00":"Acciones","tag1":"Nombre\/T\u00edtulo","tag2":"Cuenta\/Perfil","tag3":"Propietario cuenta oficial","tag4":"Fecha registro","title_create":"Crear","title_edit":"Editar","title_list":"Twitter"},"official_youtube":{"featured_videos":"V\u00eddeos destacados","note":"NOTA: Separe por comas los v\u00eddeos destacados.","tag0":"Activo","tag00":"Acciones","tag1":"Nombre\/T\u00edtulo","tag2":"ID Canal","tag3":"Propietario cuenta oficial","tag4":"Fecha registro","tag5":"Max registros a consultar","title_create":"Crear","title_edit":"Editar","title_list":"Youtube"},"optional":"(Opcional)","optional_link":"Opcional, si se carga el documento","optional_term":"Opcional, si se carga el enlace","order_logs":{"filters":"Filtros","tag0":"Acciones","tag1":"Descripci\u00f3n Operaci\u00f3n","tag2":"Datos","tag3":"Tarea","tag4":"M\u00f3dulo","tag5-1":"Nombres responsable","tag5-2":"Apellidos responsable","tag5-3":"Correo responsable","tag6":"Fecha","tag6-1":"Fecha inicio","tag6-2":"Fecha fin","title_export_all":"Exportar logs","title_list":"Log pedidos"},"order_logs_module":"Log","order_state_1":"Pendiente","order_state_2":"Aceptado","order_state_3":"Recolectado","order_state_4":"En ruta","order_state_5":"Entregado","order_state_6":"Finalizado","order_state_7":"Cancelado","order_state_8":"Congelado","order_state_9":"Devuelto","organizer":{"title_1":"Crear Organizador","title_10":"Editar Organizador","title_11":"Actualizar","title_12":"Agregar Organizador","title_13":"Listado de organizadores","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Cantidad de p\u00edxeles a desplazar (abajo positivo, arriba negativo) el nombre\/apellido de la dorsal.","title_18":"Cantidad de p\u00edxeles a desplazar (abajo positivo, arriba negativo) el n\u00famero de la dorsal.","title_2":"Organizador","title_3":"Nombre","title_4":"Logo","title_5":"Nombre para mostrar","title_6":"Abreviaci\u00f3n","title_7":"Compensaci\u00f3n N\u00famero","title_8":"Crear","title_9":"Cancelar"},"parameters_club":{"parameters":"Par\u00e1metros","parameters_time":"Cantidad de tiempo de publicaci\u00f3n en meses:"},"paymentForms":{"webcheckout_form_1":"Portal pagos","webcheckout_form_2":"Est\u00e1s intentando realizar un pago por un valor de :value. Para continuar diligencia el siguiente formulario:","webcheckout_form_3":"Estas intentando realizar un pago por un valor de :value. Para continuar presiona el siguiente bot\u00f3n:","webcheckout_form_4":"N\u00famero de Tarjeta","webcheckout_form_5":"Vencimiento","webcheckout_form_6":"C\u00f3digo de seguridad","webcheckout_form_7":"Pagar :value"},"paymentGateway":{"client_signature":"Llave\/firma de integridad","title_1":"Crear","title_10":"Editar","title_11":"Actualizar","title_12":"Crear","title_13":"Pasarelas de pagos","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"URL producci\u00f3n","title_18":"URL pruebas","title_19":"Es productivo","title_2":"Pasarelas de pagos","title_20":"Usuario","title_21":"Contrase\u00f1a","title_22":"Cliente p\u00fablico","title_23":"Cliente secreto","title_24":"Api Key (Opcional)","title_25":"Api Login (Opcional)","title_26":"Id de comerciante (Opcional)","title_27":"Id de cuenta (Opcional)","title_28":"Idioma","title_29":"Divisa","title_3":"Nombre","title_30":"P\u00e1gina de pago del usuario (Opcional)","title_31":"P\u00e1gina de confirmaci\u00f3n del usuario (Opcional)","title_32":"P\u00e1gina de respuesta de la pasarela de pagos (Opcional)","title_33":"Ruta Controlador Pasarela de pagos","title_34":"Imagen","title_35":"Disponible pagos en","title_4":"Descripci\u00f3n","title_8":"Crear","title_9":"Cancelar"},"paymentResponse":{"webcheckout_confirm_1":"\u00a1Gracias por tu compra!","webcheckout_confirm_2":"T\u00fa(s) boletas han sido generadas, puedes verlas en t\u00fa correo electr\u00f3nico o en la secci\u00f3n MIS BOLETAS del APP","webcheckout_confirm_3":"T\u00fa(s) art\u00edculos de la tienda llegar\u00e1n entre 5 y 7 d\u00edas h\u00e1biles, puedes ver en la secci\u00f3n de MIS PEDIDOS del APP","webcheckout_confirm_4":"Lo sentimos, la transacci\u00f3n fue rechazada.","webcheckout_confirm_5":"La transacci\u00f3n provoc\u00f3 un error.","webcheckout_confirm_6":"La compra :code ya registra un pago.","webcheckout_confirm_7":"T\u00fa pago ha sido recibido con \u00e9xito"},"payment_message":{"title_1":"Personalizar email abonados\/tickets","title_10":"Texto piede pagina","title_11":"Texto link de descarga","title_12":"Imagen para email abonados","title_13":"Imagen para email boletas","title_14":"Titulo (Link)","title_15":"Ver email abono","title_16":"Ver email ticket","title_17":"Mensaje Abonado","title_18":"Mensaje Ticket","title_19":"Mensaje Indumentaria","title_2":"Selecionar opci\u00f3n","title_20":"Texto Color","title_21":"\u00a1Mensaje email personalizado con exito!","title_22":"\u00a1Error al personalizado email!","title_3":"Titulo (Opcional)","title_4":"Texto confirmacion de compra","title_5":"Texto logo (nombre del equipo)","title_6":"Texto saludo","title_7":"Texto 1","title_8":"Texto 2","title_9":"Texto 3"},"payment_method":{"code":"C\u00f3digo\/siglas","tag0":"Activo","tag00":"Acciones","tag1":"Nombre","tag2":"Fecha registro","title_create":"Crear","title_edit":"Editar","title_list":"M\u00e9todos de pago"},"pending_data":"Debes ingresar todos los datos requeridos del formulario","photos_club":{"actions":"Acciones","active":"Activo","add":"Crear","category":"Categor\u00eda","comments_enabled":"Comentarios habilitados","compress":"\u00a1Optimiza tus im\u00e1genes para mejorar la velocidad de carga del sitio! Si deseas, puedes hacer clic en este icono para acceder a un compresor de im\u00e1genes online.","created_at":"Fecha creaci\u00f3n","delete":"Eliminar","description":"Descripci\u00f3n","edit":"Editar","enable_comments":"Habilitar comentarios","enable_reactions":"Habilitar reacciones","end_date":"Fecha fin","help":"Puedes ingresar varios enlaces separados por comas.","image":"Imagen(s)","init_date":"Fecha inicio","likes_enabled":"Reacciones habilitadas","link":"Enlace(s)","name":"Nombre","not_found":"Fotos no encontradas","preview":"Vista previa","size_photos":"La imagen debe ser menor a 3 MB","title":"Fotos club","title_table":"Fotos"},"players":{"title_1":"Crear Jugador","title_10":"Cuando se uni\u00f3 al club","title_11":"Fecha Debut","title_12":"Rival Debut","title_13":"Retiro","title_14":"Logros","title_15":"Estatura","title_16":"Palmar\u00e9s","title_17":"Posici\u00f3n","title_18":"Categor\u00eda de Equipo","title_19":"Jugador","title_2":"Jugadores","title_20":"Crear Jugador","title_21":"Cancelar","title_22":"Editar Jugador","title_23":"Actualizar","title_24":"Agregar Jugador","title_25":"Listado Jugador","title_26":"Activo","title_27":"Acciones","title_28":"Opciones","title_29":"Instagram","title_3":"Nombre","title_4":"Imagen","title_5":"N\u00famero","title_6":"Edad","title_7":"Pa\u00eds Origen","title_8":"Fecha Nacimiento","title_9":"Biografia"},"podcasts_club":{"actions":"Acciones","active":"Activo","add":"Crear","category":"Categor\u00eda","comments_enabled":"Comentarios habilitados","compress":"\u00a1Optimiza tus im\u00e1genes para mejorar la velocidad de carga del sitio! Si deseas, puedes hacer clic en este icono para acceder a un compresor de im\u00e1genes online.","created_at":"Fecha creaci\u00f3n","delete":"Eliminar","description":"Descripci\u00f3n","edit":"Editar","enable_comments":"Habilitar comentarios","enable_reactions":"Habilitar reacciones","end_date":"Fecha fin","help":"Puedes ingresar varios enlaces separados por comas.","image":"Imagen","init_date":"Fecha inicio","likes_enabled":"Reacciones habilitadas","link":"Enlace de podcast","name":"Nombre","not_found":"Noticias no encontradas","preview":"Vista previa","segmentation":"Segmentaci\u00f3n","size_photos":"La imagen debe ser menor a 3 MB","title":"Podcast"},"positions":{"title_1":"Crear Posici\u00f3n","title_10":"Editar Posici\u00f3n","title_11":"Actualizar","title_12":"Agregar Posici\u00f3n","title_13":"Listado Posici\u00f3n","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_2":"Posici\u00f3nes","title_3":"Nombre","title_8":"Crear","title_9":"Cancelar"},"productAttributes":{"title_1-1":"Crear","title_1-2":"Editar","title_10":"EAN","title_11":"Ancho","title_12":"Largo","title_13":"Alto","title_14":"Observaci\u00f3n","title_15":"Posici\u00f3n Principal","title_16":"Patr\u00f3n Estiba","title_17":"SKU","title_18":"Unidades disponible","title_19":"PUM","title_2":"Atributos del producto","title_3":"Producto","title_4":"Atributo","title_5":"Valor","title_6":"Precio adicional","title_7":"C\u00f3digo Interno PMI","title_8":"Embalaje","title_9":"Peso \/ Medida"},"products_scraper":{"title_1":"Buscar","title_2":"Palabra","title_3":"Tienda","title_4":"Descripci\u00f3n","title_5":"Precio"},"publications":{"date":"Fecha creaci\u00f3n","interactions":"Interacciones","new":"Noticia","no_comments":"Este contenido no tiene comentarios","no_reactions":"Este contenido no tiene reacciones","reactions":"Reacciones","video":"Video","views":"Visualizaciones"},"readonly":"Solo lectura","ref_wompi":{"title_1":"Validador de pagos","title_2":"Id de la transacci\u00f3n","title_3":"Referencia de la transacci\u00f3n","title_4":"Cuentas","title_5":"Pasarelas de pago","title_6":"Seleccione pasarela","title_7":"Detalle transacci\u00f3n","title_8":"Buscar"},"report":{"select":"Seleccionar Reporte","title":"Reportes An\u00e1liticos","title_create":"Crear","title_edit":"Editar","title_settings":"Configuraciones"},"report_redemptions":{"filter_app_sections":"Secci\u00f3n App","filter_end_date":"Fecha fin","filter_start_date":"Fecha inicio","filters":"Filtros","placeholder_date":"Seleccionar fecha","placeholder_select":"Escriba el nombre","title_1":"Secci\u00f3n App","title_2-1":"Beneficiario nombres","title_2-2":"Beneficiario apellidos","title_2-3":"Beneficiario correo","title_3-1":"Usuario revisor nombres","title_3-2":"Usuario revisor apellidos","title_3-3":"Usuario revisor correo","title_4":"Opci\u00f3n","title_5":"Fecha registro","title_export_all":"Exportar datos","title_list":"Reporte redenciones"},"reports_academy":{"briefcase":"Reportes de cartera academias"},"reports_internal":{"reports":"Reportes internos"},"reports_state":{"reporte_boleteria_abonado":"Reporte abonados","reporte_boleteria_consolidado":"Reporte consolidado","reporte_boleteria_cortesia":"Boleter\u00eda de cortes\u00eda por localidad","reporte_boleteria_vendida_localidad":"Boleter\u00eda vendida por localidad y general","reporte_boleteria_venta_libre":"Reporte venta libre y cr\u00e9dito","reporte_hacienda":"Reportes de hacienda","reporte_ingreso_por_tribuna":"Reporte ingresos por tribuna","reporte_reversada_anulada":"Boleter\u00eda reversada y anulada por localidad"},"reports_state_academy":{"collection_and_portfolio_report":"Reporte de recaudo y cartera ","reporte_acumulada_sede":"Reporte de cartera acumulada por sede","reporte_alumno_profesor":"Reporte de cartera por alumno y profesor","reporte_sede_categoria":"Reporte de cartera por sede y categoria"},"required":"Requerido","results":{"title_1":"Crear precio","title_13":"Listado de resultados","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_2":"Precio","title_3":"Formulario","title_4":"Usuario","title_7":"Fecha","title_8":"Crear","title_9":"Cancelar"},"rol_1":"SuperAdmin","rol_2":"Admin","rol_3":"Mensajero","rol_4":"Cliente","rol_5":"Reportes","roles_permissions":{"tag0":"Activo","tag00":"Acciones","tag1":"Nombre","tag2":"M\u00f3dulo principal","tag3":"Permisos (m\u00f3dulos)","tag4":"Fecha registro","title_create":"Crear","title_edit":"Editar","title_list":"Roles y permisos"},"route_planning":{"title_1":"Simulaci\u00f3n de ruta","title_10":"Repartidores","title_11":"Repartidor externo","title_12":"Todos","title_13":"Nombre","title_14":"Empresa","title_15":"Tel\u00e9fono","title_16":"ID","title_2":"Simular ruta","title_3":"Tomar y asignar ruta","title_4":"Pedidos pendientes","title_5":"C\u00f3digo","title_6":"Direcci\u00f3n","title_7":"Lat","title_8":"Lng","title_9":"Transferencia"},"scale":"Escala","screen_addOrder_tag1":"Pedidos","screen_addOrder_tag2":"Nuevo pedido","screen_addOrder_tag3":"Tipo de pedido:","screen_addOrder_tag4":"-- Seleccionar","screen_add_admin_tag1":"Administradores","screen_add_admin_tag10":"Contrase\u00f1a","screen_add_admin_tag11":"Confirmar contrase\u00f1a","screen_add_admin_tag12":"Crear","screen_add_admin_tag2":"Crear","screen_add_admin_tag3":"Nombres","screen_add_admin_tag4":"Apellidos","screen_add_admin_tag5":"Correo electr\u00f3nico","screen_add_admin_tag6":"No. documento","screen_add_admin_tag7":"Tel\u00e9fono","screen_add_admin_tag8":"Rol","screen_add_admin_tag9":"Sucursal","screen_add_categories_modal_tag1":"Registrar direcci\u00f3n","screen_add_categories_modal_tag2":"Barrio (Opcional)","screen_add_categories_modal_tag3":"C\u00f3mo llegar?","screen_add_categories_modal_tag4":"Ayuda","screen_add_categories_modal_tag5":"Agregar","screen_add_categories_modal_tag6":"Importante","screen_add_categories_modal_tag7":"El bot\u00f3n \"Agregar\", se activa al momento de validar la ubicaci\u00f3n en el mapa, para ello se debe seleccionar una opci\u00f3n de la b\u00fasqueda o presionar la tecla enter luego de ingresar la direcci\u00f3n. Si trata de editar la direcci\u00f3n el bot\u00f3n se vuelve a desactivar y debe repetir el proceso anterior.","screen_add_categories_modal_tag8":"Si no encuentra la direcci\u00f3n en el mapa, por favor ingrese un punto m\u00e1s cercano y en el campo \u201cC\u00f3mo llegar?\u2019\u2019 ingresar la direcci\u00f3n completa.","screen_add_categories_modal_tag9":"Para mayor efectividad en la b\u00fasqueda se recomienda escribir la direcci\u00f3n sin espacios luego del car\u00e1cter \"#\". Ejemplo: Cra. 39 #5a-34, Cali, Valle del Cauca, Colombia.","screen_add_categories_tag1":"Crear","screen_add_categories_tag2":"Nombre","screen_add_categories_tag3":"Prioridad","screen_add_categories_tag4":"Imagen (Opcional)","screen_add_categories_tag5":"Cancelar","screen_add_categories_tag6":"Agregar","screen_add_clients_tag1":"Clientes","screen_add_clients_tag10":"Confirmar contrase\u00f1a","screen_add_clients_tag11":"Direcci\u00f3n","screen_add_clients_tag12":"Barrio (Opcional)","screen_add_clients_tag13":"Instrucciones","screen_add_clients_tag14":"Agregar","screen_add_clients_tag2":"Crear","screen_add_clients_tag3":"Crear","screen_add_clients_tag4":"Nombres","screen_add_clients_tag5":"Apellidos","screen_add_clients_tag6":"Correo electr\u00f3nico","screen_add_clients_tag7":"Tel\u00e9fono","screen_add_clients_tag8":"No. documento","screen_add_clients_tag9":"Contrase\u00f1a","screen_add_company_tag1":"Empresas Asociadas","screen_add_company_tag2":"Crear Empresa","screen_add_company_tag3":"Nombre","screen_add_company_tag4":"Nit","screen_add_company_tag5":"Tel\u00e9fono","screen_add_company_tag6":"Contacto","screen_add_company_tag7":"Crear","screen_add_company_tag8":"Cancelar","screen_add_deliveryMan_tag1":"Mensajeros","screen_add_deliveryMan_tag10":"Sucursal","screen_add_deliveryMan_tag11":"Contrase\u00f1a","screen_add_deliveryMan_tag12":"Confirmar contrase\u00f1a","screen_add_deliveryMan_tag13":"Guardar cambios","screen_add_deliveryMan_tag14":"Foto","screen_add_deliveryMan_tag2":"Crear Mensajeros","screen_add_deliveryMan_tag3":"Nombres","screen_add_deliveryMan_tag4":"Apellidos","screen_add_deliveryMan_tag5":"Correo","screen_add_deliveryMan_tag6":"No. documento","screen_add_deliveryMan_tag7":"Tel\u00e9fono","screen_add_deliveryMan_tag8":"Placa","screen_add_deliveryMan_tag9":"Empresa asociada","screen_add_sizing_tag1":"Crear Unidad de medida","screen_add_sizing_tag2":"Nombre","screen_add_sizing_tag3":"Abreviatura","screen_add_sizing_tag4":"Cancelar","screen_add_sizing_tag5":"Agregar","screen_add_sizing_tag6":"Unidades de medida","screen_add_subcategories_tag1":"Crear","screen_add_subcategories_tag2":"Subcategor\u00eda","screen_add_subcategories_tag3":"Nombre","screen_add_subcategories_tag4":"Prioridad","screen_add_subcategories_tag5":"Categor\u00eda","screen_add_subcategories_tag6":"Imagen","screen_add_sucursal_tag1":"Sucursales","screen_add_sucursal_tag10":"Municipio","screen_add_sucursal_tag11":"Direcci\u00f3n","screen_add_sucursal_tag12":"Barrio (Opcional)","screen_add_sucursal_tag13":"C\u00f3mo llegar?","screen_add_sucursal_tag14":"Agregar","screen_add_sucursal_tag15":"Cancelar","screen_add_sucursal_tag2":"Agregar sucursal","screen_add_sucursal_tag3":"Agregar sucursal","screen_add_sucursal_tag4":"Correo","screen_add_sucursal_tag5":"Nombre","screen_add_sucursal_tag6":"C\u00f3digo","screen_add_sucursal_tag7":"Tel\u00e9fono","screen_add_sucursal_tag8":"Cobertura","screen_add_sucursal_tag9":"Departamento","screen_admin_tag1":"Administradores","screen_admin_tag2":"Apellidos","screen_admin_tag3":"Nombres","screen_admin_tag4":"Correo","screen_admin_tag5":"Rol","screen_admin_tag6":"Activo","screen_admin_tag7":"Crear","screen_admin_tag8":"Segmentaci\u00f3n","screen_admin_tag9":"Fecha registro","screen_alliance_tag1":"No. Pedido","screen_alliance_tag2":"Sucursal:","screen_alliance_tag3":"-- Seleccionar","screen_alliance_tag4":"Mensajero","screen_alliance_tag5":"Comentarios","screen_alliance_tag6":"Transferencia","screen_alliance_tag7":"Aceptar","screen_alliance_tag8":"Cancelar","screen_alliance_tag9":"Refrescar mensajeros","screen_banners_tag1":"Banners","screen_banners_tag10":"Editar Banner","screen_banners_tag11":"Agregar","screen_banners_tag12":"Cancelar","screen_banners_tag13":"Modificar","screen_banners_tag14":"\u00a1Banner creado con \u00e9xito!","screen_banners_tag15":"\u00a1Error al crear banner!","screen_banners_tag16":"\u00a1Banner actualizado con \u00e9xito!","screen_banners_tag17":"\u00a1Error al actualizar banner!","screen_banners_tag18":"\u00a1Banner modificado con \u00e9xito!","screen_banners_tag19":"\u00a1Error al modificar Banner!","screen_banners_tag2":"Crear Banner","screen_banners_tag20":"\u00a1Banner eliminado con \u00e9xito!","screen_banners_tag21":"\u00a1Error al eliminar Banner!","screen_banners_tag22":"Descripci\u00f3n","screen_banners_tag23":"Segmentaci\u00f3n","screen_banners_tag24":"Error al buscar","screen_banners_tag3":"Nombre","screen_banners_tag4":"Orden","screen_banners_tag5":"Acci\u00f3n","screen_banners_tag6":"Categoria","screen_banners_tag7":"Imagen","screen_banners_tag8":"Activo","screen_banners_tag9":"Acciones","screen_banners_tag_value":"Valor","screen_bookcase_tag1":"Revista","screen_bookcase_tag10":"Editar Revista","screen_bookcase_tag11":"Agregar","screen_bookcase_tag12":"Cancelar","screen_bookcase_tag13":"Modificar","screen_bookcase_tag14":"\u00a1Revista creada con \u00e9xito!","screen_bookcase_tag15":"\u00a1Error al crear la revista!","screen_bookcase_tag16":"\u00a1Revista actualizada con \u00e9xito!","screen_bookcase_tag17":"\u00a1Error al actualizar la revista!","screen_bookcase_tag18":"\u00a1Revista modificada con \u00e9xito!","screen_bookcase_tag19":"\u00a1Error al modificar la revista!","screen_bookcase_tag2":"Crear Revista","screen_bookcase_tag20":"\u00a1Revista eliminada con \u00e9xito!","screen_bookcase_tag21":"\u00a1Error al eliminar la revista!","screen_bookcase_tag3":"Id","screen_bookcase_tag4":"Link","screen_bookcase_tag5":"Activo","screen_bookcase_tag6":"Acciones","screen_brand_tag1":"Agregar Marca","screen_brand_tag2":"Nombre","screen_brand_tag3":"Agregar","screen_brand_tag4":"Marcas","screen_brand_tag5":"Activo","screen_categories_tag1":"Nueva Categor\u00eda","screen_categories_tag10":"Categor\u00eda modificada con exito!","screen_categories_tag11":"Categor\u00eda eliminada con exito!","screen_categories_tag12":"Sucursal: ","screen_categories_tag13":"La categoria ya existe","screen_categories_tag2":"Categor\u00edas","screen_categories_tag3":"Imagen","screen_categories_tag4":"Nombre","screen_categories_tag5":"Activo","screen_categories_tag5_1":"Prioridad","screen_categories_tag6":"Acciones","screen_categories_tag7":"Categor\u00edas","screen_categories_tag8":"Categor\u00eda creada con exito!","screen_categories_tag9":"Categor\u00eda actualizada con exito!","screen_changelogs_tag1":"Changelogs","screen_changelogs_tag10":"Usuario","screen_changelogs_tag11":"Modulo","screen_changelogs_tag12":"Tarea","screen_changelogs_tag2":"Datos","screen_changelogs_tag3":"Descripci\u00f3n","screen_changelogs_tag4":"Fecha de Creaci\u00f3n","screen_changelogs_tag5":"Crear Changelogs","screen_changelogs_tag6":"Agregar","screen_changelogs_tag7":"Cancelar","screen_changelogs_tag8":"\u00a1Changelog creado con \u00e9xito!","screen_changelogs_tag9":"\u00a1Error al crear Changelog!","screen_chats_tag1":"Chats","screen_chats_tag2":"Nombre","screen_chats_tag3":"Documento","screen_chats_tag4":"Correo","screen_chats_tag5":"Acciones","screen_check_chat_tag1":"Chat","screen_check_chat_tag2":"Enviar","screen_check_chat_tag3":"Check","screen_check_chat_tag4":"No hay Mensajes","screen_clients_accept_terms":"Autorizo tratamiento datos","screen_clients_tag0":"Acciones","screen_clients_tag1":"Cargar clientes","screen_clients_tag10":"Todos","screen_clients_tag11":"Abonado","screen_clients_tag12":"Filtro Abonados","screen_clients_tag13":"Documento","screen_clients_tag14":"Tipo documento","screen_clients_tag15":"Tel\u00e9fono","screen_clients_tag16":"Fecha registro","screen_clients_tag17":"Fecha \u00faltimo ingreso","screen_clients_tag18":"Hora \u00faltimo ingreso","screen_clients_tag19":"Fecha nacimiento","screen_clients_tag2":"Clientes","screen_clients_tag20":"Sexo","screen_clients_tag21":"Dispositivo","screen_clients_tag22":"Segmentaci\u00f3n","screen_clients_tag23":"Segmentaci\u00f3n de clientes","screen_clients_tag24":"Fecha inicio registro","screen_clients_tag25":"Fecha fin registro","screen_clients_tag26":"Fecha inicio \u00faltimo ingreso","screen_clients_tag27":"Fecha fin \u00faltimo ingreso","screen_clients_tag28":"Filtro por segmentaci\u00f3n","screen_clients_tag3":"Apellidos","screen_clients_tag4":"Nombres","screen_clients_tag5":"Correo","screen_clients_tag6":"Activo","screen_clients_tag7":"Crear","screen_clients_tag8":"Sin compras","screen_clients_tag9":"Sin compras 15 d\u00edas ","screen_clients_terms_conditions":"T\u00e9rminos y condiciones aceptados","screen_coins_tag1":"Monedas","screen_coins_tag2":"Apellido","screen_coins_tag3":"Nombre","screen_coins_tag4":"Correo","screen_coins_tag5":"Monedas Actuales","screen_coins_tag6":"Activo","screen_coins_tag7":"Volver","screen_comments_stars_tag1":"Malo","screen_comments_stars_tag2":"Regular","screen_comments_stars_tag3":"Bueno","screen_comments_stars_tag4":"Muy Bueno","screen_comments_stars_tag5":"Excelente","screen_comments_tag1":"Comentarios","screen_comments_tag11":"Comentario eliminado con exito!","screen_comments_tag12":"Comentario enviado con exito!","screen_comments_tag13":"Comentarios","screen_comments_tag2":"Pedido","screen_comments_tag3":"Cliente","screen_comments_tag4":"Documento","screen_comments_tag5":"Comentario cliente","screen_comments_tag6":"Calificaci\u00f3n cliente","screen_comments_tag7":"Acciones","screen_comments_tag8":"Fecha pedido","screen_comments_tag9":"Reporte","screen_companies_tag1":"Crear Empresa","screen_companies_tag2":" Empresas Asociadas","screen_companies_tag3":"Nombre","screen_companies_tag4":"Nit","screen_companies_tag5":"Tel\u00e9fono","screen_companies_tag6":"Contacto","screen_companies_tag7":"Activo","screen_companies_tag8":"Acciones","screen_coupon_tag1":"Cupones","screen_coupon_tag10":"Editar","screen_coupon_tag11":"Agregar","screen_coupon_tag12":"Cancelar","screen_coupon_tag13":"Modificar","screen_coupon_tag14":"\u00a1Cup\u00f3n creado con \u00e9xito!","screen_coupon_tag15":"\u00a1Error al crear el \u00a1Cup\u00f3n!","screen_coupon_tag16":"\u00a1Cup\u00f3n actualizado con \u00e9xito!","screen_coupon_tag17":"\u00a1Error al actualizar el cup\u00f3n!","screen_coupon_tag18":"\u00a1Cup\u00f3n modificado con \u00e9xito!","screen_coupon_tag19":"\u00a1Error al modificar el cup\u00f3n!","screen_coupon_tag2":"Crear","screen_coupon_tag20":"\u00a1Cup\u00f3n eliminado con \u00e9xito!","screen_coupon_tag21":"\u00a1Error al eliminar el cup\u00f3n!","screen_coupon_tag22":"Exclusivo Abonados","screen_coupon_tag23":"Exclusivo para abonados","screen_coupon_tag24":"N\u00famero de cupones","screen_coupon_tag25":"Cantidad","screen_coupon_tag26":"N\u00famero de cupones por usuario","screen_coupon_tag27":"C\u00f3digos personalizados (Opcional):","screen_coupon_tag28":"NOTA: Los c\u00f3digos personalizados son los proporcionados por las entidades emisoras de los cupones (Rappi, Exito, etc.). S\u00e9 debe ingresar los c\u00f3digos separados por coma y sin espacios.","screen_coupon_tag29":"La cantidad de c\u00f3digos ingresados no corresponde con el n\u00famero de cupones","screen_coupon_tag3":"Id","screen_coupon_tag4":"Nombre","screen_coupon_tag5":"Imagen","screen_coupon_tag6":"C\u00f3digo","screen_coupon_tag7-1":"Enlace t\u00e9rminos y condiciones","screen_coupon_tag7-2":"Documento t\u00e9rminos y condiciones","screen_coupon_tag8":"Activo","screen_coupon_tag8-1":"Fecha registro","screen_coupon_tag9":"Acciones","screen_create_notifications_tag1":"Notificaciones","screen_create_notifications_tag10":"\u00a1Error al crear Notificaci\u00f3n!","screen_create_notifications_tag11":"Segmento","screen_create_notifications_tag12":"Notificaci\u00f3n eliminado con \u00e9xito!","screen_create_notifications_tag13":"\u00a1Error al eliminar Notificaci\u00f3n!","screen_create_notifications_tag2":"Crear notificaci\u00f3n","screen_create_notifications_tag3":"Enviar notificaci\u00f3n a todos los clientes","screen_create_notifications_tag4":"Mensaje","screen_create_notifications_tag5":"Fecha","screen_create_notifications_tag6":"Hora","screen_create_notifications_tag7":"Agregar","screen_create_notifications_tag8":"Cancelar","screen_create_notifications_tag9":"\u00a1Notificaci\u00f3n creada con \u00e9xito!","screen_credit_coins_tag1":"Cr\u00e9ditos","screen_credit_coins_tag10":"Cr\u00e9dito Monedas","screen_credit_coins_tag11":"Importar","screen_credit_coins_tag12":"Exportar","screen_credit_coins_tag13":"Descargar plantilla","screen_credit_coins_tag2":"Apellidos","screen_credit_coins_tag3":"Nombres","screen_credit_coins_tag4":"Correo","screen_credit_coins_tag5":"Total Monedas","screen_credit_coins_tag6":"Activo","screen_credit_coins_tag7":"Volver","screen_credit_coins_tag8":"Crear Cr\u00e9dito","screen_credit_coins_tag9":"Deuda Monedas","screen_deliveryMan_tag1":"Mensajeros","screen_deliveryMan_tag10":"Online?","screen_deliveryMan_tag11":"Fecha registro","screen_deliveryMan_tag2":"Apellidos","screen_deliveryMan_tag3":"Nombres","screen_deliveryMan_tag4":"No. documento","screen_deliveryMan_tag5":"Tel\u00e9fono","screen_deliveryMan_tag6":"Sesi\u00f3n multiple","screen_deliveryMan_tag7":"Crear","screen_deliveryMan_tag8":"Activo","screen_deliveryMan_tag9":"Cargar mensajeros","screen_diligence_tag1":"No. Pedido","screen_diligence_tag2":"Sucursal:","screen_diligence_tag3":"-- Seleccionar","screen_diligence_tag4":"Mensajero","screen_diligence_tag5":"Comentarios","screen_diligence_tag6":"Transferencia","screen_diligence_tag7":"Aceptar","screen_diligence_tag8":"Cancelar","screen_diligence_tag9":"Refrescar mensajeros","screen_discounts_tag1":"Descuentos","screen_discounts_tag10":"Mensaje a mostrar al usuario cuando gane el descuento","screen_discounts_tag11":"Cantidad de promociones","screen_discounts_tag12":"Inicio del descuento","screen_discounts_tag13":"Hora inicio del descuento","screen_discounts_tag14":"Fin del descuento","screen_discounts_tag15":"Hora fin del descuento","screen_discounts_tag16":"Precio de descuento $","screen_discounts_tag17":"Porcentaje de descuento %","screen_discounts_tag18":"El usuario lo puede redimir m\u00e1s de 1 vez","screen_discounts_tag19":"El descuento es acumulable con otros descuentos","screen_discounts_tag2":"Crear Descuento","screen_discounts_tag20":"C\u00f3digo cup\u00f3n","screen_discounts_tag21":"Productos","screen_discounts_tag22":"Productos descuento grupo","screen_discounts_tag23":"Nombre","screen_discounts_tag24":"PLU","screen_discounts_tag25":"Precio","screen_discounts_tag26":"Listado de productos requisito para obsequio ( si desea que sea 2x1 seleccionar el mismos o diferente producto en las dos tablas )","screen_discounts_tag27":"Producto Obsequio","screen_discounts_tag28":"Producto","screen_discounts_tag29":"Selecciona el producto al cual se le aplicara el descuento en la segunda unidad.","screen_discounts_tag3":"Nombre","screen_discounts_tag30":"Selecciona el producto al cual se le aplicara el descuento al llegar al valor tope en la compra.","screen_discounts_tag31":"\u00a1Descuento modificado con \u00e9xito!","screen_discounts_tag32":"\u00a1Error al modificar Descuento!","screen_discounts_tag33":"Redimidos","screen_discounts_tag34":"Total","screen_discounts_tag35":"Nombre usuario","screen_discounts_tag36":"Correo electr\u00f3nico","screen_discounts_tag37":"Celular","screen_discounts_tag38":"No. documento","screen_discounts_tag39":"Orden","screen_discounts_tag4":"Activo","screen_discounts_tag40":"Descuento","screen_discounts_tag41":"Listado de usuarios que han redimido el descuento","screen_discounts_tag42":"Informaci\u00f3n descuento","screen_discounts_tag43":"Valor para aplicar al decuento","screen_discounts_tag44":"Valor orden","screen_discounts_tag45":"C\u00f3digo cup\u00f3n","screen_discounts_tag46":"Fecha de inicio","screen_discounts_tag47":"Fecha de fin","screen_discounts_tag48":"Editar descuento","screen_discounts_tag49":"Modificar","screen_discounts_tag5":"Acciones","screen_discounts_tag50":"Cancelar","screen_discounts_tag51":"Listado de Productos requisito para el descuento","screen_discounts_tag52":"Producto promoci\u00f3n","screen_discounts_tag53":"\u00a1Descuento actualizado con \u00e9xito!","screen_discounts_tag54":"\u00a1Error al actualizar descuento!","screen_discounts_tag55":"\u00a1Solo puede haber un descuento env\u00edos creado y activo!","screen_discounts_tag56":"A qu\u00e9 se aplicar\u00e1 el descuento","screen_discounts_tag57":"Seleccione Categoria","screen_discounts_tag58":"Cantidad","screen_discounts_tag59":"Producto grupo","screen_discounts_tag6":"Nombre del descuento","screen_discounts_tag60":"Tipo Descuento:","screen_discounts_tag7":"Valor minimo para aplicar al descuento","screen_discounts_tag8":"\u00a1Descuento creado con \u00e9xito!","screen_discounts_tag9":"\u00a1Error al crear Descuento!","screen_ec_tag1":"Ingresar cup\u00f3n de descuento","screen_ec_tag2":"Aplicar","screen_editEC_tag1":"Pedidos","screen_editEC_tag10":"Plu","screen_editEC_tag11":"Nombre","screen_editEC_tag12":"Cantidad","screen_editEC_tag13":"Precio Total","screen_editEC_tag14":"No hay productos","screen_editEC_tag15":"Estado","screen_editEC_tag16":"Disponible","screen_editEC_tag17":"Recolectado","screen_editEC_tag18":"No recolectado","screen_editEC_tag19":"Disponible","screen_editEC_tag2":"Editar Pedido","screen_editEC_tag20":"No disponible","screen_editEC_tag21":"Precio base","screen_editEC_tag22":"Acciones","screen_editEC_tag23":"Atributos","screen_editEC_tag24":"Comentarios","screen_editEC_tag25":"Subtotal:","screen_editEC_tag26":"Productos no encontrados:","screen_editEC_tag27":"Valor total:","screen_editEC_tag28":"Costo real:","screen_editEC_tag29":"Talla","screen_editEC_tag3":"Fecha:","screen_editEC_tag4":"Comentarios","screen_editEC_tag5":"Transferencias","screen_editEC_tag6":"Sucursal","screen_editEC_tag7":"Productos","screen_editEC_tag8":"Guardar cambios","screen_editEC_tag9":"Sucursal","screen_editSale_tag1":"Pedidos","screen_editSale_tag10":"Estado","screen_editSale_tag11":"Recogido","screen_editSale_tag12":"Pendiente","screen_editSale_tag13":"Estado:","screen_editSale_tag2":"Editar Pedido","screen_editSale_tag3":"Fecha:","screen_editSale_tag4":"Comentarios","screen_editSale_tag5":"Transferencias","screen_editSale_tag6":"Sucursal","screen_editSale_tag7":"Productos","screen_editSale_tag8":"Guardar cambios","screen_editSale_tag9":"Sucursal","screen_edit_Sucursal_modal_tag1":"Registrar direcci\u00f3n","screen_edit_Sucursal_modal_tag2":"Barrio (Opcional)","screen_edit_Sucursal_modal_tag3":"C\u00f3mo llegar?","screen_edit_Sucursal_modal_tag4":"Ayuda","screen_edit_Sucursal_modal_tag5":"Agregar","screen_edit_Sucursal_modal_tag6":"Importante","screen_edit_Sucursal_modal_tag7":"El bot\u00f3n \"Agregar\", se activa al momento de validar la ubicaci\u00f3n en el mapa, para ello se debe seleccionar una opci\u00f3n de la b\u00fasqueda o presionar la tecla enter luego de ingresar la direcci\u00f3n. Si trata de editar la direcci\u00f3n el bot\u00f3n se vuelve a desactivar y debe repetir el proceso anterior.","screen_edit_Sucursal_modal_tag8":"Si no encuentra la direcci\u00f3n en el mapa, por favor ingrese un punto m\u00e1s cercano y en el campo \u201cC\u00f3mo llegar?\u2019\u2019 ingresar la direcci\u00f3n completa.","screen_edit_Sucursal_modal_tag9":"Para mayor efectividad en la b\u00fasqueda se recomienda escribir la direcci\u00f3n sin espacios luego del car\u00e1cter \"#\". Ejemplo: Cra. 39 #5a-34, Cali, Valle del Cauca, Colombia.","screen_edit_admin_tag1":"Editar","screen_edit_admin_tag2":"Guardar cambios","screen_edit_brand_tag1":"Editar Marca","screen_edit_brand_tag2":"Nombre","screen_edit_brand_tag3":"Guardar cambios","screen_edit_brand_tag4":"Cancelar","screen_edit_brand_tag5":"Modificar Marca","screen_edit_brand_tag6":"Marca","screen_edit_categories_tag1":"Editar Categor\u00eda","screen_edit_categories_tag2":"Imagen","screen_edit_categories_tag3":"Nombre","screen_edit_categories_tag4":"Prioridad","screen_edit_categories_tag5":"Cancelar","screen_edit_categories_tag6":"Guardar cambios","screen_edit_clients_tag1":"Clientes","screen_edit_clients_tag10":"Confirmar contrase\u00f1a","screen_edit_clients_tag11":"Direcci\u00f3n","screen_edit_clients_tag12":"Barrio (Opcional)","screen_edit_clients_tag13":"Instrucciones","screen_edit_clients_tag14":"Guardar cambios","screen_edit_clients_tag15":"Direcci\u00f3n principal","screen_edit_clients_tag16":"Abonado","screen_edit_clients_tag2":"Editar","screen_edit_clients_tag3":"Editar","screen_edit_clients_tag4":"Nombres","screen_edit_clients_tag5":"Apellidos","screen_edit_clients_tag6":"Correo electr\u00f3nico","screen_edit_clients_tag7":"Tel\u00e9fono","screen_edit_clients_tag8":"No. documento","screen_edit_clients_tag9":"Contrase\u00f1a","screen_edit_coins_tag1":"Monedas Hincha","screen_edit_coins_tag2":"Actualizar Monedas","screen_edit_coins_tag3":"Nombre","screen_edit_coins_tag4":"Apellido","screen_edit_coins_tag5":"Correo","screen_edit_coins_tag6":"Guardar cambios","screen_edit_coins_tag7":"Monedas Actuales","screen_edit_company_tag1":"Editar Empresa","screen_edit_company_tag2":"Editar","screen_edit_company_tag3":"Cancelar","screen_edit_credit_coins_tag1":"Monedas Hincha","screen_edit_credit_coins_tag10":"Crear Cr\u00e9dito Monedas","screen_edit_credit_coins_tag2":"Actualizar Monedas","screen_edit_credit_coins_tag3":"Nombres","screen_edit_credit_coins_tag4":"Apellidos","screen_edit_credit_coins_tag5":"Correo","screen_edit_credit_coins_tag6":"Guardar cambios","screen_edit_credit_coins_tag7":"Total Monedas","screen_edit_credit_coins_tag8":"Deuda Monedas","screen_edit_credit_coins_tag9":"Cr\u00e9dito Monedas","screen_edit_deliveryMan_tag1":"Editar mensajero","screen_edit_deliveryMan_tag2":"Aceptar","screen_edit_deliveryMan_tag3":"Cambiar imagen","screen_edit_line_business_tag1":"Editar Linea de Negocio","screen_edit_line_business_tag2":"Nombre","screen_edit_line_business_tag3":"Guardar cambios","screen_edit_line_business_tag4":"Lineas de Negocio","screen_edit_line_business_tag5":"Modificar Linea de Negocio","screen_edit_payment_tag1":"Editar Forma de Pago","screen_edit_payment_tag2":"Nombre","screen_edit_payment_tag3":"Guardar cambios","screen_edit_payment_tag4":"Cancelar","screen_edit_sale_channel_tag1":"Editar Canal de Venta","screen_edit_sale_channel_tag2":"Nombre","screen_edit_sale_channel_tag3":"Guardar cambios","screen_edit_sale_channel_tag4":"Canal de Venta","screen_edit_sale_channel_tag5":"Modificar Canal de Venta","screen_edit_sizing_tag1":"Modificar Unidades de medida","screen_edit_sizing_tag2":"Modificar","screen_edit_sucursal_tag1":"Sucursales","screen_edit_sucursal_tag10":"Municipio","screen_edit_sucursal_tag11":"Direcci\u00f3n","screen_edit_sucursal_tag12":"Barrio (Opcional)","screen_edit_sucursal_tag13":"C\u00f3mo llegar?","screen_edit_sucursal_tag14":"Guardar cambios","screen_edit_sucursal_tag15":"Cancelar","screen_edit_sucursal_tag2":"editar sucursal","screen_edit_sucursal_tag3":"Editar sucursal","screen_edit_sucursal_tag4":"Correo","screen_edit_sucursal_tag5":"Nombre","screen_edit_sucursal_tag6":"C\u00f3digo","screen_edit_sucursal_tag7":"Tel\u00e9fono","screen_edit_sucursal_tag8":"Cobertura","screen_edit_sucursal_tag9":"Departamento","screen_evidence_tag1":"Pedidos","screen_evidence_tag10":" Correo: ","screen_evidence_tag11":" No hay un mensajero asignado ","screen_evidence_tag12":"No. pedido: ","screen_evidence_tag13":"Estado:","screen_evidence_tag14":"Sucursal:","screen_evidence_tag15":"Evidencias fotogr\u00e1ficas","screen_evidence_tag16":"Sucursal","screen_evidence_tag17":"No hay archivos","screen_evidence_tag18":"Volver","screen_evidence_tag19":" Foto ","screen_evidence_tag2":"Evidencia Pedido","screen_evidence_tag20":" Cancelar ","screen_evidence_tag3":"Evidencia Pedido #","screen_evidence_tag4":"Cliente:","screen_evidence_tag5":"Tel\u00e9fono:","screen_evidence_tag6":"Correo:","screen_evidence_tag7":"Mensajero:","screen_evidence_tag8":"Empresa:","screen_evidence_tag9":"Tel\u00e9fono:","screen_header_tag1":"Cerrar sesi\u00f3n","screen_header_tag2":"Cantidad de pedidos sin aceptar","screen_header_tag3":"Mensajes del buz\u00f3n de sugerencias","screen_header_tag4":"Toggle navigation","screen_home_tag1":"Mensajeros","screen_home_tag10":"Estados","screen_home_tag11":"Vol\u00famenes de ventas","screen_home_tag12":"Usuarios conectados ultimos 7 dias","screen_home_tag13":"Usuarios nuevos ultimos 3 meses","screen_home_tag2":"Transferencias","screen_home_tag3":"Pedidos","screen_home_tag4":"Clientes","screen_home_tag5":"A\u00f1o","screen_home_tag6":"Mes","screen_home_tag7":"Todos","screen_home_tag8":"Buscar","screen_home_tag9":"Tiempos pedidos","screen_info_coins_tag1":"Detalle Movimientos","screen_info_coins_tag2":"Monedas disponibles","screen_info_coins_tag3":"Estado de la cuenta","screen_info_coins_tag4":"Fecha \u00faltima transacci\u00f3n","screen_info_coins_tag5":"Movimientos","screen_info_coins_tag6":"Cerrar","screen_info_coins_tag7":"Ok","screen_info_comments_tag1":"Detalle del comentario","screen_info_comments_tag10":"Comentario:","screen_info_comments_tag11":"Calificaci\u00f3n:","screen_info_comments_tag12":"Cancelar","screen_info_comments_tag2":"Pedido:","screen_info_comments_tag3":"Cliente:","screen_info_comments_tag4":"Comentario:","screen_info_comments_tag5":"Calificaci\u00f3n:","screen_info_comments_tag6":"Administrador:","screen_info_comments_tag7":"Comentario:","screen_info_comments_tag8":"Calificaci\u00f3n:","screen_info_comments_tag9":"Mensajero:","screen_info_credit_coins_tag1":"Detalle Movimientos","screen_info_credit_coins_tag2":"Monedas disponibles","screen_info_credit_coins_tag3":"Estado de la cuenta","screen_info_credit_coins_tag4":"Fecha \u00faltima transacci\u00f3n","screen_info_credit_coins_tag5":"Movimientos","screen_info_credit_coins_tag6":"Cerrar","screen_info_credit_coins_tag7":"Ok","screen_info_orders_tag1":"Informaci\u00f3n pedido","screen_info_orders_tag10":"Estado:","screen_info_orders_tag11":"Tiempo total:","screen_info_orders_tag12":"Forma pago:","screen_info_orders_tag13":"Calificaci\u00f3n mensajero:","screen_info_orders_tag14":"Observaci\u00f3n:","screen_info_orders_tag15":"Productos","screen_info_orders_tag16":"Transferencias","screen_info_orders_tag17":"Subtotal:","screen_info_orders_tag17-2":"Cobro de servicio:","screen_info_orders_tag18":"Domicilio:","screen_info_orders_tag19":"Descuento:","screen_info_orders_tag2":"C\u00f3digo:","screen_info_orders_tag20":"Precio total:","screen_info_orders_tag21":"Cancelar","screen_info_orders_tag22":"Tipo de pedido:","screen_info_orders_tag23":"Costo real:","screen_info_orders_tag24":"Descuentos Activos:","screen_info_orders_tag25":"Sucursal Usuario App:","screen_info_orders_tag26":"Telefono:","screen_info_orders_tag27":"Barrio:","screen_info_orders_tag3":"Sucursal:","screen_info_orders_tag4":"Cliente:","screen_info_orders_tag5":"Direcci\u00f3n:","screen_info_orders_tag6":"Sucursal origen:","screen_info_orders_tag7":"Sucursal destino:","screen_info_orders_tag8":"Mensajero:","screen_info_orders_tag9":"Realizado por:","screen_line_business_tag1":"Agregar Linea de Negocio","screen_line_business_tag2":"Nombre","screen_line_business_tag3":"Agregar","screen_line_business_tag4":"Lineas","screen_line_business_tag5":"Activo","screen_login_tag1":"Correo","screen_login_tag10":"\u00bfHas olvidado la contrase\u00f1a?","screen_login_tag11":"A todos nos pasa, solo ingresa tu correo electr\u00f3nico y nosotros nos encargamos del resto.","screen_login_tag12":"Cancelar","screen_login_tag13":"Enviar","screen_login_tag14":"Por favor, ingresa un correo v\u00e1lido","screen_login_tag2":"El correo y la contrase\u00f1a no coinciden. Int\u00e9ntalo de nuevo.","screen_login_tag3":"Contrase\u00f1a","screen_login_tag4":"El correo y la contrase\u00f1a no coinciden. Int\u00e9ntalo de nuevo.","screen_login_tag5":"Iniciar sesi\u00f3n","screen_login_tag6":"El usuario se encuentra inactivo","screen_login_tag7":"El usuario no se encuentra registrado","screen_login_tag8":"El correo y la contrase\u00f1a no coinciden. Int\u00e9ntalo de nuevo.","screen_login_tag9":"Entrar","screen_mailbox_email_tag1":"Hola, se ha recibido un nuevo buz\u00f3n de sugerencias en la ciudad de: ","screen_mailbox_email_tag2":"Nombre del usuario: ","screen_mailbox_email_tag3":"Email del usuario: ","screen_mailbox_email_tag4":"Puede visualizar el mensaje en el administrador web, muchas gracias.","screen_mailbox_tag1":"Buz\u00f3n de sugerencias","screen_mailbox_tag2":"Nombre","screen_mailbox_tag3":"Documento","screen_mailbox_tag4":"Correo","screen_mailbox_tag5":"Acciones","screen_mailbox_tag6":"Fecha","screen_notifications_tag1":"Crear notificaci\u00f3n","screen_notifications_tag10":"Link","screen_notifications_tag11":"Tipo de notificaci\u00f3n","screen_notifications_tag2":"Notificaciones","screen_notifications_tag3":"Mensaje","screen_notifications_tag4":"Fecha programada","screen_notifications_tag5":"Fecha creaci\u00f3n","screen_notifications_tag6":"Responsable","screen_notifications_tag7":"\u00a1Notificaci\u00f3n creada con exito!","screen_notifications_tag8":"Usuario","screen_notifications_tag9":"Segmento","screen_orders_tag1":"Reporte pedido","screen_orders_tag10":"Sucursal","screen_orders_tag11":"Localidad","screen_orders_tag12":"Pedido Referencia","screen_orders_tag13":"Pedido Referencia Confirmaci\u00f3n","screen_orders_tag14":"Sucursal","screen_orders_tag15":"Tipo de pedido","screen_orders_tag16":"Estado pago:","screen_orders_tag17":"Pago REF:","screen_orders_tag18":"Pendiente REF:","screen_orders_tag19":"C\u00f3digo Referencia","screen_orders_tag2":"Nuevo pedido","screen_orders_tag20-1":"Referencia de pago","screen_orders_tag20-2":"ID de pago","screen_orders_tag20-3":"Estado de pago","screen_orders_tag21":"Tipo Pedido","screen_orders_tag22":"Correo","screen_orders_tag23":"Hola :fullname, el pedido registrado en la tienda :store con c\u00f3digo: :code ha sido actualizado, ahora el pedido se encuentra en estado: :state. Saludos","screen_orders_tag24":"Medio de Pago","screen_orders_tag3":"Pedidos","screen_orders_tag4":"C\u00f3digo","screen_orders_tag5":"Fecha","screen_orders_tag6":"Cliente","screen_orders_tag7":"Documento","screen_orders_tag8":"Estado","screen_orders_tag9":"Mensajero","screen_other_users_tag0":"Todos","screen_other_users_tag1":"Crear","screen_other_users_tag10":"Fecha registro","screen_other_users_tag2":"Otros Roles","screen_other_users_tag3":"Apellidos","screen_other_users_tag4":"Nombres","screen_other_users_tag5":"Correo","screen_other_users_tag6":"Activo","screen_other_users_tag7":"Rol","screen_other_users_tag8":"Editar","screen_other_users_tag9":"Segmentaci\u00f3n","screen_parameters_app_tag0":"Textos del APP","screen_parameters_btn_setup":"Configurar LiveScore ID","screen_parameters_live_save_team":"Actualizar equipo","screen_parameters_live_score_country":"Pa\u00eds","screen_parameters_live_score_team":"Equipo","screen_parameters_tag1":"Par\u00e1metros","screen_parameters_tag10":"Hora inicio jornada (h\u00e1bil)","screen_parameters_tag11":"Hora finalizaci\u00f3n jornada (h\u00e1bil)","screen_parameters_tag12":"Hora inicio jornada (festivos)","screen_parameters_tag13":"Hora finalizaci\u00f3n jornada (festivos)","screen_parameters_tag14":"Permitir la creaci\u00f3n de pedidos?","screen_parameters_tag15":"Punto cobertura","screen_parameters_tag16":"Activar descuento registro?","screen_parameters_tag17":"Valor descuento registro","screen_parameters_tag18":"D\u00edas","screen_parameters_tag19":"Aceptar","screen_parameters_tag2":"Costo de domicilio","screen_parameters_tag20":"Activar c\u00f3digo autom\u00e1tico para los tipos de pedido:","screen_parameters_tag21":"Tipo de pedido modificado","screen_parameters_tag22":"Permitir modificaci\u00f3n de datos personales?","screen_parameters_tag23":"Permisos mensajero","screen_parameters_tag24":"Url BI","screen_parameters_tag25":"Versi\u00f3n m\u00ednima mensajero","screen_parameters_tag26":"Productos por sucursal","screen_parameters_tag27":"Plantilla externa","screen_parameters_tag28":"Celular soporte WhatsApp","screen_parameters_tag29":"Costo domicilio por cobertura","screen_parameters_tag3":"Valor m\u00ednimo pedido","screen_parameters_tag30":"Minutos de bloqueo de silla para abonos","screen_parameters_tag31":"Minutos de bloqueo de silla de venta libre","screen_parameters_tag32":"# maximo de abonos que puede comprar un usuario","screen_parameters_tag33":"# maximo de boletas que puede comprar un usuario","screen_parameters_tag34":"# maximo de bloqueos que puede hacer un usuario","screen_parameters_tag35":"Texto mensaje app usuario para cobro bolsa DIM","screen_parameters_tag36":"Valor bolsa DIM","screen_parameters_tag37":"Cobro bolsa DIM","screen_parameters_tag38":"Recogida en tienda","screen_parameters_tag39":"Distanciamiento Social","screen_parameters_tag4":"Ciudad DB","screen_parameters_tag40":"N\u00famero de sillas a bloquear en el eje x","screen_parameters_tag41":"N\u00famero de sillas a bloquear en el eje y","screen_parameters_tag42":"Bloquear sillas en la parte superior","screen_parameters_tag43":"Bloquear sillas en la parte inferior","screen_parameters_tag44":"Bloquear sillas en la parte izquierda","screen_parameters_tag45":"Bloquear sillas en la parte derecha","screen_parameters_tag46":"Activar pedido referencia","screen_parameters_tag47":"Activar bot\u00f3n crear producto","screen_parameters_tag48":"Sincronizaci\u00f3n con Woocommerce","screen_parameters_tag49":"Sincronizaci\u00f3n con Shopify","screen_parameters_tag5":"PQRS","screen_parameters_tag50":"Env\u00edo de correos al modificar el inventario","screen_parameters_tag51":"Email notificaciones modificaci\u00f3n inventario","screen_parameters_tag52":"Url imagen estadio venta boleter\u00eda flash","screen_parameters_tag53":"Venta de boletas proveedor externo","screen_parameters_tag54":"Venta de boletas puntos DIM","screen_parameters_tag55":"Activar tipos de pedido","screen_parameters_tag57":"Activar Preventa","screen_parameters_tag58":"Fecha y hora final de la preventa","screen_parameters_tag59":"Fecha limite para usuarios nuevos preventa","screen_parameters_tag6":"Versi\u00f3n m\u00ednima cliente","screen_parameters_tag60":"Mensaje a usuarios que no cumplan la preventa","screen_parameters_tag61":"Cantidad m\u00e1xima productos d\u00eda sin IVA","screen_parameters_tag62":"Activar d\u00eda sin IVA","screen_parameters_tag63":"Activar preventa abonados APP","screen_parameters_tag64":"Fecha y hora final de la preventa abonados","screen_parameters_tag65":"Msj a usuarios que no cumplan la preventa abonados","screen_parameters_tag66":"# de d\u00edas previos al partido para ver la boleta","screen_parameters_tag67":"Url fondo boleta, Dimensiones (315x456)","screen_parameters_tag68":"Url patrocinadores, Dimensiones (622x3)","screen_parameters_tag69":"Url de imagen post fin de compra","screen_parameters_tag7":"Email notificaciones","screen_parameters_tag70":"Activar modo partido","screen_parameters_tag71":"Identificador del comercio SportsCrowd","screen_parameters_tag72":"Identificador CMS SportsCrowd","screen_parameters_tag73":"Identificador de la sucursal SportsCrowd","screen_parameters_tag74":"Valor moneda, 1 moneda = ","screen_parameters_tag75":"Activar (preventa abonados \/ venta boleter\u00eda) WEB","screen_parameters_tag76":"Url del ecommerce o empresa aliada para aplicar descuentos","screen_parameters_tag77":"Url imagen publicitaria del ecommerce o empresa aliada para aplicar descuentos","screen_parameters_tag78":"Configuraci\u00f3n par\u00e1metros comercio API LEAL","screen_parameters_tag79":"Sincronizar Datos","screen_parameters_tag8":"Porcentaje descuento de envio global","screen_parameters_tag80":"Activar venta boleter\u00eda flash","screen_parameters_tag81":"Url icono venta boleter\u00eda flash","screen_parameters_tag82":"Venta boleter\u00eda flash","screen_parameters_tag83":"Mostrar alerta de confirmaci\u00f3n compra","screen_parameters_tag84":"Par\u00e1metros registro\/login exclusivo abonados","screen_parameters_tag85":"Mensaje exclusividad","screen_parameters_tag86":"Ocultar partido a rol de gana","screen_parameters_tag87":"Par\u00e1metros de actualizaci\u00f3n APP","screen_parameters_tag88-1":"Actualizaci\u00f3n opcional Android","screen_parameters_tag88-2":"Actualizaci\u00f3n opcional iOS","screen_parameters_tag89":"Mensaje al activar la actualizaci\u00f3n opcional","screen_parameters_tag9":"T\u00e9rminos","screen_parameters_ticketing_tag0":"VENTA BOLETER\u00cdA","screen_parameters_ticketing_tag1":"Mensaje m\u00e1ximo de boletas que puedes comprar","screen_parameters_ticketing_tag2":"Mensaje m\u00e1ximo de abonos que puedes comprar","screen_parameters_ticketing_tag3":"Mensaje tiempo de espera bloqueo silla","screen_parameters_ticketing_tag4":"Mensaje agregar boletas del mismo tipo","screen_parameters_ticketing_tag5":"Mensaje compra el mismo n\u00famero de abonos","screen_parameters_ticketing_tag6":"Mensaje exclusividad solo venta de abonos","screen_parameters_ticketing_tag7":"Mensaje completar informaci\u00f3n de cada abonado","screen_parameters_ticketing_tag8":"Mensaje disponibilidad ver boletas","screen_parameters_ticketing_tag9":"Mensaje no se encuentra activa la preventa de abonos","screen_parameters_title_gateway":"Par\u00e1metros Pasarela\/Pagos","screen_parameters_title_livescore":"Par\u00e1metros Live Score","screen_payment_tag1":"Agregar Forma de Pago","screen_payment_tag2":"Nombre","screen_payment_tag3":"Agregar","screen_payment_tag4":"Formas de Pago","screen_payment_tag5":"Activo","screen_points_tag1":"Puntos","screen_points_tag2":"Crear punto","screen_points_tag3":"\u00a1Punto creado con \u00e9xito!","screen_points_tag4":"\u00a1Error al crear el Punto!","screen_points_tag5":"\u00a1Punto actualizado con \u00e9xito!","screen_points_tag6":"\u00a1Error al actualizar el Punto!","screen_points_tag7":"\u00a1Punto modificado con \u00e9xito!","screen_points_tag8":"\u00a1Error al modificar el Punto!","screen_popup_tag1":"PopUp","screen_popup_tag10":"Editar PopUp","screen_popup_tag11":"Agregar","screen_popup_tag12":"Cancelar","screen_popup_tag13":"Modificar","screen_popup_tag14":"PopUp creado con \u00e9xito!","screen_popup_tag15":"\u00a1Error al crear el PopUp!","screen_popup_tag16":"PopUp actualizado con \u00e9xito!","screen_popup_tag17":"\u00a1Error al actualizar el PopUp!","screen_popup_tag18":"PopUp modificado con \u00e9xito!","screen_popup_tag19":"\u00a1Error al modificar el PopUp!","screen_popup_tag2":"Crear PopUp","screen_popup_tag20":"PopUp eliminado con \u00e9xito!","screen_popup_tag21":"\u00a1Error al eliminar el PopUp!","screen_popup_tag22":"Acciones","screen_popup_tag23":"Categoria","screen_popup_tag3":"Imagen","screen_popup_tag4":"T\u00edtulo","screen_popup_tag5":"Mensaje","screen_popup_tag6":"Texto del Boton","screen_popup_tag7":"Tipo de acci\u00f3n","screen_popup_tag8":"Valor","screen_popup_tag9":"Activo","screen_products_tag1":"Productos","screen_products_tag10":"Tama\u00f1o","screen_products_tag11":"Unidades disponibles","screen_products_tag12":"Maximo de unidades por talla","screen_products_tag13":"Producto para mayores de edad","screen_products_tag14":"Porcentaje de descuento %","screen_products_tag15":"Inicio del descuento","screen_products_tag16":"Fin del descuento","screen_products_tag17":"Hora fin del descuento","screen_products_tag18":"Precio relampago","screen_products_tag19":"Inicio relampago","screen_products_tag2":"Crear Producto","screen_products_tag20":"Fin relampago","screen_products_tag21":"Hora fin relampago","screen_products_tag22":"Marca","screen_products_tag23":"Orden","screen_products_tag24":"Imagen","screen_products_tag25":"Agregar","screen_products_tag26":"Cancelar","screen_products_tag27":"Producto modificado con \u00e9xito!","screen_products_tag28":"\u00a1Error al modificar Producto!","screen_products_tag29":"\u00a1Producto eliminado con \u00e9xito!","screen_products_tag3":"Imagen","screen_products_tag30":"\u00a1Error al eliminar Producto!","screen_products_tag31":"Categoria o Subcategorias","screen_products_tag32":"Escriba el nombre","screen_products_tag33":"Unidad","screen_products_tag34":"\u00a1Producto creado con \u00e9xito!","screen_products_tag35":"\u00a1Error al crear Producto!","screen_products_tag36":"Editar Producto","screen_products_tag37":"Modificar","screen_products_tag38":"Cancelar","screen_products_tag39":"\u00a1Producto actualizado con \u00e9xito!","screen_products_tag4":"Nombre","screen_products_tag40":"\u00a1Error al actualizar producto!","screen_products_tag41":"Importar","screen_products_tag42":"Exportar","screen_products_tag43":"Importar Productos","screen_products_tag44":"Archivo .xlsx","screen_products_tag45":"Archivo importado con \u00e9xito: ","screen_products_tag46":"Error al importar archivo: ","screen_products_tag47":"Categorias","screen_products_tag48":"Importar Categorias y Subcategorias","screen_products_tag49":"\u00a1Error! no existe el producto, PLU: ","screen_products_tag5":"PLU","screen_products_tag50":"\u00a1Error! el PLU no puede estar vac\u00edo, Categoria: ","screen_products_tag51":"\u00a1Error! la Categoria no puede estar vac\u00eda, PLU: ","screen_products_tag52":"Fotos","screen_products_tag53":"Cargar fotos","screen_products_tag54":"Selecciona la sucursal","screen_products_tag55":"Sucursal: ","screen_products_tag56":"Plantilla Externa","screen_products_tag57":"Exportar Categorias","screen_products_tag58":" El producto con PLU: :plu no tiene una marca asociada","screen_products_tag59":" El producto en la posici\u00f3n: :position no tiene PLU valido","screen_products_tag6":"Codigo de barras","screen_products_tag60":" El producto con PLU: :plu no tiene la estructura de atributos correcta","screen_products_tag61":" El total de unidades disponibles para el producto con PLU: :plu no es igual a las unidades disponibles en sus atributos","screen_products_tag62":"Unidades en despacho","screen_products_tag63":"Sync Shopify","screen_products_tag64":"Sync Woocommerce","screen_products_tag65":"Enlace del producto","screen_products_tag66":"\u00a1Imagen del producto eliminado con \u00e9xito!","screen_products_tag67":"\u00a1Error al eliminar imagen del producto!","screen_products_tag68":"\u00a1Imagen eliminada o inexistente!","screen_products_tag69":"\u00a1Error! El producto no tiene seleccionado la categor\u00eda o la subcategor\u00eda","screen_products_tag7":"Precio","screen_products_tag70":"Fecha creaci\u00f3n","screen_products_tag71":"Segmentaci\u00f3n","screen_products_tag72":"Precio segmentaci\u00f3n","screen_products_tag8":"Activo","screen_products_tag9":"Acciones","screen_radio_tag1":"Radio","screen_radio_tag10":"Editar Revista","screen_radio_tag11":"Agregar","screen_radio_tag12":"Cancelar","screen_radio_tag13":"Modificar","screen_radio_tag14":"\u00a1Radio creada con \u00e9xito!","screen_radio_tag15":"\u00a1Error al crear la radio!","screen_radio_tag16":"\u00a1Radio actualizada con \u00e9xito!","screen_radio_tag17":"\u00a1Error al actualizar la radio!","screen_radio_tag18":"\u00a1Radio modificada con \u00e9xito!","screen_radio_tag19":"\u00a1Error al modificar la radio!","screen_radio_tag2":"Crear Radio","screen_radio_tag20":"\u00a1Radio eliminada con \u00e9xito!","screen_radio_tag21":"\u00a1Error al eliminar la radio!","screen_radio_tag3":"Id","screen_radio_tag4":"T\u00edtulo","screen_radio_tag5":"Link","screen_radio_tag6":"Activo","screen_radio_tag7":"Acciones","screen_refund_tag1":"C\u00f3digo del pedido","screen_report_tag1":"Pedidos","screen_report_tag2":"Generar reporte","screen_report_tag3":"Fecha Inicio","screen_report_tag4":"Hora Inicio","screen_report_tag5":"Generar","screen_report_tag6":"Cancelar","screen_report_tag7":"Fecha Fin","screen_report_tag8":"Hora Fin","screen_report_tag9":"Tipo de boleta","screen_sale_channel_tag1":"Agregar Canal de Venta","screen_sale_channel_tag2":"Nombre","screen_sale_channel_tag3":"Agregar","screen_sale_channel_tag4":"Canales","screen_sale_channel_tag5":"Activo","screen_sale_tag1":"No. Pedido","screen_sale_tag10":"Picker","screen_sale_tag11":"-- Seleccionar","screen_sale_tag12":"Forma de pago","screen_sale_tag13":"Descuento %","screen_sale_tag14":"Total","screen_sale_tag15":"Linea Negocio","screen_sale_tag16":"Canal de venta","screen_sale_tag17":"Comentarios","screen_sale_tag18":"Sucursal origen:","screen_sale_tag19":"Ciudad","screen_sale_tag2":"Documento","screen_sale_tag20":"Email","screen_sale_tag21":"Direcciones","screen_sale_tag22":"Productos no encontrados","screen_sale_tag23":"Ciudad (Cobertura)","screen_sale_tag24":"Correo","screen_sale_tag25":"PAGO EXITOSO REF:","screen_sale_tag26":"PAGO PENDIENTE REF:","screen_sale_tag3":"Nombre","screen_sale_tag4":"Apellido","screen_sale_tag5":"Direcci\u00f3n","screen_sale_tag6":"Barrio (Opcional)","screen_sale_tag7":"Observaciones","screen_sale_tag8":"Tel\u00e9fono \/ Celular","screen_sale_tag9":"Sucursal","screen_send_comment_tag1":"Enviar comentario","screen_send_comment_tag2":"Mensaje:","screen_send_comment_tag3":"Sucursal:","screen_send_comment_tag4":"seleccione una sucursal","screen_send_comment_tag5":"Cancelar","screen_send_comment_tag6":"Enviar","screen_sizing_tag1":"Crear Unidades de medida","screen_sizing_tag2":"Unidades de medida","screen_sizing_tag3":"Nombre","screen_sizing_tag4":"Abreviatura","screen_sizing_tag5":"Acciones","screen_stocks_tag1":"Inventario","screen_stocks_tag2":"Detalle","screen_subcategories_tag1":" Nueva Subcategor\u00eda","screen_subcategories_tag2":"Subcategor\u00edas","screen_subcategories_tag3":"Imagen","screen_subcategories_tag4":"Nombre","screen_subcategories_tag5":"Categor\u00eda","screen_subcategories_tag6":"Activo","screen_subcategories_tag7":"Acciones","screen_subcategories_tag8":"Prioridad","screen_sucursal_tag1":"A\u00f1adir sucursal","screen_sucursal_tag2":"Sucursales","screen_sucursal_tag3":"C\u00f3digo","screen_sucursal_tag4":"Nombre","screen_sucursal_tag5":"Direcci\u00f3n","screen_sucursal_tag6":"Tel\u00e9fono","screen_sucursal_tag7":"Activo","screen_sucursal_tag8":"Acciones","screen_transactions_coins_tag1":"Movimientos","screen_transactions_coins_tag2":"Tipo","screen_transactions_coins_tag3":"Fecha","screen_transactions_coins_tag4":"Referencia","screen_transactions_coins_tag5":"Monedas","screen_transactions_coins_tag6":"Detalle","screen_transactions_coins_tag7":"Transacci\u00f3n cancelada","screen_transactions_credit_coins_tag1":"Movimientos","screen_transactions_credit_coins_tag2":"Tipo","screen_transactions_credit_coins_tag3":"Fecha","screen_transactions_credit_coins_tag4":"Referencia","screen_transactions_credit_coins_tag5":"Monedas","screen_transactions_credit_coins_tag6":"Detalle","screen_transactions_credit_coins_tag7":"Transacci\u00f3n cancelada","screen_transferMail_tag1":"Hola","screen_transferMail_tag2":"Del pedido #","screen_transferMail_tag3":"Se realiz\u00f3 una transferencia de los siguientes productos:","screen_transferMail_tag4":"Sucursal origen:","screen_transferMail_tag5":"Sucursal final:","screen_transferMail_tag6":"Gracias,","screen_transfer_order_tag1":"Pedidos","screen_transfer_order_tag10":" Correo:","screen_transfer_order_tag11":"No hay un mensajero asignado","screen_transfer_order_tag12":"No. pedido:","screen_transfer_order_tag13":"Estado:","screen_transfer_order_tag14":"Sucursal:","screen_transfer_order_tag15":"Transferencias","screen_transfer_order_tag16":"Sucursal","screen_transfer_order_tag17":"Productos","screen_transfer_order_tag18":"Transferencia","screen_transfer_order_tag19":"Guardar cambios","screen_transfer_order_tag2":"Transferencia Pedido","screen_transfer_order_tag20":"Cancelar","screen_transfer_order_tag3":"Fecha:","screen_transfer_order_tag4":"Cliente:","screen_transfer_order_tag5":"Tel\u00e9fono:","screen_transfer_order_tag6":"Correo:","screen_transfer_order_tag7":"Mensajero:","screen_transfer_order_tag8":"Empresa:","screen_transfer_order_tag9":"Tel\u00e9fono:","screen_transfer_tag1":"No. Pedido","screen_transfer_tag10":"Sucursal origen:","screen_transfer_tag11":"Pedidos recientes","screen_transfer_tag2":"Sucursal destino:","screen_transfer_tag3":"-- Seleccionar","screen_transfer_tag4":"Mensajero","screen_transfer_tag5":"Comentarios","screen_transfer_tag6":"Transferencia","screen_transfer_tag7":"Aceptar","screen_transfer_tag8":"Cancelar","screen_transfer_tag9":"Refrescar mensajeros","seasons":{"title_1":"Crear Temporada","title_10":"Editar Temporada","title_11":"Actualizar","title_12":"Agregar Temporada","title_13":"Listado Temporadas","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Fin","title_18":"Temporadas","title_2":"Torneos","title_3":"Nombre","title_4":"Inicio","title_5":"Activo","title_6":"Se vende abonos","title_8":"Crear","title_9":"Cancelar"},"select":"Seleccione","service":"Servicio","service_charges":{"tag0":"Activo","tag00":"Acciones","tag1":"Precio","tag2":"Servicio(s)","tag3":"Reglas","tag3-0":"JSON","tag3-1":"Partidos","tag3-2":"Tribunas","tag3-3":"Tipo de pagos","tag3-4":"Categor\u00edas","tag4":"Segmentaci\u00f3n","tag5":"Prioritario","title_academy":"Academ\u00eda","title_active":"Cobro de servicios activo","title_create":"Crear","title_edit":"Editar","title_list":"Cobro de servicios","title_order":"Tienda","title_rules":"Reglas","title_ticketing":"Boleter\u00eda"},"service_charges_module":"Cobro de servicios","smsparameters":"Par\u00e1metros de notificaciones SMS","social_network_accounts":{"tag0":"Activo","tag00":"Acciones","tag1":"Nombre","tag2":"Fecha registro","title_create":"Crear","title_edit":"Editar","title_list":"Cuentas oficiales"},"state_invalid":"Numero de estado invalido","state_invalid_2":"La boleta no se encuentra en estado comprado, no es posible cambiar estado","statistics":{"active":"Estad\u00edsticas activa","api_key":"Llave API","carousel_matches":"(Carrusel - html - iframe) de partidos","carousel_results":"(Carrusel - html - iframe) de clasificaci\u00f3n","last_load_date":"Fecha \u00faltima sincronizaci\u00f3n","sync":"Sincronizar datos","synchronization_frequency":"Tiempo de frecuencia sincronizaci\u00f3n (en minutos)","team_league":"ID torneo","team_name":"Nombre equipo","team_season":"A\u00f1o torneo","title":"Estad\u00edsticas Equipo","title_datafactory_api":"API DATAFACTORY (PARTIDOS - CLASIFICACI\u00d3N)","title_football_api":"API APIFOOTBAL (CLASIFICACI\u00d3N)","title_serp_api":"API SERPAPI (PARTIDOS)","update":"Guardar configuraci\u00f3n"},"stock_modification":"Modificaci\u00f3n de inventario","stock_modification_title":"Trigger newsletter","subcategories_controller_tag1":"Cre\u00f3 una subcategor\u00eda","subcategories_controller_tag10":"Subcategor\u00eda modificada con exito!","subcategories_controller_tag11":"Elimin\u00f3 una subcategor\u00eda","subcategories_controller_tag12":"Subcategor\u00eda eliminada con exito!","subcategories_controller_tag13":"Abonados","subcategories_controller_tag2":"Categor\u00eda creada con exito!","subcategories_controller_tag3":"Actualiz\u00f3 la imagen de la subcategor\u00eda","subcategories_controller_tag4":"Subcategor\u00eda actualizada con exito!","subcategories_controller_tag5":"Subi\u00f3 la imagen de la Subcategor\u00eda","subcategories_controller_tag6":"Subcategor\u00eda creada con exito!","subcategories_controller_tag7":"Actualiz\u00f3 una categor\u00eda","subcategories_controller_tag8":"Subcategor\u00eda actualizada con exito!","subcategories_controller_tag9":"Activ\u00f3\/Desactivo una categor\u00eda","subject_new_order":"Nuevo pedido","subscribers":{"controller_delete_tag1":"Abonado borrado con \u00e9xito!","title_1":"Hincha Poderoso, tu usuario no se encuentra registrado en la aplicaci\u00f3n NUEVOSTALENTOS. Descargala y registrate para continuar con tu compra."},"symbolic_tickets":{"active":"Activo","capacity":"Capacidad","create":"Crear","end_date":"Fecha de fin venta","error_create":"\u00a1Error al crear carn\u00e9!","error_delete":"\u00a1Error al eliminar carn\u00e9!","error_generate_tickets":"Error al generar tickets simb\u00f3licos","error_update":"\u00a1Error al actualizar carn\u00e9!","events":"Evento","image":"Imagen","name":"Nombre","segmentation":"Segmentaci\u00f3n","start_date":"Fecha de inicio venta","subscriber":"Exclusivo Abonados","ticket_not_have_price":"Debe configurar el precio de la boleta simbolica primero","title":"Carn\u00e9s","to_create":"Carn\u00e9 creado correctamente","to_delete":"Carn\u00e9 eliminado correctamente","to_generate_tickets":"Tickets simb\u00f3licos generados correctamente","to_update":"Carn\u00e9 actualizado correctamente","update":"Editar","update_state":"Se ha actualizado el estado correctamente"},"symbolic_tickets_price":{"comment":"Comentario","price":"Precio"},"symbolic_tickets_user":{"title_1":"Boleta Simb\u00f3lica","title_2":"Monto","title_3":"Usuario","title_4":"Ref de pago","title_5":"Estado de pago","title_6":"Pin","title_7":"Detalle Tickets Simb\u00f3licos","title_8":"\u00bfBoleta Valida?"},"tag":{"actions":"Acciones","active":"Activo","add":"Agregar Etiqueta","alias":"Alias","alias_description":"(Minusculas - Sin caracteres especiales)","create":"Crear Etiqueta","description":"Descripci\u00f3n","edit":"Editar Etiqueta","image":"Imagen","list":"Listado de etiquetas","name":"Nombre","tags":"Etiquetas"},"teams":{"alias":"Alias","title_1":"Crear equipo","title_10":"Editar equipo","title_11":"Actualizar","title_12":"Agregar equipo","title_13":"Listado equipos","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_2":"Torneo","title_3":"Nombre","title_4":"Logo","title_5":"Visibilidad","title_6":"Nombre a mostrar","title_7":"Abreviatura","title_8":"Crear","title_9":"Cancelar"},"terms_conditions":{"accepted":"T\u00e9rminos y condiciones aceptados.","created_at":"Fecha registro","document":"Documento\/Archivo","error_active":"Actualmente, no se pueden activar los t\u00e9rminos y condiciones seleccionados porque existen otros t\u00e9rminos y condiciones activos.","tag0":"Activo","tag00":"Acciones","title_create":"Crear","title_edit":"Editar","title_list":"T\u00e9rminos y condiciones","version":"Versi\u00f3n"},"text_notification_push":{"title":"Texto de notificaci\u00f3n push"},"ticket_backups":{"tille_9":"Silla","title_1":"Tickets Backup","title_10":"Agregar Silla","title_11":"Cambiar Silla","title_12":"Selecciona una silla","title_13":"Cambiar silla","title_14":"Fecha reserva","title_15":"Nombres Usuario","title_16":"Email Usuario","title_17-1":"Nombres Vendedor","title_17-2":"Email Vendedor","title_18":"Validaci\u00f3n Masiva","title_19":"Sin Boletas","title_2":"Ref de pago app","title_20":"Listado de transacciones sin boletas","title_21":"Selecciona un sector","title_22":"Id de transacci\u00f3n","title_23":"Pasarela","title_24":"Ref de pago tercero","title_25":"Partido(s)","title_26":"Tipo de boleta","title_27":"PIN","title_3":"Estado de pago","title_4":"Intentos","title_5":"Comentario pasarela","title_6-1":"Subtotal","title_6-2":"Cobro de servicio","title_6-3":"Precio total","title_7":"Acciones","title_8":"Boletas"},"ticket_logs":{"filters":"Filtros","tag0":"Acciones","tag1":"Descripci\u00f3n Operaci\u00f3n","tag2":"Datos","tag3":"Tarea","tag4":"M\u00f3dulo","tag5-1":"Nombres responsable","tag5-2":"Apellidos responsable","tag5-3":"Correo responsable","tag6":"Fecha","tag6-1":"Fecha inicio","tag6-2":"Fecha fin","title_export_all":"Exportar logs","title_list":"Log ticketing"},"ticket_logs_module":"Log","ticket_tag":{"actions":"Acciones","active":"Activo","add":"Agregar Etiqueta","alias":"Alias","alias_description":"(Minusculas - Sin caracteres especiales)","create":"Crear Etiqueta","description":"Descripci\u00f3n","edit":"Editar Etiqueta","image":"Imagen","list":"Listado de etiquetas","name":"Nombre","tags":"Etiquetas"},"tickets":{"app_permissions":"Permisos de APP","app_ticketing_background":"Imagen de fondo venta de boleteria APP","enable_download_button":"Activar bot\u00f3n de descarga","enable_transfer_ticket":"Activar ceder de boletas","enable_tyc":"Activar te\u0301rminos y condiciones","enable_validate_doors":"Activar validaci\u00f3n de puertas","matches":"Partidos","parameterizable_buttons":"Botones parametrizables","send_mail_tickets":"Configuraci\u00f3n envi\u00f3 correo boletas","send_mail_tickets_app_purchase":"Enviar correo de compra boletas APP","send_mail_tickets_web_purchase":"Enviar correo de compra boletas WEB","subscriber_button":"Boton abonados","terms":"T\u00e9rminos y condiciones","ticket_button":"Boton boletas","title_1":"Buscar usuario:","title_10":"Evento","title_11":"Tribuna","title_12":"Sector","title_13":"Silla","title_14":"Disponible","title_15":"Cortes\u00eda","title_16":"Abonado","title_17":"Vendida","title_18":"Bloqueada","title_19":"Distanciamiento","title_2":"Id","title_20":"Partido","title_21":"Selecciona tipo de boleta","title_22":"Agregar","title_23":"Formulario venta de boletas","title_24":"Usuario","title_25":"Listado","title_26":"Total:","title_27":"Proceder con el pago","title_28":"Modificar","title_29":"Bloqueada por Administraci\u00f3n","title_3":"Nombres","title_30":"Par\u00e1metros","title_31":"Cantidad l\u00edmite para ceder boletas","title_4":"Apellidos","title_5":"Documento","title_6":"Celular","title_7":"Correo electr\u00f3nico","title_8":"Tipo de boleta:","title_9":"Precio:","validation_app_permissions":"Permisos de APP Estadio","view_document":"Ver documento","view_image":"Ver imagen","web_ticketing_background":"Imagen de fondo venta de boleteria WEB"},"tickets_matches":{"export":{"title_0":"Descargar reporte"},"modal":{"title_0":"Envio Masivo Notificaciones","title_1":"Envio Notificaciones","title_2":"Mensaje","title_3":"Cancelar","title_4":"Enviar"},"title_1":"Entradas Partidos","title_10":"Fecha Ingreso","title_11":"Puerta Ingreso","title_12":"Intentos Ingreso","title_13":"Boleta Especial","title_2":"C\u00f3digo de la boleta","title_3":"Ref de pago","title_4":"Partido","title_5":"Usuario","title_6":"Documento","title_7":"Email","title_8":"Tipo de boleta","title_9":"Fecha Compra"},"tournaments":{"title_1":"Crear torneo","title_10":"Editar torneo","title_11":"Actualizar","title_12":"Agregar torneo","title_13":"Listado torneos","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_17":"Fondo","title_18":"Patrocinador","title_2":"Torneo","title_3":"Nombre","title_4":"Logo","title_5":"Visibilidad","title_6":"Se vende abonos","title_7":"Organizador","title_8":"Crear","title_9":"Cancelar"},"tutorial_slides":{"active":"Activo","add":"Crear","created_at":"Fecha registro","description":"Contenido","edit":"Editar","image":"Imagen","list":"Inicio app","name":"T\u00edtulo","order":"Orden"},"type_person":{"juridical_person":"Persona juri\u0301dica","natural_person":"Persona natural"},"update":"Guardar cambios","updated_successfully":"Registro actualizado exitosamente","user_profile":{"updated":"Perfil actualizado exitosamente"},"user_segmentation_import_tag_not_found":"No se encontro segmentaci\u00f3n para el nombre ingresado","videos_club":{"actions":"Acciones","active":"Activo","add":"Crear","category":"Categor\u00eda","comments_enabled":"Comentarios habilitados","compress":"\u00a1Optimiza tus im\u00e1genes para mejorar la velocidad de carga del sitio! Si deseas, puedes hacer clic en este icono para acceder a un compresor de im\u00e1genes online.","created_at":"Fecha creaci\u00f3n","delete":"Eliminar","deleted_video":"Video eliminado","deleted_video_error":"\u00a1Video eliminado o inexistente!","description":"Descripci\u00f3n","edit":"Editar","enable_comments":"Habilitar comentarios","enable_reactions":"Habilitar reacciones","end_date":"Fecha fin","init_date":"Fecha inicio","likes_enabled":"Reacciones habilitadas","link":"Enlace(s)","name":"Nombre","not_found":"Videos no encontradas","preview":"Vista previa","size_photos":"La imagen debe ser menor a 3 MB","title":"Videos club","title_table":"Video(s)","videos":"Video(s)"},"web_ticketing":{"confirm_email":"Confirmar correo electr\u00f3nico","email":"Correo electr\u00f3nico","phone":"Telefono\/Celular"},"webpay":{"webcheckout_confirm":"Pago exitoso","webcheckout_confirm_1":"\u00a1Gracias por tu compra!","webcheckout_confirm_2":"Orden de compra","webcheckout_confirm_3":"Total pagado","webcheckout_confirm_4":"C\u00f3digo de autorizaci\u00f3n","webcheckout_confirm_5":"Fecha de transacci\u00f3n","webcheckout_confirm_6":"Tipo de pago","webcheckout_confirm_7":"N\u00famero de cuotas","webcheckout_confirm_8":"Tarjeta bancaria","webcheckout_confirm_cerrar":"Cerrar","webcheckout_done":"La orden ya registra un pago","webcheckout_done_cerrar":"Cerrar","webcheckout_rejected":"Pago abortado","webcheckout_rejected_2":"Por favor valida el proceso y vuelve a intentarlo","webcheckout_rejected_3":"Las posibles causas de este rechazo son","webcheckout_rejected_4":"Error en el ingreso de los datos de su tarjeta de cr\u00e9dito o d\u00e9bito (fecha y\/o c\u00f3digo de seguridad)","webcheckout_rejected_5":"Su tarjeta de cr\u00e9dito o d\u00e9bito no cuenta con saldo suficiente","webcheckout_rejected_6":"Tarjeta a\u00fan no habilitada en el sistema financiero","webcheckout_rejected_order":"Orden de compra rechazada"},"welcome_logo":{"title_1":"Crear Imagen Bienvenida","title_10":"Editar Imagen Bienvenida","title_11":"Actualizar","title_12":"Agregar Imagen Bienvenida","title_13":"Listado Imagenes Bienvenida","title_14":"Activo","title_15":"Acciones","title_16":"Opciones","title_2":"Imagen Bienvenida","title_3":"Nombre","title_4":"Imagen","title_8":"Crear","title_9":"Cancelar"},"wompi":{"webcheckout_confirm_1":"\u00a1Gracias por tu compra!","webcheckout_confirm_2":"T\u00fa(s) boletas han sido generadas, puedes verlas en t\u00fa correo electr\u00f3nico o en la secci\u00f3n MIS BOLETAS del APP","webcheckout_confirm_3":"T\u00fa(s) art\u00edculos de la tienda llegar\u00e1n entre 5 y 7 d\u00edas h\u00e1biles, puedes ver en la secci\u00f3n de MIS PEDIDOS del APP","webcheckout_confirm_abonado":"Tus boletas de los abonos puedes verlas en el app NUEVOSTALENTOS","webcheckout_confirm_academy_1":"\u00a1Gracias por tu compra!","webcheckout_confirm_academy_2":"La experiencia en Academia DIM ser\u00e1 espectacular.","webcheckout_confirm_academy_3":"Puedes consultar los datos de la compra y de la academia en la app.","webcheckout_confirm_academy_cerrar":"Cerrar","webcheckout_confirm_cerrar":"Cerrar","webcheckout_done":"La orden ya registra un pago.","webcheckout_done_cerrar":"Cerrar","webcheckout_done_public":"Gracias por utilizar NUEVOSTALENTOS","webcheckout_done_public_cerrar":"Cerrar"},"worldpay_error_cvc":"Por favor indique el numero CVC de la TC.","worldpay_error_month":"Por favor indique el mes de expiraci\u00f3n de la TC.","worldpay_error_name":"Por favor indique el nombre de la TC.","worldpay_error_number":"Por favor indique el numero de la TC.","worldpay_error_token":"Ha ocurrido un error al validar tu TC.","worldpay_error_type":"Por favor indique el tipo de la TC.","worldpay_error_year":"Por favor indique el a\u00f1o de expiraci\u00f3n de la TC.","worldpay_successs_token":"Se ha registrado correctamente tu TC.","yes":"Si","zones":{"title_1":"Silla:","title_10":"Origin:","title_11":"Capacidad total:","title_12":"Es vendible: (Activar para subtribunas que contienen las sillas)","title_13":"Capacidad vendible:","title_14":"Puerta:","title_15":"Imagen estadio:","title_16":"Agregar tribuna","title_17":"Cargar sillas","title_18":"No hay tribunas creadas","title_19":"Formulario tribuna\/sector","title_2":"Tribuna:","title_20":"Formulario silla","title_21":"Importar sillas","title_22":"Descargar plantilla","title_23":"aqu\u00ed","title_24":"Cargar bloqueo sillas","title_25":"Importar bloqueo sillas","title_26":"Bloqueo por administraci\u00f3n","title_27":", agregar sectores espec\u00edficos a la plantilla?","title_28":"Nota: Manteniendo presionado ctrl y click puede seleccionar mas de un sector)","title_3":"Origen:","title_4":"Letra:","title_5":"C\u00f3digo:","title_6":"Nombre tribuna padre:","title_7":"Id tribuna padre:","title_8":"Vendible tribuna padre:","title_9":"Es tribuna padre:","view_stadium":"Ver estadio"}},"es.messagesClient":{"Abril":"Abril","Aceptado":"Aceptado","Agosto":"Agosto","Cancelado":"Cancelado","Diciembre":"Diciembre","En Ruta":"En Ruta","Enero":"Enero","Entregado":"Entregado","Febrero":"Febrero","Finalizado":"Finalizado","Julio":"Julio","Junio":"Junio","Marzo":"Marzo","Mayo":"Mayo","Noviembre":"Noviembre","Octubre":"Octubre","Pendientes":"Pendientes","Recolectado":"Recolectado","Septiembre":"Septiembre","academy_categories":{"create_question":"\u00bfCrear categor\u00eda?","delete_question":"Eliminar categor\u00eda?","edit_question":"\u00bfModificar categor\u00eda?","error_get":"\u00a1Hubo un Error obteniendo categorias!","error_modifying":"Error al modificar"},"academy_coaches":{"create_question":"\u00bfCrear entrenador?","delete_question":"Eliminar entrenador?","edit_question":"\u00bfModificar entrenador?","error_get":"\u00a1Hubo un Error obteniendo entrenadores!","error_modifying":"Error al entrenador"},"academy_discounts":{"create_question":"\u00bfCrear descuento?","delete_question":"Eliminar descuento?","edit_question":"\u00bfModificar descuento?","error_modifying":"Error al modificar"},"academy_doc":{"error_delete":"Error al eliminar","error_update_active":"Error cambiando de estado","tag_1":"\u00bfCrear documento?","tag_2":"\u00bfModificar documento?","tag_6":"\u00bfEliminar documento?"},"academy_locations":{"create_question":"\u00bfCrear sede?","delete_question":"Eliminar sede?","edit_question":"\u00bfModificar sede?","error_get":"\u00a1Hubo un Error obteniendo sedes!","error_modifying":"Error al modificar"},"academy_parameters_labels":{"change_status_message":"Debes ingresar el mensaje que se env\u00eda al APP en los cambios de estado","confirm_revision_message":"Debes ingresar el mensaje de confirmaci\u00f3n de cambios de estado","notify_payment_enable_message":"Debes ingresar el mensaje de notificaci\u00f3n activaci\u00f3n pago","payment_activation_notification_schedule":"Debes ingresar el horario de notificaci\u00f3n activaci\u00f3n pago","required_academy_categories":"Debes ingresar las categor\u00edas de la academia","required_academy_places":"Debes ingresar las sedes de la academia","required_blood_type":"Debes ingresar los tipos de sangre","required_city_text":"Debes ingresar el texto campo ciudad\/provincia","required_days_collection_advance_payments":"Debes ingresar los d\u00edas de cobro anticipado","required_department_text":"Debes ingresar el texto campo departamento\/provincia","required_documents_sign_alert_text":"Debes ingresar el texto de confirmaci\u00f3n de firma de documentos","required_documents_sign_button_text":"Debes ingresar el texto en bot\u00f3n de firma de documentos","required_documents_sign_title":"Debes ingresar el t\u00edtulo de firma de documentos","required_documents_upload_alert_text":"Debes ingresar el texto de confirmaci\u00f3n de carga de documentos","required_documents_upload_button_text":"Debes ingresar el texto en bot\u00f3n de carga de documentos","required_documents_upload_title":"Debes ingresar el t\u00edtulo de carga de documentos","required_enrollment_alert_text":"Debes ingresar el texto de confirmaci\u00f3n de preinscripci\u00f3n","required_enrollment_button_text":"Debes ingresar el texto en bot\u00f3n de preinscripci\u00f3n","required_enrollment_title":"Debes ingresar el t\u00edtulo de preinscripci\u00f3n","required_frequency":"Debes ingresar la frecuencia de cobros autom\u00e1ticos","required_full_enrollment_alert_text":"Debes ingresar el texto de confirmaci\u00f3n de inscripci\u00f3n","required_full_enrollment_button_text":"Debes ingresar el texto en bot\u00f3n de inscripci\u00f3n","required_full_enrollment_title":"Debes ingresar el t\u00edtulo de inscripci\u00f3n","required_inscription_value":"Debes ingresar el valor de la inscripci\u00f3n","required_maximum_payment_day_month":"Debes ingresar el d\u00eda m\u00e1ximo cobro\/pago de mes","required_monthly_payment":"Debes ingresar el valor de la mensualidad","required_ocupation":"Debes ingresar las ocupaciones","required_relationship":"Debes ingresar los parentescos","required_school_grades":"Debes ingresar los grados de escolaridad","required_terms":"Debes cargar el archivo de t\u00e9rminos y condiciones","required_tshirt_sizes":"Debes ingresar las tallas de uniforme","required_uniform_types":"Debes ingresar los tipos de uniforme","terms_and_conditions_text":"Debes cargar el texto de t\u00e9rminos y condiciones"},"academy_payments":{"confirm_payment":"Est\u00e1s seguro de confirmar el pago?","error_confirm_payment":"Error al confirmar el pago.","error_delete_payment":"Error al eliminar el pago.","error_import_payments":"Error al importar los pagos.","error_update_payment":"Error al actualizar el pago.","update_payment":"Est\u00e1s seguro de actualizar el pago?"},"academy_periods":{"create_question":"\u00bfCrear per\u00edodo?","delete_question":"Eliminar per\u00edodo?","edit_question":"\u00bfModificar per\u00edodo?","error_modifying":"Error al modificar"},"academy_purchases":{"create_question":"\u00bfCrear pago?","delete_question":"Eliminar pago?","edit_question":"\u00bfDeseas modificar la programaci\u00f3n de pagos?","error_modifying":"Error al modificar","reference_required":"La referencia de pago es obligatoria"},"academy_reports":{"delete_question":"Eliminar informe?"},"academy_schedules":{"create_question":"\u00bfCrear horario?","delete_question":"Eliminar horario?","edit_question":"\u00bfModificar horario?","error_modifying":"Error al modificar"},"academy_states":{"create_question":"\u00bfCrear estado?","delete_question":"Eliminar estado?","edit_question":"\u00bfModificar estado?","error_modifying":"Error al modificar"},"academy_tournaments":{"create_question":"\u00bfCrear torneo?","delete_question":"Eliminar torneo?","edit_question":"\u00bfModificar torneo?","error_modifying":"Error al modificar"},"academy_user_tag1":"\u00bfEsta seguro que desea eliminar el alumno de la academia?","academy_user_tag10":"\u00bfDeseas asignar al alumno el nuevo usuario de contacto app?","academy_user_tag11":"\u00a1Error al asignar al alumno el nuevo usuario de contacto app!","academy_user_tag2":"Error eliminando alumno","academy_user_tag3":"\u00bfDeseas confirmar la revisi\u00f3n de: ","academy_user_tag4":"\u00bfModificar alumno?","academy_user_tag5":"Crear contacto app?","academy_user_tag6":"Error al crear contacto app?","academy_user_tag7":"Contacto app creado con \u00e9xito","academy_user_tag8":"\u00bfDeseas crear alumno?","academy_user_tag9":"\u00a1Error al crear alumno!","advertisingBanner":{"error_delete":"Error al eliminar banner","error_update_active":"Error cambiando el estado del banner","tag_1":"\u00bfCrear banner?","tag_2":"\u00bfModificar banner?","tag_6":"\u00bfEliminar banner?"},"advertisingPopups":{"error_delete":"Error al eliminar popup","error_update_active":"Error cambiando el estado del popup","tag_1":"\u00bfCrear popup?","tag_2":"\u00bfModificar popup?","tag_6":"\u00bfEliminar popup?"},"app_section":{"create_question":"\u00bfCrear secci\u00f3n?","delete_question":"Eliminar secci\u00f3n?","edit_question":"\u00bfModificar secci\u00f3n?"},"attribute_required":"Tipo de atributo es requerido","banner_tag1":"\u00a1Hubo un Error al guardar la imagen!","banner_tag2":"\u00a1Debe asegurarse de seleccionar todos los campos!","banner_tag3":"\u00bfCrear Banner?","banner_tag4":"\u00a1Hubo un Error al crear banner!","banner_tag5":"\u00bfModificar Banner?","banner_tag6":"\u00a1Hubo un Error al actualizar banner!","banner_tag7":"\u00a1Hubo un Error al modificar el banner!","banner_tag8":"\u00bfEst\u00e1 seguro de eliminar este Banner?","banner_tag9":"\u00a1Hubo un Error al eliminar Banner!","bookcase_tag1":"\u00a1Hubo un Error al guardar la revisa!","bookcase_tag2":"\u00a1Debe asegurarse de seleccionar todos los campos!","bookcase_tag3":"\u00bfCrear revista?","bookcase_tag4":"\u00a1Hubo un Error al crear la revista!","bookcase_tag5":"\u00bfModificar revista?","bookcase_tag6":"\u00a1Hubo un Error al actualizar la revista!","bookcase_tag7":"\u00a1Hubo un Error al modificar la revista!","bookcase_tag8":"\u00bfEst\u00e1 seguro de eliminar esta revista?","bookcase_tag9":"\u00a1Hubo un Error al eliminar revista!","brand_tag1":"Hubo un error en la creacion de la Marca","brand_tag2":"Hubo un error en la modificaci\u00f3n de la Marca","brand_tag3":"\u00bfCrear Marca?","brand_tag4":"\u00bfEliminar Marca?","brand_tag5":"\u00bfModificar Marca?","business":{"error_delete":"Error al eliminar negocio","error_update_active":"Error cambiando el estado del negocio","tag_1":"\u00bfCrear negocio?","tag_2":"\u00bfModificar negocio?","tag_6":"\u00bfEliminar negocio?"},"business_rating":{"create_question":"\u00bfCrear estado?","delete_question":"Eliminar estado?","edit_question":"\u00bfModificar estado?"},"carnet":{"create_question":"\u00bfCrear Carn\u00e9?","delete_question":"Eliminar Carn\u00e9?","edit_question":"\u00bfModificar Carn\u00e9?","if_exists":"Aseg\u00farate que est\u00e9 creado el carn\u00e9 para academia!"},"changelog_tag1":"\u00bfCrear Changelog?","changelog_tag2":"\u00a1Hubo un Error al crear la changelog!","channel_tag1":"Hubo un error en la creacion de la Canal de venta","channel_tag2":"Hubo un error en la modificaci\u00f3n de la Canal de venta","channel_tag3":"\u00bfCrear Canal de venta?","channel_tag4":"\u00bfEliminar Canal de venta?","channel_tag5":"\u00bfModificar Canal de venta?","collection_invoices":{"create_question":"\u00bfCrear factura?","delete_question":"Eliminar factura?","edit_question":"\u00bfDeseas modificar la factura?","error_modifying":"Error al modificar"},"company_tag1":"\u00bfCrear empresa?","company_tag2":"Error al crear empresa","company_tag3":"Error al modificar empresa","company_tag4":"\u00bfModificar empresa?","company_tag5":"\u00bfEst\u00e1 seguro de eliminar la empresa?","company_tag6":"\u00a1Error al eliminar empresa!","configuration\/club-parameters":{"create_question":"\u00bfCrear?","delete_question":"\u00bfEliminar?","edit_question":"\u00bfModificar?","podcast_deleted_error":"Error al eliminar","podcast_deleted_successfully":"Eliminado"},"coupon_tag1":"\u00a1Hubo un error al guardar el cup\u00f3n!","coupon_tag2":"\u00a1Debe asegurarse de seleccionar todos los campos!","coupon_tag3":"\u00bfCrear cup\u00f3n?","coupon_tag4":"\u00a1Hubo un error al crear el cup\u00f3n!","coupon_tag5":"\u00bfModificar cup\u00f3n?","coupon_tag6":"\u00a1Hubo un error al actualizar el cup\u00f3n!","coupon_tag7":"\u00a1Hubo un error al modificar el cup\u00f3n!","coupon_tag8":"\u00bfEst\u00e1 seguro de eliminar este cup\u00f3n?","coupon_tag9":"\u00a1Hubo un error al eliminar el cup\u00f3n!","coupon_term_error":"\u00a1Se debe cargar un tipo de t\u00e9rminos y condiciones para el cup\u00f3n!","coverage_":{"msj_tag1":"\u00bfEst\u00e1 seguro de borrar el registro de cobertura?","title_1":"V\u00e1lida la informaci\u00f3n del archivo","title_2":"Error al eliminar todas las coberturas"},"create_register":"\u00bfCrear registro?","data_policy":{"create_question":"\u00bfCrear pol\u00edtica de tratamiento de datos?","delete_question":"Eliminar pol\u00edtica de tratamiento de datos?","edit_question":"\u00bfModificar pol\u00edtica de tratamiento de datos?"},"delete_seat":"\u00bfEliminar silla?","discount_tag1":"\u00a1Hubo un Error al consultar el descuento!","discount_tag2":"\u00bfCrear Descuento?","discount_tag3":"\u00a1Hubo un Error al crear descuento!","discount_tag4":"\u00a1Debes ingresar Precio o Porcentaje del descuento!","discount_tag5":"\u00a1Debes seleccionar productos requisitos y producto obsequio!","discount_tag6":"\u00a1Debes seleccionar productos requisitos!","discount_tag7":"\u00a1Debes seleccionar producto promoci\u00f3n!","discount_tag8":"\u00bfModificar Descuento?","discount_tag9":"\u00a1Hubo un Error al actualizar descuento!","doors":{"tag_1":"\u00bfCrear Puerta?","tag_2":"\u00bfModificar Puerta?","tag_6":"\u00bfEliminar Puerta?"},"dorsals":{"error_delete":"Error al eliminar el Dorsal","error_update_active":"Error Cambiando de Estado el Dorsal","tag_1":"\u00bfCrear Dorsal","tag_2":"\u00bfModificar Dorsal?","tag_6":"\u00bfEliminar Dorsal?"},"equipment_categories":{"tag_1":"\u00bfCrear Categor\u00eda?","tag_2":"\u00bfEditar Categor\u00eda?","tag_3":"\u00bfRemover Categor\u00eda?","tag_4":"Revisar campos requeridos"},"error_delete":"Error al eliminar","event_prices":{"import_price":"Importar precios","tag_1":"\u00bfCrear precio?","tag_2":"\u00bfModificar precio?","tag_3":"Debes seleccionar una zona","tag_6":"\u00bfEliminar precio?"},"events":{"error_delete":"Error al eliminar el evento","sales_type_required":"Debes seleccionar un tipo de venta","stadium_required":"Debes seleccionar un estadio","tag_1":"\u00bfCrear evento?","tag_10":"\u00bfModificar estado de la boleta?","tag_2":"\u00bfModificar evento?","tag_3":"Debes seleccionar temporada","tag_4":"Debes seleccionar un equipo","tag_6":"\u00bfEliminar evento?","tag_7":"\u00bfModificar estado de la boleta?","tag_8":"\u00bfEst\u00e1s seguro de enviar correo?","tag_9":"Error al enviar el correo"},"field_datasources":{"tag_1":"\u00bfCrear datasource?","tag_2":"\u00bfModificar datasource?","tag_3":"Debes ingresar una url","tag_4":"Debes seleccionar un tipo","tag_5":"Debes seleccionar un tipo de opci\u00f3n","tag_6":"\u00bfEliminar datasource?"},"field_values":{"tag_1":"\u00bfCrear valor?","tag_2":"\u00bfModificar valor?","tag_6":"\u00bfEliminar valor?"},"fields":{"tag_1":"\u00bfCrear Campo?","tag_10":"Debes ingresar atributo name_control","tag_2":"\u00bfModificar Campo?","tag_6":"\u00bfEliminar Campo?","tag_7":"Debes ingresar el campo nombre.","tag_8":"Debes ingresar tipo de campo.","tag_9":"Debes ingresar fuente de datos."},"flash_ticket":{"tag_1":"\u00bfDesea generar las boletas?","tag_2":"Debe generar m\u00ednimo una boleta","tag_3":"Debe seleccionar el texto para las boletas especiales","tag_4":"Debe seleccionar el texto para las boletas obsequio"},"form_fields":{"tag_1":"\u00bfAsignar campo?","tag_2":"Debe seleccionar un formulario","tag_3":"Debe selecionar al menos un campo"},"forms":{"tag_1":"\u00bfCrear formulario?","tag_2":"\u00bfModificar formulario?","tag_6":"\u00bfEliminar formulario?","tag_7":"Debes seleccionar visibilidad","tag_8":"Debes seleccionar una especialidad"},"global":{"create_record":"\u00bfCrear Registro?","delete_record":"\u00bfEliminar Registro?","edit_record":"\u00bfEditar Registro?","fields_requireds":"Ingresa todos los campos requeridos"},"home1":"Pedidos","home2":"Minutos","home_image":{"error_delete":"Error al eliminar el Banners Home","error_update_active":"Error cambiando de estado del Banners Home","tag_1":"\u00bfCrear Banners Home?","tag_2":"\u00bfModificar Banners Home?","tag_6":"\u00bfEliminar Banners Home?"},"integrations":{"tag_1":"\u00bfCrear integraci\u00f3n?","tag_2":"\u00bfModificar integraci\u00f3n?","tag_6":"\u00bfEliminar integraci\u00f3n?"},"inventory_tweaks":{"create":"Desea crear el ajuste ?","error_product":"Por favor indique el producto","error_product_attribute":"Por favor indique un atributo del producto"},"line_tag1":"Hubo un error en la creacion de la Linea de Negocio","line_tag2":"Hubo un error en la modificaci\u00f3n de la Linea de Negocio","line_tag3":"\u00bfCrear Linea de Negocio?","line_tag4":"\u00bfEliminar Linea de Negocio?","line_tag5":"\u00bfModificar Linea de Negocio?","main_datasources":{"tag_1":"\u00bfCrear cabecera?","tag_2":"\u00bfModificar cabecera?","tag_4":"Debes ingresar al menos un \u00edtem","tag_6":"\u00bfEliminar cabecera?"},"match_event_stage":{"tag_1":"Valida la informaci\u00f3n del archivo de configuraciones"},"match_event_tickets":{"tag_1":"\u00bfGenerar boletas especiales?","tag_2":"Error generando boletas especiales"},"match_event_tickets_massive_process":{"title_1":"\u00bfEsta seguro que deseas realizar el proceso de anulaci\u00f3n, cancelaci\u00f3n, eliminaci\u00f3n. con el listado del archivo EXCEL?","title_2":"Procesar boletas?"},"micro_trade":{"error_delete":"Error al eliminar categor\u00eda","error_update_active":"Error cambiando el estado de la categor\u00eda","tag_1":"\u00bfCrear categor\u00eda?","tag_2":"\u00bfModificar categor\u00eda?","tag_6":"\u00bfEliminar categor\u00eda?"},"news":{"create_question":"\u00bfCrear noticia?","delete_question":"Eliminar noticia?","edit_question":"\u00bfModificar noticia?"},"notification_tag1":"\u00bfCrear Notificaci\u00f3n?","notification_tag2":"\u00a1Hubo un Error al crear la notificaci\u00f3n!","notification_tag3":"La fecha ingresada no puede ser menor a la fecha actual","notification_tag4":"La hora ingresada no puede ser menor a la hora actual","notification_tag5":"\u00bfEliminar Notificaci\u00f3n?","notification_tag6":"\u00a1Hubo un error al eliminar notificaci\u00f3n!","official_facebook":{"create_question":"\u00bfCrear cuenta facebook?","delete_question":"Eliminar cuenta facebook?","edit_question":"\u00bfModificar cuenta facebook?","error_modifying":"Error al modificar"},"official_instagram":{"create_question":"\u00bfCrear publicaci\u00f3n de instagram?","delete_question":"Eliminar publicaci\u00f3n de instagram?","edit_question":"\u00bfModificar publicaci\u00f3n de instagram?","error_modifying":"Error al modificar"},"official_tiktok":{"create_question":"\u00bfCrear publicaci\u00f3n de tiktok?","delete_question":"Eliminar publicaci\u00f3n de tiktok?","edit_question":"\u00bfModificar publicaci\u00f3n de tiktok?","error_modifying":"Error al modificar"},"official_twitter":{"create_question":"\u00bfCrear cuenta twitter?","delete_question":"Eliminar cuenta twitter?","edit_question":"\u00bfModificar cuenta twitter?","error_modifying":"Error al modificar"},"official_youtube":{"create_question":"\u00bfCrear canal de youtube?","delete_question":"Eliminar canal de youtube?","edit_question":"\u00bfModificar canal de youtube?","error_modifying":"Error al modificar"},"orders":{"order_created":"Orden creada #"},"orders_tag1":"\u00a1El campo sucursal es obligatorio!","orders_tag10":"\u00a1El campo Ciudad es obligatorio!","orders_tag11":"Debe ingresar productos para continuar","orders_tag12":"El valor del pedido no supera el valor minimo requerido","orders_tag13":"\u00bfEst\u00e1 seguro de cambiar estado a este producto?","orders_tag14":"Se ha cambiado el estado exitosamente al producto","orders_tag15":"El n\u00famero Pedido Referencia no coincide","orders_tag16":"\u00a1El campo Direcci\u00f3n es obligatorio!","orders_tag17":"\u00a1El campo Ciudad es obligatorio!","orders_tag18":"\u00a1El campo Forma de pago es obligatorio!","orders_tag19":"\u00a1El campo Pedido Referencia es obligatorio!","orders_tag2":"\u00a1El campo forma de pago es obligatorio!","orders_tag20":"\u00a1El campo Sucursal es obligatorio!","orders_tag3":"\u00a1Debe seleccionar sucursal para cada transferencia!","orders_tag4":"\u00bfCrear pedido?","orders_tag5":"Pedido creado, \u00bfImprimir comanda?","orders_tag6":"Error al crear pedido","orders_tag7":"\u00bfModificar pedido?","orders_tag8":"\u00a1Error al modificar pedido!","orders_tag9":"\u00a1Pedido modificado con \u00e9xito!","organizer":{"error_delete":"Error al eliminar el Organizador","error_update_active":"Error Cambiando de Estado el Organizador","tag_1":"\u00bfCrear Organizador?","tag_2":"\u00bfModificar Organizador?","tag_6":"\u00bfEliminar Organizador?"},"paymentGateway":{"error_delete":"Error al eliminar la pasarela de pagos","error_update_active":"Error cambiando de estado la pasarela de pagos","tag_1":"\u00bfCrear pasarela de pagos?","tag_2":"\u00bfModificar pasarela de pagos?","tag_6":"\u00bfEliminar pasarela de pagos?"},"payment_messages":{"tag_1":"\u00bfPersonalizar Email?"},"payment_method":{"create_question":"\u00bfCrear m\u00e9todo de pago?","delete_question":"Eliminar m\u00e9todo de pago?","edit_question":"\u00bfModificar m\u00e9todo de pago?"},"payment_tag1":"Hubo un error en la creacion de la Forma de Pago","payment_tag2":"Hubo un error en la modificaci\u00f3n de la Forma de Pago","payment_tag3":"\u00bfCrear Forma de Pago?","payment_tag4":"\u00bfEliminar Forma de Pago?","payment_tag5":"\u00bfModificar Forma de Pago?","photos":{"create_question":"\u00bfCrear fotos?","delete_question":"Eliminar fotos?","edit_question":"\u00bfModificar fotos?"},"players":{"tag_1":"\u00bfCrear Jugador?","tag_2":"\u00bfEditar Jugador?","tag_3":"\u00bfRemover Jugador?","tag_4":"Revisar campos requeridos"},"podcasts":{"create_question":"\u00bfCrear podcast?","delete_question":"\u00bfEliminar podcast?","edit_question":"\u00bfModificar podcast?","podcast_deleted_error":"Error al eliminar el podcast","podcast_deleted_successfully":"Podcast eliminado"},"popup_tag1":"\u00a1Hubo un Error al guardar el popup!","popup_tag2":"\u00a1Debe asegurarse de seleccionar todos los campos!","popup_tag3":"\u00bfCrear popup?","popup_tag4":"\u00a1Hubo un Error al crear el popup!","popup_tag5":"\u00bfModificar popup?","popup_tag6":"\u00a1Hubo un Error al actualizar el popup!","popup_tag7":"\u00a1Hubo un Error al modificar el popup!","popup_tag8":"\u00bfEst\u00e1 seguro de eliminar este popup?","popup_tag9":"\u00a1Hubo un Error al eliminar el popup!","positions":{"tag_1":"\u00bfCrear Posici\u00f3n?","tag_2":"\u00bfEditar Posici\u00f3n?","tag_3":"\u00bfRemover Posici\u00f3n?","tag_4":"Revisar campos requeridos"},"product_attribute_delete":"\u00bfEst\u00e1 seguro de eliminar el atributo?","product_popup_delete":"\u00bfEst\u00e1 seguro de eliminar el popup?","product_tag1":"\u00a1Hubo un Error al guardar la imagen!","product_tag10":"\u00a1Faltan por llenar algunos campos de precio relampago!","product_tag11":"\u00bfEst\u00e1 seguro de eliminar la(s) imagen(es) del producto?","product_tag12":"\u00a1Hubo un error al eliminar la(s) imagen(es) del producto!","product_tag2":"\u00bfEst\u00e1 seguro de eliminar este Producto?","product_tag3":"\u00a1Hubo un Error al eliminar Producto!","product_tag4":"\u00a1Debe asegurarse de seleccionar: Unidad,Marca,Categoria o subcategoria!","product_tag5":"\u00bfCrear Producto?","product_tag6":"\u00a1Hubo un Error al crear producto!","product_tag7":"\u00bfModificar Producto?","product_tag8":"\u00a1Hubo un Error al actualizar producto!","product_tag9":"\u00a1Faltan por llenar algunos campos de porcentaje descuento!","radio_tag1":"\u00a1Hubo un Error al guardar el podcast!","radio_tag2":"\u00a1Debe asegurarse de seleccionar todos los campos!","radio_tag3":"\u00bfCrear Podcast?","radio_tag4":"\u00a1Hubo un Error al crear el podcast!","radio_tag5":"\u00bfModificar podcast?","radio_tag6":"\u00a1Hubo un Error al actualizar el podcast!","radio_tag7":"\u00a1Hubo un Error al modificar el podcast!","radio_tag8":"\u00bfEst\u00e1 seguro de eliminar este podcast?","radio_tag9":"\u00a1Hubo un Error al eliminar el podcast!","roles_permissions":{"create_question":"\u00bfCrear rol?","delete_question":"Eliminar rol?","edit_question":"\u00bfModificar rol?"},"salable_is_cero":"Si la capacidad vendible es menor o igual a cero, use la opci\u00f3n bloqueo de tribuna.","salable_no_valid":"La capacidad vendible es mayor que la capacidad total.","screen_add_subcategories_tag1":"\u00a1Hubo un error al crear la subcategor\u00eda!","screen_add_subcategories_tag2":"\u00a1Los campos nombre, prioridad y categor\u00eda son obligatorios!","screen_add_subcategories_tag3":"\u00bfCrear subcategor\u00eda?","screen_add_subcategories_tag4":"Error al crear subcategor\u00eda!","screen_categories_tag1":"\u00a1Debe asegurarse de diligenciar todos los campos!","screen_categories_tag2":"\u00bfCrear Categor\u00eda?","screen_categories_tag3":"No","screen_categories_tag4":"Advertencia","screen_categories_tag5":"Categor\u00eda creada con \u00e9xito!","screen_categories_tag6":"Error al crear categor\u00eda!","screen_categories_tag7":"\u00bfEsta seguro de eliminar la Categor\u00eda?","screen_chats_error_tag1":"\u00a1Hubo un error al env\u00edar el mensaje!","screen_chats_error_tag2":"Debe seleccionar una sucursal","screen_chats_error_tag3":"\u00a1Hubo un Error al enviar el comentario!","screen_chats_filter_tag1":"No se encontr\u00f3 ning\u00fan registro","screen_delete_Categories_tag1":"\u00bfEst\u00e1 seguro que desea eliminar la Categor\u00eda?","screen_delete_categories_tag2":"Hubo un error al eliminar la Categor\u00eda","screen_delete_chat_tag1":"\u00bfEst\u00e1 seguro que desea eliminar el chat?","screen_delete_chat_tag2":"Debe seleccionar almenos un registro!","screen_delete_comment_tag1":"\u00bfEst\u00e1 seguro que desea eliminar el comentario?","screen_delete_subcategories_tag1":"\u00bfEst\u00e1 seguro que desea eliminar la Subcategor\u00eda?","screen_delete_subcategories_tag2":"Hubo un error al eliminar la Subcategor\u00eda","screen_edit_Categories_tag5":"\u00bfModificar Categor\u00eda?","screen_edit_Categories_tag6":"Error al modificar Categor\u00eda","screen_edit_categories_tag2":"\u00a1Los campos nombre y prioridad son obligatorios!","screen_edit_categories_tag3":"Categor\u00eda actualizada con \u00e9xito!","screen_edit_categories_tag4":"Error al actualizar categor\u00eda!","screen_edit_categories_tag5":"Categor\u00eda modificada con \u00e9xito!","screen_edit_subcategories_tag1":"\u00a1Los campos nombre, categor\u00eda y prioridad son obligatorios!","screen_edit_subcategories_tag2":"\u00bfEst\u00e1 seguro que desea modificar la Subcategor\u00eda?","screen_edit_subcategories_tag3":"Subcategor\u00eda actualizada con \u00e9xito!","screen_edit_subcategories_tag4":"Error al actualizar la subcategor\u00eda!","screen_edit_subcategories_tag5":" \u00a1Error al modificar Subcategor\u00eda!","seasons":{"error_delete":"Error al eliminar el temporada","tag_1":"\u00bfCrear temporada?","tag_2":"\u00bfModificar temporada?","tag_6":"\u00bfEliminar temporada?"},"seats":{"tag_1":"\u00bfCrear Silla?","tag_2":"\u00bfModificar Silla?","tag_6":"\u00bfEliminar Silla?"},"select":"Seleccione","service_charges":{"create_question":"\u00bfCrear cobro de servicio?","delete_question":"Eliminar cobro de servicio?","edit_question":"\u00bfDeseas modificar la configuraci\u00f3n de cobro de servicio?","error_modifying":"Error al modificar"},"sizing_tag1":"\u00bfCrear unidad de medida?","sizing_tag2":"Error al crear unidad de medida","sizing_tag3":"Error al modificar unidad de medida","sizing_tag4":"\u00bfModificar unidad de medida?","sizing_tag5":"\u00bfEst\u00e1 seguro de eliminar la unidad de medida?","sizing_tag6":"\u00a1Error al eliminar unidad de medida!","social_network_accounts":{"create_question":"\u00bfCrear cuenta oficial?","delete_question":"Eliminar cuenta oficial?","edit_question":"\u00bfModificar cuenta oficial?","error_modifying":"Error al modificar"},"sucursal_tag1":"\u00a1Debe seleccionar una ciudad!","sucursal_tag2":"\u00a1Debe seleccionar una cobertura!","sucursal_tag3":"\u00bfCrear Sucursal?","sucursal_tag4":"\u00a1Error al crear sucursal!","sucursal_tag5":"\u00bfModificar Sucursal?","sucursal_tag6":"\u00a1Error al modificar Sucursal!","sucursal_tag7":"\u00bfEst\u00e1 seguro de eliminar la Sucursal?","sucursal_tag8":"\u00a1Error al eliminar Sucursal!","symbolic_tickets":{"created":"Se ha creado correctamente el carn\u00e9","delete":"Se ha eliminado correctamente el carn\u00e9","error_created":"Ha ocurrido un error al crear el carn\u00e9, intente de nuevo mas tarde.","error_delete":"Ha ocurrido un error al eliminar el carn\u00e9, intente de nuevo mas tarde.","error_save_image":"\u00a1Hubo un Error al guardar la imagen!","to_create":"Desea crear el carn\u00e9 ?","to_delete":"Desea eliminar el carn\u00e9 ?","to_generate_tickets":"\u00bfDesea generar los tickets para los usuarios?","to_update":"Desea actualizar el carn\u00e9 ?","update_error":"Ha ocurrido un error al actualizar el carn\u00e9, intente de nuevo mas tarde.","update_state":"Se ha actualizado el estado correctamente"},"tag":{"create_question":"\u00bfCrear Etiqueta?","delete_question":"Eliminar Etiqueta?","edit_question":"\u00bfModificar Etiqueta?"},"teams":{"tag_1":"\u00bfCrear equipo?","tag_2":"\u00bfModificar equipo?","tag_6":"\u00bfEliminar equipo?"},"terms_conditions":{"create_question":"\u00bfCrear t\u00e9rminos y condiciones?","delete_question":"Eliminar t\u00e9rminos y condiciones?","edit_question":"\u00bfModificar t\u00e9rminos y condiciones?"},"ticket_tag":{"create_question":"\u00bfCrear etiqueta?","delete_question":"Eliminar Etiqueta?","edit_question":"\u00bfModificar Etiqueta?","tag_1":"\u00bfDesea generar las boletas?","tag_2":"Debe generar m\u00ednimo una boleta"},"tickets":{"tag_1":"\u00a1Hubo un Error al modificar usuario!","tag_2":"\u00bfModificar datos del usuarios?","tag_3":"Actualizacion exitosa","title_11":"Tribuna","title_12":"Sector","title_13":"Silla","title_14":"\u00a1Hubo un Error al modificar!","title_3":"Nombres","title_4":"Apellidos","title_5":"Documento","title_6":"Celular","title_7":"Correo electr\u00f3nico","title_8":"Asignar"},"tickets_parameters_labels":{"required_number_transfers":"Debes ingresar informaci\u00f3n","required_terms":"Debes cargar el archivo de t\u00e9rminos y condiciones"},"tournaments":{"tag_1":"\u00bfCrear torneo?","tag_2":"\u00bfModificar torneo?","tag_6":"\u00bfEliminar torneo?"},"tutorial_slides":{"create_question":"\u00bfCrear tutorial?","delete_question":"Eliminar tutorial?","edit_question":"\u00bfModificar tutorial?"},"update_register":"\u00bfActualizar registro?","user_admin_tag1":"Crear Administrador?","user_admin_tag2":"\u00a1Error al crear administrador!","user_admin_tag3":"Modificar Administrador?","user_admin_tag4":"\u00a1Error al modificar administrador!","user_admin_tag5":"\u00bfEst\u00e1 seguro de borrar el administrador?","user_admin_tag6":"\u00a1Error al borrar administrador!","user_admin_tag7":"\u00bfEst\u00e1 seguro de generar abonos a cr\u00e9dito?","user_admin_tag8":"\u00a1Error al generar abonos!","user_admin_tag9":"\u00a1Error al eliminar informe!","user_client_tag1":"\u00bfCrear cliente?","user_client_tag2":"\u00a1Cliente creado con \u00e9xito!","user_client_tag3":"\u00a1Verifique si la direccion est\u00e1 correcta!","user_client_tag4":"\u00a1Error al crear cliente, el numero de identificaci\u00f3n o el correo electr\u00f3nico ya tiene un registro!","user_client_tag5":"\u00bfModificar cliente?","user_client_tag6":"Error al modificar cliente","user_deliveryMan_tag1":"\u00a1Debe asegurarse de seleccionar la sucursal!","user_deliveryMan_tag2":"\u00a1Debe asegurarse de seleccionar la empresa!","user_deliveryMan_tag3":"\u00bfCrear mensajero?","user_deliveryMan_tag4":"\u00a1Error al crear mensajero!","user_deliveryMan_tag5":"\u00bfModificar mensajero?","user_deliveryMan_tag6":"Error al modificar mensajero","user_deliveryMan_tag7":"\u00a1Error al modificar sesi\u00f3n multiple!","user_deliveryMan_tag8":"\u00bfEst\u00e1 seguro de eliminar el mensajero?","user_deliveryMan_tag9":"Error al recuperar cuenta","user_other_tag1":"\u00bfEst\u00e1 seguro de eliminar el usuario?","user_other_tag2":"Error al eliminar el usuario","user_other_tag3":"Error al modificar el usuario","user_other_tag4":"\u00bfCrear usuario?","user_other_tag5":"\u00bfModificar usuario?","user_other_tag6":"NOTA: Ten en cuenta que si realizas este proceso se perderan todos los datos del usuario, incluyendo boleter\u00eda, pedidos, mensajes. Adem\u00e1s, el usuario deber\u00e1 volver a registrarse en la app para volver a ingresar. \u00bfEst\u00e1 seguro de eliminar el usuario?","user_subscribers":{"msj_tag1":"\u00bfEst\u00e1 seguro de borrar el registro de abonado?","msj_tag2":"Error al eliminar el registro de abonado","title_1":"V\u00e1lida la informaci\u00f3n del\/los abonado(s)","title_2":"Seleccione la zona"},"user_ticket_change":{"tag_1":"\u00a1Hubo un Error al pasar las boletas!","tag_2":"\u00bfModificar boleta del usuario?","tag_3":"Actualizacion exitosa","tag_4":"Documento","tag_5":"Correo electr\u00f3nico","tag_6":"Asignar"},"users":{"title_1":"V\u00e1lida la informaci\u00f3n del\/los cliente(s)"},"videos":{"create_question":"\u00bfCrear video?","delete_question":"\u00bfEliminar video?","edit_question":"\u00bfModificar video?","video_deleted_error":"Error al eliminar el video","video_deleted_successfully":" Video eliminado"},"wallet_coins_tag1":"\u00a1Error al bloquear\/desbloquear cr\u00e9dito monedas del Hincha!","wallet_coins_tag2":"Esta seguro de actualizar el cr\u00e9dito monedas del Hincha?","wallet_coins_tag3":"\u00a1Error al actualizar el cr\u00e9dito monedas del Hincha!","wallet_coins_tag4":"\u00a1Error al modificar cr\u00e9dito monedas del Hincha!","wallet_coins_tag5":"Esta seguro de cancelar la transacci\u00f3n, este proceso modifica el saldo total de monedas del Hincha?","wallet_coins_tag6":"Esta seguro de registrar el cr\u00e9dito monedas del Hincha?","welcome_logo":{"error_delete":"Error al eliminar la Imagen Bienvenida","error_update_active":"Error Cambiando de Estado la Imagen Bienvenida","tag_1":"\u00bfCrear Imagen Bienvenida?","tag_2":"\u00bfModificar Imagen Bienvenida?","tag_6":"\u00bfEliminar Imagen Bienvenida?"},"zones":{"tag_1":"\u00bfCrear Zona?","tag_2":"\u00bfModificar Zona?","tag_6":"\u00bfEliminar Zona?"}},"pt.messages":{"Abril":"Abril","Administradores":"Administradores","Agosto":"Agosto","Atributos":"Atributos","BI":"BI","Banners":"Banners","Boleta simbolica":"C\u00e9dula Simb\u00f3lica","Boleteria":"Bilheteria","Bookcase Embed":"Revista DIM","Buz\u00f3n de sugerencias":"Caixa de sugest\u00f5es","Campos":"Campos","Canal de Venta":"Canal de Vendas","Categor\u00edas":"Categorias","Cat\u00e1logo":"Cat\u00e1logo","Changelogs":"Changelogs","Chats":"Chats","Clientes":"Clientes","Coberturas":"Coberturas","Coberturas Pendientes":"Coberturas pendentes","Comentarios":"Coment\u00e1rios","Comunicaciones":"Comunica\u00e7\u00f5es","Configuraci\u00f3n":"Configura\u00e7\u00f5es","Crear pedido":"Criar pedido","Datos maestros":"Dados mestre","Descuentos":"Descontos","Diciembre":"Dezembro","Empresas asociadas":"Empresas associadas","Encuestas":"Pesquisas","Enero":"Janeiro","Equipos":"Equipes","Estadio":"Est\u00e1dio","Estad\u00edsticas":"Estat\u00edsticas","Eventos":"Eventos","Febrero":"Fevereiro","Formas de pago":"M\u00e9todos de pagamento","Formularios":"Formul\u00e1rios","Fotos Instagram":"Fotos do Instagram","Gestor de Datos":"Data Manager","Inicio":"Home","Inventario":"Invent\u00e1rio","Julio":"Julho","Junio":"Junho","Linea de negocio":"Linha de neg\u00f3cios","Listado pedidos":"Lista de pedidos","Listas Manuales":"Listas Manuais","Mapa":"Mapa","Marcas":"Marcas","Marzo":"Mar\u00e7o","Mayo":"Maio","Mensajeros":"Mensageiros","Notificaciones":"Notifica\u00e7\u00f5es","Noviembre":"Novembro","Octubre":"Outubro","Parametros":"Par\u00e2metros","Partidos":"Jogos","Pedidos":"Pedidos","Planeaci\u00f3n":"Planejamento","Popup Embed":"Banner de publicidade","Productos":"Produtos","Puertas":"Portas","Radio Embed":"Epis\u00f3dios de podcast","Reportes":"Relat\u00f3rios","Reportes Hacienda":"Relat\u00f3rios financeiros","Resultados":"Resultados","Septiembre":"Setembro","Servicio al cliente":"Atendimento ao cliente","Simulaci\u00f3n de ruta":"Simula\u00e7\u00e3o de rota","Stock":"Estoque","Subcategor\u00edas":"Subcategorias","Sucursales":"Ramos","Torneos":"Torneios","Tribunas":"Tribunos","Unidades de medida":"Unidades de medida","Usuarios":"Usu\u00e1rios","Valores campo":"Valores","Ventas":"Vendas","Video Tiktok":"V\u00eddeos TikTok","Video Youtube":"V\u00eddeos do Youtube","Video feed":"Lista de v\u00eddeos","Zonas":"Tribunos","academy_categories_show_in":{"all":"todos","app":"app","web":"rede"},"academy_discounts":{"adult":"Adultos","children":"Crian\u00e7as","tag0":"Ativo","tag00":"A\u00e7\u00f5es","tag1":"Nome","tag2":"Desconto","tag3":"Solicita\u00e7\u00e3o de pagamentos","tag4":"Mostrar em","title_create":"Criar","title_edit":"Editar","title_list":"Descontos","type_academy":"Tipo de academia"},"active":"Ativo","already_exists":"O registro: nome j\u00e1 existe","already_exists_match_event_price":"Este evento e zona j\u00e1 tem um pre\u00e7o atribu\u00eddo","cell_empty":"C\u00e9lula: c\u00e9lula na coluna: coluna incorreta","controller_admin_tag1":"Administrador criado com sucesso!","controller_admin_tag2":"O n\u00famero do documento j\u00e1 tem registro!","controller_admin_tag3":"O e-mail j\u00e1 tem registro!","controller_admin_tag4":"Administrador modificado com sucesso!","controller_admin_tag5":"Sess\u00e3o m\u00faltipla modificada!","controller_admin_tag6":"Administrador exclu\u00eddo com sucesso!","controller_api_rate_msg1":"N\u00e3o h\u00e1 coment\u00e1rios para este pedido.","controller_brand_tag1":"J\u00e1 existe uma marca com o nome inserido","controller_brand_tag2":"Marca criada com sucesso!","controller_brand_tag3":"Marca modificada com sucesso!","controller_brand_tag4":"Marca removida!","controller_channel_tag1":"J\u00e1 existe um Canal de Vendas com o nome inserido","controller_channel_tag2":"Canal de vendas criado com sucesso!","controller_channel_tag3":"Canal de vendas modificado com sucesso!","controller_chats_tag1":"Registros encontrados","controller_chats_tag2":"Bate-papo exclu\u00eddo com sucesso!","controller_client_tag1":"Cliente criado com sucesso!","controller_client_tag2":"O n\u00famero do documento j\u00e1 tem registro!","controller_client_tag3":"O e-mail j\u00e1 tem registro!","controller_client_tag4":"Cliente modificado com sucesso!","controller_company_tag1":"J\u00e1 existe um registro com o nit digitado","controller_company_tag2":"Empresa criada com sucesso!","controller_company_tag3":"Empresa modificada com sucesso!","controller_company_tag4":"Empresa exclu\u00edda!","controller_deliveryMan_tag1":"Messenger criado com sucesso!","controller_deliveryMan_tag10":"Clientes sem compra","controller_deliveryMan_tag11":"Clientes sem compra 15 dias","controller_deliveryMan_tag12":"Clientes","controller_deliveryMan_tag13":"O c\u00f3digo do cupom \u00e9 inv\u00e1lido","controller_deliveryMan_tag14":"O cupom j\u00e1 foi usado","controller_deliveryMan_tag15":"Desculpe, o limite do cupom j\u00e1 atingiu o limite","controller_deliveryMan_tag2":"O n\u00famero do documento j\u00e1 tem registro!","controller_deliveryMan_tag3":"O e-mail j\u00e1 tem registro!","controller_deliveryMan_tag4":"Messenger modificado com sucesso!","controller_deliveryMan_tag5":"Sess\u00e3o m\u00faltipla modificada!","controller_deliveryMan_tag6":"Messenger removido com sucesso!","controller_deliveryMan_tag7":"O e-mail j\u00e1 tem um registro, ent\u00e3o voc\u00ea deve recuperar a conta para us\u00e1-lo novamente, deseja recuperar a conta?","controller_deliveryMan_tag8":"Conta recuperada!","controller_deliveryMan_tag9":"Imagem modificada","controller_line_tag1":"J\u00e1 existe uma linha de neg\u00f3cios com o nome inserido","controller_line_tag2":"Linha de neg\u00f3cios criada com sucesso!","controller_line_tag3":"Linha de neg\u00f3cios modificada com sucesso!","controller_order_tag1":"O c\u00f3digo inserido j\u00e1 tem um registro","controller_order_tag2":"O messenger est\u00e1 offline!","controller_order_tag3":"O mensageiro est\u00e1 inativo!","controller_order_tag4":"A solicita\u00e7\u00e3o n\u00e3o p\u00f4de ser criada","controller_order_tag5":"","controller_order_tag6":"","controller_order_tag7":"","controller_order_tag8":"","controller_payment_tag1":"J\u00e1 existe um m\u00e9todo de pagamento com o nome inserido","controller_payment_tag2":"M\u00e9todo de pagamento criado com sucesso!","controller_payment_tag3":"M\u00e9todo de pagamento modificado com sucesso!","controller_sizing_tag1":"J\u00e1 existe uma unidade de medida com o nome inserido","controller_sizing_tag2":"Unidade de medida criada com sucesso!","controller_sizing_tag3":"Unidade de medida modificada com sucesso!","controller_sizing_tag4":"Unidade de medida removida!","controller_sucursal_tag1":"Branch criado com sucesso!","controller_sucursal_tag2":"Branch modificado com sucesso!","controller_sucursal_tag3":"Ramifica\u00e7\u00e3o removida com sucesso!","controller_sucursal_tag4":"J\u00e1 existe um registro com o e-mail digitado","controller_sucursal_tag5":"O email inserido j\u00e1 est\u00e1 em uso no sistema","controller_sucursal_tag6":"Falha ao criar branch!","controller_sucursal_tag7":"Falha ao atualizar branch!","create":"Criar","create_block":"Foi gerado um bloqueio da (s) cadeira (s), que termina em: dateblock enquanto voc\u00ea finaliza a compra, ap\u00f3s este tempo a (s) cadeira (s) ser\u00e3o liberadas novamente","create_block_2":", o bloqueio foi gerado com o seguinte pino:","create_block_3":", voc\u00ea pode retomar o pagamento na se\u00e7\u00e3o meus ingressos.","create_ticket":"A compra do (s) bilhete (s) foi gerada com sucesso","created_successfully":"Registro criado com sucesso","delete":"Excluir","delete_relation_data":"Este registro n\u00e3o pode ser exclu\u00eddo","deleted_successfully":"Registro exclu\u00eddo com sucesso","disabled":"Desativado","error_creating":"Erro ao criar registro","error_global":"Ocorreu um erro, tente novamente mais tarde.","error_removing":"Erro ao excluir registro","error_updating":"Erro ao atualizar o registro","error_validation_1":"Esta cadeira n\u00e3o est\u00e1 \u00e0 venda para este evento","error_validation_2":"Esta inscri\u00e7\u00e3o n\u00e3o est\u00e1 \u00e0 venda para este evento","error_validation_3":"Desculpe, a cadeira: assento j\u00e1 est\u00e1 vendido","error_validation_4":"A cadeira: o assento tem uma trava, tente novamente em alguns minutos","error_validation_5":"O limite de cadeiras adquiridas para este evento j\u00e1 foi ultrapassado","error_validation_6":"O limite de ingressos comprados j\u00e1 foi ultrapassado","error_validation_7":"O limite de travas de cadeira permitido j\u00e1 foi excedido","error_validation_8":"O limite de capacidade vend\u00e1vel para esta cidade j\u00e1 foi atingido","error_validation_9":"A cadeira: assento n\u00e3o obedece ao distanciamento social.","field_input":"Tipo de entrada","hard":"Manual","import_successfully":"Com sucesso: as cadeiras cnt foram importadas","inactive":"Inativo","modal_direction_tag1":"Registrar endere\u00e7o","modal_direction_tag10":"Pesquisar endere\u00e7o","modal_direction_tag2":"Vizinhan\u00e7a","modal_direction_tag3":"Como chegar? (Opcional)","modal_direction_tag4":"Ajuda","modal_direction_tag5":"Adicionar","modal_direction_tag6":"Importante","modal_direction_tag7":"- O bot\u00e3o \"Adicionar\" \u00e9 acionado ao validar a localiza\u00e7\u00e3o no mapa, para isso voc\u00ea deve selecionar uma op\u00e7\u00e3o de pesquisa ou pressionar a tecla Enter ap\u00f3s inserir o endere\u00e7o. Se voc\u00ea tentar editar o endere\u00e7o, o bot\u00e3o \u00e9 desativado novamente e voc\u00ea deve repetir o processo acima. ","modal_direction_tag8":"- Se voc\u00ea n\u00e3o conseguir encontrar o endere\u00e7o no mapa, insira um ponto mais pr\u00f3ximo e no campo \"Como chegar l\u00e1?\" Insira o endere\u00e7o completo.","modal_direction_tag9":"- Para maior efic\u00e1cia na busca, recomenda-se escrever o endere\u00e7o sem espa\u00e7os ap\u00f3s o caractere \u201c#\u201d. Exemplo: Cra. 39 # 5a-34, Cali, Valle del Cauca, Col\u00f4mbia. ","modal_history_products1":"\u00daltimos produtos comprados pelo usu\u00e1rio","modal_history_products2":"\u00daltimos 3 pedidos","modal_info_admin_tag1":"Informa\u00e7\u00f5es do administrador","modal_info_admin_tag10":"Cancelar","modal_info_admin_tag2":"Nome:","modal_info_admin_tag3":"Sobrenome:","modal_info_admin_tag4":"Cedula:","modal_info_admin_tag5":"Telefone:","modal_info_admin_tag6":"Data de check-in:","modal_info_admin_tag7":"Mail:","modal_info_admin_tag8":"Ativo:","modal_info_admin_tag9":"Branch:","modal_info_clients_tag1":"Informa\u00e7\u00f5es do cliente","modal_info_clients_tag2":"Nome:","modal_info_clients_tag3":"Sobrenome:","modal_info_clients_tag4":"Cedula:","modal_info_clients_tag5":"Telefone:","modal_info_clients_tag6":"Data de check-in:","modal_info_clients_tag7":"Mail:","modal_info_clients_tag8":"Ativo:","modal_info_clients_tag9":"Cancelar","modal_info_deliveryMan_tag1":"Informa\u00e7\u00f5es do Messenger","modal_info_deliveryMan_tag10":"Ativo:","modal_info_deliveryMan_tag11":"Cancelar","modal_info_deliveryMan_tag2":"Nome:","modal_info_deliveryMan_tag3":"Sobrenome:","modal_info_deliveryMan_tag4":"Cedula:","modal_info_deliveryMan_tag5":"Telefone:","modal_info_deliveryMan_tag6":"Data de check-in:","modal_info_deliveryMan_tag7":"Mail:","modal_info_deliveryMan_tag8":"Empresa associada:","modal_info_deliveryMan_tag9":"Placa:","modal_info_sucursal_tag1":"Informa\u00e7\u00f5es da filial","modal_info_sucursal_tag2":"C\u00f3digo:","modal_info_sucursal_tag3":"Nome:","modal_info_sucursal_tag4":"Mail:","modal_info_sucursal_tag5":"Endere\u00e7o:","modal_info_sucursal_tag6":"Telefone:","modal_info_sucursal_tag7":"Cobertura:","modal_info_sucursal_tag8":"Munic\u00edpio:","modal_info_sucursal_tag9":"Cancelar","modal_mailbox_tag1":"Nome","modal_mailbox_tag2":"N\u00e3o. Documento","modal_mailbox_tag3":"Mensagem","modal_mailbox_tag4":"Mail","modal_mailbox_tag5":"Data de envio","modal_mailbox_tag6":"Cancelar","modal_mailbox_title":"Detalhe da caixa de correio","modal_qualification_tag1":"Mau","modal_qualification_tag2":"Regular","modal_qualification_tag3":"Bom","modal_qualification_tag4":"Muito bom","modal_qualification_tag5":"Excelente","modal_qualification_tag6":"Observa\u00e7\u00f5es","modal_qualification_tag7":"Avaliar","order_state_1":"Pendente","order_state_2":"Aceito","order_state_3":"Recolhido","order_state_4":"A caminho","order_state_5":"Entregue","order_state_6":"Conclu\u00eddo","order_state_8":"Congelado","0":false,"multiple":"M\u00faltiplos","no":"N\u00e3o","order_state_7":"Cancelado","readonly":"Somente leitura","reports_academy":{"briefcase":"Relat\u00f3rio de portf\u00f3lio de academias"},"reports_state_academy":{"reporte_acumulada_sede":"Relat\u00f3rio de portf\u00f3lio acumulado por sede","reporte_alumno_profesor":"Relat\u00f3rio de portf\u00f3lio por aluno e professor","reporte_sede_categoria":"Relat\u00f3rio de portf\u00f3lio por localiza\u00e7\u00e3o e categoria"},"required":"Obrigat\u00f3rio","rol_1":"SuperAdmin","rol_2":"Admin","rol_3":"Mensageiro","rol_4":"Cliente","rol_5":"Relat\u00f3rios","scale":"Escala","screen_addOrder_tag1":"Pedidos","screen_addOrder_tag2":"Novo pedido","screen_addOrder_tag3":"Tipo de pedido:","screen_addOrder_tag4":"- Selecione","screen_add_admin_tag1":"Administradores","screen_add_admin_tag10":"Senha","screen_add_admin_tag11":"Confirmar senha","screen_add_admin_tag12":"Criar","screen_add_admin_tag2":"Criar Administrador","screen_add_admin_tag3":"Nome","screen_add_admin_tag4":"Sobrenome","screen_add_admin_tag5":"Mail","screen_add_admin_tag6":"N\u00e3o. documento","screen_add_admin_tag7":"Telefone","screen_add_admin_tag8":"Fun\u00e7\u00e3o","screen_add_admin_tag9":"Branch","screen_add_categories_tag1":"Criar categoria","screen_add_categories_tag2":"Nome","screen_add_categories_tag3":"Prioridade","screen_add_categories_tag4":"Imagem (opcional)","screen_add_categories_tag5":"Cancelar","screen_add_categories_tag6":"Adicionar","screen_add_clients_tag1":"Clientes","screen_add_clients_tag10":"Confirmar senha","screen_add_clients_tag11":"Endere\u00e7o","screen_add_clients_tag12":"Vizinhan\u00e7a (opcional)","screen_add_clients_tag13":"Instru\u00e7\u00f5es","screen_add_clients_tag14":"Adicionar","screen_add_clients_tag2":"Criar clientes","screen_add_clients_tag3":"Criar clientes","screen_add_clients_tag4":"Nome","screen_add_clients_tag5":"Sobrenome","screen_add_clients_tag6":"Mail","screen_add_clients_tag7":"Telefone","screen_add_clients_tag8":"N\u00e3o. documento","screen_add_clients_tag9":"Senha","screen_add_company_tag1":"Empresas Associadas","screen_add_company_tag2":"Criar Empresa","screen_add_company_tag3":"Nome","screen_add_company_tag4":"Nit","screen_add_company_tag5":"Telefone","screen_add_company_tag6":"Contato","screen_add_company_tag7":"Criar","screen_add_company_tag8":"Cancelar","screen_add_deliveryMan_tag1":"Mensageiros","screen_add_deliveryMan_tag10":"Branch","screen_add_deliveryMan_tag11":"Senha","screen_add_deliveryMan_tag12":"Confirmar senha","screen_add_deliveryMan_tag13":"Salvar altera\u00e7\u00f5es","screen_add_deliveryMan_tag14":"Foto","screen_add_deliveryMan_tag2":"Criar Mensageiros","screen_add_deliveryMan_tag3":"Nome","screen_add_deliveryMan_tag4":"Sobrenome","screen_add_deliveryMan_tag5":"Mail","screen_add_deliveryMan_tag6":"N\u00e3o. documento","screen_add_deliveryMan_tag7":"Telefone","screen_add_deliveryMan_tag8":"Placa","screen_add_deliveryMan_tag9":"Empresa associada","screen_add_sizing_tag1":"Criar Unidade de Medida","screen_add_sizing_tag2":"Nome","screen_add_sizing_tag3":"Abrevia\u00e7\u00e3o","screen_add_sizing_tag4":"Cancelar","screen_add_sizing_tag5":"Adicionar","screen_add_sizing_tag6":"Unidades de medida","screen_add_subcategories_tag1":"Criar categoria","screen_add_subcategories_tag2":"Subcategoria","screen_add_subcategories_tag3":"Nome","screen_add_subcategories_tag4":"Prioridade","screen_add_subcategories_tag5":"Categoria","screen_add_subcategories_tag6":"Imagem","screen_add_sucursal_tag1":"Ramos","screen_add_sucursal_tag10":"Munic\u00edpio","screen_add_sucursal_tag11":"Endere\u00e7o","screen_add_sucursal_tag12":"Vizinhan\u00e7a (opcional)","screen_add_sucursal_tag13":"Como chegar l\u00e1?","screen_add_sucursal_tag14":"Adicionar","screen_add_sucursal_tag15":"Cancelar","screen_add_sucursal_tag2":"Adicionar filial","screen_add_sucursal_tag3":"Adicionar filial","screen_add_sucursal_tag4":"Mail","screen_add_sucursal_tag5":"Nome","screen_add_sucursal_tag6":"C\u00f3digo","screen_add_sucursal_tag7":"Telefone","screen_add_sucursal_tag8":"Cobertura","screen_add_sucursal_tag9":"Departamento","screen_admin_tag1":"Administradores","screen_admin_tag2":"Sobrenome","screen_admin_tag3":"Nome","screen_admin_tag4":"Mail","screen_admin_tag5":"papel","screen_admin_tag6":"Ativo","screen_admin_tag7":"Criar Administrador","screen_alliance_tag1":"N\u00e3o. Ordem","screen_alliance_tag2":"Branch:","screen_alliance_tag3":"- Selecione","screen_alliance_tag4":"Mensageiro","screen_alliance_tag5":"Coment\u00e1rios","screen_alliance_tag6":"Transferir","screen_alliance_tag7":"OK","screen_alliance_tag8":"Cancelar","screen_alliance_tag9":"Atualizar mensageiros","screen_banners_tag1":"Banners","screen_banners_tag10":"Editar Banner","screen_banners_tag11":"Adicionar","screen_banners_tag12":"Cancelar","screen_banners_tag13":"Modificar","screen_banners_tag14":"Banner criado com sucesso!","screen_banners_tag15":"Erro ao criar banner!","screen_banners_tag16":"Banner atualizado com sucesso!","screen_banners_tag17":"Erro ao atualizar o banner!","screen_banners_tag18":"Banner modificado com sucesso!","screen_banners_tag19":"Erro ao modificar banner!","screen_banners_tag2":"Criar Banner","screen_banners_tag20":"Banner removido com sucesso!","screen_banners_tag21":"Erro ao excluir banner!","screen_banners_tag22":"Descri\u00e7\u00e3o","screen_banners_tag3":"Nome","screen_banners_tag4":"Ordem","screen_banners_tag5":"Link","screen_banners_tag6":"Categoria","screen_banners_tag7":"Imagem","screen_banners_tag8":"Ativo","screen_banners_tag9":"A\u00e7\u00f5es","screen_bi":"BI","screen_bookcase_tag1":"Revista","screen_bookcase_tag10":"Editar Revista","screen_bookcase_tag11":"Adicionar","screen_bookcase_tag12":"Cancelar","screen_bookcase_tag13":"Modificar","screen_bookcase_tag14":"Revista criada com sucesso!","screen_bookcase_tag15":"Erro ao criar revista!","screen_bookcase_tag16":"Revista atualizada com sucesso!","screen_bookcase_tag17":"Erro ao atualizar revista!","screen_bookcase_tag18":"Revista modificada com sucesso!","screen_bookcase_tag19":"Erro ao modificar a revista!","screen_bookcase_tag2":"Criar Revista","screen_bookcase_tag20":"Revista removida com sucesso!","screen_bookcase_tag21":"Erro ao excluir a revista!","screen_bookcase_tag3":"Id","screen_bookcase_tag4":"Link","screen_bookcase_tag5":"Ativo","screen_bookcase_tag6":"A\u00e7\u00f5es","screen_brand_tag1":"Adicionar marca","screen_brand_tag2":"Nome","screen_brand_tag3":"Adicionar","screen_brand_tag4":"Marcas","screen_brand_tag5":"Ativo","screen_categories_tag1":"Nova categoria","screen_categories_tag10":"Categoria modificada com sucesso!","screen_categories_tag11":"Categoria exclu\u00edda com sucesso!","screen_categories_tag12":"Branch:","screen_categories_tag13":"A categoria j\u00e1 existe","screen_categories_tag2":"Categorias","screen_categories_tag3":"Imagem","screen_categories_tag4":"Nome","screen_categories_tag5":"Ativo","screen_categories_tag5_1":"Prioridade","screen_categories_tag6":"A\u00e7\u00f5es","screen_categories_tag7":"Categorias","screen_categories_tag8":"Categoria criada com sucesso!","screen_categories_tag9":"Categoria atualizada com sucesso!","screen_changelogs_tag1":"Changelogs","screen_changelogs_tag2":"T\u00edtulo","screen_changelogs_tag3":"Descri\u00e7\u00e3o","screen_changelogs_tag4":"Data de Cria\u00e7\u00e3o","screen_changelogs_tag5":"Criar Changelogs","screen_changelogs_tag6":"Adicionar","screen_changelogs_tag7":"Cancelar","screen_changelogs_tag8":"Changelog criado com sucesso!","screen_changelogs_tag9":"Erro ao criar Changelog!","screen_chats_tag1":"Chats","screen_chats_tag2":"Nome","screen_chats_tag3":"Documento","screen_chats_tag4":"Mail","screen_chats_tag5":"A\u00e7\u00f5es","screen_check_chat_tag1":"Chat","screen_check_chat_tag2":"Enviar","screen_check_chat_tag3":"Verificar","screen_check_chat_tag4":"Sem mensagens","screen_clients_tag1":"Carregar clientes","screen_clients_tag10":"Tudo","screen_clients_tag2":"Clientes","screen_clients_tag3":"Sobrenome","screen_clients_tag4":"Nome","screen_clients_tag5":"Mail","screen_clients_tag6":"Ativo","screen_clients_tag7":"Criar cliente","screen_clients_tag8":"Sem compras","screen_clients_tag9":"Sem compras 15 dias","screen_comments_stars_tag1":"Mau","screen_comments_stars_tag2":"Regular","screen_comments_stars_tag3":"Bom","screen_comments_stars_tag4":"Muito bom","screen_comments_stars_tag5":"Excelente","screen_comments_tag1":"Coment\u00e1rios","screen_comments_tag11":"Coment\u00e1rio exclu\u00eddo com sucesso!","screen_comments_tag12":"Coment\u00e1rio enviado com sucesso!","screen_comments_tag13":"Coment\u00e1rios","screen_comments_tag2":"Ordem","screen_comments_tag3":"Cliente","screen_comments_tag4":"Documento","screen_comments_tag5":"Coment\u00e1rio do cliente","screen_comments_tag6":"Avalia\u00e7\u00e3o do cliente","screen_comments_tag7":"A\u00e7\u00f5es","screen_comments_tag8":"Data do pedido","screen_comments_tag9":"Relat\u00f3rio","screen_companies_tag1":"Criar Empresa","screen_companies_tag2":"Empresas Associadas","screen_companies_tag3":"Nome","screen_companies_tag4":"Nit","screen_companies_tag5":"Telefone","screen_companies_tag6":"Contato","screen_companies_tag7":"Ativo","screen_companies_tag8":"A\u00e7\u00f5es","screen_coverages_pending_tag1":"Clientes pendentes para cobertura","screen_coverages_pending_tag2":"Email","screen_coverages_pending_tag3":"Cidade","screen_coverages_pending_tag4":"Data de registro","screen_create_notifications_tag1":"Notifica\u00e7\u00f5es","screen_create_notifications_tag10":"Erro ao criar notifica\u00e7\u00e3o!","screen_create_notifications_tag11":"Segmento","screen_create_notifications_tag2":"Criar notifica\u00e7\u00e3o","screen_create_notifications_tag3":"Enviar notifica\u00e7\u00e3o para todos os clientes","screen_create_notifications_tag4":"Mensagem","screen_create_notifications_tag5":"Data","screen_create_notifications_tag6":"Tempo","screen_create_notifications_tag7":"Adicionar","screen_create_notifications_tag8":"Cancelar","screen_create_notifications_tag9":"Notifica\u00e7\u00e3o criada com sucesso!","screen_deliveryMan_tag1":"Mensageiros","screen_deliveryMan_tag2":"Sobrenome","screen_deliveryMan_tag3":"Nome","screen_deliveryMan_tag4":"Cedula","screen_deliveryMan_tag5":"Telefone","screen_deliveryMan_tag6":"Sess\u00e3o m\u00faltipla","screen_deliveryMan_tag7":"Criar mensageiro","screen_deliveryMan_tag8":"Ativo","screen_diligence_tag1":"N\u00e3o. Ordem","screen_diligence_tag2":"Branch:","screen_diligence_tag3":"- Selecione","screen_diligence_tag4":"Mensageiro","screen_diligence_tag5":"Coment\u00e1rios","screen_diligence_tag6":"Transferir","screen_diligence_tag7":"OK","screen_diligence_tag8":"Cancelar","screen_diligence_tag9":"Atualizar mensageiros","screen_discounts_tag1":"Descontos","screen_discounts_tag10":"Mensagem para mostrar ao usu\u00e1rio quando ele ganhar o desconto","screen_discounts_tag11":"N\u00famero de promo\u00e7\u00f5es","screen_discounts_tag12":"In\u00edcio do desconto","screen_discounts_tag13":"Hora de in\u00edcio do desconto","screen_discounts_tag14":"Fim do desconto","screen_discounts_tag15":"Hor\u00e1rio de t\u00e9rmino do desconto","screen_discounts_tag16":"Pre\u00e7o com desconto $","screen_discounts_tag17":"% De porcentagem de desconto","screen_discounts_tag18":"O usu\u00e1rio pode resgat\u00e1-lo mais de 1 vez","screen_discounts_tag19":"O desconto \u00e9 cumulativo com outros descontos","screen_discounts_tag2":"Criar Desconto","screen_discounts_tag20":"C\u00f3digo do cupom","screen_discounts_tag21":"Produtos","screen_discounts_tag22":"Lista de produtos de desconto para grupos","screen_discounts_tag23":"Nome","screen_discounts_tag24":"PLU","screen_discounts_tag25":"Pre\u00e7o","screen_discounts_tag26":"Lista de produtos necess\u00e1rios para um presente (se quiser que seja 2x1 selecione o mesmo produto nas duas tabelas)","screen_discounts_tag27":"Produto para presente","screen_discounts_tag28":"Produto","screen_discounts_tag29":"Selecione o produto ao qual o desconto ser\u00e1 aplicado na segunda unidade.","screen_discounts_tag3":"Nome","screen_discounts_tag30":"Selecione o produto ao qual ser\u00e1 aplicado o desconto ao atingir o valor m\u00e1ximo na compra.","screen_discounts_tag31":"Desconto modificado com sucesso!","screen_discounts_tag32":"Erro ao modificar desconto!","screen_discounts_tag33":"Resgatado","screen_discounts_tag34":"Total","screen_discounts_tag35":"Nome de usu\u00e1rio","screen_discounts_tag36":"Email","screen_discounts_tag37":"Celular","screen_discounts_tag38":"Cedula","screen_discounts_tag39":"Ordem","screen_discounts_tag4":"Ativo","screen_discounts_tag40":"Desconto","screen_discounts_tag41":"Lista de usu\u00e1rios que resgataram o desconto","screen_discounts_tag42":"Informa\u00e7\u00f5es de desconto","screen_discounts_tag43":"Valor a aplicar ao desconto","screen_discounts_tag44":"Valor do pedido","screen_discounts_tag45":"C\u00f3digo do cupom","screen_discounts_tag46":"Data de in\u00edcio","screen_discounts_tag47":"Data de t\u00e9rmino","screen_discounts_tag48":"Editar desconto","screen_discounts_tag49":"Modificar","screen_discounts_tag5":"A\u00e7\u00f5es","screen_discounts_tag50":"Cancelar","screen_discounts_tag51":"Lista de produtos necess\u00e1rios para o desconto","screen_discounts_tag52":"Promo\u00e7\u00e3o do produto","screen_discounts_tag53":"Desconto atualizado com sucesso!","screen_discounts_tag54":"Erro ao atualizar o desconto!","screen_discounts_tag55":"S\u00f3 pode haver um desconto de envio criado e ativo!","screen_discounts_tag56":"A que se aplica o desconto","screen_discounts_tag57":"Selecionar categoria","screen_discounts_tag6":"Nome do desconto","screen_discounts_tag7":"Valor m\u00ednimo a aplicar ao desconto","screen_discounts_tag8":"Desconto criado com sucesso!","screen_discounts_tag9":"Erro ao criar desconto!","screen_ec_tag1":"Insira cupom de desconto","screen_ec_tag2":"Aplicar","screen_editEC_tag1":"Pedidos","screen_editEC_tag10":"Plu","screen_editEC_tag11":"Nome","screen_editEC_tag12":"Quantidade","screen_editEC_tag13":"Pre\u00e7o total","screen_editEC_tag14":"N\u00e3o h\u00e1 produtos","screen_editEC_tag15":"Status","screen_editEC_tag16":"Dispon\u00edvel","screen_editEC_tag17":"Recolhido","screen_editEC_tag18":"N\u00e3o coletado","screen_editEC_tag19":"Dispon\u00edvel","screen_editEC_tag2":"Editar pedido","screen_editEC_tag20":"N\u00e3o dispon\u00edvel","screen_editEC_tag21":"Pre\u00e7o base","screen_editEC_tag22":"A\u00e7\u00f5es","screen_editEC_tag23":"Atributos","screen_editEC_tag24":"Coment\u00e1rios","screen_editEC_tag3":"Data:","screen_editEC_tag4":"Coment\u00e1rios","screen_editEC_tag5":"Transfer\u00eancias","screen_editEC_tag6":"Branch","screen_editEC_tag7":"Produtos","screen_editEC_tag8":"Salvar altera\u00e7\u00f5es","screen_editEC_tag9":"Branch","screen_editSale_tag1":"Pedidos","screen_editSale_tag10":"Status","screen_editSale_tag11":"Retirado","screen_editSale_tag12":"Pendente","screen_editSale_tag2":"Editar pedido","screen_editSale_tag3":"Data:","screen_editSale_tag4":"Coment\u00e1rios","screen_editSale_tag5":"Transfer\u00eancias","screen_editSale_tag6":"Branch","screen_editSale_tag7":"Produtos","screen_editSale_tag8":"Salvar altera\u00e7\u00f5es","screen_editSale_tag9":"Branch","screen_edit_admin_tag1":"Modificar Administrador","screen_edit_admin_tag2":"Salvar altera\u00e7\u00f5es","screen_edit_brand_tag1":"Editar marca","screen_edit_brand_tag2":"Nome","screen_edit_brand_tag3":"Salvar altera\u00e7\u00f5es","screen_edit_categories_tag1":"Editar categoria","screen_edit_categories_tag2":"Imagem","screen_edit_categories_tag3":"Nome","screen_edit_categories_tag4":"Prioridade","screen_edit_categories_tag5":"Cancelar","screen_edit_categories_tag6":"Salvar altera\u00e7\u00f5es","screen_edit_clients_tag1":"Clientes","screen_edit_clients_tag10":"Confirmar senha","screen_edit_clients_tag11":"Endere\u00e7o","screen_edit_clients_tag12":"Vizinhan\u00e7a (opcional)","screen_edit_clients_tag13":"Instru\u00e7\u00f5es","screen_edit_clients_tag14":"Salvar altera\u00e7\u00f5es","screen_edit_clients_tag15":"Endere\u00e7o principal","screen_edit_clients_tag2":"Modificar Cliente","screen_edit_clients_tag3":"Modificar Cliente","screen_edit_clients_tag4":"Nome","screen_edit_clients_tag5":"Sobrenome","screen_edit_clients_tag6":"Mail","screen_edit_clients_tag7":"Telefone","screen_edit_clients_tag8":"N\u00e3o. documento","screen_edit_clients_tag9":"Senha","screen_edit_company_tag1":"Modificar Empresa","screen_edit_company_tag2":"Modificar","screen_edit_deliveryMan_tag1":"Modificar mensageiro","screen_edit_deliveryMan_tag2":"OK","screen_edit_line_business_tag1":"Editar linha de neg\u00f3cios","screen_edit_line_business_tag2":"Nome","screen_edit_line_business_tag3":"Salvar altera\u00e7\u00f5es","screen_edit_payment_tag1":"Editar m\u00e9todo de pagamento","screen_edit_payment_tag2":"Nome","screen_edit_payment_tag3":"Salvar altera\u00e7\u00f5es","screen_edit_sale_channel_tag1":"Editar Canal de Vendas","screen_edit_sale_channel_tag2":"Nome","screen_edit_sale_channel_tag3":"Salvar altera\u00e7\u00f5es","screen_edit_sizing_tag1":"Modificar unidades de medida","screen_edit_sizing_tag2":"Modificar","screen_edit_sucursal_tag1":"Ramos","screen_edit_sucursal_tag10":"Munic\u00edpio","screen_edit_sucursal_tag11":"Endere\u00e7o","screen_edit_sucursal_tag12":"Vizinhan\u00e7a (opcional)","screen_edit_sucursal_tag13":"Como chegar l\u00e1?","screen_edit_sucursal_tag14":"Salvar altera\u00e7\u00f5es","screen_edit_sucursal_tag15":"Cancelar","screen_edit_sucursal_tag2":"editar branch","screen_edit_sucursal_tag3":"Editar branch","screen_edit_sucursal_tag4":"Mail","screen_edit_sucursal_tag5":"Nome","screen_edit_sucursal_tag6":"C\u00f3digo","screen_edit_sucursal_tag7":"Telefone","screen_edit_sucursal_tag8":"Cobertura","screen_edit_sucursal_tag9":"Departamento","screen_evidence_tag1":"Pedidos","screen_evidence_tag10":"Mail:","screen_evidence_tag11":"N\u00e3o h\u00e1 mensageiro atribu\u00eddo","screen_evidence_tag12":"N\u00e3o. pedido: ","screen_evidence_tag13":"Status:","screen_evidence_tag14":"Branch:","screen_evidence_tag15":"Provas fotogr\u00e1ficas","screen_evidence_tag16":"Branch","screen_evidence_tag17":"N\u00e3o h\u00e1 arquivos","screen_evidence_tag18":"Voltar","screen_evidence_tag19":"Foto","screen_evidence_tag2":"Solicita\u00e7\u00e3o de evid\u00eancia","screen_evidence_tag20":"Cancelar","screen_evidence_tag3":"Solicita\u00e7\u00e3o de evid\u00eancia n\u00ba","screen_evidence_tag4":"Cliente:","screen_evidence_tag5":"Telefone:","screen_evidence_tag6":"Mail:","screen_evidence_tag7":"Mensageiro:","screen_evidence_tag8":"Empresa:","screen_evidence_tag9":"Telefone:","screen_header_tag1":"Fechar sess\u00e3o","screen_header_tag2":"Quantidade de pedidos n\u00e3o aceitos","screen_header_tag3":"Mensagens da caixa de sugest\u00f5es","screen_home_tag1":"Mensageiros","screen_home_tag10":"Estados","screen_home_tag11":"Volumes de vendas","screen_home_tag2":"Transfer\u00eancias","screen_home_tag3":"Pedidos","screen_home_tag4":"Clientes","screen_home_tag5":"Ano","screen_home_tag6":"M\u00eas","screen_home_tag7":"Tudo","screen_home_tag8":"Pesquisar","screen_home_tag9":"Hor\u00e1rios solicitados","screen_info_comments_tag1":"Detalhe do coment\u00e1rio","screen_info_comments_tag10":"Coment\u00e1rio:","screen_info_comments_tag11":"Classifica\u00e7\u00e3o:","screen_info_comments_tag12":"Cancelar","screen_info_comments_tag2":"Ordem:","screen_info_comments_tag3":"Cliente:","screen_info_comments_tag4":"Coment\u00e1rio:","screen_info_comments_tag5":"Classifica\u00e7\u00e3o:","screen_info_comments_tag6":"Administrador:","screen_info_comments_tag7":"Coment\u00e1rio:","screen_info_comments_tag8":"Classifica\u00e7\u00e3o:","screen_info_comments_tag9":"Mensageiro:","screen_info_orders_tag1":"Informa\u00e7\u00f5es do pedido","screen_info_orders_tag10":"Status:","screen_info_orders_tag11":"Tempo total:","screen_info_orders_tag12":"M\u00e9todo de pagamento:","screen_info_orders_tag13":"Avalia\u00e7\u00e3o do Messenger:","screen_info_orders_tag14":"Observa\u00e7\u00e3o:","screen_info_orders_tag15":"Produtos","screen_info_orders_tag16":"Transfer\u00eancias","screen_info_orders_tag17":"Subtotal:","screen_info_orders_tag18":"Endere\u00e7o:","screen_info_orders_tag19":"Desconto:","screen_info_orders_tag2":"C\u00f3digo:","screen_info_orders_tag20":"Total:","screen_info_orders_tag21":"Cancelar","screen_info_orders_tag22":"Tipo de pedido:","screen_info_orders_tag23":"Custo real:","screen_info_orders_tag24":"Descontos ativos:","screen_info_orders_tag25":"Filial do usu\u00e1rio do aplicativo:","screen_info_orders_tag26":"Telefone:","screen_info_orders_tag27":"Bairro:","screen_info_orders_tag3":"Branch:","screen_info_orders_tag4":"Cliente:","screen_info_orders_tag5":"Endere\u00e7o:","screen_info_orders_tag6":"Ramo de origem:","screen_info_orders_tag7":"Filial de destino:","screen_info_orders_tag8":"Mensageiro:","screen_info_orders_tag9":"Feito por:","screen_line_business_tag1":"Adicionar linha de neg\u00f3cios","screen_line_business_tag2":"Nome","screen_line_business_tag3":"Adicionar","screen_line_business_tag4":"Linhas","screen_line_business_tag5":"Ativo","screen_login_tag1":"Mail","screen_login_tag2":"O e-mail e a senha n\u00e3o coincidem. Tenta de novo.","screen_login_tag3":"Senha","screen_login_tag4":"O e-mail e a senha n\u00e3o coincidem. Tenta de novo.","screen_login_tag5":"Login","screen_login_tag6":"O usu\u00e1rio est\u00e1 inativo","screen_login_tag7":"O usu\u00e1rio n\u00e3o est\u00e1 registrado","screen_mailbox_email_tag1":"Ol\u00e1, uma nova caixa de sugest\u00f5es foi recebida na cidade de:","screen_mailbox_email_tag2":"Nome de usu\u00e1rio:","screen_mailbox_email_tag3":"E-mail do usu\u00e1rio:","screen_mailbox_email_tag4":"Voc\u00ea pode ver a mensagem no gerenciador da web, muito obrigado.","screen_mailbox_tag1":"Caixa de sugest\u00f5es","screen_mailbox_tag2":"Nome","screen_mailbox_tag3":"Documento","screen_mailbox_tag4":"Mail","screen_mailbox_tag5":"A\u00e7\u00f5es","screen_mailbox_tag6":"Data","screen_notifications_tag1":"Nova notifica\u00e7\u00e3o","screen_notifications_tag2":"Notifica\u00e7\u00f5es","screen_notifications_tag3":"Mensagem","screen_notifications_tag4":"Data agendada","screen_notifications_tag5":"Data de Cria\u00e7\u00e3o","screen_notifications_tag6":"Respons\u00e1vel","screen_notifications_tag7":"Notifica\u00e7\u00e3o criada com sucesso!","screen_orders_tag1":"Relat\u00f3rio de pedido","screen_orders_tag10":"Branch","screen_orders_tag11":"Localidade","screen_orders_tag2":"Novo pedido","screen_orders_tag3":"Pedidos","screen_orders_tag4":"C\u00f3digo","screen_orders_tag5":"Data","screen_orders_tag6":"Cliente","screen_orders_tag7":"Documento","screen_orders_tag8":"Status","screen_orders_tag9":"Mensageiro","screen_parameters_tag1":"Par\u00e2metros","screen_parameters_tag10":"Hor\u00e1rio de in\u00edcio do dia (neg\u00f3cios)","screen_parameters_tag11":"Hor\u00e1rio de t\u00e9rmino do dia \u00fatil (neg\u00f3cios)","screen_parameters_tag12":"Hora de in\u00edcio do dia (feriados)","screen_parameters_tag13":"Hora de t\u00e9rmino do dia (feriados)","screen_parameters_tag14":"Permitir a cria\u00e7\u00e3o de pedidos?","screen_parameters_tag15":"Ponto de cobertura","screen_parameters_tag16":"Ativar desconto de registro?","screen_parameters_tag17":"Valor do desconto de registro","screen_parameters_tag18":"Dias","screen_parameters_tag19":"OK","screen_parameters_tag2":"Custo residencial","screen_parameters_tag20":"Ativar c\u00f3digo autom\u00e1tico para tipos de pedido:","screen_parameters_tag21":"Tipo de pedido modificado","screen_parameters_tag22":"Permitir modifica\u00e7\u00e3o de dados pessoais?","screen_parameters_tag23":"Permiss\u00f5es do Messenger:","screen_parameters_tag24":"Url BI","screen_parameters_tag25":"Vers\u00e3o m\u00ednima do messenger","screen_parameters_tag26":"Produtos por filial","screen_parameters_tag27":"Modelo externo","screen_parameters_tag28":"Suporte de telefone celular WhatsApp","screen_parameters_tag29":"Custo residencial para cobertura","screen_parameters_tag3":"Valor m\u00ednimo do pedido","screen_parameters_tag30":"Minutos de bloqueio da cadeira para fertilizantes","screen_parameters_tag31":"Minutos de bloqueio de cadeira de venda livre","screen_parameters_tag32":"# n\u00famero m\u00e1ximo de assinaturas que um usu\u00e1rio pode comprar","screen_parameters_tag33":"# m\u00e1ximo de ingressos que um usu\u00e1rio pode comprar","screen_parameters_tag34":"# bloqueios m\u00e1ximos que um usu\u00e1rio pode fazer","screen_parameters_tag35":"Usu\u00e1rio de aplicativo de mensagem de texto para coleta de bolsa DIM","screen_parameters_tag36":"Valor de mercado de a\u00e7\u00f5es DIM","screen_parameters_tag37":"Cole\u00e7\u00e3o de bolsas DIM","screen_parameters_tag38":"Retire na loja","screen_parameters_tag39":"Distanciamento social","screen_parameters_tag4":"City DB","screen_parameters_tag40":"N\u00famero de cadeiras para bloquear no eixo x","screen_parameters_tag41":"N\u00famero de assentos a serem bloqueados no eixo y","screen_parameters_tag42":"Trave as cadeiras no topo","screen_parameters_tag43":"Trave as cadeiras na parte inferior","screen_parameters_tag44":"Trave as cadeiras do lado esquerdo","screen_parameters_tag45":"Trave as cadeiras do lado direito","screen_parameters_tag5":"PQRS","screen_parameters_tag6":"Vers\u00e3o m\u00ednima do cliente","screen_parameters_tag7":"Notifica\u00e7\u00f5es de e-mail","screen_parameters_tag8":"Porcentagem de desconto de envio global","screen_parameters_tag9":"Termos","screen_payment_tag1":"Adicionar m\u00e9todo de pagamento","screen_payment_tag2":"Nome","screen_payment_tag3":"Adicionar","screen_payment_tag4":"M\u00e9todos de pagamento","screen_payment_tag5":"Ativo","screen_points_tag1":"Fotos do Instagram","screen_points_tag2":"Criar fotos do Instagram","screen_points_tag3":"Fotos do Instagram criadas com sucesso!","screen_points_tag4":"Falha ao criar fotos do Instagram!","screen_points_tag5":"Fotos do Instagram atualizadas com sucesso!","screen_points_tag6":"Erro ao atualizar fotos do Instagram!","screen_points_tag7":"Fotos do Instagram modificadas com sucesso!","screen_points_tag8":"Erro ao modificar fotos do Instagram!","screen_popup_tag1":"PopUp","screen_popup_tag10":"Editar PopUp","screen_popup_tag11":"Adicionar","screen_popup_tag12":"Cancelar","screen_popup_tag13":"Modificar","screen_popup_tag14":"PopUp criado com sucesso!","screen_popup_tag15":"Erro ao criar PopUp!","screen_popup_tag16":"PopUp atualizado com sucesso!","screen_popup_tag17":"Erro ao atualizar PopUp!","screen_popup_tag18":"PopUp modificado com sucesso!","screen_popup_tag19":"Erro ao modificar PopUp!","screen_popup_tag2":"Criar PopUp","screen_popup_tag20":"PopUp removido com sucesso!","screen_popup_tag21":"Erro ao excluir PopUp!","screen_popup_tag3":"Id","screen_popup_tag4":"Imagem","screen_popup_tag5":"Link","screen_popup_tag6":"Ativo","screen_popup_tag7":"A\u00e7\u00f5es","screen_products_tag1":"Produtos","screen_products_tag10":"Tamanho","screen_products_tag11":"Unidades dispon\u00edveis","screen_products_tag12":"Unidades m\u00e1ximas","screen_products_tag13":"Produto para adultos","screen_products_tag14":"% De porcentagem de desconto","screen_products_tag15":"In\u00edcio do desconto","screen_products_tag16":"Fim do desconto","screen_products_tag17":"Hor\u00e1rio de t\u00e9rmino do desconto","screen_products_tag18":"Pre\u00e7o rel\u00e2mpago","screen_products_tag19":"In\u00edcio rel\u00e2mpago","screen_products_tag2":"Criar Produto","screen_products_tag20":"Fim rel\u00e2mpago","screen_products_tag21":"Hor\u00e1rio de t\u00e9rmino do rel\u00e2mpago","screen_products_tag22":"Marca","screen_products_tag23":"Ordem","screen_products_tag24":"Imagem","screen_products_tag25":"Adicionar","screen_products_tag26":"Cancelar","screen_products_tag27":"Produto modificado com sucesso!","screen_products_tag28":"Erro ao modificar o produto!","screen_products_tag29":"Produto removido com sucesso!","screen_products_tag3":"Imagem","screen_products_tag30":"Erro ao remover produto!","screen_products_tag31":"Categoria ou subcategorias","screen_products_tag32":"Digite o nome","screen_products_tag33":"Unidade","screen_products_tag34":"Produto criado com sucesso!","screen_products_tag35":"Erro ao criar produto!","screen_products_tag36":"Editar Produto","screen_products_tag37":"Modificar","screen_products_tag38":"Cancelar","screen_products_tag39":"Produto atualizado com sucesso!","screen_products_tag4":"Nome","screen_products_tag40":"Erro ao atualizar o produto!","screen_products_tag41":"Importar","screen_products_tag42":"Exportar","screen_products_tag43":"Importar Produtos","screen_products_tag44":"Arquivo .Xlsx","screen_products_tag45":"Arquivo importado com sucesso:","screen_products_tag46":"Erro ao importar arquivo:","screen_products_tag47":"Categorias","screen_products_tag48":"Importar categorias e subcategorias","screen_products_tag49":"Erro! o produto n\u00e3o existe, PLU: ","screen_products_tag5":"PLU","screen_products_tag50":"Erro! o PLU n\u00e3o pode estar vazio, Categoria: ","screen_products_tag51":"Erro! A categoria n\u00e3o pode estar vazia, PLU: ","screen_products_tag52":"Fotos","screen_products_tag53":"Carregar fotos","screen_products_tag54":"Selecione o ramo","screen_products_tag55":"Branch:","screen_products_tag56":"Modelo externo","screen_products_tag57":"Exportar categorias","screen_products_tag58":"O produto com PLU :: plu n\u00e3o tem uma marca associada","screen_products_tag59":"O produto na posi\u00e7\u00e3o :: posi\u00e7\u00e3o n\u00e3o tem um PLU v\u00e1lido","screen_products_tag6":"C\u00f3digo de barras","screen_products_tag60":"O produto com PLU :: plu n\u00e3o tem a estrutura de atributos correta","screen_products_tag7":"Pre\u00e7o","screen_products_tag8":"Ativo","screen_products_tag9":"A\u00e7\u00f5es","screen_radio_tag1":"R\u00e1dio","screen_radio_tag10":"Editar Revista","screen_radio_tag11":"Adicionar","screen_radio_tag12":"Cancelar","screen_radio_tag13":"Modificar","screen_radio_tag14":"R\u00e1dio criado com sucesso!","screen_radio_tag15":"Erro ao criar r\u00e1dio!","screen_radio_tag16":"R\u00e1dio atualizado com sucesso!","screen_radio_tag17":"Erro ao atualizar o r\u00e1dio!","screen_radio_tag18":"R\u00e1dio modificado com sucesso!","screen_radio_tag19":"Erro ao modificar o r\u00e1dio!","screen_radio_tag2":"Criar R\u00e1dio","screen_radio_tag20":"R\u00e1dio removido com sucesso!","screen_radio_tag21":"Erro ao deletar r\u00e1dio!","screen_radio_tag3":"Id","screen_radio_tag4":"T\u00edtulo","screen_radio_tag5":"Link","screen_radio_tag6":"Ativo","screen_radio_tag7":"A\u00e7\u00f5es","screen_report_tag1":"Pedidos","screen_report_tag2":"Gerar relat\u00f3rio","screen_report_tag3":"De","screen_report_tag4":"At\u00e9","screen_report_tag5":"Gerar","screen_report_tag6":"Cancelar","screen_sale_channel_tag1":"Adicionar Canal de Vendas","screen_sale_channel_tag2":"Nome","screen_sale_channel_tag3":"Adicionar","screen_sale_channel_tag4":"Canais","screen_sale_channel_tag5":"Ativo","screen_sale_tag1":"N\u00e3o. Ordem","screen_sale_tag10":"Mensageiro","screen_sale_tag11":"- Selecione","screen_sale_tag12":"M\u00e9todo de pagamento","screen_sale_tag13":"Desconto%","screen_sale_tag14":"Total","screen_sale_tag15":"Linha de Neg\u00f3cios","screen_sale_tag16":"Canal de vendas","screen_sale_tag17":"Coment\u00e1rios","screen_sale_tag18":"Ramo de origem:","screen_sale_tag19":"Cidade","screen_sale_tag2":"Documento","screen_sale_tag20":"Email","screen_sale_tag21":"Dire\u00e7\u00f5es","screen_sale_tag22":"Produtos n\u00e3o encontrados","screen_sale_tag23":"Cidade (cobertura)","screen_sale_tag3":"Nome","screen_sale_tag4":"Sobrenome","screen_sale_tag5":"Endere\u00e7o","screen_sale_tag6":"Vizinhan\u00e7a (opcional)","screen_sale_tag7":"Observa\u00e7\u00f5es","screen_sale_tag8":"Telefone \/ Celular","screen_sale_tag9":"Branch","screen_send_comment_tag1":"Enviar coment\u00e1rio","screen_send_comment_tag2":"Mensagem:","screen_send_comment_tag3":"Branch:","screen_send_comment_tag4":"selecione um ramo","screen_send_comment_tag5":"Cancelar","screen_send_comment_tag6":"Enviar","screen_sizing_tag1":"Criar unidades de medida","screen_sizing_tag2":"Unidades de medida","screen_sizing_tag3":"Nome","screen_sizing_tag4":"Abrevia\u00e7\u00e3o","screen_sizing_tag5":"A\u00e7\u00f5es","screen_stocks_tag1":"Invent\u00e1rio","screen_stocks_tag2":"Detalhe","screen_subcategories_tag1":"Nova Subcategoria","screen_subcategories_tag2":"Subcategorias","screen_subcategories_tag3":"Imagem","screen_subcategories_tag4":"Nome","screen_subcategories_tag5":"Categoria","screen_subcategories_tag6":"Ativo","screen_subcategories_tag7":"A\u00e7\u00f5es","screen_subcategories_tag8":"Prioridade","screen_sucursal_tag1":"Adicionar filial","screen_sucursal_tag2":"Ramos","screen_sucursal_tag3":"C\u00f3digo","screen_sucursal_tag4":"Nome","screen_sucursal_tag5":"Endere\u00e7o","screen_sucursal_tag6":"Telefone","screen_sucursal_tag7":"Ativo","screen_sucursal_tag8":"A\u00e7\u00f5es","screen_transferMail_tag1":"Ol\u00e1","screen_transferMail_tag2":"Do pedido n\u00ba","screen_transferMail_tag3":"Foi feita uma transfer\u00eancia dos seguintes produtos:","screen_transferMail_tag4":"Ramo de origem:","screen_transferMail_tag5":"Terminar ramo:","screen_transferMail_tag6":"Obrigado,","screen_transfer_order_tag1":"Pedidos","screen_transfer_order_tag10":"Mail:","screen_transfer_order_tag11":"N\u00e3o h\u00e1 mensageiro atribu\u00eddo","screen_transfer_order_tag12":"N\u00e3o. pedido:","screen_transfer_order_tag13":"Status:","screen_transfer_order_tag14":"Branch:","screen_transfer_order_tag15":"Transfer\u00eancias","screen_transfer_order_tag16":"Branch","screen_transfer_order_tag17":"Produtos","screen_transfer_order_tag18":"Transferir","screen_transfer_order_tag19":"Salvar altera\u00e7\u00f5es","screen_transfer_order_tag2":"Ordem de transfer\u00eancia","screen_transfer_order_tag20":"Cancelar","screen_transfer_order_tag3":"Data:","screen_transfer_order_tag4":"Cliente:","screen_transfer_order_tag5":"Telefone:","screen_transfer_order_tag6":"Mail:","screen_transfer_order_tag7":"Mensageiro:","screen_transfer_order_tag8":"Empresa:","screen_transfer_order_tag9":"Telefone:","screen_transfer_tag1":"N\u00e3o. Ordem","screen_transfer_tag10":"Ramo de origem:","screen_transfer_tag11":"Pedidos recentes","screen_transfer_tag2":"Filial de destino:","screen_transfer_tag3":"- Selecione","screen_transfer_tag4":"Mensageiro","screen_transfer_tag5":"Coment\u00e1rios","screen_transfer_tag6":"Transferir","screen_transfer_tag7":"OK","screen_transfer_tag8":"Cancelar","screen_transfer_tag9":"Atualizar mensageiros","select":"Selecionar","service":"Servi\u00e7o","subcategories_controller_tag1":"Criou uma subcategoria","subcategories_controller_tag10":"Subcategoria modificada com sucesso!","subcategories_controller_tag11":"Excluiu uma subcategoria","subcategories_controller_tag12":"Subcategoria removida com sucesso!","subcategories_controller_tag2":"Categoria criada com sucesso!","subcategories_controller_tag3":"Atualizado a imagem da subcategoria","subcategories_controller_tag4":"Subcategoria atualizada com sucesso!","subcategories_controller_tag5":"Subcategoria de imagem enviada","subcategories_controller_tag6":"Subcategoria criada com sucesso!","subcategories_controller_tag7":"Atualizado uma categoria","subcategories_controller_tag8":"Subcategoria atualizada com sucesso!","subcategories_controller_tag9":"Ativar \/ Desativar uma categoria","subject_new_order":"Novo pedido","update":"Atualizar","updated_successfully":"Registro atualizado com sucesso","worldpay_error_cvc":"Indique o n\u00famero CVC do TC.","worldpay_error_month":"Indique o m\u00eas de expira\u00e7\u00e3o do TC.","worldpay_error_name":"Indique o nome do TC.","worldpay_error_number":"Indique o n\u00famero TC.","worldpay_error_token":"Ocorreu um erro ao validar seu TC.","worldpay_error_type":"Indique o tipo de CT.","worldpay_error_year":"Indique o ano de expira\u00e7\u00e3o do TC.","worldpay_successs_token":"Seu TC foi registrado com sucesso.","yes":"Sim","1":false,"2":false,"3":false,"4":false,"5":false,"6":false,"7":false,"8":false,"9":false,"10":false,"11":false,"12":false,"13":false,"14":false,"15":false,"16":false,"17":false,"18":false,"19":false,"20":false,"21":false,"22":false}});
})();