blob: 173629fa616bb29b80001043ba9fbc006ecbc8f5 (
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
|
<?php
// Heading
$_['heading_title'] = 'Comentarios';
// Text
$_['text_success'] = 'Éxito: ¡Has modificado las reseñas!';
$_['text_list'] = 'Lista de revisión';
$_['text_add'] = 'Agregar una opinión';
$_['text_edit'] = 'Editar revisión';
$_['text_filter'] = 'Filtrar';
// Column
$_['column_product'] = 'Producto';
$_['column_author'] = 'Autor';
$_['column_rating'] = 'Clasificación';
$_['column_status'] = 'Estado';
$_['column_date_added'] = 'Fecha Agregada';
$_['column_action'] = 'Acción';
// Entry
$_['entry_product'] = 'Producto';
$_['entry_author'] = 'Autor';
$_['entry_rating'] = 'Clasificación';
$_['entry_status'] = 'Estado';
$_['entry_text'] = 'Texto';
$_['entry_date_added'] = 'Fecha Agregada';
// Help
$_['help_product'] = '(Autocompletar)';
// Error
$_['error_permission'] = 'Advertencia: ¡No tienes permiso para modificar comentarios!';
$_['error_product'] = 'Producto requerido!';
$_['error_author'] = 'El autor debe tener entre 3 y 64 caracteres.';
$_['error_text'] = '¡El texto de la revisión debe tener por lo menos 1 carácter!';
$_['error_rating'] = 'Revisión crítica requerida!';
|