motor-admin 0.1.64 → 0.1.70

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0241a4e5ecb99619c75457e1694e8deb4fc1bb3ddc2d4a3db3fcd9082c1f3997
4
- data.tar.gz: b6a4269bfed8f4bd56fabf7f73897e2abf3d0e305a6ff58d45406dddd80c90f5
3
+ metadata.gz: 02757b4dc451f8f6e177860318c61961e0136608886e8da9356c16a338acc43a
4
+ data.tar.gz: c5edccdaa00543b47a4f723d7cb41b80597bf1af9e8e93176404c357de04e874
5
5
  SHA512:
6
- metadata.gz: 5395c69f5ecfc86fe5854327d8dad4b8ca361d710beeb2e1cca424da36e3f0876b10aa727a878f4109119d1ad72a846c9585c4adf214021cb9abf30e4d5252dc
7
- data.tar.gz: d577fe177e037f2dcc9d4390fbaf950ede4a5afb961b1a682e76b9108b59fcf8ddb787aad5fb7e958a7440c7d950104ce3a0ce009063b1069df0688485f1f4e0
6
+ metadata.gz: f90f9a091f038f7a5d5815041181d921adb990402233b1c7bda4de4cd1fa48013d4f0cb689b7d244d9f711830db184cba505aeed17e1b37227872e8eb71b6f61
7
+ data.tar.gz: a10ce5ef3e4880ca4010529c35dbed9fe440973b09239e6fbc85f7009d65f2b3f0ee87f9cf25e5a26c46550e567dd1f0d884487b8d32ba29942571250bd15ae6
data/README.md CHANGED
@@ -27,6 +27,7 @@ $ rails motor:install && rake db:migrate
27
27
 
28
28
  * [Customizable CRUD](#customizable-crud)
29
29
  * [Custom actions](#custom-actions)
30
+ * [Virtual attributes](#virtual-attributes)
30
31
  * [Forms builder](#forms-builder)
31
32
  * [SQL queries](#sql-queries)
32
33
  * [Data visualization](#data-visualization)
@@ -34,6 +35,7 @@ $ rails motor:install && rake db:migrate
34
35
  * [Email alerts](#email-alerts)
35
36
  * [Authorization](#authorization)
36
37
  * [Intelligence search](#intelligence-search)
38
+ * [I18n](#i18n)
37
39
  * [Optimized for mobile](#optimized-for-mobile)
38
40
  * [Configurations sync between environments](#configurations-sync)
39
41
 
@@ -53,11 +55,28 @@ Data displayed on the resource page can be completely customized via [SQL querie
53
55
 
54
56
  Custom resource actions can be added via Active Record method call, API endpoint, or [custom forms](#forms-builder). Also, it's possible to override default create/update/delete actions.
55
57
 
58
+ ### Virtual attributes
59
+
60
+ Any ActiveRecord model method or attribute can be exposed to the admin panel by adding a new column with the name that matches the method name from the resource model:
61
+
62
+ ```ruby
63
+ class Customer < ApplicationRecord
64
+ has_many :orders
65
+
66
+ def lifetime_value
67
+ orders.sum(&:total_price)
68
+ end
69
+ end
70
+ ```
71
+
72
+ ![Virtual attribute](https://user-images.githubusercontent.com/5418788/123373683-76321c80-d58e-11eb-914d-675444b7eb2a.png)
73
+
56
74
  ### Forms Builder
57
75
 
58
76
  ![Custom form](https://user-images.githubusercontent.com/5418788/119264008-1391dd80-bbea-11eb-9f14-cb405e77fb60.png)
59
77
 
60
- Values from the form fields can be used in API path via `{field_name}` syntax: `/api/some-endpoint/{resource_id}/apply`
78
+ Values from the form fields can be used in API path via `{field_name}` syntax: `/api/some-endpoint/{resource_id}/apply`.<br>
79
+ [Learn more about custom forms builder](https://github.com/omohokcoj/motor-admin/blob/master/guides/building_custom_forms.md).
61
80
 
62
81
  ### SQL Queries
63
82
 
@@ -95,6 +114,25 @@ Intelligence search can be opened via the top right corner button or using <kbd>
95
114
 
96
115
  Motor Admin allows to set row-level and column-level permissions via [cancan](https://github.com/CanCanCommunity/cancancan) gem. Admin UI permissions should be defined in `app/models/motor/ability.rb` file in `Motor::Ability` class. See [Motor Admin guide](https://github.com/omohokcoj/motor-admin/blob/master/guides/defining_permissions.md) and [CanCan documentation](https://github.com/CanCanCommunity/cancancan/blob/develop/docs/Defining-Abilities.md) to learn how to define user permissions.
97
116
 
117
+ ### I18n
118
+
119
+ Motor Admin can use Rails ActiveRecord i18n keys to render resource translations:
120
+
121
+ ```yml
122
+ es:
123
+ activerecord:
124
+ models:
125
+ customer:
126
+ one: Cliente
127
+ other: Clientes
128
+ attributes:
129
+ customer:
130
+ name: Nombre
131
+ scopes:
132
+ customer:
133
+ enabled: Activado
134
+ ```
135
+
98
136
  ### Optimized for Mobile
99
137
 
100
138
  ![motor-mobile](https://user-images.githubusercontent.com/5418788/119269566-03392d00-bc01-11eb-9e9d-1f6a58fe0749.png)
@@ -5,6 +5,12 @@ module Motor
5
5
  include Motor::CurrentUserMethod
6
6
  include Motor::CurrentAbility
7
7
 
8
+ if defined?(ActionText::Content)
9
+ before_action do
10
+ ActionText::Content.renderer = Motor::ApplicationController.renderer.new(request.env)
11
+ end
12
+ end
13
+
8
14
  unless Rails.env.test?
9
15
  rescue_from StandardError do |e|
10
16
  Rails.logger.error(e)
@@ -1,5 +1,5 @@
1
1
  <!DOCTYPE html>
2
- <html>
2
+ <html lang="<%= I18n.locale %>">
3
3
  <head>
4
4
  <title>Motor Admin</title>
5
5
  <meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=no">
@@ -0,0 +1,217 @@
1
+ en:
2
+ motor:
3
+ action_has_been_applied: Action has been applied!
4
+ action_has_failed_with_code: Action failed with code
5
+ action_type: Action type
6
+ actions: Actions
7
+ add: Add
8
+ add_action: Add Action
9
+ add_alert: Add Alert
10
+ add_column: Add Column
11
+ add_dashboard: Add Dashboard
12
+ add_field: Add Field
13
+ add_filter: Add Filter
14
+ add_form: Add Form
15
+ add_group: Add Group
16
+ add_item: Add Item
17
+ add_link: Add Link
18
+ add_query: Add Query
19
+ add_scope: Add Scope
20
+ add_tab: Add Tab
21
+ alert_email_has_been_sent: Alert email has been sent!
22
+ alert_has_been_activated: Alert has been activated
23
+ alert_has_been_disabled: Alert has been disabled
24
+ alert_has_been_saved: Alert has been saved!
25
+ alert_name: Alert name
26
+ alerts: Alerts
27
+ all: All
28
+ all_resources: All Resources
29
+ and: And
30
+ api: API
31
+ api_path: API path
32
+ api_request: API request
33
+ apply: Apply
34
+ are_you_sure: Are you sure?
35
+ associations: Associations
36
+ bar_chart: Bar chart
37
+ base: Base
38
+ boolean: Boolean
39
+ cancel: Cancel
40
+ cents: Cents
41
+ checkbox: Checkbox
42
+ clear_all: Clear All
43
+ clear_selection: Clear selection
44
+ close: Close
45
+ close_editor: Close editor
46
+ close_settings: Close Settings
47
+ close_variables: Close Variables
48
+ columns: Columns
49
+ contains: Contains
50
+ create: Create
51
+ currency: Currency
52
+ dashboard: Dashboard
53
+ dashboard_has_been_saved: Dashboard has been saved!
54
+ dashboard_title: Dashboard title
55
+ dashboards: Dashboards
56
+ date: Date
57
+ date_and_time: Date and Time
58
+ decimal: Decimal
59
+ default: Default
60
+ default_value: Default value
61
+ describe_this_alert_optional: Describe this alert (optional)
62
+ describe_your_dashboard_optional: Describe your dashboard (optional)
63
+ describe_your_form_optional: Describe your form (optional)
64
+ describe_your_query_optional: Describe your query (optional)
65
+ description: Description
66
+ deselect_all: Deselect All
67
+ details: Details
68
+ disable: Disable
69
+ display_as: Display as
70
+ edit: Edit
71
+ edit_sql: Edit SQL
72
+ emails: Emails
73
+ ends_with: Ends with
74
+ equal_to: Equal to
75
+ every_day_at_hh_mm: every day at HH:mm PM...
76
+ excludes: excludes
77
+ field_is_not_a_number: '%{field} is not a number'
78
+ field_is_required: '%{field} is required'
79
+ field_list_cant_be_empty: "%{field} list can't be empty"
80
+ field_must_be_exactly_in_length: '%{field} must be exactly %{length} in length'
81
+ field_name: Field name
82
+ field_value_does_not_match_pattern: '%{field} value does not match %{pattern}'
83
+ file: File
84
+ filters: Filters
85
+ form: Form
86
+ form_has_been_saved: Form has been saved!
87
+ form_has_been_submitted_successfully: Form has been submitted successfully!
88
+ form_name: Form name
89
+ forms: Forms
90
+ funnel: Funnel
91
+ greater_or_equal: Greater or equal
92
+ greater_than: Greater than
93
+ greater_than_or_equal_to: Greater than or equal to
94
+ group_name: Group name
95
+ has_been_created: has been created
96
+ has_been_removed_succesfully: has been removed succesfully
97
+ has_been_updated: has been updated
98
+ hello_admin: Hello Admin 👋
99
+ hidden: Hidden
100
+ image: Image
101
+ includes: Includes
102
+ input_type: Input type
103
+ integer: Integer
104
+ interval: Interval
105
+ is: Is
106
+ is_not: Is not
107
+ items_has_been_removed: items has been removed
108
+ items_will_be_removed: '%{count} items will be removed'
109
+ json: JSON
110
+ label: Currency
111
+ less_or_equal: Less or equal
112
+ less_than: Less than
113
+ less_than_or_equal_to: Less than or equal to
114
+ line_chart: Line chart
115
+ link_name: Link name
116
+ links: Links
117
+ load_initial_data: Load initial data
118
+ loading: Loading...
119
+ looks_like_you_are_new_here: Looks like you are new here 🙃
120
+ markdown: Markdown
121
+ method: Method
122
+ method_call: Method call
123
+ multiple: Multiple
124
+ name: Name
125
+ new_alert: New alert
126
+ new_dashboard: New dashboard
127
+ new_form: New form
128
+ new_query: New query
129
+ no_data: No data
130
+ not_found: Not Found
131
+ number: Number
132
+ ok: OK
133
+ options_separated_with_new_line_or_comma: Options separated with new line or comma
134
+ or: Or
135
+ other_than: Other than
136
+ param_name: Param name
137
+ path: Path
138
+ percent: Percent
139
+ pie_chart: Pie chart
140
+ queries: Queries
141
+ query: Query
142
+ query_has_been_saved: Query has been saved!
143
+ query_name: Query name
144
+ query_not_selected: Query not selected
145
+ query_revisions: Query Revisions
146
+ read_only: Read-Only
147
+ read_write: Read-Write
148
+ reference: Reference
149
+ reference_resource: Reference resource
150
+ remove: Remove
151
+ reports: Reports
152
+ request_param: Request param
153
+ required: Required
154
+ resource_filters: '%{resource} Filters'
155
+ resource_settings: '%{resource} Settings'
156
+ resources: Resources
157
+ resubmit: Resubmit
158
+ revert: Revert
159
+ revision_has_been_applied: Revision has been applied
160
+ revisions: Revisions
161
+ row_chart: Row chart
162
+ save: Save
163
+ save_and_create_new: Save and Create New
164
+ save_as_new: Save as new
165
+ save_dashboard: Save dashboard
166
+ save_form: Save form
167
+ save_query: Save query
168
+ scopes: Scopes
169
+ search: Search
170
+ search_placeholder: Search...
171
+ search_query: Search Query
172
+ select: Select
173
+ select_alert_tags: Select alert tags
174
+ select_dashboard: Select dashboard
175
+ select_dashboard_tags: Select dashboard tags
176
+ select_form: Select form
177
+ select_form_tags: Select dashform tags
178
+ select_options: Select options
179
+ select_placeholder: Select...
180
+ select_query: Select query
181
+ select_query_tags: Select query tags
182
+ select_resource_placeholder: Select resource...
183
+ selected_item_has_been_removed: Selected item has been removed
184
+ selected_item_will_be_removed: Selected item will be removed
185
+ selected_item_will_be_removed_are_you_sure: Selected item will be removed. Are you sure?
186
+ send_empty: Send empty?
187
+ send_now: Send Now
188
+ send_to: Send to
189
+ set_tags: Set tags
190
+ settings: Settings
191
+ should_be_a_valid_json: Should be a valid JSON
192
+ should_be_error_constraint: 'Should be %{error} %{constraint}'
193
+ stacked_bars: Stacked bars
194
+ starts_with: Starts with
195
+ submit: Submit
196
+ tab_type: Tab type
197
+ table: Table
198
+ tabs: Tabs
199
+ tags: Tags
200
+ text: Text
201
+ textarea: Textarea
202
+ timezone: Timezone
203
+ title: Title
204
+ type: Type
205
+ unable_to_load_form_data: Unable to load form data
206
+ unable_to_remove_item: Unable to remove item
207
+ unable_to_remove_items: Unable to remove items
208
+ unable_to_send_email: Unable to send email
209
+ unable_to_submit_form: Unable to submit form
210
+ unit: Unit
211
+ value: Value
212
+ values_axis: Values axis
213
+ variables: Variables
214
+ visibility: Visibility
215
+ visualization: Visualization
216
+ write_only: Write-Only
217
+ richtext: Richtext
@@ -0,0 +1,302 @@
1
+ es:
2
+ motor:
3
+ action_has_been_applied: ¡Acción aplicada!
4
+ action_has_failed_with_code: La acción falló con código
5
+ action_type: Tipo de acción
6
+ actions: Acciones
7
+ add: Añadir
8
+ add_action: Añadir Acción
9
+ add_alert: Añadir Alerta
10
+ add_column: Añadir Columna
11
+ add_dashboard: Añadir Dashboard
12
+ add_field: Añadir Campo
13
+ add_filter: Añadir Filtro
14
+ add_form: Añadir Formulario
15
+ add_group: Añadir Grupo
16
+ add_item: Añadir Elemento
17
+ add_link: Añadir Link
18
+ add_query: Añadir Consulta
19
+ add_scope: Añadir Alcance
20
+ add_tab: Añadir Pestaña
21
+ alert_email_has_been_sent: ¡Email de alerta enviado!
22
+ alert_has_been_activated: Alerta activada
23
+ alert_has_been_disabled: Alerta desactivada
24
+ alert_has_been_saved: ¡Alerta guardada!
25
+ alert_name: Nombre de la alerta
26
+ all_resources: Todos los Recursos
27
+ and: Y
28
+ api_path: Dirección en API
29
+ apply: Aplicar
30
+ are_you_sure: ¿Estás seguro?
31
+ associations: Asociaciones
32
+ bar_chart: Gráfico de barras
33
+ base: Base
34
+ cancel: Cancelar
35
+ clear_all: Quitar todos
36
+ clear_selection: Quitar selección
37
+ close: Cerrar
38
+ close_editor: Cerrar editor
39
+ close_settings: Cerrar Configuración
40
+ close_variables: Cerrar Variables
41
+ columns: Columnas
42
+ create: Crear
43
+ currency: Moneda
44
+ dashboard_has_been_saved: ¡Dashboard guardado!
45
+ dashboard_title: Título del dashboard
46
+ decimal: Decimal
47
+ default_value: Valor por defecto
48
+ describe_this_alert_optional: Describe esta alerta (opcional)
49
+ describe_your_dashboard_optional: Describe tu dashboard (opcional)
50
+ describe_your_form_optional: Describe tu formulario (opcional)
51
+ describe_your_query_optional: Describe tu consulta (opcional)
52
+ description: Descripción
53
+ deselect_all: Deseleccionar todo
54
+ disable: Desactivar
55
+ display_as: Mostrar como
56
+ edit: Editar
57
+ edit_sql: Editar SQL
58
+ emails: Emails
59
+ every_day_at_hh_mm: todos los días a las HH:mm PM...
60
+ field_name: Nombre del campo
61
+ filters: Filtros
62
+ form: Formulario
63
+ form_has_been_saved: ¡Formulario guardado!
64
+ form_has_been_submitted_successfully: ¡Formulario enviado con éxito!
65
+ form_name: Nombre del formulario
66
+ forms: Formularios
67
+ funnel: Embudo
68
+ group_name: Nombre del grupo
69
+ has_been_created: creado
70
+ has_been_removed_succesfully: eliminado con éxito
71
+ has_been_updated: actualizado
72
+ hello_admin: Hola Admin 👋
73
+ input_type: Tipo de campo
74
+ interval: Intervalo
75
+ items_has_been_removed: elementos fueron eliminados
76
+ label: Moneda
77
+ line_chart: Gráfico de líneas
78
+ link_name: Nombre del link
79
+ links: Links
80
+ load_initial_data: Cargar datos iniciales
81
+ loading: Cargando...
82
+ looks_like_you_are_new_here: Parece que eres nuevo aquí 🙃
83
+ markdown: Markdown
84
+ method: Método
85
+ multiple: Múltiple
86
+ name: Nombre
87
+ new_alert: Nueva alerta
88
+ new_dashboard: Nuevo dashboard
89
+ new_form: Nuevo formulario
90
+ new_query: Nueva consulta
91
+ no_data: Sin datos
92
+ not_found: Sin resultados
93
+ ok: OK
94
+ options_separated_with_new_line_or_comma: Las opciones van separadas con una nueva línea o una coma
95
+ param_name: Nombre del parámetro
96
+ path: Dirección
97
+ percent: Porcentaje
98
+ pie_chart: Gráfico circular
99
+ query: Consulta
100
+ query_has_been_saved: ¡Consulta guardada!
101
+ query_name: Nombre de la consulta
102
+ query_not_selected: Consulta no seleccionada
103
+ query_revisions: Revisiones de la consulta
104
+ reference: Referencia
105
+ reference_resource: Recurso de referencia
106
+ remove: Eliminar
107
+ reports: Reportes
108
+ request_param: Parametro de request
109
+ resources: Recursos
110
+ resubmit: Reenviar
111
+ revert: Revertir
112
+ revision_has_been_applied: Revisión aplicada
113
+ revisions: Revisiones
114
+ row_chart: Gráfico de filas
115
+ save: Guardar
116
+ save_and_create_new: Guardar y crear otro
117
+ save_as_new: Guardar como nuevo
118
+ save_dashboard: Guardar dashboard
119
+ save_form: Guardar formulario
120
+ save_query: Guardar consulta
121
+ scopes: Alcances
122
+ search: Buscar
123
+ search_placeholder: Buscar...
124
+ select_alert_tags: Etiquetas de alerta
125
+ select_dashboard: Seleccionar dashboard
126
+ select_dashboard_tags: Etiquetas de dashboard
127
+ select_form: Seleccionar formulario
128
+ select_form_tags: Etiquetas de formulario
129
+ select_options: Seleccionar opciones
130
+ select_placeholder: Seleccionar...
131
+ select_query: Seleccionar consulta
132
+ select_query_tags: Etiquetas de consulta
133
+ select_resource_placeholder: Seleccionar recurso...
134
+ selected_item_has_been_removed: El elemento seleccionado fue eliminado
135
+ selected_item_will_be_removed_are_you_sure: El elemento seleccionado será eliminado. ¿Estás seguro?
136
+ send_empty: ¿Enviar sin contenido?
137
+ send_now: Enviar ahora
138
+ send_to: Enviar a
139
+ set_tags: Seleccionar etiquetas
140
+ settings: Configuración
141
+ stacked_bars: Barras apiladas
142
+ submit: Enviar
143
+ tab_type: Tipo de pestaña
144
+ table: Tabla
145
+ tabs: Pestañas
146
+ tags: Etiquetas
147
+ timezone: Zona horaria
148
+ title: Título
149
+ type: Tipo
150
+ unable_to_load_form_data: No se pudieron cargar los datos del formulario
151
+ unable_to_remove_item: No se pudo eliminar el elemento
152
+ unable_to_remove_items: No se pudieron eliminar los elementos
153
+ unable_to_send_email: No se pudo enviar el email
154
+ unable_to_submit_form: No se pudo enviar el formulario
155
+ value: Valor
156
+ values_axis: Eje de valores
157
+ variables: Variables
158
+ visibility: Visibilidad
159
+ visualization: Visualización
160
+ alerts: Alertas
161
+ all: Todo
162
+ api: API
163
+ api_request: Request a una API
164
+ boolean: Booleano
165
+ cents: Centavos
166
+ checkbox: Checkbox
167
+ contains: Contiene
168
+ dashboard: Dashboard
169
+ dashboards: Dashboards
170
+ date: Fecha
171
+ date_and_time: Fecha y hora
172
+ default: Por defecto
173
+ details: Detalles
174
+ ends_with: Termina con
175
+ equal_to: Igual a
176
+ excludes: no contiene
177
+ field_is_not_a_number: '%{field} no es un número'
178
+ field_is_required: '%{field} es obligatorio'
179
+ field_list_cant_be_empty: "La lista %{field} no puede estar vacía"
180
+ field_must_be_exactly_in_length: '%{field} debe tener un largo de %{length} caracteres'
181
+ field_value_does_not_match_pattern: 'El valor de %{field} no coincide con %{pattern}'
182
+ file: Archivo
183
+ greater_or_equal: Mayor o igual
184
+ greater_than: Mayor que
185
+ greater_than_or_equal_to: Mayor o igual a
186
+ hidden: Esconder
187
+ image: Imagen
188
+ includes: Incluye
189
+ integer: Entero
190
+ is: Es
191
+ is_not: No es
192
+ items_will_be_removed: 'Se eliminarán %{count} elementos'
193
+ json: JSON
194
+ less_or_equal: Menor o igual
195
+ less_than: Menor que
196
+ less_than_or_equal_to: Menor o igual a
197
+ method_call: Llamado a método
198
+ number: Número
199
+ or: O
200
+ other_than: Otro que no sea
201
+ queries: Consultas
202
+ read_only: Sólo lectura
203
+ read_write: Lectura y escritura
204
+ required: Obligatorio
205
+ resource_filters: 'Filtros de %{resource}'
206
+ resource_settings: 'Configuración de %{resource}'
207
+ search_query: Buscar consulta
208
+ select: Selección
209
+ selected_item_will_be_removed: El elemento seleccionado será eliminado
210
+ should_be_a_valid_json: Debe ser un JSON válido
211
+ should_be_error_constraint: 'Debe ser %{error} %{constraint}'
212
+ starts_with: Empieza con
213
+ text: Texto
214
+ textarea: Área de texto
215
+ unit: Unidad
216
+ write_only: Sólo escritura
217
+ richtext: Texto enriquecido
218
+ i:
219
+ locale: es
220
+ select:
221
+ placeholder: Seleccionar
222
+ noMatch: Sin coincidencias
223
+ loading: Cargando
224
+ table:
225
+ noDataText: Sin Datos
226
+ noFilteredDataText: Sin Datos para el filtro
227
+ confirmFilter: Aceptar
228
+ resetFilter: Quitar filtro
229
+ clearFilter: Todos
230
+ sumText: Suma
231
+ datepicker:
232
+ selectDate: Seleccionar fecha
233
+ selectTime: Seleccionar hora
234
+ startTime: Hora de inicio
235
+ endTime: Hora de fin
236
+ clear: Limpiar
237
+ ok: Aceptar
238
+ datePanelLabel: "[mmmm] [yyyy]"
239
+ month: Mes
240
+ month1: Enero
241
+ month2: Febrero
242
+ month3: Marzo
243
+ month4: Abril
244
+ month5: Mayo
245
+ month6: Junio
246
+ month7: Julio
247
+ month8: Augosto
248
+ month9: Septiembre
249
+ month10: Octubre
250
+ month11: Noviembre
251
+ month12: Diciembre
252
+ year: Año
253
+ weekStartDay: '1'
254
+ weeks:
255
+ sun: Dom
256
+ mon: Lun
257
+ tue: Mar
258
+ wed: Mié
259
+ thu: Jue
260
+ fri: Vie
261
+ sat: Sáb
262
+ months:
263
+ m1: Ene
264
+ m2: Feb
265
+ m3: Mar
266
+ m4: Abr
267
+ m5: May
268
+ m6: Jun
269
+ m7: Jul
270
+ m8: Ago
271
+ m9: Sep
272
+ m10: Oct
273
+ m11: Nov
274
+ m12: Dic
275
+ transfer:
276
+ titles:
277
+ source: Origen
278
+ target: Destino
279
+ filterPlaceholder: Buscar aquí
280
+ notFoundText: Sin resultados
281
+ modal:
282
+ okText: Aceptar
283
+ cancelText: Cancelar
284
+ poptip:
285
+ okText: Aceptar
286
+ cancelText: Cancelar
287
+ page:
288
+ prev: Página Anterior
289
+ next: Página Siguiente
290
+ total: Total
291
+ item: Elemento
292
+ items: Elementos
293
+ prev5: 5 Páginas Anteriores
294
+ next5: 5 Páginas Siguientes
295
+ page: "/page"
296
+ goto: Ir a
297
+ p: ''
298
+ rate:
299
+ star: Estrella
300
+ stars: Estrellas
301
+ tree:
302
+ emptyText: Sin Datos