Lines 1450-1559javascript
1450function RlsContent({ children, identifier, rlsTheme }) {
1451 return (jsxRuntimeExports.jsx("div", { id: identifier, className: "rls-app__page__content", "rls-theme": rlsTheme, children: children }));
1456 alphabetic: 'Campo solo permite caracteres',
1457 alphanumber: 'Campo solo permite caracteres y número',
1458 checked: 'Campo debe ser seleccionado',
1459 decimal: 'Campo debe ser número decimal',
1460 defined: 'Campo debe estar definido',
1461 email: 'Campo debe ser correo electrónico',
1462 greaterThanValue: 'Campo debe tener un valor mayor a {thanValue}',
1463 greaterOrEqualsThanValue: 'Campo debe tener un valor mayor o igual a {thanValue}',
1464 lessThanValue: 'Campo debe tener un valor menor a {thanValue}',
1465 lessOrEqualsThanValue: 'Campo debe tener un valor menor o igual a {thanValue}',
1466 maxValue: 'Campo debe tener un valor máximo de {thanValue}',
1467 minValue: 'Campo debe tener un valor mínimo de {thanValue}',
1468 nickname: 'Campo inválido para nombre de usuario',
1469 onlyNumber: 'Campo debe ser númerico',
1470 password: 'Campo no permitido para password',
1471 required: 'Campo es requerido',
1472 strMinlength: 'Campo debe tener mínimo {length} caracter(es)',
1473 strMaxlength: 'Campo debe tener máximo {length} caracter(es)',
1474 strReqLength: 'Campo debe tener {length} caracter(es)',
1475 textonly: 'Campo solo permite caracteres (sin espacio)',
1476 _unknown: 'Campo inválido {error}'
1479 alphabetic: 'Field only allows characters',
1480 alphanumber: 'Field only allows characters and number',
1481 checked: 'Field must be selected',
1482 decimal: 'Field must be decimal number',
1483 defined: 'Field must be defined',
1484 email: 'Field must be email',
1485 greaterThanValue: 'Field must have a value greater than {thanValue}',
1486 greaterOrEqualsThanValue: 'Field must have a value greater than or equal to {thanValue}',
1487 lessThanValue: 'Field must have a value less than {thanValue}',
1488 lessOrEqualsThanValue: 'Field must have a value less than or equal to {thanValue}',
1489 minValue: 'Field must have a minimum value of {thanValue}',
1490 maxValue: 'Field must have a maximum value of {thanValue}',
1491 nickname: 'Invalid field for username',
1492 onlyNumber: 'Field must be numeric',
1493 password: 'Field not allowed for password',
1494 strReqLength: 'Field must be {length} characters',
1495 required: 'Field is required',
1496 strMinlength: 'Field must have minimum {length} characters',
1497 strMaxlength: 'Field must have maximum {length} characters',
1498 textonly: 'Field only allows characters (no space)',
1499 _unknown: 'Invalid field {error}'
1502 alphabetic: 'Field only allows characters',
1503 alphanumber: 'Field only allows characters and number',
1504 checked: 'Field must be selected',
1505 decimal: 'Field must be decimal number',
1506 defined: 'Field must be defined',
1507 email: 'Field must be email',
1508 greaterThanValue: 'Field must have a value greater than {thanValue}',
1509 greaterOrEqualsThanValue: 'Field must have a value greater than or equal to {thanValue}',
1510 lessThanValue: 'Field must have a value less than {thanValue}',
1511 lessOrEqualsThanValue: 'Field must have a value less than or equal to {thanValue}',
1512 minValue: 'Field must have a minimum value of {thanValue}',
1513 maxValue: 'Field must have a maximum value of {thanValue}',
1514 nickname: 'Invalid field for username',
1515 onlyNumber: 'Field must be numeric',
1516 password: 'Field not allowed for password',
1517 strReqLength: 'Field must be {length} characters',
1518 required: 'Field is required',
1519 strMinlength: 'Field must have minimum {length} characters',
1520 strMaxlength: 'Field must have maximum {length} characters',
1521 textonly: 'Field only allows characters (no space)',
1522 _unknown: 'Invalid field {error}'
1525 alphabetic: 'Field only allows characters',
1526 alphanumber: 'Field only allows characters and number',
1527 checked: 'Field must be selected',
1528 decimal: 'Field must be decimal number',
1529 defined: 'Field must be defined',
1530 email: 'Field must be email',
1531 greaterThanValue: 'Field must have a value greater than {thanValue}',
1532 greaterOrEqualsThanValue: 'Field must have a value greater than or equal to {thanValue}',
1533 lessThanValue: 'Field must have a value less than {thanValue}',
1534 lessOrEqualsThanValue: 'Field must have a value less than or equal to {thanValue}',
1535 minValue: 'Field must have a minimum value of {thanValue}',
1536 maxValue: 'Field must have a maximum value of {thanValue}',
1537 nickname: 'Invalid field for username',
1538 onlyNumber: 'Field must be numeric',
1539 password: 'Field not allowed for password',
1540 strReqLength: 'Field must be {length} characters',
1541 required: 'Field is required',
1542 strMinlength: 'Field must have minimum {length} characters',
1543 strMaxlength: 'Field must have maximum {length} characters',
1544 textonly: 'Field only allows characters (no space)',
1545 _unknown: 'Invalid field {error}'
1548let _msgErrorsI18n = i18n(errors);
1549function setErrorsI18n(dictionary) {
1550 _msgErrorsI18n = i18n(Object.entries(errors).reduce((errors, [key, value]) => {
1551 // Merge keys from dictionary in errors i18n
1559function msgErrorsI18n(key, language, interpolators) {