decidim-forms 0.26.2 → 0.26.4

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: c05c5c0a4333cc4dbefaa5e8d37fa861059a6881d5d47d075fd618e7f7169826
4
- data.tar.gz: f46c7ea6704161d57385dd589360b78fe3763057e532640004cbb539aee5c0e4
3
+ metadata.gz: ac2a4967f65889f20e67fcfea32386f57484e8eb0f61172f335b690e4298ab4b
4
+ data.tar.gz: e971f03e20bd78cf6e246869133eaea933edb61bee15ef48d12ca0aae082e1c4
5
5
  SHA512:
6
- metadata.gz: fb39a317c541eca9a1d3ed286b8b3873a79bc7f748a37ae4a20a693e19900b473b6e83f46ec82d07c3d5d5b603143d5d46327addfd19d99f014f163f8a741775
7
- data.tar.gz: 593ac4089260f909886fa7b05de438d2da561a4d5801742044c79a7c2ee5343c1c59df55282c8fd18af036ce272fc04329c3ef9bb04699de5cf5182dd361ed36
6
+ metadata.gz: 3b9fb3129e380b1aeeb0b801296518256b0be19b46799b69031f588dfeac69f2c7e3bd69aa91306a34826f005f85158bc6a0f433589b209399b88ccab60d240c
7
+ data.tar.gz: 68d5bab8bd439145111c49c9a4f8d39a4d99b97acf34bec6e4b072f83691e92ab29e23645fed2cf5c4b08e5caf7fc271f9522b2686076d1f74d2479ca56b2565
@@ -43,7 +43,7 @@ module Decidim
43
43
  # of this problem.
44
44
  def reset_form_attachments
45
45
  @form.responses.each do |answer|
46
- answer.errors.add(:add_documents, :needs_to_be_reattached) if answer.has_attachments?
46
+ answer.errors.add(:add_documents, :needs_to_be_reattached) if answer.has_attachments? || answer.has_error_in_attachments?
47
47
  end
48
48
  end
49
49
 
@@ -51,7 +51,7 @@ module Decidim
51
51
  @main_form = @form
52
52
  @errors = nil
53
53
 
54
- Answer.transaction do
54
+ Answer.transaction(requires_new: true) do
55
55
  form.responses_by_step.flatten.select(&:display_conditions_fulfilled?).each do |form_answer|
56
56
  answer = Answer.new(
57
57
  user: @current_user,
@@ -69,6 +69,10 @@ module Decidim
69
69
  question.has_attachments? && errors[:add_documents].empty? && add_documents.present?
70
70
  end
71
71
 
72
+ def has_error_in_attachments?
73
+ errors[:add_documents].present?
74
+ end
75
+
72
76
  private
73
77
 
74
78
  def mandatory_body?
@@ -11,6 +11,7 @@ import createSortList from "src/decidim/admin/sort_list.component"
11
11
  import createDynamicFields from "src/decidim/admin/dynamic_fields.component"
12
12
  import createFieldDependentInputs from "src/decidim/admin/field_dependent_inputs.component"
13
13
  import createQuillEditor from "src/decidim/editor"
14
+ import initLanguageChangeSelect from "src/decidim/admin/choose_language"
14
15
 
15
16
  export default function createEditableForm() {
16
17
  const wrapperSelector = ".questionnaire-questions";
@@ -392,6 +393,8 @@ export default function createEditableForm() {
392
393
 
393
394
  autoLabelByPosition.run();
394
395
  autoButtonsByPosition.run();
396
+
397
+ initLanguageChangeSelect($field.find("select.language-change").toArray());
395
398
  },
396
399
  onRemoveField: ($field) => {
397
400
  autoLabelByPosition.run();
@@ -46,11 +46,14 @@ module Decidim
46
46
  # rubocop:disable Style/StringConcatenation
47
47
  # Interpolating strings that are `html_safe` is problematic with Rails.
48
48
  content_tag :li do
49
- link_to(translated_attribute(attachment.title), attachment.url) +
50
- " " +
51
- content_tag(:small) do
49
+ link_to(attachment.url, target: "_blank", rel: "noopener noreferrer") do
50
+ content_tag(:span) do
51
+ translated_attribute(attachment.title).presence ||
52
+ I18n.t("download_attachment", scope: "decidim.forms.questionnaire_answer_presenter")
53
+ end + " " + content_tag(:small) do
52
54
  "#{attachment.file_type} #{number_to_human_size(attachment.file_size)}"
53
55
  end
56
+ end
54
57
  end
55
58
  # rubocop:enable Style/StringConcatenation
56
59
  end
@@ -5,7 +5,7 @@
5
5
 
6
6
  <% columns = allow_answers? && visitor_can_answer? && @form.responses.map(&:question).any?(&:matrix?) ? 9 : 6 %>
7
7
 
8
- <%= render partial: "decidim/shared/component_announcement" %>
8
+ <%= render partial: "decidim/shared/component_announcement" if current_component.manifest_name == "surveys" %>
9
9
 
10
10
  <div class="row columns">
11
11
  <h2 class="section-heading"><%= translated_attribute questionnaire.title %></h2>
@@ -142,6 +142,8 @@ ca:
142
142
  single_option: Opció única
143
143
  sorting: Ordenació
144
144
  title_and_description: Títol i descripció
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Descarregar l'arxiu adjunt
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: S'han produït un error en respondre el formulari.
@@ -142,6 +142,8 @@ cs:
142
142
  single_option: Jedna možnost
143
143
  sorting: Třídění
144
144
  title_and_description: Název a popis
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Stáhnout přílohu
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: Při odpovědi na dotazník došlo k chybám.
@@ -143,6 +143,8 @@ en:
143
143
  single_option: Single option
144
144
  sorting: Sorting
145
145
  title_and_description: Title and description
146
+ questionnaire_answer_presenter:
147
+ download_attachment: Download attachment
146
148
  questionnaires:
147
149
  answer:
148
150
  invalid: There was a problem answering the form.
@@ -142,6 +142,8 @@ es-MX:
142
142
  single_option: Opción única
143
143
  sorting: Ordenación
144
144
  title_and_description: Titulo y descripción
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Descargar el archivo adjunto
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: Ha habido errores al responder al cuestionario.
@@ -142,6 +142,8 @@ es-PY:
142
142
  single_option: Opción única
143
143
  sorting: Ordenación
144
144
  title_and_description: Titulo y descripción
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Descargar el archivo adjunto
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: Ha habido errores al responder al cuestionario.
@@ -142,6 +142,8 @@ es:
142
142
  single_option: Opción única
143
143
  sorting: Ordenación
144
144
  title_and_description: Titulo y descripción
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Descargar el archivo adjunto
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: Se ha producido un error al responder el formulario.
@@ -142,6 +142,8 @@ fi-pl:
142
142
  single_option: Yksi vaihtoehto
143
143
  sorting: Järjestäminen
144
144
  title_and_description: Otsikko ja kuvaus
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Lataa liite
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: Kyselylomakkeeseen vastatessa tapahtui virheitä.
@@ -142,6 +142,8 @@ fi:
142
142
  single_option: Yksi vaihtoehto
143
143
  sorting: Järjestäminen
144
144
  title_and_description: Otsikko ja kuvaus
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Lataa liite
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: Kyselylomakkeeseen vastaaminen epäonnistui.
@@ -142,6 +142,8 @@ fr-CA:
142
142
  single_option: Option unique
143
143
  sorting: Tri
144
144
  title_and_description: Titre et description
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Télécharger la pièce jointe
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: Il y a eu des erreurs en répondant au questionnaire.
@@ -142,6 +142,8 @@ fr:
142
142
  single_option: Option unique
143
143
  sorting: Tri
144
144
  title_and_description: Titre et description
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Télécharger la pièce jointe
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: Il y a eu des erreurs en répondant au questionnaire.
@@ -0,0 +1 @@
1
+ gn:
@@ -142,6 +142,8 @@ ja:
142
142
  single_option: 単一オプション
143
143
  sorting: 並び替え
144
144
  title_and_description: タイトルと説明
145
+ questionnaire_answer_presenter:
146
+ download_attachment: 添付ファイルをダウンロード
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: フォームの回答に問題がありました。
@@ -0,0 +1 @@
1
+ lo:
@@ -1 +1,189 @@
1
1
  lt:
2
+ activemodel:
3
+ attributes:
4
+ answer:
5
+ body: Atsakymas
6
+ choices: Pasirinkimai
7
+ selected_choices: Pasirinkti pasirinkimai
8
+ question:
9
+ max_choices: Maksimalus pasirinkimų skaičius
10
+ question_type: Tipas
11
+ questionnaire_question:
12
+ mandatory: Privaloma
13
+ max_characters: Simbolių limitas (palikti 0 jei limito nėra)
14
+ errors:
15
+ models:
16
+ answer:
17
+ attributes:
18
+ add_documents:
19
+ needs_to_be_reattached: Reikia pridėti iš naujo
20
+ body:
21
+ too_long: per ilgas
22
+ choices:
23
+ missing: nepilnas - trūksta elementų
24
+ too_many: per daug
25
+ questionnaire:
26
+ request_invalid: Tvarkant prašymą įvyko klaida. Bandykite dar kartą
27
+ decidim:
28
+ forms:
29
+ admin:
30
+ models:
31
+ components:
32
+ description: Aprašymas
33
+ tos: Paslaugų teikimo sąlygos
34
+ questionnaires:
35
+ actions:
36
+ back: Grįžti į klausimus
37
+ show: Rodyti atsakymus
38
+ answer_option:
39
+ answer_option: Atsakymo variantas
40
+ free_text: Laisva forma
41
+ remove: Pašalinti
42
+ statement: Pareiškimas
43
+ answers:
44
+ actions:
45
+ back: Grįžti į atsakymus
46
+ export: Eksportuoti
47
+ show: Rodyti atsakymus
48
+ empty: Atsakymų dar nėra
49
+ export:
50
+ answer:
51
+ title: 'Atsakymas #%{number}'
52
+ export_response:
53
+ title: apklausa_naudotoju_atsakymai_%{token}
54
+ index:
55
+ title: "%{total} iš viso atsakymų"
56
+ show:
57
+ title: 'Atsakymas #%{number}'
58
+ display_condition:
59
+ answer_option: Atsakymo variantas
60
+ condition_question: Klausimas
61
+ condition_type: Sąlyga
62
+ condition_types:
63
+ answered: Atsakyta
64
+ equal: Lygu
65
+ match: Įskaitant tekstą
66
+ not_answered: Neatsakyta
67
+ not_equal: Nelygu
68
+ condition_value: Įskaitytas tekstas
69
+ display_condition: Rodymo sąlyga
70
+ mandatory: Ši sąlyga turi būti patenkinta visada, neatsižvelgiant į kitų sąlygų statusą
71
+ remove: Pašalinti
72
+ save_warning: Prieš konfigūruodami rodymo sąlygas, nepamirškite išsaugoti formos
73
+ select_answer_option: Pasirinkite atsakymo variantą
74
+ select_condition_question: Pasirinkite klausimą
75
+ select_condition_type: Pasirinkti sąlygos tipą
76
+ edit:
77
+ save: Išsaugoti
78
+ title: Redaguoti klausimyną
79
+ form:
80
+ add_question: Pridėti klausimą
81
+ add_separator: Pridėti skyriklį
82
+ add_title_and_description: Pridėti pavadinimą ir aprašymą
83
+ already_answered_warning: Kai kurie naudotojai jau atsakė į formos klausimus, todėl jos klausimų keisti nebegalite.
84
+ collapse: Suskleisti visus klausimus
85
+ expand: Išskleisti visus klausimus
86
+ preview: Peržiūra
87
+ title: Taisyti %{questionnaire_for} formą
88
+ unpublished_warning: Forma nepaskelbta. Galite keisti klausimus, tačiau tai darydami pašalinsite esamus atsakymus.
89
+ matrix_row:
90
+ matrix_row: Eilutė
91
+ remove: Pašalinti
92
+ statement: Pareiškimas
93
+ question:
94
+ add_answer_option: Pridėti atsakymo variantą
95
+ add_display_condition: Pridėti rodymo sąlygą
96
+ add_display_condition_info: Išsaugokite formą, kad galėtumėt konfiguruoti rodymo sąlygas
97
+ add_matrix_row: Pridėti eilutę
98
+ any: Bet koks
99
+ collapse: Suskleisti
100
+ description: Aprašymas
101
+ down: Žemyn
102
+ expand: Išplėsti
103
+ question: Klausimas
104
+ remove: Pašalinti
105
+ statement: Pareiškimas
106
+ up: Į viršų
107
+ separator:
108
+ down: Žemyn
109
+ remove: Pašalinti
110
+ separator: Skirtukas
111
+ up: Į viršų
112
+ title_and_description:
113
+ collapse: Suskleisti
114
+ description: Aprašymas
115
+ down: Žemyn
116
+ expand: Išplėsti
117
+ remove: Pašalinti
118
+ title: Pavadinimas
119
+ title_and_description: Pavadinimas ir aprašymas
120
+ up: Aukštyn
121
+ update:
122
+ invalid: Išsaugant šią formą iškilo problema.
123
+ success: Forma sėkmingai išsaugota.
124
+ errors:
125
+ answer:
126
+ body: Pagrindinė dalis negali būti tuščia
127
+ files:
128
+ extension_allowlist: 'Priimtini formatai:'
129
+ images:
130
+ dimensions: "%{width} x %{height} px"
131
+ dimensions_info: 'Šis vaizdas bus:'
132
+ processors:
133
+ resize_and_pad: Pakeisto dydžio ir užpildytas iki
134
+ resize_to_fit: Pakeistas dydis, kad tilptų
135
+ question_types:
136
+ files: Dokumentai
137
+ long_answer: Ilgas atsakymas
138
+ matrix_multiple: Matrica (su keliais variantais)
139
+ matrix_single: Matrica (vienas variantas)
140
+ multiple_option: Keli variantai
141
+ short_answer: Trumpas atsakymas
142
+ single_option: Vienas variantas
143
+ sorting: Rūšiavimas
144
+ title_and_description: Pavadinimas ir aprašymas
145
+ questionnaires:
146
+ answer:
147
+ invalid: Atsakant į šią formą iškilo problema.
148
+ max_choices_alert: Per daug pasirinktų variantų
149
+ success: Į formos klausimus atsakyta.
150
+ question:
151
+ max_choices: 'Didžiausias pasirinkčių skaičius: %{n}'
152
+ show:
153
+ answer_questionnaire:
154
+ anonymous_user_message: <a href="%{sign_in_link}">Prisijunkite su savo paskyra</a> arba <a href="%{sign_up_link}">užsiregistruokite</a> norėdami užpildyti formą.
155
+ title: Atsakyti į formos klausimus
156
+ current_step: Žingsnis %{step}
157
+ of_total_steps: iš%{total_steps}
158
+ questionnaire_answered:
159
+ body: Jau atsakėte iš šios formos klausimus.
160
+ title: Jau atsakyta
161
+ questionnaire_closed:
162
+ body: Forma uždaryta ir į ją atsakyti negalima.
163
+ title: Forma uždaryta
164
+ questionnaire_for_private_users:
165
+ body: Forma pateikiama tik privatiems naudotojams
166
+ title: Forma uždaryta
167
+ questionnaire_js_disabled:
168
+ body: Kai kurie šios formos funkcionalumai bus neaktyvūs. Kad pagerintumėte naudojimo patirtį, naršyklėje įjunkite „JavaScript“.
169
+ title: '„JavaScript“ išjungta'
170
+ questionnaire_not_published:
171
+ body: Ši forma dar nepaskelbta.
172
+ tos_agreement: Dalyvaudami sutinkate su paslaugos teikimo sąlygomis
173
+ step_navigation:
174
+ show:
175
+ are_you_sure: Šio veiksmo atšaukti negalima ir savo atsakymų keisti negalėsite. Ar esate įsitikinę?
176
+ back: Atgal
177
+ continue: Tęsti
178
+ submit: Pateikti
179
+ user_answers_serializer:
180
+ body: Atsakymas
181
+ completion: Užbaigimas
182
+ created_at: Atsakyta
183
+ id: Atsakymo ID
184
+ ip_hash: IP adreso "hash" kodas
185
+ question: Klausimas
186
+ registered: Užregistruota
187
+ session_token: Naudotojo identifikatorius
188
+ unregistered: Neregistruoti
189
+ user_status: Naudotojo būsena
@@ -0,0 +1 @@
1
+ oc:
@@ -7,10 +7,10 @@ pl:
7
7
  selected_choices: Wybrane opcje
8
8
  question:
9
9
  max_choices: Maksymalna liczba opcji do wyboru
10
- question_type: Typ
10
+ question_type: Typ odpowiedzi
11
11
  questionnaire_question:
12
- mandatory: Obowiązkowy
13
- max_characters: Limit znaków (zostaw 0 jeśli nie chcesz ustawiać limitu)
12
+ mandatory: Odpowiedź wymagana
13
+ max_characters: Limit znaków (zostaw 0, jeśli nie chcesz ustawiać limitu)
14
14
  errors:
15
15
  models:
16
16
  answer:
@@ -37,7 +37,7 @@ pl:
37
37
  show: Pokaż odpowiedzi
38
38
  answer_option:
39
39
  answer_option: Opcja odpowiedzi
40
- free_text: Dowolny tekst
40
+ free_text: Możliwość wpisania dowolnego tekstu
41
41
  remove: Usuń
42
42
  statement: Komunikat
43
43
  answers:
@@ -131,6 +131,7 @@ pl:
131
131
  short_answer: Krótka odpowiedź
132
132
  single_option: Jedna opcja
133
133
  sorting: Sortowanie
134
+ title_and_description: Tytuł i opis
134
135
  questionnaires:
135
136
  answer:
136
137
  invalid: Podczas wypełniania formularza wystąpiły błędy.
@@ -142,6 +142,8 @@ ro:
142
142
  single_option: Opțiune unică
143
143
  sorting: Sortare
144
144
  title_and_description: Titlu și descriere
145
+ questionnaire_answer_presenter:
146
+ download_attachment: Descărcare atașament
145
147
  questionnaires:
146
148
  answer:
147
149
  invalid: A apărut o problemă la completarea chestionarului.
@@ -10,8 +10,11 @@ shared_examples_for "manage questionnaire answers" do
10
10
  let!(:second) do
11
11
  create :questionnaire_question, questionnaire: questionnaire, position: 2, question_type: "single_option"
12
12
  end
13
+ let!(:third) do
14
+ create :questionnaire_question, questionnaire: questionnaire, position: 3, question_type: "files"
15
+ end
13
16
  let(:questions) do
14
- [first, second]
17
+ [first, second, third]
15
18
  end
16
19
 
17
20
  context "when there are no answers" do
@@ -25,6 +28,7 @@ shared_examples_for "manage questionnaire answers" do
25
28
  let!(:answer1) { create :answer, questionnaire: questionnaire, question: first }
26
29
  let!(:answer2) { create :answer, body: "second answer", questionnaire: questionnaire, question: first }
27
30
  let!(:answer3) { create :answer, questionnaire: questionnaire, question: second }
31
+ let!(:file_answer) { create :answer, :with_attachments, questionnaire: questionnaire, question: third, body: nil, user: answer3.user, session_token: answer3.session_token }
28
32
 
29
33
  it "shows the answer admin link" do
30
34
  visit questionnaire_edit_path
@@ -45,7 +49,7 @@ shared_examples_for "manage questionnaire answers" do
45
49
  end
46
50
 
47
51
  it "shows the percentage" do
48
- expect(page).to have_content("50%")
52
+ expect(page).to have_content("33%")
49
53
  end
50
54
 
51
55
  it "has a detail link" do
@@ -121,6 +125,25 @@ shared_examples_for "manage questionnaire answers" do
121
125
  expect(page).not_to have_link("Next ›")
122
126
  expect(page).to have_link("‹ Prev")
123
127
  end
128
+
129
+ it "third answer has download link for the attachments" do
130
+ click_link answer3.session_token, match: :first
131
+ expect(page).to have_content(translated(file_answer.attachments.first.title))
132
+ expect(page).to have_content(translated(file_answer.attachments.second.title))
133
+ end
134
+
135
+ context "when the file answer does not have a title for the attachment" do
136
+ let!(:file_answer) { create :answer, questionnaire: questionnaire, question: third, body: nil, user: answer3.user, session_token: answer3.session_token }
137
+
138
+ before do
139
+ create :attachment, :with_image, attached_to: file_answer, title: {}, description: {}
140
+ end
141
+
142
+ it "third answer has download link for the attachments" do
143
+ click_link answer3.session_token, match: :first
144
+ expect(page).to have_content("Download attachment")
145
+ end
146
+ end
124
147
  end
125
148
  end
126
149
  end
@@ -4,7 +4,7 @@ module Decidim
4
4
  # This holds the decidim-forms version.
5
5
  module Forms
6
6
  def self.version
7
- "0.26.2"
7
+ "0.26.4"
8
8
  end
9
9
  end
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: decidim-forms
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.26.2
4
+ version: 0.26.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josep Jaume Rey Peroy
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2022-06-14 00:00:00.000000000 Z
14
+ date: 2022-11-15 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: decidim-core
@@ -19,14 +19,14 @@ dependencies:
19
19
  requirements:
20
20
  - - '='
21
21
  - !ruby/object:Gem::Version
22
- version: 0.26.2
22
+ version: 0.26.4
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - '='
28
28
  - !ruby/object:Gem::Version
29
- version: 0.26.2
29
+ version: 0.26.4
30
30
  - !ruby/object:Gem::Dependency
31
31
  name: wicked_pdf
32
32
  requirement: !ruby/object:Gem::Requirement
@@ -61,28 +61,28 @@ dependencies:
61
61
  requirements:
62
62
  - - '='
63
63
  - !ruby/object:Gem::Version
64
- version: 0.26.2
64
+ version: 0.26.4
65
65
  type: :development
66
66
  prerelease: false
67
67
  version_requirements: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - '='
70
70
  - !ruby/object:Gem::Version
71
- version: 0.26.2
71
+ version: 0.26.4
72
72
  - !ruby/object:Gem::Dependency
73
73
  name: decidim-dev
74
74
  requirement: !ruby/object:Gem::Requirement
75
75
  requirements:
76
76
  - - '='
77
77
  - !ruby/object:Gem::Version
78
- version: 0.26.2
78
+ version: 0.26.4
79
79
  type: :development
80
80
  prerelease: false
81
81
  version_requirements: !ruby/object:Gem::Requirement
82
82
  requirements:
83
83
  - - '='
84
84
  - !ruby/object:Gem::Version
85
- version: 0.26.2
85
+ version: 0.26.4
86
86
  description: A forms gem for decidim.
87
87
  email:
88
88
  - josepjaume@gmail.com
@@ -216,6 +216,7 @@ files:
216
216
  - config/locales/fr.yml
217
217
  - config/locales/ga-IE.yml
218
218
  - config/locales/gl.yml
219
+ - config/locales/gn-PY.yml
219
220
  - config/locales/hr-HR.yml
220
221
  - config/locales/hr.yml
221
222
  - config/locales/hu.yml
@@ -228,6 +229,7 @@ files:
228
229
  - config/locales/ko.yml
229
230
  - config/locales/lb-LU.yml
230
231
  - config/locales/lb.yml
232
+ - config/locales/lo-LA.yml
231
233
  - config/locales/lt-LT.yml
232
234
  - config/locales/lt.yml
233
235
  - config/locales/lv.yml
@@ -235,6 +237,7 @@ files:
235
237
  - config/locales/mt.yml
236
238
  - config/locales/nl.yml
237
239
  - config/locales/no.yml
240
+ - config/locales/oc-FR.yml
238
241
  - config/locales/om-ET.yml
239
242
  - config/locales/pl.yml
240
243
  - config/locales/pt-BR.yml