active_scaffold 4.3.0 → 4.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.rdoc +9 -0
- data/README.md +7 -5
- data/app/assets/javascripts/active_scaffold/active_scaffold.js +9 -5
- data/app/views/active_scaffold_overrides/_new_record.js.erb +2 -2
- data/app/views/active_scaffold_overrides/_refresh_list.js.erb +1 -1
- data/app/views/active_scaffold_overrides/add_tab.js.erb +2 -3
- data/app/views/active_scaffold_overrides/destroy.js.erb +2 -2
- data/app/views/active_scaffold_overrides/on_update.js.erb +1 -1
- data/config/locales/de.yml +19 -15
- data/config/locales/en.yml +5 -4
- data/config/locales/es.yml +16 -8
- data/config/locales/fr.yml +27 -20
- data/config/locales/hu.yml +35 -31
- data/config/locales/ja.yml +39 -38
- data/config/locales/ru.yml +37 -36
- data/config/locales/ta.yml +165 -0
- data/config/locales/zh_Hans.yml +163 -0
- data/lib/active_scaffold/bridges/date_picker/helper.rb +12 -1
- data/lib/active_scaffold/helpers/tabs_helpers.rb +1 -1
- data/lib/active_scaffold/tableless.rb +1 -1
- data/lib/active_scaffold/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d91707ceb87840fe28313d879f1c013d577ee96ed32bebe8943a39179cdbf380
|
|
4
|
+
data.tar.gz: 43e8949c1b351f672f11c99f6df2cf274262df5e3fbd7ce1c75b10f49c290ef3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a28f9c8088844f67c7cd5dea3c9221f15d998d6fcb89617639bb5092501e21a5ac2d5c49927877244d5b2b99579da370272203caec7b3159c9035dafdc02f7c1
|
|
7
|
+
data.tar.gz: c49905306ccda62812b8ca6ed24d25fc4c490948f56cfd2a1ab9e403fc483962080f4b0911e29db9dce97572fd82473a5a65de3f0c5a26bce95a1449058fcece
|
data/CHANGELOG.rdoc
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
= 4.3.2
|
|
2
|
+
- Fix adding tab in tabbed forms
|
|
3
|
+
|
|
4
|
+
= 4.3.1
|
|
5
|
+
- Support Ruby 4
|
|
6
|
+
- Fix date picker options translated as strings, preserving boolean and integer values
|
|
7
|
+
- Fix escaping URLs in JavaScript responses, fixing auto pagination and actions with render_parent
|
|
8
|
+
|
|
9
|
+
= 4.3.0
|
|
1
10
|
- Support translating enums (or options for :select form_ui on any column) nested in the pluralized name of the column, activerecord.attributes.model_name.pluralized_column.enum_value, defaults to old way activerecord.attributes.model_name.enum_value
|
|
2
11
|
- Support :subform_columns option in column form_ui_options, or column's options, when the column is rendered as subform
|
|
3
12
|
- Use :subform_columns option in :horizontal and :vertical show_ui too
|
data/README.md
CHANGED
|
@@ -4,17 +4,19 @@
|
|
|
4
4
|
[](https://qlty.sh/gh/activescaffold/projects/active_scaffold)
|
|
5
5
|
[](https://qlty.sh/gh/activescaffold/projects/active_scaffold)
|
|
6
6
|
[](https://badge.fury.io/rb/active_scaffold)
|
|
7
|
+
[](https://hosted.weblate.org/engage/activescaffold/)
|
|
7
8
|
[](https://inch-ci.org/github/activescaffold/active_scaffold)
|
|
8
9
|
[](https://opensource.org/licenses/MIT)
|
|
9
10
|
|
|
10
|
-
ActiveScaffold provides a quick and powerful user interfaces for CRUD (create, read, update, delete) operations for Rails applications. It offers additonal features including searching, pagination & layout control. Rails >=
|
|
11
|
+
ActiveScaffold provides a quick and powerful user interfaces for CRUD (create, read, update, delete) operations for Rails applications. It offers additonal features including searching, pagination & layout control. Rails >= 7.2.0 is supported, ruby >= 3.2 required.
|
|
11
12
|
|
|
12
13
|
## Branch Details
|
|
13
14
|
|
|
14
15
|
master supports rails >= 7.2.x and ruby >= 3.2.0
|
|
15
|
-
4-
|
|
16
|
+
4-3-stable supports rails >= 7.2.x and <= 8.1.x, and ruby >= 3.2.0
|
|
16
17
|
|
|
17
18
|
These versions are not supported anymore:
|
|
19
|
+
4-2-stable supports rails >= 7.2.x and <= 8.1.x, and ruby >= 3.2.0
|
|
18
20
|
4-1-stable supports rails >= 7.0.x and <= 7.2.x, and ruby >= 3.1.0
|
|
19
21
|
4-0-stable supports rails >= 6.1.x and <= 7.2.x, and ruby >= 2.5.0
|
|
20
22
|
3-7-stable supports rails >= 5.2.x and <= 7.1.x, and ruby >= 2.5.0
|
|
@@ -207,13 +209,13 @@ Released under the MIT license (included)
|
|
|
207
209
|
|
|
208
210
|
---
|
|
209
211
|
|
|
210
|
-
A ruby translation project managed on [
|
|
212
|
+
A ruby translation project managed on [Weblate](http://weblate.org/) that's open to all!
|
|
211
213
|
|
|
212
214
|
## Contributing to ActiveScaffold
|
|
213
215
|
|
|
214
|
-
- Edit the translations directly on the [active_scaffold](
|
|
216
|
+
- Edit the translations directly on the [active_scaffold](https://hosted.weblate.org/engage/activescaffold/) project on Weblate.
|
|
215
217
|
- **That's it!**
|
|
216
|
-
-
|
|
218
|
+
- Weblate will send a PR to Github.
|
|
217
219
|
|
|
218
220
|
Happy translating!
|
|
219
221
|
|
|
@@ -150,6 +150,14 @@
|
|
|
150
150
|
if (opts.disabled) jQuery(this).find('.ui-slider-handle').hide();
|
|
151
151
|
});
|
|
152
152
|
},
|
|
153
|
+
activate_tab: function(tab_ctrl) {
|
|
154
|
+
tab_ctrl = jQuery(tab_ctrl);
|
|
155
|
+
var tabbed = tab_ctrl.closest('.tabbed');
|
|
156
|
+
tabbed.find('.nav-tabs .active').removeClass('active');
|
|
157
|
+
tabbed.find('.tab-content .active').removeClass('in active');
|
|
158
|
+
tab_ctrl.addClass('active');
|
|
159
|
+
jQuery(tab_ctrl.attr('href')).addClass('in active');
|
|
160
|
+
},
|
|
153
161
|
load_embedded: function(element) {
|
|
154
162
|
jQuery('.active-scaffold-component .load-embedded', element).each(function(index, item) {
|
|
155
163
|
item = jQuery(item);
|
|
@@ -1572,11 +1580,7 @@
|
|
|
1572
1580
|
jQuery(document).on('click', '.active-scaffold .tabbed .nav-tabs a', function(e) {
|
|
1573
1581
|
if (typeof jQuery().tab == 'function') return; // bootstrap tab plugin is loaded and will handle tabs
|
|
1574
1582
|
e.preventDefault();
|
|
1575
|
-
|
|
1576
|
-
tabbed.find('.nav-tabs .active').removeClass('active');
|
|
1577
|
-
tabbed.find('.tab-content .active').removeClass('in active');
|
|
1578
|
-
tab_ctrl.closest('li').addClass('active');
|
|
1579
|
-
jQuery(tab_ctrl.attr('href')).addClass('in active');
|
|
1583
|
+
ActiveScaffold.activate_tab(this);
|
|
1580
1584
|
});
|
|
1581
1585
|
|
|
1582
1586
|
jQuery(document).on('turbolinks:before-visit turbo:before-visit', function() {
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
<% if nested_singular_association? %>
|
|
3
3
|
if (action_link) action_link.close(true);
|
|
4
4
|
<% elsif params[:parent_sti] && render_parent_action == :row %>
|
|
5
|
-
ActiveScaffold.create_record_row_from_url(action_link, '<%= url_for(render_parent_options) %>', <%= {insert_at: insert_at}.to_json.html_safe %>);
|
|
5
|
+
ActiveScaffold.create_record_row_from_url(action_link, '<%=raw url_for(render_parent_options) %>', <%= {insert_at: insert_at}.to_json.html_safe %>);
|
|
6
6
|
<% else %>
|
|
7
|
-
ActiveScaffold.reload('<%= url_for render_parent_options %>');
|
|
7
|
+
ActiveScaffold.reload('<%=raw url_for render_parent_options %>');
|
|
8
8
|
<% end %>
|
|
9
9
|
<% elsif active_scaffold_config.create.refresh_list %>
|
|
10
10
|
<%= render 'refresh_list', no_history: true %>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
ActiveScaffold.append('<%= active_scaffold_tbody_id %>', '<%= escape_javascript(render(partial: list_record_view, collection: @page.items, locals: {hidden: false, columns: list_columns, action_links: active_scaffold_config.action_links.member})) %>');
|
|
4
4
|
|
|
5
5
|
<% if @page.pager.infinite? || @page.number < @page.pager.number_of_pages -%>
|
|
6
|
-
ActiveScaffold.auto_load_page('<%= url_for main_path_to_return %>', {auto_pagination: true, page: <%= @page.number + 1 %>});
|
|
6
|
+
ActiveScaffold.auto_load_page('<%=raw url_for main_path_to_return %>', {auto_pagination: true, page: <%= @page.number + 1 %>});
|
|
7
7
|
<% else %>
|
|
8
8
|
ActiveScaffold.hide('<%= loading_indicator_id(action: :pagination) %>');
|
|
9
9
|
<% end # @page.pager.infinite?... %>
|
|
@@ -8,8 +8,7 @@
|
|
|
8
8
|
tab_content = render('form', columns: @column, subsection_id: "#{subsection_id}-#{tab_id_suffix}", form_action: @form_action, scope: @scope, tab_value: tab_record || tab_value, tab_id: tab_id_suffix, tabbed_by: @column.tabbed_by)
|
|
9
9
|
tab = active_scaffold_tab_content(tab_id, true, tab_content)
|
|
10
10
|
%>
|
|
11
|
-
jQuery('#<%= subsection_id %> .tab-content > .tab-pane.active').removeClass('in active');
|
|
12
11
|
ActiveScaffold.create_associated_record_form('<%= subsection_id %> .tab-content', '<%= j tab %>', {singular: false});
|
|
13
|
-
jQuery('#<%= subsection_id %> .nav-tabs').find('
|
|
12
|
+
ActiveScaffold.activate_tab(jQuery('<%= j active_scaffold_tab(tab_label, tab_id, true) %>').appendTo('#<%= subsection_id %> .nav-tabs').find('a'));
|
|
14
13
|
jQuery('#<%= @source_id %> option[value=<%= tab_value %>]').hide().parent().val('');
|
|
15
|
-
<% end %>
|
|
14
|
+
<% end %>
|
|
@@ -3,14 +3,14 @@
|
|
|
3
3
|
<% if render_parent? %>
|
|
4
4
|
<% if render_parent_action == :row %>
|
|
5
5
|
<% current_id = controller_id(params[:eid] || params[:parent_sti]) -%>
|
|
6
|
-
ActiveScaffold.delete_record_row('<%= element_row_id(controller_id: current_id, action: 'list', id: params[:id]) %>', '<%= url_for params_for(render_parent_options.merge(id: nil, page: [active_scaffold_config.list.user.page.to_i - 1, 1].max)) %>');
|
|
6
|
+
ActiveScaffold.delete_record_row('<%= element_row_id(controller_id: current_id, action: 'list', id: params[:id]) %>', '<%=raw url_for params_for(render_parent_options.merge(id: nil, page: [active_scaffold_config.list.user.page.to_i - 1, 1].max)) %>');
|
|
7
7
|
<% messages_id = active_scaffold_messages_id(controller_id: current_id) %>
|
|
8
8
|
<%= render 'update_calculations', calculations_id: active_scaffold_calculations_id(controller_id: current_id) %>
|
|
9
9
|
<% elsif render_parent_action == :index %>
|
|
10
10
|
<% if controller.respond_to?(:render_component_into_view, true) %>
|
|
11
11
|
<%= escape_javascript(controller.send(:render_component_into_view, render_parent_options)) %>
|
|
12
12
|
<% else %>
|
|
13
|
-
ActiveScaffold.reload('<%= url_for render_parent_options %>');
|
|
13
|
+
ActiveScaffold.reload('<%=raw url_for render_parent_options %>');
|
|
14
14
|
<% end %>
|
|
15
15
|
<% end %>
|
|
16
16
|
<% elsif active_scaffold_config.delete.refresh_list %>
|
|
@@ -16,7 +16,7 @@ if (action_link) action_link.update_flash_messages('<%= escape_javascript(render
|
|
|
16
16
|
<% if nested_singular_association? || render_parent_action == :row %>
|
|
17
17
|
if (action_link) action_link.close(true);
|
|
18
18
|
<% else %>
|
|
19
|
-
ActiveScaffold.reload('<%= url_for render_parent_options %>');
|
|
19
|
+
ActiveScaffold.reload('<%=raw url_for render_parent_options %>');
|
|
20
20
|
<% end %>
|
|
21
21
|
<% elsif update_refresh_list? %>
|
|
22
22
|
<%= render 'refresh_list', no_history: true %>
|
data/config/locales/de.yml
CHANGED
|
@@ -12,8 +12,8 @@ de:
|
|
|
12
12
|
add_existing: Existierenden Eintrag hinzufügen
|
|
13
13
|
add_existing_model: Existierende %{model} hinzufügen
|
|
14
14
|
add_model: "%{model} hinzufügen"
|
|
15
|
-
all_tokens:
|
|
16
|
-
any_token:
|
|
15
|
+
all_tokens: All keywords
|
|
16
|
+
any_token: Any keyword
|
|
17
17
|
apply: Akzeptieren
|
|
18
18
|
are_you_sure_to_delete: Sind Sie sicher?
|
|
19
19
|
average: Durchschnitt
|
|
@@ -22,7 +22,7 @@ de:
|
|
|
22
22
|
cancel: Abbrechen
|
|
23
23
|
cant_destroy_record: "%{record} kann nicht gelöscht werden"
|
|
24
24
|
changes: Änderungen
|
|
25
|
-
check_all:
|
|
25
|
+
check_all: Check all
|
|
26
26
|
click_to_edit: Zum Editieren anklicken
|
|
27
27
|
click_to_reset: Reset
|
|
28
28
|
close: Schließen
|
|
@@ -37,9 +37,9 @@ de:
|
|
|
37
37
|
created_model: "%{model} angelegt"
|
|
38
38
|
customize: Anpassen
|
|
39
39
|
date_picker_options:
|
|
40
|
-
firstDay: 1
|
|
41
|
-
isRTL: false
|
|
42
|
-
showMonthAfterYear: false
|
|
40
|
+
firstDay: '1'
|
|
41
|
+
isRTL: 'false'
|
|
42
|
+
showMonthAfterYear: 'false'
|
|
43
43
|
weekHeader: Wo
|
|
44
44
|
datetime_picker_options:
|
|
45
45
|
closeText: Schließen
|
|
@@ -51,9 +51,9 @@ de:
|
|
|
51
51
|
deleted_model: "%{model} gelöscht"
|
|
52
52
|
deleted_records: Gelöschte Records auflisten
|
|
53
53
|
delimiter: Trennzeichen
|
|
54
|
-
doesnt_begin_with:
|
|
55
|
-
doesnt_contain:
|
|
56
|
-
doesnt_end_with:
|
|
54
|
+
doesnt_begin_with: Doesn't begin with
|
|
55
|
+
doesnt_contain: Doesn't contain
|
|
56
|
+
doesnt_end_with: Doesn't end with
|
|
57
57
|
download: Herunterladen
|
|
58
58
|
edit: Bearbeiten
|
|
59
59
|
ends_with: Endet
|
|
@@ -80,7 +80,7 @@ de:
|
|
|
80
80
|
internal_error: Fehler bei der Verarbeitung
|
|
81
81
|
live_search: Live-Suche
|
|
82
82
|
loading: Lade…
|
|
83
|
-
logical_search:
|
|
83
|
+
logical_search: Logical Search
|
|
84
84
|
mark_all_records: Alle auswählen
|
|
85
85
|
maximum: Maximum
|
|
86
86
|
minimum: Minimum
|
|
@@ -136,12 +136,13 @@ de:
|
|
|
136
136
|
today: Heute
|
|
137
137
|
tomorrow: Morgen
|
|
138
138
|
'true': Richtig
|
|
139
|
-
uncheck_all:
|
|
139
|
+
uncheck_all: Uncheck all
|
|
140
140
|
update: Speichern
|
|
141
141
|
update_apply: Bewerben
|
|
142
142
|
update_model: Editiere %{model}
|
|
143
143
|
updated_model: "%{model} aktualisiert"
|
|
144
|
-
version_inconsistency: Inkonsistente Versionen - dieser Eintrag wurde
|
|
144
|
+
version_inconsistency: Inkonsistente Versionen - dieser Eintrag wurde
|
|
145
|
+
verändert nachdem Sie mit der Bearbeitung begonnen haben.
|
|
145
146
|
weeks: Wochen
|
|
146
147
|
years: Jahre
|
|
147
148
|
yesterday: Gestern
|
|
@@ -149,7 +150,7 @@ de:
|
|
|
149
150
|
formats:
|
|
150
151
|
month: "%B"
|
|
151
152
|
quarter: Quartal %{num}
|
|
152
|
-
week:
|
|
153
|
+
week: Week %W, %Y
|
|
153
154
|
year_month: "%b %Y"
|
|
154
155
|
year_quarter: Quartal %{quarter} %{year}
|
|
155
156
|
time:
|
|
@@ -157,6 +158,9 @@ de:
|
|
|
157
158
|
picker: "%d.%m.%Y %H:%M"
|
|
158
159
|
datetime:
|
|
159
160
|
prompts:
|
|
160
|
-
millisec:
|
|
161
|
-
microsec:
|
|
161
|
+
millisec: Millisecond
|
|
162
|
+
microsec: Microsecond
|
|
163
|
+
second: Second
|
|
164
|
+
minute: Minute
|
|
165
|
+
hour: Hour
|
|
162
166
|
|
data/config/locales/en.yml
CHANGED
|
@@ -37,9 +37,9 @@ en:
|
|
|
37
37
|
created_model: Created %{model}
|
|
38
38
|
customize: Customize
|
|
39
39
|
date_picker_options:
|
|
40
|
-
firstDay: 0
|
|
41
|
-
isRTL: false
|
|
42
|
-
showMonthAfterYear: false
|
|
40
|
+
firstDay: '0'
|
|
41
|
+
isRTL: 'false'
|
|
42
|
+
showMonthAfterYear: 'false'
|
|
43
43
|
weekHeader: Wk
|
|
44
44
|
datetime_picker_options:
|
|
45
45
|
closeText: Close
|
|
@@ -141,7 +141,8 @@ en:
|
|
|
141
141
|
update_apply: Apply
|
|
142
142
|
update_model: Update %{model}
|
|
143
143
|
updated_model: Updated %{model}
|
|
144
|
-
version_inconsistency: Version inconsistency - this record has been modified
|
|
144
|
+
version_inconsistency: Version inconsistency - this record has been modified
|
|
145
|
+
since you started editing it.
|
|
145
146
|
weeks: Weeks
|
|
146
147
|
years: Years
|
|
147
148
|
yesterday: Yesterday
|
data/config/locales/es.yml
CHANGED
|
@@ -12,8 +12,8 @@ es:
|
|
|
12
12
|
add_existing: Añadir Existente
|
|
13
13
|
add_existing_model: Añadir %{model} Existente
|
|
14
14
|
add_model: Añadir %{model}
|
|
15
|
-
all_tokens:
|
|
16
|
-
any_token:
|
|
15
|
+
all_tokens: Todas las palabras
|
|
16
|
+
any_token: Cualquier palabra
|
|
17
17
|
apply: Aplicar
|
|
18
18
|
are_you_sure_to_delete: "¿Estás seguro de que quieres borrar %{label}?"
|
|
19
19
|
average: Media
|
|
@@ -37,9 +37,9 @@ es:
|
|
|
37
37
|
created_model: "%{model} creado"
|
|
38
38
|
customize: Personalizar
|
|
39
39
|
date_picker_options:
|
|
40
|
-
firstDay: 1
|
|
41
|
-
isRTL: false
|
|
42
|
-
showMonthAfterYear: false
|
|
40
|
+
firstDay: '1'
|
|
41
|
+
isRTL: 'false'
|
|
42
|
+
showMonthAfterYear: 'false'
|
|
43
43
|
weekHeader: Sm
|
|
44
44
|
datetime_picker_options:
|
|
45
45
|
closeText: Cerrar
|
|
@@ -63,12 +63,14 @@ es:
|
|
|
63
63
|
body: 'Hubo problemas con los siguientes campos:'
|
|
64
64
|
header:
|
|
65
65
|
one: No se pudo guardar %{model} debido a un error.
|
|
66
|
+
many: No se pudo guardar %{model} debido a %{count} errores.
|
|
66
67
|
other: No se pudo guardar %{model} debido a %{count} errores.
|
|
67
68
|
export: Exportar
|
|
68
69
|
'false': 'No'
|
|
69
70
|
filtered: "(Filtrado)"
|
|
70
71
|
found:
|
|
71
72
|
one: encontrado
|
|
73
|
+
many: encontrados
|
|
72
74
|
other: encontrados
|
|
73
75
|
future: Futuro
|
|
74
76
|
group_by: Agrupar por
|
|
@@ -94,7 +96,8 @@ es:
|
|
|
94
96
|
next_month: Próximo mes
|
|
95
97
|
next_week: Próxima semana
|
|
96
98
|
next_year: Próximo año
|
|
97
|
-
no_authorization_for_action: No dispone de autorización para la acción
|
|
99
|
+
no_authorization_for_action: No dispone de autorización para la acción
|
|
100
|
+
%{action}
|
|
98
101
|
no_color: Sin color
|
|
99
102
|
no_entries: Sin entradas
|
|
100
103
|
no_group: No agrupar
|
|
@@ -115,7 +118,8 @@ es:
|
|
|
115
118
|
record_not_saved: Fallo guardando el registro debido a un error desconocido
|
|
116
119
|
records_marked:
|
|
117
120
|
one: 1 %{model} seleccionado
|
|
118
|
-
|
|
121
|
+
many: '%{count} %{model} seleccionados'
|
|
122
|
+
other: '%{count} %{model} seleccionados'
|
|
119
123
|
refresh: Recargar
|
|
120
124
|
remove: Eliminar
|
|
121
125
|
remove_file: Eliminar o Reemplazar archivo
|
|
@@ -143,7 +147,8 @@ es:
|
|
|
143
147
|
update_apply: Aplicar
|
|
144
148
|
update_model: Actualizar %{model}
|
|
145
149
|
updated_model: "%{model} actualizado"
|
|
146
|
-
version_inconsistency: Inconsistencia de versiones - este registro se ha
|
|
150
|
+
version_inconsistency: Inconsistencia de versiones - este registro se ha
|
|
151
|
+
modificado después de que empezó a editarlo.
|
|
147
152
|
weeks: Semanas
|
|
148
153
|
years: Años
|
|
149
154
|
yesterday: Ayer
|
|
@@ -161,3 +166,6 @@ es:
|
|
|
161
166
|
prompts:
|
|
162
167
|
millisec: Milisegundo
|
|
163
168
|
microsec: Microsegundo
|
|
169
|
+
hour: Hora
|
|
170
|
+
minute: Minuto
|
|
171
|
+
second: Segundo
|
data/config/locales/fr.yml
CHANGED
|
@@ -12,8 +12,8 @@ fr:
|
|
|
12
12
|
add_existing: Ajouter un(e) existant(e)
|
|
13
13
|
add_existing_model: Ajouter un(e) %{model} existant(e)
|
|
14
14
|
add_model: Ajouter un(e) %{model}
|
|
15
|
-
all_tokens:
|
|
16
|
-
any_token:
|
|
15
|
+
all_tokens: All keywords
|
|
16
|
+
any_token: Any keyword
|
|
17
17
|
apply: Appliquer
|
|
18
18
|
are_you_sure_to_delete: Êtes vous sûr de vouloir supprimer %{label} ?
|
|
19
19
|
average: Moyenne
|
|
@@ -22,7 +22,7 @@ fr:
|
|
|
22
22
|
cancel: Annuler
|
|
23
23
|
cant_destroy_record: "%{record} ne peut être supprimé"
|
|
24
24
|
changes: Changement
|
|
25
|
-
check_all:
|
|
25
|
+
check_all: Check all
|
|
26
26
|
click_to_edit: Cliquer pour éditer
|
|
27
27
|
click_to_reset: Cliquer pour ré-initialiser
|
|
28
28
|
close: Fermer
|
|
@@ -37,9 +37,9 @@ fr:
|
|
|
37
37
|
created_model: "%{model} créé"
|
|
38
38
|
customize: Personnaliser
|
|
39
39
|
date_picker_options:
|
|
40
|
-
firstDay: 1
|
|
41
|
-
isRTL: false
|
|
42
|
-
showMonthAfterYear: false
|
|
40
|
+
firstDay: '1'
|
|
41
|
+
isRTL: 'false'
|
|
42
|
+
showMonthAfterYear: 'false'
|
|
43
43
|
weekHeader: Sm
|
|
44
44
|
datetime_picker_options:
|
|
45
45
|
closeText: Fermer
|
|
@@ -51,9 +51,9 @@ fr:
|
|
|
51
51
|
deleted_model: Suppression de %{model}
|
|
52
52
|
deleted_records: Lister les enregistrements supprimés
|
|
53
53
|
delimiter: Délimiteur
|
|
54
|
-
doesnt_begin_with:
|
|
55
|
-
doesnt_contain:
|
|
56
|
-
doesnt_end_with:
|
|
54
|
+
doesnt_begin_with: Doesn't begin with
|
|
55
|
+
doesnt_contain: Doesn't contain
|
|
56
|
+
doesnt_end_with: Doesn't end with
|
|
57
57
|
download: Télécharger
|
|
58
58
|
edit: Éditer
|
|
59
59
|
ends_with: Se terminant par
|
|
@@ -63,6 +63,7 @@ fr:
|
|
|
63
63
|
body: 'Il y avait des problèmes avec les champs suivants :'
|
|
64
64
|
header:
|
|
65
65
|
one: 1 erreur interdit ce(tte) %{model} d'être sauvegardé.
|
|
66
|
+
many: "%{count} erreurs interdisent ce(tte) %{model} d'être sauvegardé"
|
|
66
67
|
other: "%{count} erreurs interdisent ce(tte) %{model} d'être sauvegardé"
|
|
67
68
|
export: Exporter
|
|
68
69
|
'false': Faux
|
|
@@ -70,7 +71,7 @@ fr:
|
|
|
70
71
|
found: Trouvé
|
|
71
72
|
future: Futur
|
|
72
73
|
group_by: Grouper par
|
|
73
|
-
grouped_by:
|
|
74
|
+
grouped_by: Grouped by %{column}
|
|
74
75
|
hide: "(Cacher)"
|
|
75
76
|
hours: Heures
|
|
76
77
|
human_conditions:
|
|
@@ -80,7 +81,7 @@ fr:
|
|
|
80
81
|
internal_error: Erreur de la requête
|
|
81
82
|
live_search: Recherche en temps réel
|
|
82
83
|
loading: Chargement…
|
|
83
|
-
logical_search:
|
|
84
|
+
logical_search: Logical Search
|
|
84
85
|
mark_all_records: Marquer tous
|
|
85
86
|
maximum: Maximum
|
|
86
87
|
minimum: Minimum
|
|
@@ -110,10 +111,12 @@ fr:
|
|
|
110
111
|
previous: Précédent
|
|
111
112
|
print: Imprimer
|
|
112
113
|
range: Intervale
|
|
113
|
-
record_not_saved: Impossible d'enregistrer l'enregistrement à cause d'une
|
|
114
|
+
record_not_saved: Impossible d'enregistrer l'enregistrement à cause d'une
|
|
115
|
+
erreur inconnue
|
|
114
116
|
records_marked:
|
|
115
117
|
one: 1 %{model} marqué
|
|
116
|
-
|
|
118
|
+
many: '%{count} %{model} marqués'
|
|
119
|
+
other: '%{count} %{model} marqués'
|
|
117
120
|
refresh: Rafraîchir
|
|
118
121
|
remove: Supprimer
|
|
119
122
|
remove_file: Supprimer ou remplacer le fichier
|
|
@@ -136,26 +139,30 @@ fr:
|
|
|
136
139
|
today: Aujourd'hui
|
|
137
140
|
tomorrow: Demain
|
|
138
141
|
'true': Vrai
|
|
139
|
-
uncheck_all:
|
|
142
|
+
uncheck_all: Uncheck all
|
|
140
143
|
update: Mettre à jour
|
|
141
144
|
update_apply: Appliquer
|
|
142
145
|
update_model: Mettre à jour le(/la) %{model}
|
|
143
146
|
updated_model: Mis à jour de %{model}
|
|
144
|
-
version_inconsistency: Version incomplète - Cet enregistrement a été modifié
|
|
147
|
+
version_inconsistency: Version incomplète - Cet enregistrement a été modifié
|
|
148
|
+
depuis que vous avez commencé à l'éditer.
|
|
145
149
|
weeks: Semaines
|
|
146
150
|
years: Années
|
|
147
151
|
yesterday: Hier
|
|
148
152
|
date:
|
|
149
153
|
formats:
|
|
150
154
|
month: "%B"
|
|
151
|
-
quarter:
|
|
152
|
-
week:
|
|
155
|
+
quarter: Quarter %{num}
|
|
156
|
+
week: Week %W, %Y
|
|
153
157
|
year_month: "%b %Y"
|
|
154
|
-
year_quarter:
|
|
158
|
+
year_quarter: Quarter %{quarter} %{year}
|
|
155
159
|
time:
|
|
156
160
|
formats:
|
|
157
161
|
picker: "%a, %d %b %Y %H:%M:%S"
|
|
158
162
|
datetime:
|
|
159
163
|
prompts:
|
|
160
|
-
millisec:
|
|
161
|
-
microsec:
|
|
164
|
+
millisec: Millisecond
|
|
165
|
+
microsec: Microsecond
|
|
166
|
+
second: Second
|
|
167
|
+
minute: Minute
|
|
168
|
+
hour: Hour
|
data/config/locales/hu.yml
CHANGED
|
@@ -12,8 +12,8 @@ hu:
|
|
|
12
12
|
add_existing: Meglevő hozzáadása
|
|
13
13
|
add_existing_model: Meglevő %{model} hozzáadása
|
|
14
14
|
add_model: "%{model} hozzáadása"
|
|
15
|
-
all_tokens:
|
|
16
|
-
any_token:
|
|
15
|
+
all_tokens: All keywords
|
|
16
|
+
any_token: Any keyword
|
|
17
17
|
apply: Apply
|
|
18
18
|
are_you_sure_to_delete: Are you sure you want to delete %{label}?
|
|
19
19
|
average: Average
|
|
@@ -21,8 +21,8 @@ hu:
|
|
|
21
21
|
between: Között
|
|
22
22
|
cancel: Mégse
|
|
23
23
|
cant_destroy_record: 'nem törölhető: %{record}'
|
|
24
|
-
changes:
|
|
25
|
-
check_all:
|
|
24
|
+
changes: Changes
|
|
25
|
+
check_all: Check all
|
|
26
26
|
click_to_edit: Kattints a szerkesztéshez
|
|
27
27
|
click_to_reset: Kattints az alapállapothoz
|
|
28
28
|
close: Bezárás
|
|
@@ -31,29 +31,29 @@ hu:
|
|
|
31
31
|
contains: Contains
|
|
32
32
|
create: Létrehozás
|
|
33
33
|
create_another: Create Another %{model}
|
|
34
|
-
create_apply:
|
|
34
|
+
create_apply: Create and continue
|
|
35
35
|
create_model: "%{model} létrehozása"
|
|
36
36
|
create_new: Új létrehozása
|
|
37
37
|
created_model: "%{model} létrehozva"
|
|
38
38
|
customize: Testreszabás
|
|
39
39
|
date_picker_options:
|
|
40
|
-
firstDay: 0
|
|
41
|
-
isRTL: false
|
|
42
|
-
showMonthAfterYear: false
|
|
40
|
+
firstDay: '0'
|
|
41
|
+
isRTL: 'false'
|
|
42
|
+
showMonthAfterYear: 'false'
|
|
43
43
|
weekHeader: Wk
|
|
44
44
|
datetime_picker_options:
|
|
45
|
-
closeText:
|
|
46
|
-
currentText:
|
|
47
|
-
timeText:
|
|
45
|
+
closeText: Close
|
|
46
|
+
currentText: Now
|
|
47
|
+
timeText: Hour
|
|
48
48
|
timezoneText: Timezone
|
|
49
49
|
days: Days
|
|
50
50
|
delete: Törlés
|
|
51
51
|
deleted_model: "%{model} törölve"
|
|
52
|
-
deleted_records:
|
|
52
|
+
deleted_records: List Deleted Records
|
|
53
53
|
delimiter: Elválasztó
|
|
54
|
-
doesnt_begin_with:
|
|
55
|
-
doesnt_contain:
|
|
56
|
-
doesnt_end_with:
|
|
54
|
+
doesnt_begin_with: Doesn't begin with
|
|
55
|
+
doesnt_contain: Doesn't contain
|
|
56
|
+
doesnt_end_with: Doesn't end with
|
|
57
57
|
download: Letöltés
|
|
58
58
|
edit: Szerkesztés
|
|
59
59
|
ends_with: Ends with
|
|
@@ -65,12 +65,12 @@ hu:
|
|
|
65
65
|
one: 1 error prohibited this %{model} from being saved.
|
|
66
66
|
other: "%{count} errors prohibited this %{model} from being saved"
|
|
67
67
|
export: Exportálás
|
|
68
|
-
'false': '
|
|
68
|
+
'false': 'false'
|
|
69
69
|
filtered: "(Szűrt)"
|
|
70
70
|
found: Találat
|
|
71
71
|
future: Future
|
|
72
|
-
group_by:
|
|
73
|
-
grouped_by:
|
|
72
|
+
group_by: Group by
|
|
73
|
+
grouped_by: Grouped by %{column}
|
|
74
74
|
hide: "(Elrejtés)"
|
|
75
75
|
hours: Hours
|
|
76
76
|
human_conditions:
|
|
@@ -80,7 +80,7 @@ hu:
|
|
|
80
80
|
internal_error: A lekérés sikertelen
|
|
81
81
|
live_search: Élő keresés
|
|
82
82
|
loading: Betöltés…
|
|
83
|
-
logical_search:
|
|
83
|
+
logical_search: Logical Search
|
|
84
84
|
mark_all_records: Mark all
|
|
85
85
|
maximum: Maximum
|
|
86
86
|
minimum: Minimum
|
|
@@ -93,9 +93,9 @@ hu:
|
|
|
93
93
|
next_week: Next Week
|
|
94
94
|
next_year: Next Year
|
|
95
95
|
no_authorization_for_action: No Authorization for action %{action}
|
|
96
|
-
no_color:
|
|
96
|
+
no_color: No color
|
|
97
97
|
no_entries: Nincs elem
|
|
98
|
-
no_group:
|
|
98
|
+
no_group: No group
|
|
99
99
|
no_options: nincsenek opciók
|
|
100
100
|
not_null: Not Null
|
|
101
101
|
'null': 'Null'
|
|
@@ -136,26 +136,30 @@ hu:
|
|
|
136
136
|
today: Today
|
|
137
137
|
tomorrow: Tomorrow
|
|
138
138
|
'true': 'True'
|
|
139
|
-
uncheck_all:
|
|
139
|
+
uncheck_all: Uncheck all
|
|
140
140
|
update: Modosítás
|
|
141
|
-
update_apply:
|
|
141
|
+
update_apply: Apply
|
|
142
142
|
update_model: "%{model} modosítása"
|
|
143
143
|
updated_model: "%{model} módosítva"
|
|
144
|
-
version_inconsistency: Verzió ütközés - ezt a rekordot módosították mióta
|
|
144
|
+
version_inconsistency: Verzió ütközés - ezt a rekordot módosították mióta
|
|
145
|
+
elkezdted szerkeszteni.
|
|
145
146
|
weeks: Weeks
|
|
146
147
|
years: Years
|
|
147
148
|
yesterday: Yesterday
|
|
148
149
|
date:
|
|
149
150
|
formats:
|
|
150
|
-
month:
|
|
151
|
-
quarter:
|
|
152
|
-
week:
|
|
153
|
-
year_month:
|
|
154
|
-
year_quarter:
|
|
151
|
+
month: '%B'
|
|
152
|
+
quarter: Quarter %{num}
|
|
153
|
+
week: Week %W, %Y
|
|
154
|
+
year_month: '%b %Y'
|
|
155
|
+
year_quarter: Quarter %{quarter} %{year}
|
|
155
156
|
time:
|
|
156
157
|
formats:
|
|
157
158
|
picker: "%a, %d %b %Y %H:%M:%S"
|
|
158
159
|
datetime:
|
|
159
160
|
prompts:
|
|
160
|
-
millisec:
|
|
161
|
-
microsec:
|
|
161
|
+
millisec: Millisecond
|
|
162
|
+
microsec: Microsecond
|
|
163
|
+
second: Second
|
|
164
|
+
minute: Minute
|
|
165
|
+
hour: Hour
|