mirror of
				https://gitlab.com/ruany/litebans-php.git
				synced 2025-10-30 22:42:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			49 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
| <?php
 | |
| class es_ES {
 | |
|     public function __construct() {
 | |
|         $array = array();
 | |
|         $this->array = &$array;
 | |
|         $array["index.welcome.main"] = 'Bienvenido a la Lista de Sanciones de {server}.';
 | |
|         $array["index.welcome.sub"] = 'Aquí se encuntran todas las Sanciones del Servidor.';
 | |
| 
 | |
|         $array["title.index"] = 'Inicio';
 | |
|         $array["title.bans"] = 'Baneos';
 | |
|         $array["title.mutes"] = 'Muteos';
 | |
|         $array["title.warnings"] = 'Advertencias';
 | |
|         $array["title.kicks"] = 'Expulsiones';
 | |
| 
 | |
|         $array["page.permanent.ban"] = 'Baneo Permanente';
 | |
|         $array["page.permanent.mute"] = 'Muteo Permanente';
 | |
|         $array["page.permanent.warning"] = 'Permanente';
 | |
|         $array["page.expired.ban"] = '(Desbaneado)';
 | |
|         $array["page.expired.ban-by"] = '(Desbaneado por {name})';
 | |
|         $array["page.expired.mute"] = '(Desmuteado)';
 | |
|         $array["page.expired.mute-by"] = '(Desmuteado por {name})';
 | |
|         $array["page.expired.warning"] = '(Expirado)';
 | |
| 
 | |
|         $array["check.username"] = "Jugador";
 | |
|         $array["action.check"] = "Buscar";
 | |
|         $array["table.pager.number"] = "Página";
 | |
| 
 | |
|         $array["error.name.unseen"] = "no existe.";
 | |
| 
 | |
|         $array["title.staff-history"] = "Sanciones Recientes por ";
 | |
|         $array["title.player-history"] = "Sanciones Recientes para ";
 | |
|         $array["history.type"] = "Sanción";
 | |
| 
 | |
|         $array["history.error.uuid.no-result"] = "Castigos No Encontrados.";
 | |
|         $array["action.return"] = "Volver a";
 | |
| 
 | |
|         $array["table.received-warning"] = "¿Advertencia Recibida?";
 | |
| 
 | |
|         // Errors which are only accessible from invalid user input or removed pages.
 | |
|         $array["error.name.invalid"] = "Nombre Inválido.";
 | |
|         $array["history.error.uuid.required"] = "Argumentos Inválidos (uuid).";
 | |
|         $array["info.error.type-id.required"] = "Argumentos Inválidos (tipo, id).";
 | |
|         $array["info.error.type.invalid"] = "La página que deseas visitar no existe.";
 | |
|         $array["info.error.id.invalid"] = "ID Inválida";
 | |
|         $array["info.error.id.no-result"] = "Error: ";
 | |
| 
 | |
|     }
 | |
| }
 | 
