admix 0.23.1 → 0.24.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +7 -0
  2. data/app/assets/javascripts/admix/application.js.coffee +30 -2
  3. data/app/assets/stylesheets/admix/application.css +6 -1
  4. data/app/assets/stylesheets/admix/wice_grid.css.scss +143 -0
  5. data/app/controllers/admix/inherited_controller.rb +13 -34
  6. data/app/controllers/admix/registrations_controller.rb +2 -0
  7. data/app/controllers/admix/rest_controller.rb +46 -0
  8. data/app/helpers/admix/tab.rb +33 -0
  9. data/app/helpers/admix_helper.rb +76 -0
  10. data/app/views/admix/inherited/_actions.haml +7 -0
  11. data/app/views/admix/inherited/_column_actions.haml +3 -0
  12. data/app/views/admix/inherited/_empty_grid.haml +3 -0
  13. data/app/views/admix/inherited/_form_config.haml +0 -0
  14. data/app/views/admix/inherited/_grid.haml +5 -0
  15. data/app/views/admix/inherited/_grid_actions.haml +1 -0
  16. data/app/views/admix/inherited/_grid_columns.haml +11 -0
  17. data/app/views/admix/inherited/edit.html.haml +3 -3
  18. data/app/views/admix/inherited/form.html.haml +52 -0
  19. data/app/views/admix/inherited/index.html.haml +3 -5
  20. data/app/views/admix/inherited/new.html.haml +3 -3
  21. data/app/views/admix/inherited/show.html.haml +3 -5
  22. data/app/views/admix/rest/_actions.haml +7 -0
  23. data/app/views/admix/rest/_column_actions.haml +3 -0
  24. data/app/views/admix/rest/_empty_grid.haml +3 -0
  25. data/app/views/admix/rest/_form_config.haml +0 -0
  26. data/app/views/admix/rest/_grid.haml +5 -0
  27. data/app/views/admix/rest/_grid_actions.haml +1 -0
  28. data/app/views/admix/rest/_grid_columns.haml +11 -0
  29. data/app/views/admix/rest/edit.html.haml +5 -0
  30. data/app/views/admix/rest/form.html.haml +50 -0
  31. data/app/views/admix/rest/index.html.haml +3 -0
  32. data/app/views/admix/rest/new.html.haml +3 -0
  33. data/app/views/admix/rest/show.html.haml +3 -0
  34. data/app/views/layouts/admix/{admix.html.haml → admix.haml} +2 -2
  35. data/app/views/layouts/admix/{login.html.haml → login.haml} +1 -1
  36. data/config/admix_navigation.rb +34 -49
  37. data/config/application.rb +0 -2
  38. data/config/initializers/admix.rb +0 -3
  39. data/config/initializers/wice_grid_config.rb +142 -0
  40. data/config/locales/admix.pt-BR.yml +10 -3
  41. data/config/locales/wice_grid.yml +502 -0
  42. data/lib/admix.rb +1 -3
  43. data/lib/admix/engine.rb +28 -0
  44. data/lib/admix/version.rb +2 -2
  45. metadata +51 -71
  46. data/app/views/admix/inherited/_form.html.haml +0 -14
  47. data/app/views/admix/inherited/_table_actions.html.haml +0 -3
  48. data/config/initializers/locale.rb +0 -1
  49. data/lib/admix/table-actions.rb +0 -17
@@ -2,14 +2,21 @@ pt-BR:
2
2
  admix:
3
3
  dashboard: 'Painel'
4
4
  logout: 'Sair'
5
+ alerts:
6
+ no_records_found: 'Nenhum registro encontrado.'
7
+ links:
8
+ new_record: 'Novo registro'
9
+ actions:
10
+ new: 'Cadastrar'
5
11
  crud:
6
12
  actions: 'Ações'
7
13
  back: 'Voltar'
14
+ cancel: 'Cancelar'
8
15
  show:
9
16
  title: 'Visualizando'
10
17
  link: 'Ver'
11
18
  new:
12
- link: 'Novo'
19
+ link: 'Cadastrar'
13
20
  title: 'Cadastrando'
14
21
  list:
15
22
  title: 'Listar %{resources}'
@@ -18,8 +25,8 @@ pt-BR:
18
25
  link: 'Editar'
19
26
  title: 'Editando %{resource}'
20
27
  destroy:
21
- link: 'Deletar'
22
- title: 'Deletando'
28
+ link: 'Excluir'
29
+ title: 'Excluindo'
23
30
  destroy_confirm: 'Tem certeza que deseja deletar?'
24
31
  breadcrumbs:
25
32
  listing: 'Listando'
@@ -0,0 +1,502 @@
1
+ en:
2
+ date:
3
+ order:
4
+ - :year
5
+ - :month
6
+ - :day
7
+ wice_grid:
8
+ show_filter_tooltip: Show filter
9
+ hide_filter_tooltip: Hide filter
10
+ csv_export_tooltip: Export to CSV
11
+ filter_tooltip: Filter
12
+ reset_filter_tooltip: Reset
13
+ boolean_filter_true_label: "yes"
14
+ boolean_filter_false_label: "no"
15
+ previous_label: «
16
+ next_label: »
17
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
18
+ date_selector_tooltip_from: From
19
+ # Title of the icon clicking on which will show the calendar to set the TO date.
20
+ date_selector_tooltip_to: To
21
+ # The title of the checkox to turn on negation
22
+ negation_checkbox_title: Exclude
23
+ # link to switch to show all records
24
+ show_all_records_label: show all
25
+ # tooltip for the link to switch to show all records
26
+ show_all_records_tooltip: Show all records
27
+ # Warning message shown when the user wants to switch to all-records mode
28
+ all_queries_warning: Are you sure you want to display all records?
29
+ # link to paginated view
30
+ switch_back_to_paginated_mode_label: back to paginated view
31
+ # tooltip for the link to paginated view
32
+ switch_back_to_paginated_mode_tooltip: Switch back to the view with pages
33
+ # Title of the date string.
34
+ date_string_tooltip: Click to delete
35
+ saved_query_panel_title: Saved Queries
36
+ save_query_button_label: Save the state of filters
37
+ saved_query_deletion_confirmation: Are you sure?
38
+ saved_query_deletion_link_title: Delete query
39
+ saved_query_link_title: Load query
40
+ validates_uniqueness_error: A query with this name already exists
41
+ validates_presence_error: Please submit the name of the custom query
42
+ query_deleted_message: Saved query deleted.
43
+ query_saved_message: Query saved.
44
+ select_all: Select all
45
+ deselect_all: Remove selection
46
+ expand: Expand
47
+ collapse: Collapse
48
+
49
+
50
+ is:
51
+ date:
52
+ order:
53
+ - :year
54
+ - :month
55
+ - :day
56
+ wice_grid:
57
+ show_filter_tooltip: Sýna síumöguleika
58
+ hide_filter_tooltip: Fela síumoguleika
59
+ csv_export_tooltip: Flytja út CSV
60
+ filter_tooltip: Sía
61
+ reset_filter_tooltip: Hreinsa
62
+ boolean_filter_true_label: Já
63
+ boolean_filter_false_label: Nei
64
+ previous_label: «
65
+ next_label: »
66
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
67
+ date_selector_tooltip_from: Frá
68
+ # Title of the icon clicking on which will show the calendar to set the TO date.
69
+ date_selector_tooltip_to: Til
70
+ # The title of the checkox to turn on negation
71
+ negation_checkbox_title: Undanskilja
72
+ # link to switch to show all records
73
+ show_all_records_label: Sýna allt
74
+ # tooltip for the link to switch to show all records
75
+ show_all_records_tooltip: Sýna öll gögn
76
+ # Warning message shown when the user wants to switch to all-records mode
77
+ all_queries_warning: Ertu viss um að þú viljir láta sýna öll gögn?
78
+ # link to paginated view
79
+ switch_back_to_paginated_mode_label: Aftur til síðuhorfs
80
+ # tooltip for the link to paginated view
81
+ switch_back_to_paginated_mode_tooltip: Aftur til síðuhorfs
82
+ # Title of the date string.
83
+ date_string_tooltip: Smella á til að eyða
84
+ saved_query_panel_title: Vistaðar leitarskipanir
85
+ save_query_button_label: Vista síuval
86
+ saved_query_deletion_confirmation: Ertu viss?
87
+ saved_query_deletion_link_title: Eyða leitarskipun
88
+ saved_query_link_title: Hlaða leitarskipun
89
+ validates_uniqueness_error: Leitarskipun með þessu nafni er þegar til
90
+ validates_presence_error: Vinsamlegast gefið heiti fyrir leitarskipun
91
+ query_deleted_message: Vistaðri leitarskipun hefur verið eytt
92
+ query_saved_message: leitaskipun hefur verið vistuð
93
+ # To do: translate
94
+ select_all: Select all
95
+ deselect_all: Remove selection
96
+
97
+ nl:
98
+ date:
99
+ order:
100
+ - :year
101
+ - :month
102
+ - :day
103
+ wice_grid:
104
+ show_filter_tooltip: Filter tonen
105
+ hide_filter_tooltip: Filter verbergen
106
+ csv_export_tooltip: Als CSV exporteren
107
+ filter_tooltip: Filter
108
+ reset_filter_tooltip: Terugstellen
109
+ boolean_filter_true_label: ja
110
+ boolean_filter_false_label: neen
111
+ previous_label: «
112
+ next_label: »
113
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
114
+ date_selector_tooltip_from: Vanaf
115
+ # Title of the icon clicking on which will show the calendar to set the TO date.
116
+ date_selector_tooltip_to: Tot
117
+ # The title of the checkox to turn on negation
118
+ negation_checkbox_title: Uitsluiten
119
+ # link to switch to show all records
120
+ show_all_records_label: Alle rijen tonen
121
+ # tooltip for the link to switch to show all records
122
+ show_all_records_tooltip: Alle rijen tonen
123
+ # Warning message shown when the user wants to switch to all-records mode
124
+ all_queries_warning: Bent u zeker dat u alle rijen wilt tonen?
125
+ # link to paginated view
126
+ switch_back_to_paginated_mode_label: Terug naar pagina's
127
+ # tooltip for the link to paginated view
128
+ switch_back_to_paginated_mode_tooltip: Terug naar pagina's
129
+ # Title of the date string.
130
+ date_string_tooltip: Klik om te verwijderen
131
+ saved_query_panel_title: Opgeslagen query's
132
+ save_query_button_label: Query opslaan
133
+ saved_query_deletion_confirmation: Bent u zeker?
134
+ saved_query_deletion_link_title: Query verwijderen
135
+ saved_query_link_title: Query laden
136
+ validates_uniqueness_error: Deze query bestaat reeds
137
+ validates_presence_error: Gelieve de naam van de query in te vullen
138
+ query_deleted_message: Opgeslagen query verwijderd.
139
+ query_saved_message: Query opgeslagen
140
+ select_all: Selecteer alle rijen
141
+ deselect_all: Deselecteer alle rijen
142
+
143
+ fr:
144
+ date:
145
+ order:
146
+ - :year
147
+ - :month
148
+ - :day
149
+ wice_grid:
150
+ show_filter_tooltip: Afficher le filtre
151
+ hide_filter_tooltip: Cacher le filtrer
152
+ csv_export_tooltip: Exporter en CSV
153
+ filter_tooltip: Filtrer
154
+ reset_filter_tooltip: Effacer
155
+ boolean_filter_true_label: oui
156
+ boolean_filter_false_label: non
157
+ previous_label: «
158
+ next_label: »
159
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
160
+ date_selector_tooltip_from: De
161
+ # Title of the icon clicking on which will show the calendar to set the TO date.
162
+ date_selector_tooltip_to: à
163
+ # The title of the checkox to turn on negation
164
+ negation_checkbox_title: Exclure
165
+ # link to switch to show all records
166
+ show_all_records_label: Voir tous
167
+ # tooltip for the link to switch to show all records
168
+ show_all_records_tooltip: Voir tous les enregistrements
169
+ # Warning message shown when the user wants to switch to all-records mode
170
+ all_queries_warning: Etes-vous certain de vouloir afficher tous les enregistrements?
171
+ # link to paginated view
172
+ switch_back_to_paginated_mode_label: Retour à la vue paginée
173
+ # tooltip for the link to paginated view
174
+ switch_back_to_paginated_mode_tooltip: Retour à la vue par pages
175
+ # Title of the date string.
176
+ date_string_tooltip: Cliquez pour effacer
177
+ saved_query_panel_title: Requêtes sauvées
178
+ save_query_button_label: Sauver l'état des filtres
179
+ saved_query_deletion_confirmation: Etes vous sûr?
180
+ saved_query_deletion_link_title: Effacer la requête
181
+ saved_query_link_title: Charger la requête
182
+ validates_uniqueness_error: Un requête existante porte déjà ce nom
183
+ validates_presence_error: Veuillez indiquer le nom de la requête que vous souhaitez sauver
184
+ query_deleted_message: La requête a été effacée.
185
+ query_saved_message: La requête a été sauvée.
186
+ select_all: Sélectionner tout
187
+ deselect_all: Désélectionner tout
188
+
189
+ ru:
190
+ date:
191
+ order:
192
+ - :year
193
+ - :month
194
+ - :day
195
+ wice_grid:
196
+ show_filter_tooltip: Показать фильтр
197
+ hide_filter_tooltip: Спрятать фильтр
198
+ csv_export_tooltip: Экспорт в CSV
199
+ filter_tooltip: Фильтровать
200
+ reset_filter_tooltip: Сброс
201
+ boolean_filter_true_label: да
202
+ boolean_filter_false_label: нет
203
+ previous_label: «
204
+ next_label: »
205
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
206
+ date_selector_tooltip_from: С
207
+ # Title of the icon clicking on which will show the calendar to set the TO date.
208
+ date_selector_tooltip_to: До
209
+ # The title of the checkox to turn on negation
210
+ negation_checkbox_title: Исключая строки
211
+ # link to switch to show all records
212
+ show_all_records_label: показать все
213
+ # tooltip for the link to switch to show all records
214
+ show_all_records_tooltip: Показать все записи
215
+ # Warning message shown when the user wants to switch to all-records mode
216
+ all_queries_warning: Вы уверены в том, что хотите отобразить все записи?
217
+ # link to paginated view
218
+ switch_back_to_paginated_mode_label: Назад к постраничному выводу
219
+ # tooltip for the link to paginated view
220
+ switch_back_to_paginated_mode_tooltip: Назад к постраничному выводу
221
+ # Title of the date string.
222
+ date_string_tooltip: Кликните, чтобы удалить дату
223
+ saved_query_panel_title: Сохранённые фильтры
224
+ save_query_button_label: Сохранить фильтр
225
+ saved_query_deletion_confirmation: Вы уверены?
226
+ saved_query_deletion_link_title: Удалить сохранённый фильтр
227
+ saved_query_link_title: Загрузить сохранённый фильтр
228
+ validates_uniqueness_error: Сохранённый фильтр с таким именем уже существует
229
+ validates_presence_error: Пожалуйста введите имя сохраняемого фильтра
230
+ query_deleted_message: Сохранённый фильтр удалён.
231
+ query_saved_message: Сохранённый фильтр сохранён.
232
+ select_all: Отметить все
233
+ deselect_all: Убрать выделение
234
+
235
+
236
+ pt:
237
+ date:
238
+ order:
239
+ - :year
240
+ - :month
241
+ - :day
242
+ wice_grid:
243
+ show_filter_tooltip: Mostrar o filtro
244
+ hide_filter_tooltip: Esconder o filtro
245
+ csv_export_tooltip: Exportar em CSV
246
+ filter_tooltip: Filtrar
247
+ reset_filter_tooltip: Reinicializar
248
+ boolean_filter_true_label: sim
249
+ boolean_filter_false_label: não
250
+ previous_label: «
251
+ next_label: »
252
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
253
+ date_selector_tooltip_from: De
254
+ # Title of the icon clicking on which will show the calendar to set the TO date.
255
+ date_selector_tooltip_to: a
256
+ # The title of the checkox to turn on negation
257
+ negation_checkbox_title: Excluir
258
+ # link to switch to show all records
259
+ show_all_records_label: Ver todos
260
+ # tooltip for the link to switch to show all records
261
+ show_all_records_tooltip: Ver todos os registos
262
+ # Warning message shown when the user wants to switch to all-records mode
263
+ all_queries_warning: Tem a certeza de querer visualizar todos os registos?
264
+ # link to paginated view
265
+ switch_back_to_paginated_mode_label: Retorno à vista paginada
266
+ # tooltip for the link to paginated view
267
+ switch_back_to_paginated_mode_tooltip: Retorno à vista por página
268
+ # Title of the date string.
269
+ date_string_tooltip: Cliquar para apagar
270
+ saved_query_panel_title: Queries gravadas
271
+ save_query_button_label: Gravar o estado dos filtros
272
+ saved_query_deletion_confirmation: Tem a certeza?
273
+ saved_query_deletion_link_title: Apagar a query
274
+ saved_query_link_title: Caregar a query
275
+ validates_uniqueness_error: Já existe uma query com o mesmo nome
276
+ validates_presence_error: Queira indicar o nome da query que deseja gravar
277
+ query_deleted_message: A query foi apagada.
278
+ query_saved_message: A query foi gravada.
279
+ select_all: Selecionar todos
280
+ deselect_all: Remover seleção
281
+
282
+ pt-BR:
283
+ date:
284
+ order:
285
+ - :year
286
+ - :month
287
+ - :day
288
+ wice_grid:
289
+ show_filter_tooltip: Mostrar o filtro
290
+ hide_filter_tooltip: Esconder o filtro
291
+ csv_export_tooltip: Exportar em CSV
292
+ filter_tooltip: Filtrar
293
+ reset_filter_tooltip: Reinicializar
294
+ boolean_filter_true_label: sim
295
+ boolean_filter_false_label: não
296
+ previous_label: «
297
+ next_label: »
298
+ date_selector_tooltip_from: De
299
+ date_selector_tooltip_to: a
300
+ negation_checkbox_title: Excluir
301
+ show_all_records_label: Ver todos
302
+ show_all_records_tooltip: Ver todos os registos
303
+ all_queries_warning: Tem certeza que gostaria de visualizar todos os registos?
304
+ switch_back_to_paginated_mode_label: Voltar à lista paginada
305
+ switch_back_to_paginated_mode_tooltip: Voltar à lista por página
306
+ date_string_tooltip: Clique para apagar
307
+ saved_query_panel_title: Filtros gravados
308
+ save_query_button_label: Gravar o estado dos filtros
309
+ saved_query_deletion_confirmation: Tem certeza?
310
+ saved_query_deletion_link_title: Apagar o filtro
311
+ saved_query_link_title: Carregar o filtro
312
+ validates_uniqueness_error: Já existe um filtro com o mesmo nome
313
+ validates_presence_error: Indique o nome do filtro que deseja gravar
314
+ query_deleted_message: O filtro foi apagado.
315
+ query_saved_message: O filtro foi gravado.
316
+ select_all: Selecionar todos
317
+ deselect_all: Remover seleção
318
+
319
+
320
+ sk:
321
+ date:
322
+ order:
323
+ - :year
324
+ - :month
325
+ - :day
326
+ wice_grid:
327
+ show_filter_tooltip: Zobraziť filter
328
+ hide_filter_tooltip: Skryť filter
329
+ csv_export_tooltip: Exportovať do CSV
330
+ filter_tooltip: Filter
331
+ reset_filter_tooltip: Zrušiť filtre
332
+ boolean_filter_true_label: "áno"
333
+ boolean_filter_false_label: "nie"
334
+ previous_label: «
335
+ next_label: »
336
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
337
+ date_selector_tooltip_from: Dátum od
338
+ # Title of the icon clicking on which will show the calendar to set the TO date.
339
+ date_selector_tooltip_to: Dátum do
340
+ # The title of the checkox to turn on negation
341
+ negation_checkbox_title: Inverzný výber
342
+ # link to switch to show all records
343
+ show_all_records_label: Zobraziť všetko
344
+ # tooltip for the link to switch to show all records
345
+ show_all_records_tooltip: Zobrazí všetky záznamy v databáze
346
+ # Warning message shown when the user wants to switch to all-records mode
347
+ all_queries_warning: Určite chceš zobraziť všetky záznamy v databáze?
348
+ # link to paginated view
349
+ switch_back_to_paginated_mode_label: späť na stránkové zobrazenie
350
+ # tooltip for the link to paginated view
351
+ switch_back_to_paginated_mode_tooltip: Prepnúť do stránkového zobrazenia
352
+ # Title of the date string.
353
+ date_string_tooltip: Kliknutím zmažeš
354
+ saved_query_panel_title: Uložené filtre/výsledky
355
+ save_query_button_label: Uložiť stav filtrov
356
+ saved_query_deletion_confirmation: Si si istý?
357
+ saved_query_deletion_link_title: Vymazať uložený filter
358
+ saved_query_link_title: Nahrať uložený filter
359
+ validates_uniqueness_error: Filter s uvedeným názvom už existuje.
360
+ validates_presence_error: Prosím zadaj názov uloženého filtra.
361
+ query_deleted_message: Uložený filter bol vymazaný.
362
+ query_saved_message: Filter bol uložený.
363
+ select_all: Vyber všetko
364
+ deselect_all: Zrušiť výber
365
+
366
+ cz:
367
+ date:
368
+ order:
369
+ - :year
370
+ - :month
371
+ - :day
372
+ wice_grid:
373
+ show_filter_tooltip: Zobrazit filtr
374
+ hide_filter_tooltip: Skrýt filtr
375
+ csv_export_tooltip: Exportovat do CSV
376
+ filter_tooltip: Filtr
377
+ reset_filter_tooltip: Zrušit filtr
378
+ boolean_filter_true_label: "áno"
379
+ boolean_filter_false_label: "ne"
380
+ previous_label: «
381
+ next_label: »
382
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
383
+ date_selector_tooltip_from: Dátum od
384
+ # Title of the icon clicking on which will show the calendar to set the TO date.
385
+ date_selector_tooltip_to: Dátum do
386
+ # The title of the checkox to turn on negation
387
+ negation_checkbox_title: Inverzní výběr
388
+ # link to switch to show all records
389
+ show_all_records_label: Zobrazit všechno
390
+ # tooltip for the link to switch to show all records
391
+ show_all_records_tooltip: Zobrazí všechny záznamy v databáze
392
+ # Warning message shown when the user wants to switch to all-records mode
393
+ all_queries_warning: Určitě chceš zobrazit všechny záznamy v databáze?
394
+ # link to paginated view
395
+ switch_back_to_paginated_mode_label: zpět na stránkové zobrazení
396
+ # tooltip for the link to paginated view
397
+ switch_back_to_paginated_mode_tooltip: Přepnout do stránkového zobrazení
398
+ # Title of the date string.
399
+ date_string_tooltip: Kliknutím zmažeš
400
+ saved_query_panel_title: Uložené filtry
401
+ save_query_button_label: Uložit aktuálni stav filtrů
402
+ saved_query_deletion_confirmation: Seš si jistej?
403
+ saved_query_deletion_link_title: Smazat uloženej filtr
404
+ saved_query_link_title: Použít uloženej filtr
405
+ validates_uniqueness_error: Filtr už existuje.
406
+ validates_presence_error: Prosím zadej název filtru.
407
+ query_deleted_message: Uložený filtr byl smazán.
408
+ query_saved_message: Filtr byl uložen.
409
+ select_all: Vyber všechno
410
+ deselect_all: Zrušit výběr
411
+
412
+ de:
413
+ date:
414
+ order:
415
+ - :year
416
+ - :month
417
+ - :day
418
+ wice_grid:
419
+ show_filter_tooltip: Filter einblenden
420
+ hide_filter_tooltip: Filter ausblenden
421
+ csv_export_tooltip: CSV Export
422
+ filter_tooltip: Filter
423
+ reset_filter_tooltip: Reset
424
+ boolean_filter_true_label: "Ja"
425
+ boolean_filter_false_label: "Nein"
426
+ previous_label: «
427
+ next_label: »
428
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
429
+ date_selector_tooltip_from: Von
430
+ # Title of the icon clicking on which will show the calendar to set the TO date.
431
+ date_selector_tooltip_to: Bis
432
+ # The title of the checkox to turn on negation
433
+ negation_checkbox_title: Ausschließen
434
+ # link to switch to show all records
435
+ show_all_records_label: Alle anzeigen
436
+ # tooltip for the link to switch to show all records
437
+ show_all_records_tooltip: Alle anzeigen
438
+ # Warning message shown when the user wants to switch to all-records mode
439
+ all_queries_warning: Wollen Sie wirkliche alle Einträge anzeigen?
440
+ # link to paginated view
441
+ switch_back_to_paginated_mode_label: Zurück zur seitenbasierten Ansicht
442
+ # tooltip for the link to paginated view
443
+ switch_back_to_paginated_mode_tooltip: Zurück zur seitenbasierten Ansicht
444
+ # Title of the date string.
445
+ date_string_tooltip: Löschen
446
+ saved_query_panel_title: Gespeicherte Abfragen
447
+ save_query_button_label: Filter speichern
448
+ saved_query_deletion_confirmation: Sind Sie sicher?
449
+ saved_query_deletion_link_title: Abfrage löschen
450
+ saved_query_link_title: Abfrage laden
451
+ validates_uniqueness_error: Eine Abfrage mit dieser Bezeichnung existiert bereits!
452
+ validates_presence_error: Bitte vergeben Sie einen Namen!
453
+ query_deleted_message: Abfrage gelöscht.
454
+ query_saved_message: Abfrage gespeichert.
455
+ select_all: Alle auswählen
456
+ deselect_all: Auswahl aufheben
457
+
458
+ zh:
459
+ date:
460
+ order:
461
+ - :year
462
+ - :month
463
+ - :day
464
+ wice_grid:
465
+ show_filter_tooltip: 显示过滤
466
+ hide_filter_tooltip: 隐藏过滤
467
+ csv_export_tooltip: 输出CSV档
468
+ filter_tooltip: 过滤
469
+ reset_filter_tooltip: 清除过滤
470
+ boolean_filter_true_label: "是"
471
+ boolean_filter_false_label: "否"
472
+ previous_label: «
473
+ next_label: »
474
+ # Title of the icon clicking on which will show the calendar to set the FROM date.
475
+ date_selector_tooltip_from: 从
476
+ # Title of the icon clicking on which will show the calendar to set the TO date.
477
+ date_selector_tooltip_to: 至
478
+ # The title of the checkox to turn on negation
479
+ negation_checkbox_title: 排除
480
+ # link to switch to show all records
481
+ show_all_records_label: 显示全部
482
+ # tooltip for the link to switch to show all records
483
+ show_all_records_tooltip: 显示全部记录
484
+ # Warning message shown when the user wants to switch to all-records mode
485
+ all_queries_warning: 确定要显示全部记录?
486
+ # link to paginated view
487
+ switch_back_to_paginated_mode_label: 回到分页显示
488
+ # tooltip for the link to paginated view
489
+ switch_back_to_paginated_mode_tooltip: 切换到分页显示
490
+ # Title of the date string.
491
+ date_string_tooltip: 按下以清除
492
+ saved_query_panel_title: 查询存储
493
+ save_query_button_label: 储存查询状态
494
+ saved_query_deletion_confirmation: 确定删除?
495
+ saved_query_deletion_link_title: 删除查询
496
+ saved_query_link_title: 读取查询
497
+ validates_uniqueness_error: 已存在相同名称的查询
498
+ validates_presence_error: 请为此查询命名
499
+ query_deleted_message: 查询已删除
500
+ query_saved_message: 查询已储存
501
+ select_all: 全选
502
+ deselect_all: 全清