mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
Merge branch 'feat/wiki' into 'main'
Feat/wiki See merge request jjimenez/safekat!581
This commit is contained in:
44
ci4/app/Language/en/Wiki.php
Normal file
44
ci4/app/Language/en/Wiki.php
Normal file
@ -0,0 +1,44 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'help' => "Help",
|
||||
'intro-admin' => "Introduction",
|
||||
'presupuesto-cliente' => "Client budget",
|
||||
'presupuesto-admin' => "Admin budget",
|
||||
'pedidos-cliente' => "Orders",
|
||||
'pedidos-admin' => "Orders",
|
||||
'facturacion-admin' => "Invoice",
|
||||
'facturacion-cliente' => "Invoice (Client)",
|
||||
'logistica-admin' => "Logistic",
|
||||
'tarifas-admin' => "Tariff",
|
||||
'tarifas-cliente' => "Tariff (Client)",
|
||||
'config-admin' => "Configuration",
|
||||
'messages-admin' => "Messages",
|
||||
'messages-cliente' => "Messages (Client)",
|
||||
'save' => "Save",
|
||||
'release' => "Release",
|
||||
'preview' => "Preview",
|
||||
'edit' => "Edit",
|
||||
'new_section' => "New section",
|
||||
'edit_section' => "Edit section",
|
||||
'header-placeholder' => "Start writing a header ...",
|
||||
'errors' => [
|
||||
'publish_before_save' => "You have to save before publish the content"
|
||||
],
|
||||
'alt' => [
|
||||
"sort" => "Drag to set the section order"
|
||||
],
|
||||
'order_success' => 'Order updated',
|
||||
'order_error' => 'An error has ocurred',
|
||||
'published' => 'Released',
|
||||
'not_published' => 'Not released',
|
||||
'section_new_success' => 'Section created successfully',
|
||||
'section_edit_success' => 'Section updated successfully',
|
||||
'need_reload' => 'You need to refresh the page after creating/updating a section to see the changes.',
|
||||
'file_dont_exist' => "File doesn't exist",
|
||||
'need_editor_to_save' => 'Need to be in edit mode to save the content.',
|
||||
'no_content' => 'Page is empty',
|
||||
'dropdown_roles' => 'Roles that can see this section',
|
||||
|
||||
|
||||
];
|
||||
@ -19,6 +19,7 @@ return [
|
||||
"global_come_back" => "Volver",
|
||||
"global_save" => "Guardar",
|
||||
"global_alert_save_success" => "¡Guardado exitosamente!",
|
||||
"global_alert_fetch_success" => "Obtenido exitosamente!",
|
||||
"global_alert_save_error" => "¡Error al guardar!",
|
||||
"global_activate" => "Activar",
|
||||
"global_disable" => "Desactivar",
|
||||
|
||||
50
ci4/app/Language/es/Wiki.php
Normal file
50
ci4/app/Language/es/Wiki.php
Normal file
@ -0,0 +1,50 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'help' => "Ayuda",
|
||||
'intro-admin' => "Introducción",
|
||||
'intro-cliente' => "Introducción",
|
||||
'presupuesto-cliente' => "Presupuesto (Cliente)",
|
||||
'presupuesto-admin' => "Presupuesto admin",
|
||||
'pedidos-admin' => "Pedidos",
|
||||
'pedidos-cliente' => "Pedidos (Cliente)",
|
||||
'facturacion-admin' => "Facturación",
|
||||
'facturacion-cliente' => "Facturación(Cliente)",
|
||||
'logistica-admin' => "Logística",
|
||||
'tarifas-admin' => "Tarifas",
|
||||
'tarifas-cliente' => "Tarifas (Cliente)",
|
||||
'config-admin' => "Configuración",
|
||||
'messages-admin' => "Mensajería",
|
||||
'messages-cliente' => "Mensajería (Cliente)",
|
||||
'save' => "Guardar",
|
||||
'release' => "Publicar",
|
||||
'preview' => "Vista previa",
|
||||
'edit' => "Editar",
|
||||
'name' => "Nombre sección",
|
||||
'icon' => "Icono sección",
|
||||
'section_placeholder' => "Introduce el nombre de la sección",
|
||||
'section_order' => "Orden",
|
||||
'section_icon_placeholder' => "Introduce el nombre de la sección",
|
||||
'edit_section' => "Editar sección",
|
||||
'new_section' => "Nueva sección",
|
||||
'header-placeholder' => "Escribe un encabezado ...",
|
||||
'errors' => [
|
||||
'publish_before_save' => "Es necesario guardar antes de publicar"
|
||||
],
|
||||
'alt' => [
|
||||
"sort" => "Arrastra para establecer el orden de la sección"
|
||||
],
|
||||
'order_success' => 'Orden actualizado correctamente',
|
||||
'order_error' => 'Ha ocurriendo un error al ordenar',
|
||||
'published' => 'Publicado',
|
||||
'not_published' => 'Sin publicar',
|
||||
'section_new_success' => 'Sección creada correctamente',
|
||||
'section_edit_success' => 'Sección actualizada correctamente',
|
||||
'need_reload' => 'Es necesario recargar la página para ver la nueva sección creada o editada.',
|
||||
'file_dont_exist' => 'El fichero no existe',
|
||||
'need_editor_to_save' => 'Tienes que estar en modo editar para guardar.',
|
||||
'no_content' => 'No hay contenido en la página',
|
||||
'dropdown_roles' => 'Roles que pueden ver la sección',
|
||||
|
||||
|
||||
];
|
||||
Reference in New Issue
Block a user