avo 2.16.1.pre.1.nativefields → 2.17.1.pre.1.zeitwerk.eager.load.dir

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of avo might be problematic. Click here for more details.

Files changed (120) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +7 -3
  3. data/Gemfile.lock +43 -8
  4. data/README.md +1 -1
  5. data/app/assets/config/avo_manifest.js +1 -0
  6. data/app/assets/svgs/placeholder.svg +1 -0
  7. data/app/components/avo/actions_component.html.erb +3 -3
  8. data/app/components/avo/base_component.rb +7 -4
  9. data/app/components/avo/field_wrapper_component.html.erb +8 -10
  10. data/app/components/avo/field_wrapper_component.rb +14 -12
  11. data/app/components/avo/fields/badge_field/index_component.html.erb +1 -1
  12. data/app/components/avo/fields/belongs_to_field/edit_component.rb +9 -3
  13. data/app/components/avo/fields/belongs_to_field/index_component.html.erb +1 -1
  14. data/app/components/avo/fields/belongs_to_field/show_component.html.erb +1 -1
  15. data/app/components/avo/fields/belongs_to_field/show_component.rb +1 -1
  16. data/app/components/avo/fields/boolean_field/index_component.html.erb +1 -1
  17. data/app/components/avo/fields/boolean_field/show_component.html.erb +1 -1
  18. data/app/components/avo/fields/boolean_group_field/index_component.html.erb +1 -1
  19. data/app/components/avo/fields/boolean_group_field/show_component.html.erb +1 -1
  20. data/app/components/avo/fields/code_field/show_component.html.erb +1 -1
  21. data/app/components/avo/fields/common/heading_component.html.erb +5 -4
  22. data/app/components/avo/fields/common/heading_component.rb +6 -1
  23. data/app/components/avo/fields/country_field/index_component.html.erb +1 -1
  24. data/app/components/avo/fields/date_field/index_component.html.erb +1 -1
  25. data/app/components/avo/fields/date_time_field/index_component.html.erb +1 -1
  26. data/app/components/avo/fields/edit_component.rb +6 -4
  27. data/app/components/avo/fields/external_image_field/index_component.html.erb +1 -1
  28. data/app/components/avo/fields/file_field/edit_component.html.erb +2 -1
  29. data/app/components/avo/fields/file_field/index_component.html.erb +1 -1
  30. data/app/components/avo/fields/files_field/edit_component.html.erb +2 -1
  31. data/app/components/avo/fields/files_field/index_component.html.erb +1 -1
  32. data/app/components/avo/fields/files_field/show_component.html.erb +1 -1
  33. data/app/components/avo/fields/gravatar_field/index_component.html.erb +1 -1
  34. data/app/components/avo/fields/has_one_field/index_component.html.erb +1 -1
  35. data/app/components/avo/fields/heading_field/edit_component.html.erb +1 -1
  36. data/app/components/avo/fields/heading_field/show_component.html.erb +1 -1
  37. data/app/components/avo/fields/id_field/index_component.html.erb +1 -1
  38. data/app/components/avo/fields/index_component.rb +11 -2
  39. data/app/components/avo/fields/number_field/index_component.html.erb +1 -1
  40. data/app/components/avo/fields/progress_bar_field/index_component.html.erb +1 -1
  41. data/app/components/avo/fields/select_field/index_component.html.erb +1 -1
  42. data/app/components/avo/fields/show_component.rb +7 -1
  43. data/app/components/avo/fields/status_field/index_component.html.erb +1 -1
  44. data/app/components/avo/fields/tags_field/index_component.html.erb +1 -1
  45. data/app/components/avo/fields/text_field/edit_component.html.erb +3 -1
  46. data/app/components/avo/fields/text_field/index_component.html.erb +1 -1
  47. data/app/components/avo/fields/trix_field/edit_component.html.erb +1 -1
  48. data/app/components/avo/filters_component.html.erb +2 -2
  49. data/app/components/avo/index/grid_cover_empty_state_component.html.erb +1 -1
  50. data/app/components/avo/index/grid_item_component.html.erb +15 -13
  51. data/app/components/avo/index/grid_item_component.rb +1 -1
  52. data/app/components/avo/index/ordering/buttons_component.html.erb +1 -1
  53. data/app/components/avo/index/resource_controls_component.rb +2 -2
  54. data/app/components/avo/index/table_row_component.html.erb +1 -1
  55. data/app/components/avo/panel_component.html.erb +9 -2
  56. data/app/components/avo/panel_component.rb +3 -4
  57. data/app/components/avo/resource_component.rb +18 -0
  58. data/app/components/avo/resource_sidebar_component.html.erb +19 -0
  59. data/app/components/avo/resource_sidebar_component.rb +26 -0
  60. data/app/components/avo/sidebar_profile_component.html.erb +1 -1
  61. data/app/components/avo/tab_switcher_component.html.erb +2 -2
  62. data/app/components/avo/tab_switcher_component.rb +2 -0
  63. data/app/components/avo/views/resource_edit_component.html.erb +31 -25
  64. data/app/components/avo/views/resource_edit_component.rb +1 -1
  65. data/app/components/avo/views/resource_show_component.html.erb +8 -2
  66. data/app/components/avo/views/resource_show_component.rb +1 -1
  67. data/app/controllers/avo/actions_controller.rb +10 -2
  68. data/app/controllers/avo/application_controller.rb +4 -2
  69. data/app/controllers/avo/associations_controller.rb +24 -5
  70. data/app/controllers/avo/attachments_controller.rb +2 -1
  71. data/app/controllers/avo/base_controller.rb +6 -4
  72. data/app/controllers/avo/search_controller.rb +13 -4
  73. data/app/helpers/avo/application_helper.rb +7 -3
  74. data/app/helpers/avo/resources_helper.rb +2 -2
  75. data/app/javascript/avo.base.js +3 -1
  76. data/app/javascript/js/controllers/action_controller.js +1 -4
  77. data/app/javascript/js/controllers/actions_picker_controller.js +8 -9
  78. data/app/javascript/js/controllers/tabs_controller.js +14 -27
  79. data/app/views/avo/actions/show.html.erb +2 -2
  80. data/app/views/avo/home/failed_to_load.html.erb +3 -2
  81. data/avo.gemspec +2 -2
  82. data/config/brakeman.ignore +40 -0
  83. data/config/i18n-tasks.yml +159 -0
  84. data/config/routes.rb +1 -1
  85. data/db/factories.rb +20 -0
  86. data/lib/avo/app.rb +6 -0
  87. data/lib/avo/base_resource.rb +26 -0
  88. data/lib/avo/concerns/fetches_things.rb +1 -1
  89. data/lib/avo/concerns/has_fields.rb +22 -0
  90. data/lib/avo/concerns/is_resource_item.rb +4 -0
  91. data/lib/avo/configuration/branding.rb +9 -1
  92. data/lib/avo/dynamic_router.rb +19 -15
  93. data/lib/avo/engine.rb +9 -0
  94. data/lib/avo/fields/belongs_to_field.rb +3 -0
  95. data/lib/avo/fields/heading_field.rb +15 -0
  96. data/lib/avo/items_holder.rb +4 -0
  97. data/lib/avo/licensing/pro_license.rb +1 -0
  98. data/lib/avo/menu/builder.rb +1 -1
  99. data/lib/avo/menu/menu.rb +0 -2
  100. data/lib/avo/reloader.rb +27 -26
  101. data/lib/avo/services/authorization_service.rb +17 -3
  102. data/lib/avo/services/encryption_service.rb +1 -1
  103. data/lib/avo/sidebar.rb +60 -0
  104. data/lib/avo/sidebar_builder.rb +24 -0
  105. data/lib/avo/version.rb +1 -1
  106. data/lib/generators/avo/templates/field/components/index_component.html.erb.tt +1 -1
  107. data/lib/generators/avo/templates/initializer/avo.tt +2 -1
  108. data/lib/generators/avo/templates/locales/avo.en.yml +107 -107
  109. data/lib/generators/avo/templates/locales/avo.fr.yml +107 -107
  110. data/lib/generators/avo/templates/locales/avo.nb.yml +119 -0
  111. data/lib/generators/avo/templates/locales/avo.nn.yml +119 -0
  112. data/lib/generators/avo/templates/locales/avo.pt-BR.yml +109 -84
  113. data/lib/generators/avo/templates/locales/avo.ro.yml +109 -81
  114. data/lib/generators/avo/templates/locales/avo.tr.yml +119 -0
  115. data/public/avo-assets/avo.base.css +67 -79
  116. data/public/avo-assets/avo.base.js +63 -63
  117. data/public/avo-assets/avo.base.js.map +3 -3
  118. metadata +16 -22
  119. data/app/views/avo/home/failed_to_load.html copy.erb +0 -23
  120. data/lib/generators/avo/templates/locales/avo.nb-NO.yml +0 -93
@@ -0,0 +1,119 @@
1
+ ---
2
+ nn:
3
+ avo:
4
+ action_ran_successfully: Suksess!
5
+ actions: Handlingar
6
+ and_x_other_resources: og %{count} andre ressursar
7
+ are_you_sure: Er du sikker?
8
+ are_you_sure_detach_item: Er du sikker på at du vil koble frå %{item}.
9
+ are_you_sure_you_want_to_run_this_option: Er du sikker?
10
+ attach: Legg til
11
+ attach_and_attach_another: Legg til & Legg til ny
12
+ attach_item: Legg til %{item}
13
+ attachment_class_attached: "%{attachment_class} lagt til."
14
+ attachment_class_detached: "%{attachment_class} fjerna."
15
+ attachment_destroyed: Vedlegg sletta
16
+ cancel: Avbryt
17
+ choose_a_country: Vel eit land
18
+ choose_an_option: Vel eit alternativ
19
+ choose_item: Vel %{item}
20
+ clear_value: Nullstill verdi
21
+ click_to_reveal_filters: Vis filter
22
+ confirm: Stadfest
23
+ create_new_item: Lag ny %{item}
24
+ dashboard: Dashboard
25
+ dashboards: Dashboards
26
+ delete: slett
27
+ delete_file: Slett fil
28
+ delete_item: Slett %{item}
29
+ detach_item: koble frå %{item}
30
+ details: detaljar
31
+ download: Last ned
32
+ download_file: Last ned fil
33
+ download_item: Last ned %{item}
34
+ edit: endre
35
+ edit_item: endre %{item}
36
+ empty_dashboard_message: Legg til kort i dette dashbordet
37
+ failed: Feila
38
+ failed_to_find_attachment: Fann ikkje vedlegg
39
+ failed_to_load: Lasting feila
40
+ field_translations:
41
+ file:
42
+ one: fil
43
+ other: filer
44
+ zero: filer
45
+ people:
46
+ one: person
47
+ other: personar
48
+ zero: personar
49
+ filters: Filter
50
+ go_back: Gå tilbake
51
+ grid_view: Gridvisning
52
+ hide_content: Skjul innhald
53
+ home: Heim
54
+ key_value_field:
55
+ add_row: Legg til rad
56
+ delete_row: Slett rad
57
+ key: Nøkkel
58
+ value: Verdi
59
+ list_is_empty: Lista er tom
60
+ loading: Lastar
61
+ more: Meir
62
+ new: ny
63
+ next_page: Neste side
64
+ no_cards_present: Ingen kort til stades
65
+ no_item_found: Fann ingen %{item}
66
+ no_options_available: Ingen tilgjengelege alternativ
67
+ no_related_item_found: Fann ingen relaterte %{item}
68
+ not_authorized: Du er ikkje autorisert til å gjere denne handlinga.
69
+ number_of_items:
70
+ one: en %{item}
71
+ other: "%{count} %{item}"
72
+ zero: ingen %{item}
73
+ oops_nothing_found: Oops! Fann ikkje noko...
74
+ order:
75
+ higher: Flytt elementet opp
76
+ lower: Flytt elementet ned
77
+ reorder_record: Sorter element
78
+ to_bottom: Flytt elementet til botnen
79
+ to_top: Flytt elementet til toppen
80
+ per_page: Per side
81
+ prev_page: Førre side
82
+ remove_selection: Fjern val
83
+ reset_filters: Nullstill filter
84
+ resource_created: Ressurs generert
85
+ resource_destroyed: Ressurs sletta
86
+ resource_translations:
87
+ user:
88
+ one: brukar
89
+ other: brukarar
90
+ zero: brukarar
91
+ resource_updated: Ressurs oppdatert
92
+ resources: Ressursar
93
+ run: Køyr
94
+ save: Lagre
95
+ search:
96
+ cancel_button: Avbryt
97
+ placeholder: Søk
98
+ select_all: Vel alle
99
+ select_all_matching: Vel alle samsvarende
100
+ select_item: Vel
101
+ show_content: Vis innhald
102
+ sign_out: Logg ut
103
+ switch_to_view: Bytt til %{view_type} vis
104
+ table_view: Tabellvisning
105
+ tools: Reiskapane
106
+ type_to_search: Søk.
107
+ unauthorized: Ikkje autorisert
108
+ undo: angre
109
+ view: Vis
110
+ view_item: vis %{item}
111
+ was_successfully_created: vart oppretta
112
+ was_successfully_updated: vart oppdatert
113
+ x_items_more:
114
+ one: eitt element til
115
+ other: "%{count} fleire element"
116
+ zero: ingen fleire element
117
+ x_records_selected_from_a_total_of_x_html: <span class="font-bold text-gray-700">%{selected}</span> valde postar på denne sida av totalt <span class="font-bold text-gray-700">%{count}</span>
118
+ x_records_selected_from_all_pages_html: <span class="font-bold text-gray-700">%{count}</span> valde postar frå alle sider
119
+ you_missed_something_check_form: Her manglar du noko. Ver venleg og sjekk skjemaet.
@@ -1,94 +1,119 @@
1
+ ---
1
2
  pt-BR:
2
3
  avo:
3
- dashboard: 'Painel'
4
- dashboards: 'Painéis'
5
- choose_a_country: 'Escolha um país'
6
- choose_an_option: 'Escolha uma opção'
7
- are_you_sure_you_want_to_run_this_option: 'Você tem certeza que deseja executar esta ação?'
8
- are_you_sure_detach_item: 'Você tem certeza que deseja separar este %{item}.'
9
- run: 'Executar'
10
- cancel: 'Cancelar'
11
- action_ran_successfully: 'Ação executada com sucesso!'
12
- details: "detalhe"
13
- unauthorized: 'Não autorizado'
14
- attachment_class_attached: '%{attachment_class} anexado.'
15
- attachment_class_detached: '%{attachment_class} separado.'
16
- resource_updated: 'Recurso atualizado'
17
- resource_created: 'Recurso criado'
18
- resource_destroyed: 'Recurso destruído'
19
- switch_to_view: "Alterar para visão %{view_type}"
20
- click_to_reveal_filters: "Clique para revelar os filtros"
21
- attachment_destroyed: 'Anexo destruído'
22
- failed_to_find_attachment: 'Falhou ao achar anexo'
23
- you_missed_something_check_form: 'Você pode ter esquecido algo. Por favor, cheque o formulário.'
24
- remove_selection: 'Remover seleção'
25
- select_item: 'Selecionar item'
26
- select_all: 'Selecionar tudo'
27
- select_all_matching: 'Selecione todas as correspondências'
28
- undo: desfazer
29
- delete_file: 'Deletar arquivo'
30
- delete: 'deletar'
31
- delete_item: 'Deletar %{item}'
32
- download_item: 'Baixar %{item}'
33
- download_file: 'Baixar arquivo'
34
- download: 'Baixar'
35
- view: 'Visualizar'
36
- view_item: 'visualizar %{item}'
37
- edit: 'editar'
38
- edit_item: 'editar %{item}'
39
- detach_item: 'separar %{item}'
40
- number_of_items:
41
- zero: 'sem %{item}'
42
- one: 'um %{item}'
43
- other: '%{count} %{item}'
44
- are_you_sure: 'Você tem certeza?'
45
- filters: 'Filtros'
46
- per_page: 'Por página'
47
- more: 'Mais'
48
- attach: 'Anexar'
49
- save: 'Salvar'
50
- attach_and_attach_another: 'Anexar & anexar outro'
51
- hide_content: 'Esconder conteúdo'
52
- show_content: 'Mostrar conteúdo'
53
- no_related_item_found: 'Nenhum %{item} relacionado encontrado'
54
- no_item_found: 'Nenhum %{item} encontrado'
55
- loading: 'Carregando'
56
- confirm: 'Confirmar'
57
- actions: 'Ações'
58
- resources: 'Recursos'
59
- oops_nothing_found: 'Oops! Nada encontrado...'
60
- type_to_search: 'Digite para buscar.'
61
- and_x_other_resources: 'e %{count} outros recursos'
62
- go_back: 'Voltar'
63
- home: 'Início'
64
- new: 'novo'
65
- attach_item: 'Anexar %{item}'
66
- choose_item: 'Escolher %{item}'
67
- create_new_item: 'Criar novo %{item}'
68
- table_view: 'Visualização em tabela'
69
- grid_view: 'Visualização em grade'
70
- next_page: 'Próxima página'
71
- prev_page: 'Página anterior'
72
- list_is_empty: 'Lista vazia'
4
+ action_ran_successfully: Ação executada com sucesso!
5
+ actions: Ações
6
+ and_x_other_resources: e %{count} outros recursos
7
+ are_you_sure: Você tem certeza?
8
+ are_you_sure_detach_item: Você tem certeza que deseja separar este %{item}.
9
+ are_you_sure_you_want_to_run_this_option: Você tem certeza que deseja executar esta ação?
10
+ attach: Anexar
11
+ attach_and_attach_another: Anexar & anexar outro
12
+ attach_item: Anexar %{item}
13
+ attachment_class_attached: "%{attachment_class} anexado."
14
+ attachment_class_detached: "%{attachment_class} separado."
15
+ attachment_destroyed: Anexo destruído
16
+ cancel: Cancelar
17
+ choose_a_country: Escolha um país
18
+ choose_an_option: Escolha uma opção
19
+ choose_item: Escolher %{item}
20
+ clear_value: Limpar valor
21
+ click_to_reveal_filters: Clique para revelar os filtros
22
+ confirm: Confirmar
23
+ create_new_item: Criar novo %{item}
24
+ dashboard: Painel
25
+ dashboards: Painéis
26
+ delete: deletar
27
+ delete_file: Deletar arquivo
28
+ delete_item: Deletar %{item}
29
+ detach_item: separar %{item}
30
+ details: detalhe
31
+ download: Baixar
32
+ download_file: Baixar arquivo
33
+ download_item: Baixar %{item}
34
+ edit: editar
35
+ edit_item: editar %{item}
36
+ empty_dashboard_message: Adicionar cartões a este painel
37
+ failed: Falhou
38
+ failed_to_find_attachment: Falhou ao achar anexo
39
+ failed_to_load: Falha ao carregar
73
40
  field_translations:
74
41
  file:
75
- zero: 'arquivos'
76
- one: 'arquivo'
77
- other: 'arquivos'
42
+ one: arquivo
43
+ other: arquivos
44
+ zero: arquivos
45
+ people:
46
+ one: pessoa
47
+ other: pessoas
48
+ zero: ninguém
49
+ filters: Filtros
50
+ go_back: Voltar
51
+ grid_view: Visualização em grade
52
+ hide_content: Esconder conteúdo
53
+ home: Início
54
+ key_value_field:
55
+ add_row: Adicionar linha
56
+ delete_row: Remover linha
57
+ key: Chave
58
+ value: Valor
59
+ list_is_empty: Lista vazia
60
+ loading: Carregando
61
+ more: Mais
62
+ new: novo
63
+ next_page: Próxima página
64
+ no_cards_present: Nenhum cartão presente
65
+ no_item_found: Nenhum %{item} encontrado
66
+ no_options_available: Nenhuma opção disponível
67
+ no_related_item_found: Nenhum %{item} relacionado encontrado
68
+ not_authorized: Você não está autorizado à executar essa ação.
69
+ number_of_items:
70
+ one: um %{item}
71
+ other: "%{count} %{item}"
72
+ zero: sem %{item}
73
+ oops_nothing_found: Oops! Nada encontrado...
74
+ order:
75
+ higher: Mover registro um para cima
76
+ lower: Mover registro um para baixo
77
+ reorder_record: Reordenar registro
78
+ to_bottom: Mover registro para baixo
79
+ to_top: Mover registro para cima
80
+ per_page: Por página
81
+ prev_page: Página anterior
82
+ remove_selection: Remover seleção
83
+ reset_filters: Limpar filtros
84
+ resource_created: Recurso criado
85
+ resource_destroyed: Recurso destruído
78
86
  resource_translations:
79
87
  user:
80
- zero: 'usuários'
81
- one: 'usuário'
82
- other: 'usuários'
83
- reset_filters: 'Limpar filtros'
84
- not_authorized: 'Você não está autorizado à executar essa ação.'
88
+ one: usuário
89
+ other: usuários
90
+ zero: usuários
91
+ resource_updated: Recurso atualizado
92
+ resources: Recursos
93
+ run: Executar
94
+ save: Salvar
85
95
  search:
86
- placeholder: 'Procurar'
87
- cancel_button: 'Cancelar'
88
- sign_out: 'sair'
96
+ cancel_button: Cancelar
97
+ placeholder: Procurar
98
+ select_all: Selecionar tudo
99
+ select_all_matching: Selecione todas as correspondências
100
+ select_item: Selecionar item
101
+ show_content: Mostrar conteúdo
102
+ sign_out: sair
103
+ switch_to_view: Alterar para visão %{view_type}
104
+ table_view: Visualização em tabela
89
105
  tools: Ferramentas
90
- empty_dashboard_message: Adicionar cartões a este painel
91
- no_cards_present: Nenhum cartão presente
92
- no_options_available: Nenhuma opção disponível
106
+ type_to_search: Digite para buscar.
107
+ unauthorized: Não autorizado
108
+ undo: desfazer
109
+ view: Visualizar
110
+ view_item: visualizar %{item}
111
+ was_successfully_created: foi criado com sucesso
112
+ was_successfully_updated: foi atualizado com sucesso
113
+ x_items_more:
114
+ one: mais um item
115
+ other: "%{count} mais items"
116
+ zero: mais nenhum item
93
117
  x_records_selected_from_a_total_of_x_html: <span class="font-bold text-gray-700">%{selected}</span> registros selecionados nesta página de um total de <span class="font-bold text-gray-700">%{count}</span>
94
118
  x_records_selected_from_all_pages_html: <span class="font-bold text-gray-700">%{count}</span> registros selecionados de todas as páginas
119
+ you_missed_something_check_form: Você pode ter esquecido algo. Por favor, cheque o formulário.
@@ -1,91 +1,119 @@
1
+ ---
1
2
  ro:
2
3
  avo:
3
- dashboard: 'Panou de control'
4
- dashboards: 'Panouri de control'
5
- choose_a_country: 'Alege o tara'
6
- choose_an_option: 'Alege o optiune'
7
- are_you_sure_you_want_to_run_this_option: 'Esti sigur ca vrei sa rulezi aceasta actiune?'
8
- run: 'Ruleaza'
9
- cancel: 'Anuleaza'
10
- action_ran_successfully: 'Actiunea a rulat cu succes!'
11
- details: "detalii"
12
- unauthorized: 'Neautorizat'
13
- attachment_class_attached: '%{attachment_class} anexat.'
14
- attachment_class_detached: '%{attachment_class} separat.'
15
- resource_updated: 'Resursa actualizata'
16
- resource_created: 'Resursa creata'
17
- resource_destroyed: 'Resursa stearsa'
18
- remove_selection: 'Sterge selectia'
19
- select_item: 'Selecteaza record'
20
- select_all: 'Selecteaza totul'
21
- select_all_matching: 'Selecteaza toate care se potrivesc'
22
- undo: Anuleaza
23
- delete_file: 'Sterge fisierul'
24
- delete: 'sterge'
25
- delete_item: 'Sterge %{item}'
26
- download_item: 'Descarca %{item}'
27
- download: 'Descarca'
28
- view: 'vezi'
29
- view_item: 'vezi %{item}'
30
- edit: 'modifica'
31
- edit_item: 'modifica %{item}'
32
- detach_item: 'detaseaza %{item}'
33
- number_of_items:
34
- zero: '0 %{item}'
35
- one: 'un %{item}'
36
- other: '%{count} %{item}'
37
- are_you_sure: 'Esti sigur?'
38
- filters: 'Filtre'
39
- per_page: 'Pe pagina'
40
- more: 'Mai multe'
41
- attach: 'Ataseaza'
42
- save: 'Salveaza'
43
- attach_and_attach_another: 'Ataseaza si ataseaza inca unul'
44
- hide_content: 'Ascunde continutul'
45
- show_content: 'Arata continutul'
46
- no_related_item_found: 'Nu s-au gasit %{item} asociate'
47
- no_item_found: 'Nu s-au gasit %{item}'
48
- loading: 'Se incarca'
49
- confirm: 'Confirm'
50
- actions: 'Actiuni'
51
- resources: 'Resurse'
52
- oops_nothing_found: 'Oups! Nu am gasit rezultate...'
53
- type_to_search: 'Cauta aici...'
54
- and_x_other_resources: 'plus alte %{count} resources'
55
- go_back: 'Inapoi'
56
- home: 'Acasa'
57
- attach_item: 'Anexeaza %{item}'
58
- choose_item: 'Alege %{item}'
59
- create_new_item: 'Creeaza %{item}'
60
- table_view: 'Vezi sub forma de tabel'
61
- grid_view: 'Vezi sub forma de grid'
62
- next_page: 'Pagina urmatoare'
63
- prev_page: 'Pagina anterioara'
64
- list_is_empty: 'Lista este goala'
4
+ action_ran_successfully: Actiunea a rulat cu succes!
5
+ actions: Actiuni
6
+ and_x_other_resources: plus alte %{count} resources
7
+ are_you_sure: Esti sigur?
8
+ are_you_sure_detach_item: Sigur vrei detașezi asta %{item}.
9
+ are_you_sure_you_want_to_run_this_option: Esti sigur ca vrei sa rulezi aceasta actiune?
10
+ attach: Ataseaza
11
+ attach_and_attach_another: Ataseaza si ataseaza inca unul
12
+ attach_item: Anexeaza %{item}
13
+ attachment_class_attached: "%{attachment_class} anexat."
14
+ attachment_class_detached: "%{attachment_class} separat."
15
+ attachment_destroyed: Atașamentul a fost distrus
16
+ cancel: Anuleaza
17
+ choose_a_country: Alege o tara
18
+ choose_an_option: Alege o optiune
19
+ choose_item: Alege %{item}
20
+ clear_value: Sterge valoarea
21
+ click_to_reveal_filters: Faceți clic pentru a afișa filtrele
22
+ confirm: Confirm
23
+ create_new_item: Creeaza %{item}
24
+ dashboard: Panou de control
25
+ dashboards: Panouri de control
26
+ delete: sterge
27
+ delete_file: Sterge fisierul
28
+ delete_item: Sterge %{item}
29
+ detach_item: detaseaza %{item}
30
+ details: detalii
31
+ download: Descarca
32
+ download_file: Descărcă fișier
33
+ download_item: Descarca %{item}
34
+ edit: modifica
35
+ edit_item: modifica %{item}
36
+ empty_dashboard_message: Adauga carduri in acest dashboard
37
+ failed: A eșuat
38
+ failed_to_find_attachment: Atașamentul nu a fost găsit
39
+ failed_to_load: Incarcarea a esuat
65
40
  field_translations:
66
41
  file:
67
- zero: 'fisiere'
68
- one: 'fisier'
69
- other: 'fisiere'
42
+ one: fisier
43
+ other: fisiere
44
+ zero: fisiere
45
+ people:
46
+ one: peep
47
+ other: peeps
48
+ zero: peeps
49
+ filters: Filtre
50
+ go_back: Inapoi
51
+ grid_view: Vezi sub forma de grid
52
+ hide_content: Ascunde continutul
53
+ home: Acasa
54
+ key_value_field:
55
+ add_row: Adauga rand
56
+ delete_row: Sterge rand
57
+ key: Cheie
58
+ value: Valoare
59
+ list_is_empty: Lista este goala
60
+ loading: Se incarca
61
+ more: Mai multe
62
+ new: nou
63
+ next_page: Pagina urmatoare
64
+ no_cards_present: Niciun card disponibil
65
+ no_item_found: Nu s-au gasit %{item}
66
+ no_options_available: Nicio optiune disponibila
67
+ no_related_item_found: Nu s-au gasit %{item} asociate
68
+ not_authorized: Nu sunteți autorizat să efectuați această acțiune.
69
+ number_of_items:
70
+ one: un %{item}
71
+ other: "%{count} %{item}"
72
+ zero: 0 %{item}
73
+ oops_nothing_found: Oups! Nu am gasit rezultate...
74
+ order:
75
+ higher: Mutați înregistrarea mai sus
76
+ lower: Mutați înregistrarea mai jos
77
+ reorder_record: Reordonați înregistrarea
78
+ to_bottom: Mutați înregistrarea jos de tot
79
+ to_top: Mutați înregistrarea sus de tot
80
+ per_page: Pe pagina
81
+ prev_page: Pagina anterioara
82
+ remove_selection: Sterge selectia
83
+ reset_filters: Resetați filtrele
84
+ resource_created: Resursa creata
85
+ resource_destroyed: Resursa stearsa
70
86
  resource_translations:
71
87
  user:
72
- zero: 'utilizatori'
73
- one: 'utilizator'
74
- other: 'utilizatori'
88
+ one: utilizator
89
+ other: utilizatori
90
+ zero: utilizatori
91
+ resource_updated: Resursa actualizata
92
+ resources: Resurse
93
+ run: Ruleaza
94
+ save: Salveaza
75
95
  search:
76
- placeholder: 'Cauta'
77
- cancel_button: 'Anulare'
78
- sign_out: 'Delogare'
79
- key_value_field:
80
- key: 'Cheie'
81
- value: 'Valoare'
82
- add_row: 'Adauga rand'
83
- delete_row: 'Sterge rand'
84
- was_successfully_created: 'a fost creat'
85
- was_successfully_updated: 'a fost actualizat'
96
+ cancel_button: Anulare
97
+ placeholder: Cauta
98
+ select_all: Selecteaza totul
99
+ select_all_matching: Selecteaza toate care se potrivesc
100
+ select_item: Selecteaza record
101
+ show_content: Arata continutul
102
+ sign_out: Delogare
103
+ switch_to_view: Comutați la vizualizarea %{view_type}
104
+ table_view: Vezi sub forma de tabel
86
105
  tools: Instrumente
87
- empty_dashboard_message: Adauga carduri in acest dashboard
88
- no_cards_present: Niciun card disponibil
89
- no_options_available: Nicio optiune disponibila
106
+ type_to_search: Cauta aici...
107
+ unauthorized: Neautorizat
108
+ undo: Anuleaza
109
+ view: vezi
110
+ view_item: vezi %{item}
111
+ was_successfully_created: a fost creat
112
+ was_successfully_updated: a fost actualizat
113
+ x_items_more:
114
+ one: încă un articol
115
+ other: "%{count} mai multe articole"
116
+ zero: zero articole
90
117
  x_records_selected_from_a_total_of_x_html: <span class="font-bold text-gray-700">%{selected}</span> selectate dintr-un total de <span class="font-bold text-gray-700">%{count}</span>
91
118
  x_records_selected_from_all_pages_html: <span class="font-bold text-gray-700">%{count}</span> selectate din toate paginile
119
+ you_missed_something_check_form: S-ar putea să fi omis ceva. Vă rugăm să verificați formularul.
@@ -0,0 +1,119 @@
1
+ ---
2
+ tr:
3
+ avo:
4
+ action_ran_successfully: Eylem başarıyla gerçekleşti!
5
+ actions: Aksiyonlar
6
+ and_x_other_resources: ve %{count} diğer kaynak
7
+ are_you_sure: Emin misiniz?
8
+ are_you_sure_detach_item: "%{item} öğesini ayırmak istediğinizden emin misiniz?"
9
+ are_you_sure_you_want_to_run_this_option: Bu işlemi gerçekleştirmek istediğinize emin misiniz?
10
+ attach: İlişkilendir
11
+ attach_and_attach_another: İlişkilendir & Bir başka daha İlişkilendir
12
+ attach_item: "%{item} öğesini ilişkilendir"
13
+ attachment_class_attached: "%{attachment_class} ilişkilendirildi."
14
+ attachment_class_detached: "%{attachment_class} ilişkisi kesildi."
15
+ attachment_destroyed: Ek silindi
16
+ cancel: İptal et
17
+ choose_a_country: Bir ülke seç
18
+ choose_an_option: Bir seçenek seç
19
+ choose_item: "%{item} seçin"
20
+ clear_value: Değeri temizle
21
+ click_to_reveal_filters: Filtreleri ortaya çıkarmak için tıklayın
22
+ confirm: Onayla
23
+ create_new_item: Yeni bir %{item} oluşturun
24
+ dashboard: Yönetim Paneli
25
+ dashboards: Yönetim Panelleri
26
+ delete: sil
27
+ delete_file: Dosyayı sil
28
+ delete_item: "%{item} öğresini sil"
29
+ detach_item: "%{item} öğesinin ilişkisini kes"
30
+ details: detaylar
31
+ download: İndir
32
+ download_file: Dosya indir
33
+ download_item: "%{item} öğesini indir"
34
+ edit: düzenle
35
+ edit_item: "%{item} öğesini düzenle"
36
+ empty_dashboard_message: Kartları yönetim paneline ekle
37
+ failed: Başarısız
38
+ failed_to_find_attachment: Ek bulunamadı
39
+ failed_to_load: Yüklenemedi
40
+ field_translations:
41
+ file:
42
+ one: dosya
43
+ other: dosya
44
+ zero: dosya
45
+ people:
46
+ one: kişi
47
+ other: kişi
48
+ zero: kişi
49
+ filters: Filtreler
50
+ go_back: Geri dön
51
+ grid_view: Grid görünümü
52
+ hide_content: İçeriği gizle
53
+ home: Anasayfa
54
+ key_value_field:
55
+ add_row: Satır ekle
56
+ delete_row: Satır sil
57
+ key: Anahtar
58
+ value: Değer
59
+ list_is_empty: Boş liste
60
+ loading: Yükleniyor
61
+ more: Daha fazla
62
+ new: yeni
63
+ next_page: Sonraki sayfa
64
+ no_cards_present: Kart yok
65
+ no_item_found: Hiç %{item} bulunamadı
66
+ no_options_available: Seçenek yok
67
+ no_related_item_found: İlişkili %{item} bulunamadı
68
+ not_authorized: Bu eylemi gerçekleştirme yetkiniz yok.
69
+ number_of_items:
70
+ one: bir %{item}
71
+ other: "%{count} %{item}"
72
+ zero: sıfır %{item}
73
+ oops_nothing_found: Hata! Hiçbir şey bulunamadı
74
+ order:
75
+ higher: Kaydı yüksekten sırala
76
+ lower: Kaydı düşükten sırala
77
+ reorder_record: Kaydı yeniden sırala
78
+ to_bottom: Kaydı en alta taşı
79
+ to_top: Kaydı en üste taşı
80
+ per_page: Sayfa başına
81
+ prev_page: Önceki sayfa
82
+ remove_selection: Seçimi sil
83
+ reset_filters: Filtreleri sıfırla
84
+ resource_created: Kayıt oluşturuldu
85
+ resource_destroyed: Kayıt silindi
86
+ resource_translations:
87
+ user:
88
+ one: kullanıcı
89
+ other: kullanıcı
90
+ zero: kullanıcı
91
+ resource_updated: Kayıt güncellendi
92
+ resources: Kaynaklar
93
+ run: Başlat
94
+ save: Kaydet
95
+ search:
96
+ cancel_button: İptal et
97
+ placeholder: Ara
98
+ select_all: Tümünü seç
99
+ select_all_matching: Tüm eşleşenleri seç
100
+ select_item: Öğe seç
101
+ show_content: İçeriği göster
102
+ sign_out: Çıkış yap
103
+ switch_to_view: "%{view_type} görünümüne kay"
104
+ table_view: Tablo görünümü
105
+ tools: Araçlar
106
+ type_to_search: Aramak için yazın.
107
+ unauthorized: Yetkisiz
108
+ undo: geri al
109
+ view: Görünüm
110
+ view_item: "%{item} öğresini görüntüle"
111
+ was_successfully_created: başarıyla oluşturuldu
112
+ was_successfully_updated: başarıyla güncellendi
113
+ x_items_more:
114
+ one: bir öğe daha
115
+ other: "%{count} öğe daha"
116
+ zero: daha fazla öğe yok
117
+ x_records_selected_from_a_total_of_x_html: <span class="font-bold text-gray-700">%{selected}</span> bu sayfada seçilen toplam kayıtlar <span class="font-bold text-gray-700">%{count}</span>
118
+ x_records_selected_from_all_pages_html: <span class="font-bold text-gray-700">%{count}</span> tüm sayfalardan seçilen kayıtlar
119
+ you_missed_something_check_form: Bir şeyleri kaçırmış olabilirsiniz. Lütfen formu kontrol edin.