File: /var/www/vhost/disk-apps/agile-selling-orl/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.messagesClient":{"Abril":"April","Aceptado":"Abrushed","Agosto":"August","Cancelado":"Cancelled","Diciembre":"December","En Ruta":"Packed & Ready","Enero":"January","Entregado":"Delivered","Febrero":"February","Finalizado":"Finalized","Julio":"July","Junio":"June","Marzo":"March","Mayo":"May","Noviembre":"November","Octubre":"October","Pendientes":"Slopes","Recolectado":"Collected","Septiembre":"September","attribute_required":"Type of attribute is required","banner_tag1":"There was an error saving the image!","banner_tag2":"You must be 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 the banner!","banner_tag8":"Are you sure to delete this Banner?","banner_tag9":"There was an Error deleting Banner!","brand_tag1":"There was an error in the creation of the Brand","brand_tag2":"There was an error in the modification of the Brand","brand_tag3":"Create Brand?","brand_tag4":"Delete Brand?","brand_tag5":"Modify Brand?","changelog_tag1":"Create Changelog?","changelog_tag2":"There was an error creating the changelog!","channel_tag1":"There was an error in the creation of the Sales Channel","channel_tag2":"There was an error in the modification of the Sales Channel","channel_tag3":"Create Sales Channel?","channel_tag4":"Remove Sales Channel?","channel_tag5":"Modify Sales Channel?","company_tag1":"Create company?","company_tag2":"Error creating company","company_tag3":"Error modifying company","company_tag4":"Modify company?","company_tag5":"Are you sure to delete the company?","company_tag6":"Error deleting company!","create_register":"Create record?","discount_tag1":"There was an Error checking the discount!","discount_tag2":"Create Discount?","discount_tag3":"There was an Error creating discount!","discount_tag4":"You must enter Price or Percentage of the discount!","discount_tag5":"You must select products requirements and product gift!","discount_tag6":"You must select products requirements!","discount_tag7":"You must select product promotion!","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?"},"event_prices":{"tag_1":"Create price?","tag_2":"Modify price?","tag_3":"You must select an area","tag_6":"Remove price?"},"events":{"tag_1":"Create event?","tag_2":"Modify event?","tag_3":"You must select a tournament","tag_4":"You must select a team","tag_6":"Delete event?"},"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 name_control attribute","tag_2":"Modify field?","tag_6":"Delete field?","tag_7":"You must enter the name field.","tag_8":"You must enter field type.","tag_9":"You must enter data source."},"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"},"home1":"Orders","home2":"Minutes","line_tag1":"There was an error in the creation of the Business Line","line_tag2":"There was an error in the modification of the Business Line","line_tag3":"Create Business Line?","line_tag4":"Delete Business Line?","line_tag5":"Modify Business Line?","location_required":"Bin Location required","main_datasources":{"tag_1":"Create header?","tag_2":"Modify header?","tag_4":"You must enter at least one item","tag_6":"Delete header?"},"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","orders":{"order_created":"Order created #"},"orders_tag1":"The branch field is mandatory!","orders_tag10":"The City field is mandatory!","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 has been successfully changed to the product","orders_tag15":"The Reference Order does not match","orders_tag16":"You must select the address","orders_tag17":"You must select the city","orders_tag18":"You must enter the reference code","orders_tag2":"The payment method field is mandatory!","orders_tag21":"Are you sure you want to delete this product?","orders_tag22":"The product has been successfully removed","orders_tag3":"You must select branch for each transfer!","orders_tag4":"Create order?","orders_tag5":"Order created, print command?","orders_tag6":"Error creating order","orders_tag7":"Change order?","orders_tag8":"Error modifying order!","orders_tag9":"Order modified successfully!","payment_tag1":"There was an error in the creation of the Payment Method","payment_tag2":"There was an error in the modification of the Payment Method","payment_tag3":"Create Payment Method?","payment_tag4":"Delete Payment Method?","payment_tag5":"Modify Payment Method?","product_attribute_delete":"Are you sure you want to remove the attribute?","product_tag1":"There was an error saving the image!","product_tag10":"There are still some lightning price fields to fill out!","product_tag11":"The popup message field is yet to be filled in!","product_tag2":"Are you sure to remove this Product?","product_tag3":"There was an Error deleting Product!","product_tag4":"You must be 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":"There are still some percentage discount fields to fill out!","reports_state":{"header":"Reportes hacienda"},"screen_add_subcategories_tag1":"There was an error creating the subcategory!","screen_add_subcategories_tag2":"The name, priority and category fields are required!","screen_add_subcategories_tag3":"Create subcategory?","screen_add_subcategories_tag4":"Error creating subcategory!","screen_categories_tag1":"\u00a1You must be sure to fill in all fields!","screen_categories_tag2":"Create Category?","screen_categories_tag3":"Do not","screen_categories_tag4":"Warning","screen_categories_tag5":"Category created successfully!","screen_categories_tag6":"Error creating category!","screen_categories_tag7":"Are you sure to delete the Category?","screen_chats_error_tag1":"There was an error sending the 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":"The 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 name, category and priority fields are required!","screen_edit_subcategories_tag2":"Are you sure you want to modify the Subcategory?","screen_edit_subcategories_tag3":"Subcategory updated successfully!","screen_edit_subcategories_tag4":"Error updating subcategory!","screen_edit_subcategories_tag5":"Error modifying Subcategory!","seats":{"tag_1":"Create Chair?","tag_2":"Modify Chair?","tag_6":"Delete Chair?"},"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 to eliminate the unit of measure?","sizing_tag6":"Error deleting unit of measure!","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 to delete the Branch?","sucursal_tag8":"Error deleting Branch!","teams":{"tag_1":"Create team?","tag_2":"Modify equipment?","tag_6":"Delete team?"},"tournaments":{"tag_1":"Create tournament?","tag_2":"Modify tournament?","tag_6":"Delete tournament?"},"update_register":"Update record?","user_admin_tag1":"Create Administrator?","user_admin_tag2":"Error creating administrator!","user_admin_tag3":"Modify Administrator?","user_admin_tag4":"Error modifying administrator!","user_admin_tag5":"Are you sure to delete the administrator?","user_admin_tag6":"Error deleting administrator!","user_client_tag1":"Create customer?","user_client_tag2":"Customer created successfully!","user_client_tag3":"Check if the address is correct!","user_client_tag4":"Error creating customer, identification number or email already has a record!","user_client_tag5":"Modify customer?","user_client_tag6":"Error modifying client","user_deliveryMan_tag1":"You must be sure to select the branch!","user_deliveryMan_tag2":"You must be sure to select the company!","user_deliveryMan_tag3":"Create picker?","user_deliveryMan_tag4":"Error creating picker!","user_deliveryMan_tag5":"Modify picker?","user_deliveryMan_tag6":"Error modifying picker","user_deliveryMan_tag7":"Error modifying multiple session!","user_deliveryMan_tag8":"Are you sure to delete the picker?","user_deliveryMan_tag9":"Account recovery failed","zones":{"tag_1":"Create Zone?","tag_2":"Modify Zone?","tag_6":"Delete Zone?"}},"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","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?","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?","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!","coupon_tag1":"\u00a1Hubo un Error al guardar el cupon!","coupon_tag2":"\u00a1Debe asegurarse de seleccionar todos los campos!","coupon_tag3":"\u00bfCrear cupones?","coupon_tag4":"\u00a1Hubo un Error al crear el cupon!","coupon_tag5":"\u00bfModificar cupones?","coupon_tag6":"\u00a1Hubo un Error al actualizar el cupon!","coupon_tag7":"\u00a1Hubo un Error al modificar el cupon!","coupon_tag8":"\u00bfEst\u00e1 seguro de eliminar este cupon?","coupon_tag9":"\u00a1Hubo un Error al eliminar el cupon!","create_register":"\u00bfCrear registro?","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?"},"error_delete":"Error al eliminar","event_prices":{"tag_1":"\u00bfCrear precio?","tag_2":"\u00bfModificar precio?","tag_3":"Debes seleccionar una zona","tag_6":"\u00bfEliminar precio?"},"events":{"tag_1":"\u00bfCrear evento?","tag_2":"\u00bfModificar evento?","tag_3":"Debes seleccionar un torneo","tag_4":"Debes seleccionar un equipo","tag_6":"\u00bfEliminar evento?","tag_7":"\u00bfModificar estado de la boleta?"},"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."},"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"},"home1":"Pedidos","home2":"Minutos","instagram_tag1":"\u00a1Hubo un Error al guardar el fotos instagram!","instagram_tag2":"\u00a1Debe asegurarse de seleccionar todos los campos!","instagram_tag3":"\u00bfCrear fotos instagram?","instagram_tag4":"\u00a1Hubo un Error al crear fotos instagram!","instagram_tag5":"\u00bfModificar fotos instagram?","instagram_tag6":"\u00a1Hubo un Error al actualizar fotos instagram!","instagram_tag7":"\u00a1Hubo un Error al modificar el fotos instagram!","instagram_tag8":"\u00bfEst\u00e1 seguro de eliminar este fotos instagram?","instagram_tag9":"\u00a1Hubo un Error al eliminar el fotos instagram!","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?","location_required":"Ubicaci\u00f3n en bodega requerida","main_datasources":{"tag_1":"\u00bfCrear cabecera?","tag_2":"\u00bfModificar cabecera?","tag_4":"Debes ingresar al menos un \u00edtem","tag_6":"\u00bfEliminar cabecera?"},"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","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_tag21":"\u00bfEst\u00e1s seguro que deseas eliminar este producto?","orders_tag22":"El producto se ha eliminado con \u00e9xito","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!","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?","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!","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":"\u00a1Faltan por llenar el campo mensaje popup!","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!","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!","seats":{"tag_1":"\u00bfCrear Silla?","tag_2":"\u00bfModificar Silla?","tag_6":"\u00bfEliminar Silla?"},"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!","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 ticket simbolico","error_created":"Ha ocurrido un error al crear el ticket simbolico, intente de nuevo mas tarde.","to_create":"Desea crear el ticket simbolico ?","to_update":"Desea actualizar el ticket simbolico ?","update_error":"Ha ocurrido un error al actualizar el estado, intente de nuevo mas tarde.","update_state":"Se ha actualizado el estado correctamente"},"teams":{"tag_1":"\u00bfCrear equipo?","tag_2":"\u00bfModificar equipo?","tag_6":"\u00bfEliminar equipo?"},"tiktok_tag1":"\u00a1Hubo un Error al guardar el video tiktok!","tiktok_tag2":"\u00a1Debe asegurarse de seleccionar todos los campos!","tiktok_tag3":"\u00bfCrear video tiktok?","tiktok_tag4":"\u00a1Hubo un Error al crear video tiktok!","tiktok_tag5":"\u00bfModificar video tiktok?","tiktok_tag6":"\u00a1Hubo un Error al actualizar el video tiktok!","tiktok_tag7":"\u00a1Hubo un Error al modificar el video tiktok!","tiktok_tag8":"\u00bfEst\u00e1 seguro de eliminar este video tiktok?","tiktok_tag9":"\u00a1Hubo un Error al eliminar el video tiktok!","tournaments":{"tag_1":"\u00bfCrear torneo?","tag_2":"\u00bfModificar torneo?","tag_6":"\u00bfEliminar torneo?"},"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_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","youtube_tag1":"\u00a1Hubo un Error al guardar el video youtube!","youtube_tag2":"\u00a1Debe asegurarse de seleccionar todos los campos!","youtube_tag3":"\u00bfCrear video youtube?","youtube_tag4":"\u00a1Hubo un Error al crear video youtube!","youtube_tag5":"\u00bfModificar video youtube?","youtube_tag6":"\u00a1Hubo un Error al actualizar video youtube!","youtube_tag7":"\u00a1Hubo un Error al modificar el video youtube!","youtube_tag8":"\u00bfEst\u00e1 seguro de eliminar este video youtube?","youtube_tag9":"\u00a1Hubo un Error al eliminar el video youtube!","zones":{"tag_1":"\u00bfCrear Zona?","tag_2":"\u00bfModificar Zona?","tag_6":"\u00bfEliminar Zona?"}}});})();