decidim-dev 0.29.2 → 0.30.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/models/decidim/dev/dummy_resource.rb +2 -0
- data/app/views/decidim/dev/dummy_resources/show.html.erb +1 -1
- data/config/locales/ar.yml +4 -1
- data/config/locales/bg.yml +1 -1
- data/config/locales/ca.yml +6 -1
- data/config/locales/cs.yml +6 -1
- data/config/locales/de.yml +6 -1
- data/config/locales/el.yml +1 -1
- data/config/locales/en.yml +5 -0
- data/config/locales/es-MX.yml +6 -1
- data/config/locales/es-PY.yml +6 -1
- data/config/locales/es.yml +6 -1
- data/config/locales/eu.yml +6 -1
- data/config/locales/fi-plain.yml +6 -1
- data/config/locales/fi.yml +6 -1
- data/config/locales/fr-CA.yml +4 -1
- data/config/locales/fr.yml +4 -1
- data/config/locales/gl.yml +1 -1
- data/config/locales/hu.yml +1 -1
- data/config/locales/id-ID.yml +1 -1
- data/config/locales/it.yml +1 -1
- data/config/locales/ja.yml +6 -1
- data/config/locales/lt.yml +1 -1
- data/config/locales/lv.yml +1 -1
- data/config/locales/nl.yml +1 -1
- data/config/locales/no.yml +1 -1
- data/config/locales/pl.yml +1 -1
- data/config/locales/pt-BR.yml +1 -1
- data/config/locales/pt.yml +1 -1
- data/config/locales/ro-RO.yml +1 -1
- data/config/locales/ru.yml +1 -1
- data/config/locales/sk.yml +1 -1
- data/config/locales/sv.yml +6 -1
- data/config/locales/tr-TR.yml +1 -1
- data/config/locales/zh-CN.yml +1 -1
- data/config/locales/zh-TW.yml +1 -1
- data/config/rubocop/disabled.yml +0 -27
- data/config/rubocop/faker.yml +1 -1
- data/config/rubocop/graphql.yml +23 -0
- data/config/rubocop/rspec.yml +1 -0
- data/config/rubocop/ruby.yml +1 -1
- data/decidim-dev.gemspec +12 -6
- data/lib/decidim/dev/auth_engine.rb +2 -0
- data/lib/decidim/dev/component.rb +1 -2
- data/lib/decidim/dev/test/rspec_support/capybara.rb +10 -25
- data/lib/decidim/dev/test/rspec_support/component.rb +2 -0
- data/lib/decidim/dev/test/rspec_support/component_context.rb +13 -7
- data/lib/decidim/dev/test/rspec_support/confirmation_helpers.rb +4 -4
- data/lib/decidim/dev/test/rspec_support/controller_example_group.rb +8 -0
- data/lib/decidim/dev/test/rspec_support/geocoder.rb +13 -0
- data/lib/decidim/dev/test/rspec_support/screenshot_helper.rb +2 -2
- data/lib/decidim/dev/version.rb +1 -1
- data/lib/tasks/generators.rake +2 -1
- data/lib/tasks/lighthouse_report.rake +3 -3
- data/rubocop-decidim.yml +1 -0
- metadata +100 -22
- data/lib/decidim/dev/test/rspec_support/wicked_pdf_assets_mock.rb +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 14c28bcd48757db6c1fffb63ec93ab20bab034dd940dfe1b23220dfc83cfb7ce
|
4
|
+
data.tar.gz: be2c8c1ad836e41e7a7b38d4ef9c9d865482ce5f03bff04bd0675aee6c10d820
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 433e5e3e0474af937c502081280201612ab7b18e87a41a4c8573525de7298106d3d4f0f8a01a6761ca90c7b4874c2f41ec792a095846919108cc300573400a39
|
7
|
+
data.tar.gz: a7f8801796d9703acfb1cd28d5e290a29b54b1aa0dbdb75793b75eff34de6fdb4d764b3a4e0af6173dd1545f59aeec465116564922e7b1aec0e6ef1b801a6aba
|
@@ -10,6 +10,7 @@ module Decidim
|
|
10
10
|
include Authorable
|
11
11
|
include HasCategory
|
12
12
|
include ScopableResource
|
13
|
+
include Taxonomizable
|
13
14
|
include Decidim::Comments::Commentable
|
14
15
|
include Followable
|
15
16
|
include Traceable
|
@@ -23,6 +24,7 @@ module Decidim
|
|
23
24
|
include Decidim::HasAttachments
|
24
25
|
include Decidim::ShareableWithToken
|
25
26
|
include Decidim::TranslatableResource
|
27
|
+
include Decidim::SoftDeletable
|
26
28
|
|
27
29
|
translatable_fields :title
|
28
30
|
searchable_fields(
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<section class="layout-main__section layout-main__buttons" data-buttons>
|
18
18
|
<%= cell "decidim/comments_button", nil %>
|
19
19
|
<div class="ml-auto">
|
20
|
-
<%= cell "decidim/
|
20
|
+
<%= cell "decidim/share_widget", @commentable %>
|
21
21
|
</div>
|
22
22
|
</section>
|
23
23
|
<% end %>
|
data/config/locales/ar.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
ar:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: صورة
|
7
|
+
dummy_attribute: متغير وهمي
|
5
8
|
dummy_resource:
|
6
9
|
created_at: أنشئت في
|
7
10
|
decidim_scope_id: نطاق
|
@@ -47,7 +50,7 @@ ar:
|
|
47
50
|
badges:
|
48
51
|
test:
|
49
52
|
conditions:
|
50
|
-
|
53
|
+
- استخدام بيئة اختبار ل decidim.
|
51
54
|
description: يحصل المشاركون على هذه الشارة عن طريق إنشاء اختبارات.
|
52
55
|
description_another: قام هذا المشارك بإنشاء %{score} اختبار.
|
53
56
|
description_own: لقد أنشأت %{score} اختبارات.
|
data/config/locales/bg.yml
CHANGED
@@ -47,7 +47,7 @@ bg:
|
|
47
47
|
badges:
|
48
48
|
test:
|
49
49
|
conditions:
|
50
|
-
|
50
|
+
- Използвайте тестова среда за decidim.
|
51
51
|
description: Участниците получават тази значка като създават тестове.
|
52
52
|
description_another: Участниците създадоха %{score} теста.
|
53
53
|
description_own: Вие създадохте %{score} теста.
|
data/config/locales/ca.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
ca:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Imatge
|
7
|
+
dummy_attribute: Atribut de prova
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Creat el
|
7
10
|
decidim_scope_id: Àmbit
|
@@ -15,6 +18,7 @@ ca:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Netejar-ho tot
|
18
22
|
guided: Entrada guiada
|
19
23
|
guided_help: Text d'ajuda
|
20
24
|
guided_readonly: Entrada deshabilitada
|
@@ -23,6 +27,7 @@ ca:
|
|
23
27
|
guided_rich_readonly_html: HTML <strong>ajuda</strong> text per l'entrada deshabilitada
|
24
28
|
readonly_attribute: Atribut de només lectura
|
25
29
|
test: Una prova
|
30
|
+
test_add: Afegir una prova
|
26
31
|
test_choices:
|
27
32
|
a: Opció A
|
28
33
|
b: Opció B
|
@@ -47,7 +52,7 @@ ca:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- Utilitza un entorn de prova per decidim.
|
51
56
|
description: Les participants obtenen aquesta insígnia creant proves.
|
52
57
|
description_another: Aquesta participant ha creat %{score} proves.
|
53
58
|
description_own: Has creat %{score} proves.
|
data/config/locales/cs.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
cs:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Obrázek
|
7
|
+
dummy_attribute: Zástupný atribut
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Vytvořeno v
|
7
10
|
decidim_scope_id: Oblast působnosti
|
@@ -15,6 +18,7 @@ cs:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Vymazat vše
|
18
22
|
guided: Řízené zadávání
|
19
23
|
guided_help: Text nápovědy
|
20
24
|
guided_readonly: Zakázaný zápis
|
@@ -23,6 +27,7 @@ cs:
|
|
23
27
|
guided_rich_readonly_html: HTML <strong>nápověda</strong> text pro zakázaný zápis
|
24
28
|
readonly_attribute: Atribut pouze pro čtení
|
25
29
|
test: Zkouška A
|
30
|
+
test_add: Přidat test
|
26
31
|
test_choices:
|
27
32
|
a: Možnost A
|
28
33
|
b: Možnost B
|
@@ -47,7 +52,7 @@ cs:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- Použijte testovací prostředí pro decidim.
|
51
56
|
description: Uživatelé získají tento odznak vytvořením testů.
|
52
57
|
description_another: Tento uživatel vytvořil %{score} testů.
|
53
58
|
description_own: Vytvořili jste %{score} testů.
|
data/config/locales/de.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
de:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Bild
|
7
|
+
dummy_attribute: Dummy-Attribut
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Erstellt am
|
7
10
|
decidim_scope_id: Umfang
|
@@ -15,6 +18,7 @@ de:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Alles löschen
|
18
22
|
guided: Geführte Eingabe
|
19
23
|
guided_help: Hilfetext
|
20
24
|
guided_readonly: Deaktivierte Eingabe
|
@@ -23,6 +27,7 @@ de:
|
|
23
27
|
guided_rich_readonly_html: HTML <strong>Hilfe</strong> Text für deaktivierte Eingabe
|
24
28
|
readonly_attribute: Attribut schreibgeschützt
|
25
29
|
test: Test A
|
30
|
+
test_add: Test hinzufügen
|
26
31
|
test_choices:
|
27
32
|
a: Wahl A
|
28
33
|
b: Wahl B
|
@@ -47,7 +52,7 @@ de:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- Verwenden Sie eine Testumgebung für Decidim.
|
51
56
|
description: Benutzer erhalten dieses Badge, indem sie Tests erstellen.
|
52
57
|
description_another: Dieser Benutzer hat %{score} Tests erstellt.
|
53
58
|
description_own: Sie haben %{score} Tests erstellt.
|
data/config/locales/el.yml
CHANGED
@@ -39,7 +39,7 @@ el:
|
|
39
39
|
badges:
|
40
40
|
test:
|
41
41
|
conditions:
|
42
|
-
|
42
|
+
- Χρησιμοποιήστε ένα περιβάλλον δοκιμής για το decidim.
|
43
43
|
description: Οι συμμετέχοντες αποκτούν αυτό το έμβλημα δημιουργώντας δοκιμές.
|
44
44
|
description_another: Αυτός ο συμμετέχων έχει δημιουργήσει %{score} δοκιμές.
|
45
45
|
description_own: Έχετε δημιουργήσει %{score} δοκιμές.
|
data/config/locales/en.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
en:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Image
|
7
|
+
dummy_attribute: Dummy attribute
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Created at
|
7
10
|
decidim_scope_id: Scope
|
@@ -15,6 +18,7 @@ en:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Clear all
|
18
22
|
guided: Guided input
|
19
23
|
guided_help: Help text
|
20
24
|
guided_readonly: Disabled input
|
@@ -23,6 +27,7 @@ en:
|
|
23
27
|
guided_rich_readonly_html: HTML <strong>help</strong> text for disabled input
|
24
28
|
readonly_attribute: Readonly attribute
|
25
29
|
test: A test
|
30
|
+
test_add: Add test
|
26
31
|
test_choices:
|
27
32
|
a: A choice
|
28
33
|
b: B choice
|
data/config/locales/es-MX.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
es-MX:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Imagen
|
7
|
+
dummy_attribute: Atributo de prueba
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Creado en
|
7
10
|
decidim_scope_id: Ámbito
|
@@ -15,6 +18,7 @@ es-MX:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Limpiar todo
|
18
22
|
guided: Entrada guiada
|
19
23
|
guided_help: Texto de ayuda
|
20
24
|
guided_readonly: Entrada deshabilitada
|
@@ -23,6 +27,7 @@ es-MX:
|
|
23
27
|
guided_rich_readonly_html: Texto de <strong>ayuda</strong> HTML para la entrada deshabilitada
|
24
28
|
readonly_attribute: Atributo de sólo lectura
|
25
29
|
test: Test A
|
30
|
+
test_add: Añadir una prueba
|
26
31
|
test_choices:
|
27
32
|
a: Opción A
|
28
33
|
b: Opción B
|
@@ -47,7 +52,7 @@ es-MX:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- Utilice un entorno de prueba para decidim.
|
51
56
|
description: Los usuarios obtienen esta insignia al crear pruebas.
|
52
57
|
description_another: Este usuario ha creado %{score} pruebas.
|
53
58
|
description_own: Has creado %{score} pruebas.
|
data/config/locales/es-PY.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
es-PY:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Imagen
|
7
|
+
dummy_attribute: Atributo de prueba
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Creado en
|
7
10
|
decidim_scope_id: Ámbito
|
@@ -15,6 +18,7 @@ es-PY:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Limpiar todo
|
18
22
|
guided: Entrada guiada
|
19
23
|
guided_help: Texto de ayuda
|
20
24
|
guided_readonly: Entrada deshabilitada
|
@@ -23,6 +27,7 @@ es-PY:
|
|
23
27
|
guided_rich_readonly_html: Texto de <strong>ayuda</strong> HTML para la entrada deshabilitada
|
24
28
|
readonly_attribute: Atributo de sólo lectura
|
25
29
|
test: Test A
|
30
|
+
test_add: Añadir una prueba
|
26
31
|
test_choices:
|
27
32
|
a: Opción A
|
28
33
|
b: Opción B
|
@@ -47,7 +52,7 @@ es-PY:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- Utilice un entorno de prueba para decidim.
|
51
56
|
description: Los usuarios obtienen esta insignia al crear pruebas.
|
52
57
|
description_another: Este usuario ha creado %{score} pruebas.
|
53
58
|
description_own: Has creado %{score} pruebas.
|
data/config/locales/es.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
es:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Imagen
|
7
|
+
dummy_attribute: Atributo de prueba
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Creado en
|
7
10
|
decidim_scope_id: Ámbito
|
@@ -15,6 +18,7 @@ es:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Limpiar todo
|
18
22
|
guided: Entrada guiada
|
19
23
|
guided_help: Texto de ayuda
|
20
24
|
guided_readonly: Entrada deshabilitada
|
@@ -23,6 +27,7 @@ es:
|
|
23
27
|
guided_rich_readonly_html: Texto de <strong>ayuda</strong> HTML para la entrada deshabilitada
|
24
28
|
readonly_attribute: Atributo de sólo lectura
|
25
29
|
test: Una prueba
|
30
|
+
test_add: Añadir una prueba
|
26
31
|
test_choices:
|
27
32
|
a: Opción A
|
28
33
|
b: Opción B
|
@@ -47,7 +52,7 @@ es:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- Utilice un entorno de prueba para decidim.
|
51
56
|
description: Las participantes obtienen esta insignia al crear pruebas.
|
52
57
|
description_another: Esta participante ha creado %{score} pruebas.
|
53
58
|
description_own: Has creado %{score} pruebas.
|
data/config/locales/eu.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
eu:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Irudia
|
7
|
+
dummy_attribute: Balizko atributua
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Sortua
|
7
10
|
decidim_scope_id: Eremua
|
@@ -15,6 +18,7 @@ eu:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Garbitu dena
|
18
22
|
guided: Input gidatua
|
19
23
|
guided_help: Laguntza-testua
|
20
24
|
guided_readonly: Input desgaitua
|
@@ -23,6 +27,7 @@ eu:
|
|
23
27
|
guided_rich_readonly_html: HTML<strong>laguntza</strong>testua input desgaiturako
|
24
28
|
readonly_attribute: Soilik irakurtzeko atributua
|
25
29
|
test: Proba bat
|
30
|
+
test_add: Erantsi testa
|
26
31
|
test_choices:
|
27
32
|
a: A aukera
|
28
33
|
b: B aukera
|
@@ -47,7 +52,7 @@ eu:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- Erabili probako ingurunea erabakitzeko.
|
51
56
|
description: Parte-hartzaileek garaikur hau lortzen dute probak sortzeagatik.
|
52
57
|
description_another: Parte-hartzaile honek %{score} proba egin ditu.
|
53
58
|
description_own: '%{score} proba sortu dituzu.'
|
data/config/locales/fi-plain.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
fi-pl:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Kuva
|
7
|
+
dummy_attribute: Esimerkkitietue
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Luontiaika
|
7
10
|
decidim_scope_id: Teema
|
@@ -15,6 +18,7 @@ fi-pl:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Tyhjennä kaikki
|
18
22
|
guided: Ohjeistettu syöte
|
19
23
|
guided_help: Ohjeteksti
|
20
24
|
guided_readonly: Käytöstä poistettu syöte
|
@@ -23,6 +27,7 @@ fi-pl:
|
|
23
27
|
guided_rich_readonly_html: Käytöstä poistettu HTML <strong>ohjeteksti</strong>
|
24
28
|
readonly_attribute: Vain luku -attribuutti
|
25
29
|
test: Testi
|
30
|
+
test_add: Lisää testi
|
26
31
|
test_choices:
|
27
32
|
a: A-valinta
|
28
33
|
b: B-valinta
|
@@ -47,7 +52,7 @@ fi-pl:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- Käytä testiympäristöä Decidimille.
|
51
56
|
description: Käyttäjät saavat tämän kunniamerkin luomalla testejä.
|
52
57
|
description_another: Tämä käyttäjä on luonut %{score} testiä.
|
53
58
|
description_own: Olet luonut %{score} testiä.
|
data/config/locales/fi.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
fi:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Kuva
|
7
|
+
dummy_attribute: Esimerkkitietue
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Luontiaika
|
7
10
|
decidim_scope_id: Teema
|
@@ -15,6 +18,7 @@ fi:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: Tyhjennä kaikki
|
18
22
|
guided: Ohjeistettu syöte
|
19
23
|
guided_help: Ohjeteksti
|
20
24
|
guided_readonly: Käytöstä poistettu syöte
|
@@ -23,6 +27,7 @@ fi:
|
|
23
27
|
guided_rich_readonly_html: Käytöstä poistettu HTML <strong>ohjeteksti</strong>
|
24
28
|
readonly_attribute: Vain luku -attribuutti
|
25
29
|
test: Testi
|
30
|
+
test_add: Lisää testi
|
26
31
|
test_choices:
|
27
32
|
a: A-valinta
|
28
33
|
b: B-valinta
|
@@ -47,7 +52,7 @@ fi:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- Käytä testiympäristöä Decidimille.
|
51
56
|
description: Käyttäjät saavat tämän kunniamerkin luomalla testejä.
|
52
57
|
description_another: Tämä käyttäjä on luonut %{score} testiä.
|
53
58
|
description_own: Olet luonut %{score} testiä.
|
data/config/locales/fr-CA.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
fr-CA:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Image
|
7
|
+
dummy_attribute: Attribut factice
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Créé le
|
7
10
|
decidim_scope_id: Périmètre d'application
|
@@ -47,7 +50,7 @@ fr-CA:
|
|
47
50
|
badges:
|
48
51
|
test:
|
49
52
|
conditions:
|
50
|
-
|
53
|
+
- Utilisez un environnement de test pour decidim.
|
51
54
|
description: Les utilisateurs obtiennent ce badge en créant des tests.
|
52
55
|
description_another: Cet utilisateur a créé %{score} tests.
|
53
56
|
description_own: Vous avez créé %{score} tests.
|
data/config/locales/fr.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
fr:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: Image
|
7
|
+
dummy_attribute: Attribut factice
|
5
8
|
dummy_resource:
|
6
9
|
created_at: Créé le
|
7
10
|
decidim_scope_id: Secteur
|
@@ -47,7 +50,7 @@ fr:
|
|
47
50
|
badges:
|
48
51
|
test:
|
49
52
|
conditions:
|
50
|
-
|
53
|
+
- Utilisez un environnement de test pour decidim.
|
51
54
|
description: Les utilisateurs obtiennent ce badge en créant des tests.
|
52
55
|
description_another: Cet utilisateur a créé %{score} tests.
|
53
56
|
description_own: Vous avez créé %{score} tests.
|
data/config/locales/gl.yml
CHANGED
@@ -41,7 +41,7 @@ gl:
|
|
41
41
|
badges:
|
42
42
|
test:
|
43
43
|
conditions:
|
44
|
-
|
44
|
+
- Use un entorno de proba para decidir.
|
45
45
|
description: Os usuarios obtén esta insignia creando probas.
|
46
46
|
description_another: Este usuario creou %{score} probas.
|
47
47
|
description_own: Creaches %{score} probas.
|
data/config/locales/hu.yml
CHANGED
@@ -33,7 +33,7 @@ hu:
|
|
33
33
|
badges:
|
34
34
|
test:
|
35
35
|
conditions:
|
36
|
-
|
36
|
+
- Használjon teszt környezetet a decidim számára.
|
37
37
|
description: A résztvevők ezt a jelvényt tesztek létrehozásával kapják meg.
|
38
38
|
description_another: Ez a résztvevő %{score} tesztet hozott létre.
|
39
39
|
description_own: Létrehoztad a(z) %{score} teszteket.
|
data/config/locales/id-ID.yml
CHANGED
@@ -28,7 +28,7 @@ id:
|
|
28
28
|
badges:
|
29
29
|
test:
|
30
30
|
conditions:
|
31
|
-
|
31
|
+
- Gunakan lingkungan uji untuk decidim.
|
32
32
|
description: Peserta mendapatkan lencana ini dengan membuat tes.
|
33
33
|
description_another: Peserta ini telah membuat %{score} tes.
|
34
34
|
description_own: Anda telah membuat %{score} tes.
|
data/config/locales/it.yml
CHANGED
@@ -41,7 +41,7 @@ it:
|
|
41
41
|
badges:
|
42
42
|
test:
|
43
43
|
conditions:
|
44
|
-
|
44
|
+
- Utilizzare un ambiente di prova per decidim.
|
45
45
|
description: Gli utenti ottengono questo badge creando test.
|
46
46
|
description_another: Questo utente ha creato %{score} test.
|
47
47
|
description_own: Hai creato %{score} test.
|
data/config/locales/ja.yml
CHANGED
@@ -2,6 +2,9 @@
|
|
2
2
|
ja:
|
3
3
|
activemodel:
|
4
4
|
attributes:
|
5
|
+
dummy:
|
6
|
+
image: 画像
|
7
|
+
dummy_attribute: ダミー属性
|
5
8
|
dummy_resource:
|
6
9
|
created_at: 作成日時
|
7
10
|
decidim_scope_id: スコープ
|
@@ -15,6 +18,7 @@ ja:
|
|
15
18
|
dummy:
|
16
19
|
settings:
|
17
20
|
global:
|
21
|
+
clear_all: すべてクリア
|
18
22
|
guided: ガイド付き入力
|
19
23
|
guided_help: ヘルプテキスト
|
20
24
|
guided_readonly: 無効化された入力
|
@@ -23,6 +27,7 @@ ja:
|
|
23
27
|
guided_rich_readonly_html: HTML <strong>ヘルプ</strong> の入力を無効にする
|
24
28
|
readonly_attribute: 読み取り専用属性
|
25
29
|
test: テスト
|
30
|
+
test_add: テストの追加
|
26
31
|
test_choices:
|
27
32
|
a: 選択
|
28
33
|
b: B の選択
|
@@ -47,7 +52,7 @@ ja:
|
|
47
52
|
badges:
|
48
53
|
test:
|
49
54
|
conditions:
|
50
|
-
|
55
|
+
- テスト環境を使用してdecidim.
|
51
56
|
description: 参加者はテストを作成することによってこのバッジを受け取ります。
|
52
57
|
description_another: この参加者は %{score} テストを作成しました。
|
53
58
|
description_own: テストを %{score} 作成しました。
|
data/config/locales/lt.yml
CHANGED
@@ -47,7 +47,7 @@ lt:
|
|
47
47
|
badges:
|
48
48
|
test:
|
49
49
|
conditions:
|
50
|
-
|
50
|
+
- Naudokite testinę aplinką.
|
51
51
|
description: Dalyviai šį ženklelį pelno kurdami testus.
|
52
52
|
description_another: Šis dalyvis sukūrė %{score} testus.
|
53
53
|
description_own: Jūs sukūrėte %{score} testus.
|
data/config/locales/lv.yml
CHANGED
@@ -33,7 +33,7 @@ lv:
|
|
33
33
|
badges:
|
34
34
|
test:
|
35
35
|
conditions:
|
36
|
-
|
36
|
+
- Izmantot testa vidi decidim.
|
37
37
|
description: Dalībnieki iegūst šo žetonu, izveidojot testus.
|
38
38
|
description_another: Šis dalībnieks ir izveidojis %{score} testus.
|
39
39
|
description_own: Jūs esat izveidojis %{score} testus.
|
data/config/locales/nl.yml
CHANGED
@@ -41,7 +41,7 @@ nl:
|
|
41
41
|
badges:
|
42
42
|
test:
|
43
43
|
conditions:
|
44
|
-
|
44
|
+
- Gebruik een testomgeving voor decidim.
|
45
45
|
description: Gebruikers krijgen deze badge door tests te maken.
|
46
46
|
description_another: Deze gebruiker heeft %{score} tests gemaakt.
|
47
47
|
description_own: U hebt %{score} tests gemaakt.
|
data/config/locales/no.yml
CHANGED
@@ -41,7 +41,7 @@
|
|
41
41
|
badges:
|
42
42
|
test:
|
43
43
|
conditions:
|
44
|
-
|
44
|
+
- Bruk et testmiljø for decidim.
|
45
45
|
description: Deltakerne får dette merket ved å lage tester.
|
46
46
|
description_another: Denne deltakeren har opprettet %{score} tester.
|
47
47
|
description_own: Du har opprettet %{score} tester.
|
data/config/locales/pl.yml
CHANGED
@@ -47,7 +47,7 @@ pl:
|
|
47
47
|
badges:
|
48
48
|
test:
|
49
49
|
conditions:
|
50
|
-
|
50
|
+
- Użyj środowiska testowego dla decidim.
|
51
51
|
description: Użytkownicy otrzymują tę odznakę tworząc testy.
|
52
52
|
description_another: Ten użytkownik utworzył %{score} testów.
|
53
53
|
description_own: Utworzyłeś %{score} testów.
|
data/config/locales/pt-BR.yml
CHANGED
@@ -47,7 +47,7 @@ pt-BR:
|
|
47
47
|
badges:
|
48
48
|
test:
|
49
49
|
conditions:
|
50
|
-
|
50
|
+
- Use um ambiente de teste para decidim.
|
51
51
|
description: Os usuários obtêm esse selo criando testes.
|
52
52
|
description_another: Este usuário criou %{score} testes.
|
53
53
|
description_own: Você criou %{score} testes.
|
data/config/locales/pt.yml
CHANGED
@@ -41,7 +41,7 @@ pt:
|
|
41
41
|
badges:
|
42
42
|
test:
|
43
43
|
conditions:
|
44
|
-
|
44
|
+
- Utilize um ambiente de teste para decidim.
|
45
45
|
description: Os participantes obtêm este distintivo ao criarem testes.
|
46
46
|
description_another: Este participante criou %{score} testes.
|
47
47
|
description_own: Criou %{score} testes.
|
data/config/locales/ro-RO.yml
CHANGED
@@ -47,7 +47,7 @@ ro:
|
|
47
47
|
badges:
|
48
48
|
test:
|
49
49
|
conditions:
|
50
|
-
|
50
|
+
- Utilizaţi un mediu de testare pentru decidim.
|
51
51
|
description: Participanții obțin această insignă prin crearea de teste.
|
52
52
|
description_another: Acest participant a creat %{score} teste.
|
53
53
|
description_own: Ați creat %{score} teste.
|
data/config/locales/ru.yml
CHANGED
@@ -29,7 +29,7 @@ ru:
|
|
29
29
|
badges:
|
30
30
|
test:
|
31
31
|
conditions:
|
32
|
-
|
32
|
+
- Используйте тестовую среду для decidim.
|
33
33
|
description: Участники получают этот значок за написание тестов.
|
34
34
|
description_another: Этот участник написал %{score} тестов.
|
35
35
|
description_own: Вы написали %{score} тест.
|
data/config/locales/sk.yml
CHANGED
@@ -31,7 +31,7 @@ sk:
|
|
31
31
|
badges:
|
32
32
|
test:
|
33
33
|
conditions:
|
34
|
-
|
34
|
+
- Použiť testovacie prostredie pre decidim.
|
35
35
|
description: Účastníci dostanú tento odznak za vytváranie testov.
|
36
36
|
description_another: Tento účastník vytvoril %{score} testov.
|
37
37
|
description_own: Vytvorili ste %{score} testov.
|