blob: b3338d1b35131106c6730f4abe68b90da1235bb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
<?php
// Heading
$_['heading_title'] = 'Opciones';
// Text
$_['text_success'] = 'Éxito: ¡Has modificado las opciones!';
$_['text_list'] = 'Lista de opciones';
$_['text_add'] = 'Agregar opción';
$_['text_edit'] = 'Editar Opción';
$_['text_choose'] = 'Escoger';
$_['text_select'] = 'Seleccionar';
$_['text_radio'] = 'Radio';
$_['text_checkbox'] = 'Caja';
$_['text_input'] = 'Entrada';
$_['text_text'] = 'Texto';
$_['text_textarea'] = 'Área de texto';
$_['text_file'] = 'Archivo';
$_['text_date'] = 'Fecha';
$_['text_datetime'] = 'Fecha & Hora';
$_['text_time'] = 'Hora';
$_['text_option'] = 'Opción';
$_['text_value'] = 'Valores de opción';
// Column
$_['column_name'] = 'Nombre de la opción';
$_['column_sort_order'] = 'Orden de Clasificación';
$_['column_action'] = 'Acción';
// Entry
$_['entry_name'] = 'Nombre de la opción';
$_['entry_type'] = 'Tipo';
$_['entry_option_value'] = 'Opción Nombre del valor';
$_['entry_image'] = 'Imagen';
$_['entry_sort_order'] = 'Orden de Clasificación';
// Error
$_['error_permission'] = 'Advertencia: ¡No tienes permiso para modificar las opciones!';
$_['error_name'] = 'El nombre de la opción debe estar entre 1 y 128 caracteres!';
$_['error_type'] = 'Advertencia: Opción Valores requeridos!';
$_['error_option_value'] = 'Opción Valor El nombre debe tener entre 1 y 128 caracteres.';
$_['error_product'] = 'Advertencia: ¡Esta opción no se puede eliminar ya que está asignada actualmente a %s products!';
|