blob: 1d7014da370c469c0dbcafa3f71ead1a78134cd1 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
<?php
// Heading
$_['heading_title'] = 'Pedidos recurrentes';
// Text
$_['text_success'] = 'Éxito: ¡Has modificado perfiles recurrentes!';
$_['text_list'] = 'Lista de órdenes recurrentes';
$_['text_filter'] = 'Filtrar';
$_['text_recurring_detail'] = 'Detalles recurrentes';
$_['text_order_detail'] = 'Detalles de la orden';
$_['text_product_detail'] = 'Detalles del producto';
$_['text_transaction'] = 'Actas';
$_['text_order_recurring_id'] = 'ID de orden recurrente';
$_['text_reference'] = 'Referencia de pago';
$_['text_recurring_name'] = 'Perfil recurrente';
$_['text_recurring_description'] = 'Descripción';
$_['text_recurring_status'] = 'Estado recurrente';
$_['text_payment_method'] = 'Método de pago';
$_['text_order_id'] = 'ID del Pedido';
$_['text_customer'] = 'Cliente';
$_['text_email'] = 'Email';
$_['text_date_added'] = 'Fecha Agregada';
$_['text_order_status'] = 'Estado del pedido';
$_['text_type'] = 'Tipo';
$_['text_action'] = 'Acción';
$_['text_product'] = 'Producto';
$_['text_quantity'] = 'Cantidad';
$_['text_amount'] = 'Cantidad';
$_['text_cancel_payment'] = 'Cancelar Pago';
$_['text_status_1'] = 'Activo';
$_['text_status_2'] = 'Inactivo';
$_['text_status_3'] = 'Cancelado';
$_['text_status_4'] = 'Suspendido';
$_['text_status_5'] = 'Expirado';
$_['text_status_6'] = 'Pendiente';
$_['text_transactions'] = 'Actas';
$_['text_cancel_confirm'] = '¡La cancelación del perfil no se puede deshacer! ¿Seguro que quieres hacer esto?';
$_['text_transaction_date_added'] = 'Fecha Agregada';
$_['text_transaction_payment'] = 'Pago';
$_['text_transaction_outstanding_payment'] = 'Pago pendiente';
$_['text_transaction_skipped'] = 'Pago omitido';
$_['text_transaction_failed'] = 'Pago fallido';
$_['text_transaction_cancelled'] = 'Cancelado';
$_['text_transaction_suspended'] = 'Suspendido';
$_['text_transaction_suspended_failed'] = 'Suspensión del pago fallido';
$_['text_transaction_outstanding_failed'] = 'Falló el pago pendiente';
$_['text_transaction_expired'] = 'Expirado';
$_['text_cancelled'] = 'Se canceló el pago recurrente';
// Column
$_['column_order_recurring_id'] = 'ID recurrente';
$_['column_order_id'] = 'ID del Pedido';
$_['column_reference'] = 'Referencia de pago';
$_['column_customer'] = 'Cliente';
$_['column_date_added'] = 'Fecha Agregada';
$_['column_status'] = 'Estado';
$_['column_amount'] = 'Cantidad';
$_['column_type'] = 'Tipo';
$_['column_action'] = 'Acción';
// Entry
$_['entry_order_recurring_id'] = 'ID recurrente';
$_['entry_order_id'] = 'ID del Pedido';
$_['entry_reference'] = 'Referencia de pago';
$_['entry_customer'] = 'Cliente';
$_['entry_date_added'] = 'Fecha Agregada';
$_['entry_status'] = 'Estado';
$_['entry_type'] = 'Tipo';
$_['entry_action'] = 'Acción';
$_['entry_email'] = 'Email';
$_['entry_description'] = 'Descripción del perfil recurrente';
$_['entry_product'] = 'Producto';
$_['entry_quantity'] = 'Cantidad';
$_['entry_amount'] = 'Monto';
$_['entry_recurring'] = 'Perfil recurrente';
$_['entry_payment_method'] = 'Método de pago';
$_['entry_cancel_payment'] = 'Cancelar Pago';
// Error
$_['error_not_cancelled'] = 'Error: %s';
$_['error_not_found'] = 'No se pudo cancelar el perfil recurrente';
|