Añadiendo idiomas

This commit is contained in:
unknown
2025-04-26 21:22:39 +02:00
parent 033184cfa2
commit 9375b9b624
2 changed files with 78 additions and 3 deletions

View File

@ -27,13 +27,13 @@ class ImportadorCatalogo extends BaseResourceController
public function initController(\CodeIgniter\HTTP\RequestInterface $request, \CodeIgniter\HTTP\ResponseInterface $response, \Psr\Log\LoggerInterface $logger)
{
$this->viewData['pageTitle'] = lang('Catalogo.listingPage');
$this->viewData['pageTitle'] = lang('Importador.listingPage');
$this->viewData['usingSweetAlert'] = true;
// Breadcrumbs (IMN)
$this->viewData['breadcrumb'] = [
['title' => lang("App.menu_catalogo"), 'route' => "javascript:void(0);", 'active' => false],
['title' => lang("App.menu_catalogo_libros"), 'route' => route_to('catalogoLibrosList'), 'active' => true]
['title' => lang("App.menu_importador"), 'route' => "javascript:void(0);", 'active' => false],
['title' => lang("App.menu_importador_catalogo"), 'route' => route_to('importadorCatalogoTool'), 'active' => true]
];
parent::initController($request, $response, $logger);