HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux ip-172-31-42-149 5.15.0-1084-aws #91~20.04.1-Ubuntu SMP Fri May 2 07:00:04 UTC 2025 aarch64
User: ubuntu (1000)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/vhost/disk-apps/sigedo-dev.allup.com.co/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({"es.fronjs":{"academic_character_required":"Debes seleccionar campo caracter acad\u00e9mico.","address_required":"Debes ingresar el campo direcci\u00f3n.","agent_email_required":"Debes ingresar el campo correo electr\u00f3nico representante.","agent_name_required":"Debes ingresar el campo nombre representante.","agent_phone_required":"Debes ingresar el campo tel\u00e9fono representante.","approval_date_required":"Debes ingresar el campo fecha aprobaci\u00f3n.","approval_number_required":"Debes ingresar el campo No acta aprobaci\u00f3n.","automaticprocess_required":"Debes seleccionar un proceso autom\u00e1tico","birthdate_required":"Debes ingresar el campo fecha de nacimiento.","body_required":"Debes ingresar el campo cuerpo","city_required":"Debes seleccionar campo ciudad.","code_required":"Debes ingresar el campo SNIES\/SIET.","commitment_date_required":"Debes ingresar fecha de l\u00edmite del compromiso","covenant_required":"Debes seleccionar el campo convenio","covenantprogram_required":"Debes seleccionar el campo Programa - Rotaci\u00f3n","date_accredited_required":"Debes ingresar el campo Fecha Acreditaci\u00f3n.","display_name_required":"Debes ingresar el campo nombre a mostrar.","document_type_required":"Debes seleccionar tipo de documento.","document_upload_required":"Debes seleccionar el documento referencia que ya cargaste","document_user_required":"Debes ingresar el documento.","email_required":"Debes ingresar el correo electr\u00f3nico.","error_upload_image":"Error al guardar imagen, intente mas tarde","expedition_date_required":"Debes ingresar el campo fecha de expedici\u00f3n.","filetype_required":"Debes seleccionar tipo de archivo.","filter_required":"Debes ingresar al menos un filtro.","final_date_required":"Debes seleccionar fecha final.","gender_required":"Debes seleccionar g\u00e9nero.","institution_required":"Debes seleccionar campo instituci\u00f3n.","last_name_required":"Debes ingresar el campo apellido.","maximum_file_size":"Tama\u00f1o del archivo supera :size permitidos por el sistema","module_id_required":"Debes seleccionar un m\u00f3dulo.","name_invalid_required":"El campo nombre no puede tener numeros, espacios ni caracteres especiales","name_required":"Debes ingresar el campo nombre.","nit_required":"Debes ingresar el campo nit c\u00f3digo.","not":"No","not_file":"Se te ha olvidado agregar la imagen","not_file_text":"No hay archivo","not_file_title":"Debes seleccionar un archivo","notification_required":"Debes seleccionar una notificaci\u00f3n","password_required":"Debes ingresar el campo contrase\u00f1a.","permissions_required":"Debes seleccionar al menos un permiso.","phone_required":"Debes ingresar el campo tel\u00e9fono.","position_required":"Debes ingresar el campo cargo.","practice_type_required":"Debes seleccionar tipo de practica.","process_required":"Debes seleccionar un proceso","program_category_required":"Debes seleccionar campo nivele de formaci\u00f3n.","program_required":"Debes seleccionar programa.","programs_required":"Debes seleccionar al menos un programa.","quantity_hours_rank":"El n\u00famero de horas debe ser un valor entre 0 y 66.","quantity_hours_required":"Debes ingresar el campo cantidad horas.","quantity_weeks_rank":"El n\u00famero de semanas debe ser un valor entre 0 y 52.","quantity_weeks_required":"Debes ingresar el campo cantidad semanas.","quota_simultaneity_rank":"El cupo de simultaneidad debe ser un valor entre 1 y 15.","quota_simultaneity_required":"Debes ingresar el campo cupo simultaneidad.","report_required":"Debes seleccionar un reporte","resolution_accredited_required":"Debes ingresar el campo Resoluci\u00f3n de la acreditaci\u00f3n.","responsible_required":"Debes ingresar el campo responsable.","roles_required":"Debes seleccionar al menos un rol.","rotations_required":"Debes seleccionar al menos una rotaci\u00f3n.","sector_required":"Debes seleccionar campo sector.","select":"Seleccione","services_required":"Debes seleccionar al menos un servicio.","start_date_required":"Debes seleccionar fecha inicial.","subject_required":"Debes ingresar el campo asunto.","teacher_required":"Debes seleccionar docente.","term_end_required":"Debes ingresar el campo fecha fin vigencia.","term_rank":"El plazo m\u00ednimo del convenio debe ser de 1 a\u00f1o.","term_required":"Debes ingresar el campo plazo.","term_start_required":"Debes ingresar el campo fecha inicio vigencia.","text_create":"Deseas crear un nuevo registro","text_update":"Deseas actualizar este registro","title_approved_document":"\u00bfEst\u00e1 seguro que desea aprobar el documento?","title_create":"\u00bfCrear registro?","title_delete":"\u00bfEst\u00e1 seguro que desea eliminar este registro?","title_search_logs":"\u00bfBuscar logs?","title_send_notification":"\u00bfEsta seguro que desea enviar este correo?","title_update":"\u00bfActualizar registro?","typeprocess_required":"Debes seleccionar el tipo de proceso","url_required":"Debes ingresar el campo url.","user_required":"Debes seleccionar un usuario.","username_required":"Debes ingresar el campo usuario.","users_roles_required":"Debes ingresar roles o usuario o un correo en el campo para.","validity_accredited_required":"Debes ingresar el campo Vigencia de la acreditaci\u00f3n.","yes":"Si"}});})();