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.
- checksums.yaml +4 -4
- data/app/controllers/decidim/admin/organization_controller.rb +0 -29
- data/app/packs/src/decidim/admin/admin_autocomplete.js +16 -10
- data/config/locales/ar.yml +1 -0
- data/config/locales/bg.yml +1 -0
- data/config/locales/bs-BA.yml +1 -0
- data/config/locales/ca-IT.yml +1 -0
- data/config/locales/ca.yml +1 -0
- data/config/locales/cs.yml +1 -0
- data/config/locales/de.yml +1 -0
- data/config/locales/el.yml +1 -0
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +1 -0
- data/config/locales/es-PY.yml +1 -0
- data/config/locales/es.yml +1 -0
- data/config/locales/eu.yml +40 -39
- data/config/locales/fi-plain.yml +1 -0
- data/config/locales/fi.yml +1 -0
- data/config/locales/fr-CA.yml +5 -0
- data/config/locales/fr.yml +5 -0
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +1 -0
- data/config/locales/he-IL.yml +1 -0
- data/config/locales/hu.yml +1 -0
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/is-IS.yml +2 -1
- data/config/locales/it.yml +1 -0
- data/config/locales/ja.yml +1 -0
- data/config/locales/kaa.yml +1 -0
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +1 -0
- data/config/locales/lt.yml +1 -0
- data/config/locales/lv.yml +1 -0
- data/config/locales/nl.yml +1 -0
- data/config/locales/no.yml +1 -0
- data/config/locales/pl.yml +1 -0
- data/config/locales/pt-BR.yml +1 -0
- data/config/locales/pt.yml +1 -0
- data/config/locales/ro-RO.yml +1 -0
- data/config/locales/ru.yml +1 -0
- data/config/locales/sk.yml +837 -0
- data/config/locales/sl.yml +1 -0
- data/config/locales/sq-AL.yml +1 -0
- data/config/locales/sr-CS.yml +1 -0
- data/config/locales/sv.yml +1 -0
- data/config/locales/th-TH.yml +1 -0
- data/config/locales/tr-TR.yml +1 -0
- data/config/locales/uk.yml +1 -0
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/zh-CN.yml +1 -0
- data/config/locales/zh-TW.yml +1 -0
- data/config/routes.rb +0 -4
- data/decidim-admin.gemspec +1 -1
- data/lib/decidim/admin/form_builder.rb +1 -3
- data/lib/decidim/admin/version.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a75d0c623d020ac21476b528a57744a6106f21478e499403853a12b59c8cbb9f
|
|
4
|
+
data.tar.gz: adef3ee649c65291bddc953e0b70bcc9f324de5ad9f7ff072f90b29310fee801
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
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
|
-
|
|
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
|
|
data/config/locales/ar.yml
CHANGED
data/config/locales/bg.yml
CHANGED
data/config/locales/bs-BA.yml
CHANGED
data/config/locales/ca-IT.yml
CHANGED
data/config/locales/ca.yml
CHANGED
data/config/locales/cs.yml
CHANGED
data/config/locales/de.yml
CHANGED
data/config/locales/el.yml
CHANGED
data/config/locales/eo.yml
CHANGED
data/config/locales/es-MX.yml
CHANGED
data/config/locales/es-PY.yml
CHANGED
data/config/locales/es.yml
CHANGED
data/config/locales/eu.yml
CHANGED
|
@@ -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:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
|
118
|
-
title:
|
|
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:
|
|
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:
|
|
159
|
+
content: Contenido
|
|
159
160
|
slug: URL laburra
|
|
160
|
-
title:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
|
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:
|
|
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:
|
|
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
|
|
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:
|
|
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:
|
|
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:
|
|
608
|
-
update:
|
|
608
|
+
title: Editatu kidea
|
|
609
|
+
update: Eguneratu
|
|
609
610
|
index:
|
|
610
|
-
import_via_csv: CSV
|
|
611
|
-
publish_all:
|
|
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
|
|
629
|
-
success: CSV fitxategia
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
|
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:
|
|
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:
|
|
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:
|
|
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
|
|
1353
|
+
success: Salaketa behar bezala ezeztatua.
|
|
1353
1354
|
models:
|
|
1354
1355
|
moderation:
|
|
1355
1356
|
fields:
|
data/config/locales/fi-plain.yml
CHANGED
data/config/locales/fi.yml
CHANGED
data/config/locales/fr-CA.yml
CHANGED
|
@@ -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:
|
data/config/locales/fr.yml
CHANGED
|
@@ -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:
|
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/gl.yml
CHANGED
data/config/locales/he-IL.yml
CHANGED
data/config/locales/hu.yml
CHANGED
data/config/locales/id-ID.yml
CHANGED
data/config/locales/is-IS.yml
CHANGED
data/config/locales/it.yml
CHANGED
data/config/locales/ja.yml
CHANGED
data/config/locales/kaa.yml
CHANGED
data/config/locales/ko.yml
CHANGED
data/config/locales/lb.yml
CHANGED
data/config/locales/lt.yml
CHANGED
data/config/locales/lv.yml
CHANGED
data/config/locales/nl.yml
CHANGED
data/config/locales/no.yml
CHANGED
data/config/locales/pl.yml
CHANGED
data/config/locales/pt-BR.yml
CHANGED
data/config/locales/pt.yml
CHANGED
data/config/locales/ro-RO.yml
CHANGED
data/config/locales/ru.yml
CHANGED