decidim-admin 0.32.0.rc1 → 0.32.0.rc2

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.
Files changed (56) hide show
  1. checksums.yaml +4 -4
  2. data/app/controllers/decidim/admin/organization_controller.rb +0 -29
  3. data/app/packs/src/decidim/admin/admin_autocomplete.js +16 -10
  4. data/config/locales/ar.yml +1 -0
  5. data/config/locales/bg.yml +1 -0
  6. data/config/locales/bs-BA.yml +1 -0
  7. data/config/locales/ca-IT.yml +1 -0
  8. data/config/locales/ca.yml +1 -0
  9. data/config/locales/cs.yml +1 -0
  10. data/config/locales/de.yml +1 -0
  11. data/config/locales/el.yml +1 -0
  12. data/config/locales/eo.yml +1 -0
  13. data/config/locales/es-MX.yml +1 -0
  14. data/config/locales/es-PY.yml +1 -0
  15. data/config/locales/es.yml +1 -0
  16. data/config/locales/eu.yml +40 -39
  17. data/config/locales/fi-plain.yml +1 -0
  18. data/config/locales/fi.yml +1 -0
  19. data/config/locales/fr-CA.yml +5 -0
  20. data/config/locales/fr.yml +5 -0
  21. data/config/locales/ga-IE.yml +1 -0
  22. data/config/locales/gl.yml +1 -0
  23. data/config/locales/he-IL.yml +1 -0
  24. data/config/locales/hu.yml +1 -0
  25. data/config/locales/id-ID.yml +1 -0
  26. data/config/locales/is-IS.yml +2 -1
  27. data/config/locales/it.yml +1 -0
  28. data/config/locales/ja.yml +1 -0
  29. data/config/locales/kaa.yml +1 -0
  30. data/config/locales/ko.yml +1 -0
  31. data/config/locales/lb.yml +1 -0
  32. data/config/locales/lt.yml +1 -0
  33. data/config/locales/lv.yml +1 -0
  34. data/config/locales/nl.yml +1 -0
  35. data/config/locales/no.yml +1 -0
  36. data/config/locales/pl.yml +1 -0
  37. data/config/locales/pt-BR.yml +1 -0
  38. data/config/locales/pt.yml +1 -0
  39. data/config/locales/ro-RO.yml +1 -0
  40. data/config/locales/ru.yml +1 -0
  41. data/config/locales/sk.yml +837 -0
  42. data/config/locales/sl.yml +1 -0
  43. data/config/locales/sq-AL.yml +1 -0
  44. data/config/locales/sr-CS.yml +1 -0
  45. data/config/locales/sv.yml +1 -0
  46. data/config/locales/th-TH.yml +1 -0
  47. data/config/locales/tr-TR.yml +1 -0
  48. data/config/locales/uk.yml +1 -0
  49. data/config/locales/val-ES.yml +1 -0
  50. data/config/locales/zh-CN.yml +1 -0
  51. data/config/locales/zh-TW.yml +1 -0
  52. data/config/routes.rb +0 -4
  53. data/decidim-admin.gemspec +1 -1
  54. data/lib/decidim/admin/form_builder.rb +1 -3
  55. data/lib/decidim/admin/version.rb +1 -1
  56. metadata +7 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9da138630750a0739cd6fd8b161f7093193e6293fa32a00e24355c7c0fca9a0c
4
- data.tar.gz: ba05f9d1e15ac506f29ce14428c7952be077fd8f251c886be250267a1b32fbb9
3
+ metadata.gz: a75d0c623d020ac21476b528a57744a6106f21478e499403853a12b59c8cbb9f
4
+ data.tar.gz: adef3ee649c65291bddc953e0b70bcc9f324de5ad9f7ff072f90b29310fee801
5
5
  SHA512:
6
- metadata.gz: 135c143b735ee0ada94c33046c6f9c5cbf81027b91ee609677a66b3fd04db2051781eab9b465836666acf5b3268ba372ab69ed823509d4cba115f2b600cd1a83
7
- data.tar.gz: 501dd3d2f79cc2b1699830d82b7f411ebeb8656aab4ac0de1da085b7ec5a4882053187796221a38687544a5a24446d4df752bdecee3fd445b581c9ef7481b7fe
6
+ metadata.gz: cce84813fd08f88437e713512d5645cabbf152449a57c6a022a7a3fbeed4255921300868fc70011507668ced560291c6d48af651040527592e44c872201401a4
7
+ data.tar.gz: 2e98a204d53481e6d1e2c20583456432cb2336f741e5faa5ade313344d238f8ad024873956205e2c3561872bd065c77fc758bf0dd7e148ade586481e1355ce80
@@ -33,35 +33,6 @@ module Decidim
33
33
  end
34
34
  end
35
35
  end
36
-
37
- def users
38
- search(current_organization.users.available)
39
- end
40
-
41
- private
42
-
43
- def search(relation)
44
- respond_to do |format|
45
- format.json do
46
- if (term = params[:term].to_s).present?
47
- query = if term.start_with?("@")
48
- nickname = term.delete("@")
49
- relation.where("nickname LIKE ?", "#{nickname}%")
50
- .order(Arel.sql(ActiveRecord::Base.sanitize_sql_array("similarity(nickname, '#{nickname}') DESC")))
51
- else
52
- relation.where("name ILIKE ?", "%#{term}%").or(
53
- relation.where("email ILIKE ?", "%#{term}%")
54
- )
55
- .order(Arel.sql(ActiveRecord::Base.sanitize_sql_array("GREATEST(similarity(name, '#{term}'), similarity(email, '#{term}')) DESC")))
56
- .order(Arel.sql(ActiveRecord::Base.sanitize_sql_array("(similarity(name, '#{term}') + similarity(email, '#{term}')) / 2 DESC")))
57
- end
58
- render json: query.all.collect { |u| { value: u.id, label: "#{u.name} (@#{u.nickname})" } }
59
- else
60
- render json: []
61
- end
62
- end
63
- end
64
- end
65
36
  end
66
37
  end
67
38
  end
@@ -10,7 +10,6 @@ import AutoComplete from "src/decidim/refactor/moved/autocomplete";
10
10
  * - name: assembly_member[user_id],
11
11
  * - options: [],
12
12
  * - placeholder: "Select a participant",
13
- * - searchURL: "http://..."
14
13
  * - selected: "",
15
14
  *
16
15
  * @param {HTMLElement} el The element to generate the autocomplete for.
@@ -18,7 +17,6 @@ import AutoComplete from "src/decidim/refactor/moved/autocomplete";
18
17
  */
19
18
  const autoConfigure = (el) => {
20
19
  const config = JSON.parse(el.dataset.autocomplete);
21
- const searchUrl = new URL(config.searchURL);
22
20
  const textInput = document.createElement("input");
23
21
  textInput.type = "text";
24
22
  textInput.className = "autocomplete-input";
@@ -46,16 +44,24 @@ const autoConfigure = (el) => {
46
44
  }
47
45
  }
48
46
 
47
+ const graphqlEscapedQuery = (query) => query.replace(/\\/g, "\\\\").replace(/"/g, "\\\"");
48
+
49
49
  const dataSource = (query, callback) => {
50
- const params = new URLSearchParams({
51
- ...Object.fromEntries(searchUrl.searchParams),
52
- term: query
53
- });
54
- fetch(`${searchUrl.origin}${searchUrl.pathname}?${params.toString()}`, {
55
- method: "GET",
56
- headers: { "Content-Type": "application/json" }
50
+ const apiPath = window.Decidim.config.get("api_path");
51
+ fetch(apiPath, {
52
+ method: "POST",
53
+ headers: { "Content-Type": "application/json" },
54
+ body: JSON.stringify({
55
+ query: `{users(filter:{wildcard:"${graphqlEscapedQuery(query)}"}){id,nickname,name,__typename}}`
56
+ })
57
57
  }).then((response) => response.json()).then((data) => {
58
- callback(data)
58
+ const users = data?.data?.users || [];
59
+ callback(users.map((user) => ({
60
+ value: user.id,
61
+ label: `${user.name} (${user.nickname})`
62
+ })))
63
+ }).catch(() => {
64
+ callback([])
59
65
  });
60
66
  };
61
67
 
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ar:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  bg:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  bs:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ca-IT:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ca:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  cs:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  de:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  el:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  eo:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  es-MX:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  es-PY:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  es:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  eu:
2
3
  activemodel:
3
4
  attributes:
@@ -39,7 +40,7 @@ eu:
39
40
  member_csv_import:
40
41
  file: Fitxategia
41
42
  newsletter:
42
- body: Testua
43
+ body: Gorputza
43
44
  send_to_all_users: Bidali parte-hartzaile guztiei
44
45
  send_to_followers: Bidali jarraitzaileei
45
46
  send_to_participants: Bidali parte-hartzaileei
@@ -71,11 +72,11 @@ eu:
71
72
  machine_translation_display_priority_original: Jatorrizko testua lehenik
72
73
  machine_translation_display_priority_translation: Itzulitako testua lehenik
73
74
  name: Izena
74
- official_img_footer: Logotipoaren logotipo ofiziala
75
+ official_img_footer: Orri-oinaren logotipo ofiziala
75
76
  official_url: Erakundearen URL ofiziala
76
77
  omnipresent_banner_short_description: Deskribapen laburra
77
78
  omnipresent_banner_title: Izenburua
78
- omnipresent_banner_url: URL-a
79
+ omnipresent_banner_url: URLa
79
80
  organization_admin_email: Erakundearen administratzailearen mezu elektronikoa
80
81
  organization_admin_name: Erakundearen administratzailearen izena
81
82
  organization_locales: Tokiko erakundeak
@@ -100,7 +101,7 @@ eu:
100
101
  name: Izena
101
102
  organization: Erakundea
102
103
  parent_id: Nagusia
103
- scope_type: Eremua mota
104
+ scope_type: Esparru mota
104
105
  scope_type_id: Eremua mota
105
106
  scope_type:
106
107
  name: Izena
@@ -114,8 +115,8 @@ eu:
114
115
  content: Edukia
115
116
  organization: Erakundea
116
117
  show_in_footer: Erakutsi orri-oinean
117
- slug: URL laburra
118
- title: Izenburua
118
+ slug: URL sluga
119
+ title: Titulua
119
120
  topic_id: Gaia
120
121
  weight: Kokapenaren hurrenkera
121
122
  static_page_topic:
@@ -146,7 +147,7 @@ eu:
146
147
  user_group_csv_verification:
147
148
  attributes:
148
149
  file:
149
- malformed: Fitxategia akastuna da. Irakurri arretaz jarraibideak eta ziurtatu fitxategia UTF-8an kodifikatuta dagoela.
150
+ malformed: Inportazio-fitxategia akastuna da. Irakurri arretaz jarraibideak eta ziurtatu fitxategia UTF-8an kodifikatuta dagoela.
150
151
  new_import:
151
152
  attributes:
152
153
  file:
@@ -155,9 +156,9 @@ eu:
155
156
  activerecord:
156
157
  attributes:
157
158
  decidim/static_page:
158
- content: Edukia
159
+ content: Contenido
159
160
  slug: URL laburra
160
- title: Izenburua
161
+ title: Titulua
161
162
  doorkeeper/application:
162
163
  authorize_url: Baimendu URLa
163
164
  client_id: Bezeroaren IDa
@@ -189,7 +190,7 @@ eu:
189
190
  Iritziz aldatzen baduzu, geroago berreskuratu ahal izango duzu.na
190
191
  export: Esportatu
191
192
  export_all: Esportatu dena
192
- export_selection: Hautapena esportatu
193
+ export_selection: Esportatu hautaketa
193
194
  import: Inportatu
194
195
  member:
195
196
  new: Beste kide bat
@@ -231,7 +232,7 @@ eu:
231
232
  success: Arlo mota behar bezala suntsitua.
232
233
  edit:
233
234
  title: Editatu arlo mota
234
- update: Onartu
235
+ update: Eguneratu
235
236
  index:
236
237
  title: Arlo motak
237
238
  new:
@@ -268,7 +269,7 @@ eu:
268
269
  success: Karpeta behar bezala suntsitua.
269
270
  edit:
270
271
  title: Editatu karpeta
271
- update: Onartu
272
+ update: Eguneratu
272
273
  index:
273
274
  title: Erantsitako karpetak
274
275
  new:
@@ -326,10 +327,10 @@ eu:
326
327
  create:
327
328
  error: Arazo bat egon da osagai hau sortzean.
328
329
  success: Osagaia zuzen sortua.
329
- success_landing_page: Osagaia zuzen sortu da. Espazio honen hasiera orrian eduki atal bat gehitu ahal duzu. Joan <a href="%{landing_page_path}">orrira</a> konfiguratzeko.
330
+ success_landing_page: Osagaia zuzuen osatua. Eduki bloke bat gehitu ahal duzu osagai honetarako parte hartzeko espazioaren hasiera-orrian. Zoaz hasiera-orrira konfiguratzeko. <a href="%{landing_page_path}">.
330
331
  edit:
331
332
  title: Editatu osagaia
332
- update: Onartu
333
+ update: Eguneratu
333
334
  form:
334
335
  default_step_settings: Faseen ezarpen lehenetsiak
335
336
  global_settings: Ezarpen globalak
@@ -363,7 +364,7 @@ eu:
363
364
  conflicts:
364
365
  attempts: Saiakerak
365
366
  edit:
366
- title: Parte-hartzailea tansferitu
367
+ title: Transferitu parte-hartzailea
367
368
  'false': 'Ez'
368
369
  index:
369
370
  text: Bilatu gaur egungo parte-hartzailearen posta elektronikoaren, izenren edo ezizenaren bidez
@@ -489,7 +490,7 @@ eu:
489
490
  import:
490
491
  explanation: 'Fitxategirako jaribideak:'
491
492
  message_1: CSV, JSON eta Excel (.xlsx) fitxategiak eutsita daude
492
- message_2: CSV artxiboetarako, zutabeen arteko banatzailea puntu eta koma (";") izan behar da
493
+ message_2: CSV fitxategietarako, zutabeen arteko bereizgailuak erdikolona izan behar du (";")
493
494
  import_csv:
494
495
  explanation: 'Fitxategirako jarraibideak:'
495
496
  message_1: CSV fitxategiak onartzen dira
@@ -544,14 +545,14 @@ eu:
544
545
  other: Bikoiztu %{columns} zutabe.
545
546
  invalid_indexes:
546
547
  lines:
547
- detail: "\nEgiaztatu erregistro horiek formatu zuzena dutela eta baliozko erregistroak dituztela."
548
+ detail: Mesedez, egiaztatu erregistro horiek formatu zuzena dutela eta baliozko erregistroak dituztela.
548
549
  message:
549
550
  one: Errore bat aurkitu da inportazio-fitxategiko %{indexes} lerroan.
550
551
  other: Erroreak aurkitu dira inportazio-fitxategiko %{indexes} lerroetan.
551
552
  records:
552
- detail: "\nEgiaztatu erregistro horiek formatu zuzena dutela eta baliozko erregistroak dituztela."
553
+ detail: Mesedez, egiaztatu erregistro horiek formatu zuzena dutela eta baliozko erregistroak dituztela.
553
554
  message:
554
- one: Errore bat aurkitu da %{indexes} ordenazio-zenbakiak dituzten erregistroetarako inportazio-fitxategian.
555
+ one: Errore bat aurkitu da % {indexes} ordenazio-zenbakiak dituzten erregistroetarako inportazio-fitxategian.
555
556
  other: Erroreak aurkitu dira %{indexes} ordenazio-zenbakiak dituzten erregistroetarako inportazio-fitxategian.
556
557
  missing_headers:
557
558
  detail: Mesedez, egiaztatu fitxategiak eskatutako zutabeak dituela.
@@ -604,11 +605,11 @@ eu:
604
605
  error: Arazo bat dago partaidetza-espazio horretarako kide bat ezabatzeko.
605
606
  success: Kidearen sarbidea behar bezala suntsitu da.
606
607
  edit:
607
- title: Kidea aldatu
608
- update: Egunaratu
608
+ title: Editatu kidea
609
+ update: Eguneratu
609
610
  index:
610
- import_via_csv: CSV fitxategi baten bidez inportatu
611
- publish_all: Denak argitaratu
611
+ import_via_csv: Inportatu CSV bidetik
612
+ publish_all: Argitaratu guztiak
612
613
  title: Kidea
613
614
  unpublish_all: Desargitaratu guztiak
614
615
  new:
@@ -625,23 +626,23 @@ eu:
625
626
  success: Kidea behar bezala eguneratu da
626
627
  members_csv_imports:
627
628
  create:
628
- invalid: Arazo bat izan da CSV fitxategia irakurtzean. Egiaztatu jarraibideak bete dituzula.
629
- success: CSV fitxategia ondo igo da, gonbidapen-mezu elektroniko bat bidaltzen ari gara parte-hartzaileei. Horrek denbora pixka bat iraun dezake.
629
+ invalid: Arazo bat egon da CSV fitxategia irakurtzean. Mesedez, ziurtatu jarraibideei kasu egin diezula.
630
+ success: CSV fitxategia zuzen igo da, eta parte-hartzaileei gonbidapen-mezu elektroniko bat bidaltzen ari gara. Prozesu horrek denbora behar du.
630
631
  new:
631
632
  csv_upload:
632
633
  title: Igo zure CSV fitxategia
633
634
  destroy:
634
- button: Kide guztiak ezabatu
635
+ button: Ezabatu kide guztiak
635
636
  confirm: Ziur zaude kide guztiak ezabatu nahi dituzula? Ekintza hori ezin da desegin, ezingo dituzu berreskuratu.
636
637
  empty: Ez duzu kiderik.
637
638
  explanation: '%{count} kide dituzu.'
638
- title: Kideak ezabatu
639
+ title: Ezabatu kide guztiak
639
640
  example_file: 'Adibide-fitxategia:'
640
641
  explanation: 'Igo zure CSV fitxategia. Bi zutabe izan behar ditu, fitxategiko lehen zutabean posta elektronikoa eta parte-hartze gunera gehitu nahi dituzun parte-hartzaileen fitxategiaren azken zutabean izena jarrita, goibururik gabe. Ez erabili baliozko ez diren karaktereak erabiltzaile-izenean, hala nola, "sim"<>?%&^*#@()[]=+:;"{}\|`.'
641
642
  explanation_example: |
642
643
  john.doe@example.org%{csv_col_sep}John Doe
643
644
  jane.doe@example.org%{csv_col_sep}Jane Doe
644
- title: Kidek CSV fitxategi baten bidez
645
+ title: Inportatu kideak CSV fitxategi baten bidez
645
646
  upload: Igo
646
647
  menu:
647
648
  admin_log: Administratzaile jarduera-erregistroa
@@ -687,7 +688,7 @@ eu:
687
688
  collection: Karpeta
688
689
  content_type: Mota
689
690
  file_size: Tamaina
690
- title: Izenburua
691
+ title: Titulua
691
692
  name: Eranskina
692
693
  attachment_collection:
693
694
  name: Karpeta
@@ -729,7 +730,7 @@ eu:
729
730
  static_page:
730
731
  fields:
731
732
  created_at: Noiz sortua
732
- title: Izenburua
733
+ title: Titulua
733
734
  user:
734
735
  fields:
735
736
  created_at: Sortze-data
@@ -887,7 +888,7 @@ eu:
887
888
  send:
888
889
  no_recipients: Ez dago hartzailerik hautaketa honetarako.
889
890
  send_to_user:
890
- sent_successfully: Buletina behar bezala bidali zaio %{email} helbideari
891
+ sent_successfully: Buletina behar bezala bidali da %{email} helbidera
891
892
  show:
892
893
  select_recipients_to_deliver: Hautatu entregaren hartzaileak
893
894
  send_me_a_test_email: Bidali probako posta elektronikoa
@@ -969,7 +970,7 @@ eu:
969
970
  organization_logos: Erakundearen logoak
970
971
  preview: Aurreikusi
971
972
  rich_text_editor_in_public_views_help: Testu-eremu batzuetan, parte-hartzaileek HTML etiketa batzuk txertatu ahal izango dituzte testu-editore aberastua erabiliz.
972
- social_handlers: Gizarte
973
+ social_handlers: Soziala
973
974
  twitter: X
974
975
  url: URL
975
976
  welcome_notification: Ongietorri-jakinarazpenaren testua
@@ -1008,14 +1009,14 @@ eu:
1008
1009
  scope_types:
1009
1010
  create:
1010
1011
  error: Arazo bat egon da beste eremu mota bat sortzean.
1011
- success: Eremu mota arrakastaz sortu da.
1012
+ success: Esparru mota arrakastaz sortu da.
1012
1013
  destroy:
1013
1014
  success: Eremu mota behar bezala suntsitua
1014
1015
  edit:
1015
1016
  title: Editatu eremu mota
1016
1017
  update: Eguneratu
1017
1018
  index:
1018
- title: Eremu motak
1019
+ title: Esparru motak
1019
1020
  new:
1020
1021
  create: Sortu eremu mota
1021
1022
  title: Beste eremu mota bat
@@ -1113,7 +1114,7 @@ eu:
1113
1114
  title: Beste gai bat
1114
1115
  update:
1115
1116
  error: Arazo bat egon da gai hau eguneratzean.
1116
- success: Gaia ongi eguneratu da.
1117
+ success: Gaia zuzen eguneratua.
1117
1118
  static_pages:
1118
1119
  actions:
1119
1120
  view: Bistaratu
@@ -1164,7 +1165,7 @@ eu:
1164
1165
  edit:
1165
1166
  back: Atzera
1166
1167
  description: Taxonomia honetako elementuak baliabideak sailkatzeko edo iragazteko erabiliko dira, hala nola espazio edo osagai parte-hartzaileak. Arrastatu eta utzi zerrenda berrantolatzeko.
1167
- new_item: Elementu berria
1168
+ new_item: Beste elementu bat
1168
1169
  no_items: Gaur egun ez dago taxonomia honetako elementurik. Sortu hemen elementuen zerrenda bat baliabideak sailkatzeko edo iragazteko, hala nola espazio edo osagai parte-hartzaileak. Elementuak hiru mailatan sailka daitezke.
1169
1170
  subtitle: 'Elementuak hemen: "%{taxonomy_name}"'
1170
1171
  title: Editatu "%{taxonomy_name}" taxonomia
@@ -1173,7 +1174,7 @@ eu:
1173
1174
  search_placeholder: Bilatu
1174
1175
  index:
1175
1176
  description: Taxonomiek eta iragazkiek aukera ematen diete administratzaileei edukiak ordenatzeko eta antolatzeko. Adibidez, gehitu taxonomia bat hiriko auzo eta barrutiekin, eta gero sortu iragazkiak barrutiekin edo auzo jakin baterako.
1176
- new_taxonomy: Taxonomia berria
1177
+ new_taxonomy: Beste taxonomia bat
1177
1178
  no_items_found: Ez dago bilaketa-irizpidearekin bat datorren taxonomiarik.
1178
1179
  title: Taxonomiak
1179
1180
  name: Izena
@@ -1243,7 +1244,7 @@ eu:
1243
1244
  add_new_items_html: 'Beste iragazki edo elementu bat jarri behar baduzu, egin konfigurazio-ezarpenaren bidez edo klikatuz: <a href="%{url}">here</a>.'
1244
1245
  items_count: "Elementu %{count}"
1245
1246
  save: Gorde
1246
- title: Taxonomia-iragazkien hautatzaile berria
1247
+ title: Beste taxonomia-iragazk bat hautatzeko
1247
1248
  show:
1248
1249
  items_count: "Elementu %{count}"
1249
1250
  remove: Kendu
@@ -1349,7 +1350,7 @@ eu:
1349
1350
  success: Edukia zuzen desezkutatua.
1350
1351
  unreport:
1351
1352
  invalid: Arazo bat egon da salaketa bertan behera uztean.
1352
- success: Salaketa zuzen ezeztatu da.
1353
+ success: Salaketa behar bezala ezeztatua.
1353
1354
  models:
1354
1355
  moderation:
1355
1356
  fields:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  fi-pl:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  fi:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  fr-CA:
2
3
  activemodel:
3
4
  attributes:
@@ -351,6 +352,8 @@ fr-CA:
351
352
  unpublished: Non publié
352
353
  conflicts:
353
354
  attempts: Tentatives
355
+ edit:
356
+ title: Transférer l'utilisateur
354
357
  'false': 'Non'
355
358
  index:
356
359
  text: Recherche par email, nom ou pseudo de l'utilisateur actuel
@@ -484,6 +487,8 @@ fr-CA:
484
487
  form:
485
488
  save: sauvegarder
486
489
  success: Les sections d'aide ont été mises à jour avec succès.
490
+ update:
491
+ title: Sections d'aide
487
492
  impersonatable_users:
488
493
  index:
489
494
  filter:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  fr:
2
3
  activemodel:
3
4
  attributes:
@@ -351,6 +352,8 @@ fr:
351
352
  unpublished: Non publié
352
353
  conflicts:
353
354
  attempts: Tentatives
355
+ edit:
356
+ title: Transférer l'utilisateur
354
357
  'false': 'Non'
355
358
  index:
356
359
  text: Recherche par email, nom ou pseudo de l'utilisateur actuel
@@ -484,6 +487,8 @@ fr:
484
487
  form:
485
488
  save: Sauvegarder
486
489
  success: Les sections d'aide ont été mises à jour avec succès.
490
+ update:
491
+ title: Sections d'aide
487
492
  impersonatable_users:
488
493
  index:
489
494
  filter:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ga:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  gl:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  he:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  hu:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  id:
2
3
  activemodel:
3
4
  attributes:
@@ -1,4 +1,5 @@
1
- is-IS:
1
+ ---
2
+ is:
2
3
  activemodel:
3
4
  attributes:
4
5
  area:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  it:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ja:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  kaa:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ko:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  lb:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  lt:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  lv:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  nl:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  "no":
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  pl:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  pt-BR:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  pt:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ro:
2
3
  activemodel:
3
4
  attributes:
@@ -1,3 +1,4 @@
1
+ ---
1
2
  ru:
2
3
  activemodel:
3
4
  attributes: