PHP Classes

File: aksara/Language/es/CLI.php

Recommend this page to a friend!
  Packages of Aby Dahana   Aksara   aksara/Language/es/CLI.php   Download  
File: aksara/Language/es/CLI.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Aksara
A CodeIgniter based API and CRUD generator
Author: By
Last change:
Date: 1 month ago
Size: 4,183 bytes
 

Contents

Class file image Download
<?php

/**
 * This file is part of Aksara CMS, both framework and publishing
 * platform.
 *
 * @author Aby Dahana <abydahana@gmail.com>
 * @copyright (c) Aksara Laboratory <https://aksaracms.com>
 * @license MIT License
 *
 * This source file is subject to the MIT license that is bundled
 * with this source code in the LICENSE.txt file.
 *
 * When the signs come, those who don't believe at "that time"
 * will have only two choices, commit suicide or become brutal.
 */

declare(strict_types=1);

/**
 * This file is part of CodeIgniter 4 framework.
 *
 * (c) CodeIgniter Foundation <admin@codeigniter.com>
 *
 * For the full copyright and license information, please view
 * the LICENSE file that was distributed with this source code.
 */

// CLI language settings
return [
   
'altCommandPlural' => '¿Te refieres a uno de estos?', // Did you mean one of these?',
   
'altCommandSingular' => '¿Te refieres a esto?', // 'Did you mean this?',
   
'commandNotFound' => 'Comando "{0}" no encontrado.', // 'Command "{0}" not found.',
   
'generator' => [
       
'cancelOperation' => 'La operación ha sido cancelada.', // 'Operation has been cancelled.',
       
'className' => [
           
'cell' => 'Nombre de la clase Cell', // 'Cell class name',
           
'command' => 'Nombre de la clase Command', // 'Command class name',
           
'config' => 'Nombre de la clase Config', // 'Config class name',
           
'controller' => 'Nombre de la clase Controller', // 'Controller class name',
           
'default' => 'Nombre de la clase', // 'Class name',
           
'entity' => 'Nombre de la clase Entity', // 'Entity class name',
           
'filter' => 'Nombre de la clase Filter', // 'Filter class name',
           
'migration' => 'Nombre de la clase Migration', // 'Migration class name',
           
'model' => 'Nombre de la clase Model', // 'Model class name',
           
'seeder' => 'Nombre de la clase Seeder', // 'Seeder class name',
           
'test' => 'Nombre de la clase Test', // Test class name
           
'transformer' => 'Nombre de la clase Transformer', // Transformer class name
           
'validation' => 'Nombre de la clase Validation', // 'Validation class name',
       
],
       
'commandType' => 'Tipo de comando', // 'Command type',
       
'databaseGroup' => 'Grupo de base de datos', // 'Database group',
       
'fileCreate' => 'Archivo creado: {0}', // 'File created: {0}',
       
'fileError' => 'Error al crear el archivo: {0}', // 'Error while creating file: {0}',
       
'fileExist' => 'El archivo existe: {0}', // 'File exists: {0}',
       
'fileOverwrite' => 'Archivo sobrescrito: {0}', // 'File overwritten: {0}',
       
'parentClass' => 'Clase padre', // 'Parent class',
       
'returnType' => 'Tipo de retorno', // 'Return type',
       
'tableName' => 'Nombre de la tabla', // 'Table name',
       
'usingCINamespace' => 'Advertencia: El uso del espacio de nombres "CodeIgniter" generará el archivo en el directorio del sistema.', // 'Warning: Using the "CodeIgniter" namespace will generate the file in the system directory.'
       
'viewName' => [
           
'cell' => 'Nombre de la vista Cell', // 'Cell view name',
       
],
    ],
   
'helpArguments' => 'Argumentos:', // 'Arguments:',
   
'helpDescription' => 'Descripción:', // 'Description:',
   
'helpOptions' => 'Opciones:', // 'Options:',
   
'helpUsage' => 'Uso:', // 'Usage:',
   
'invalidColor' => 'Inválido {0} color: {1}.', // 'Invalid {0} color: {1}.',
   
'namespaceNotDefined' => 'El espacio de nombres "{0}" no está definido', // 'Namespace "{0}" is not defined.',
   
'signals' => [
       
'noPcntlExtension' => 'Extensión PCNTL no disponible. Manejo de señales deshabilitado.', // 'PCNTL extension not available. Signal handling disabled.',0
       
'noPosixExtension' => 'El manejo de SIGTSTP/SIGCONT requiere la extensión POSIX. Estas señales se eliminarán del registro.', // 'SIGTSTP/SIGCONT handling requires POSIX extension. These signals will be removed from registration.',
       
'failedSignal' => 'No se pudo registrar el manejador para la señal: "{0}".', // 'Failed to register handler for signal: "{0}".',
   
],
];