decidim-debates 0.9.0
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 +7 -0
- data/README.md +15 -0
- data/Rakefile +3 -0
- data/app/assets/images/decidim/debates/icon.svg +1 -0
- data/app/commands/decidim/debates/admin/create_debate.rb +57 -0
- data/app/commands/decidim/debates/admin/update_debate.rb +46 -0
- data/app/commands/decidim/debates/create_debate.rb +68 -0
- data/app/controllers/decidim/debates/admin/application_controller.rb +15 -0
- data/app/controllers/decidim/debates/admin/debates_controller.rb +73 -0
- data/app/controllers/decidim/debates/application_controller.rb +13 -0
- data/app/controllers/decidim/debates/debates_controller.rb +78 -0
- data/app/events/decidim/debates/create_debate_event.rb +42 -0
- data/app/forms/decidim/debates/admin/debate_form.rb +33 -0
- data/app/forms/decidim/debates/debate_form.rb +25 -0
- data/app/helpers/decidim/debates/application_helper.rb +12 -0
- data/app/models/decidim/debates/abilities/admin/admin_ability.rb +21 -0
- data/app/models/decidim/debates/abilities/admin/participatory_process_admin_ability.rb +23 -0
- data/app/models/decidim/debates/abilities/admin/participatory_process_moderator_ability.rb +21 -0
- data/app/models/decidim/debates/abilities/current_user_ability.rb +49 -0
- data/app/models/decidim/debates/application_record.rb +10 -0
- data/app/models/decidim/debates/debate.rb +103 -0
- data/app/presenters/decidim/debates/debate_presenter.rb +20 -0
- data/app/presenters/decidim/debates/official_author_presenter.rb +34 -0
- data/app/services/decidim/debates/debate_search.rb +38 -0
- data/app/views/decidim/debates/admin/debates/_form.html.erb +36 -0
- data/app/views/decidim/debates/admin/debates/edit.html.erb +7 -0
- data/app/views/decidim/debates/admin/debates/index.html.erb +52 -0
- data/app/views/decidim/debates/admin/debates/new.html.erb +7 -0
- data/app/views/decidim/debates/debates/_count.html.erb +1 -0
- data/app/views/decidim/debates/debates/_debate.html.erb +42 -0
- data/app/views/decidim/debates/debates/_debates.html.erb +4 -0
- data/app/views/decidim/debates/debates/_filters.html.erb +20 -0
- data/app/views/decidim/debates/debates/_filters_small_view.html.erb +18 -0
- data/app/views/decidim/debates/debates/_share.html.erb +33 -0
- data/app/views/decidim/debates/debates/index.html.erb +27 -0
- data/app/views/decidim/debates/debates/index.js.erb +9 -0
- data/app/views/decidim/debates/debates/new.html.erb +43 -0
- data/app/views/decidim/debates/debates/show.html.erb +80 -0
- data/config/locales/ca.yml +114 -0
- data/config/locales/en.yml +117 -0
- data/config/locales/es.yml +114 -0
- data/config/locales/eu.yml +114 -0
- data/config/locales/fi.yml +114 -0
- data/config/locales/fr.yml +114 -0
- data/config/locales/gl.yml +114 -0
- data/config/locales/it.yml +114 -0
- data/config/locales/nl.yml +114 -0
- data/config/locales/pl.yml +116 -0
- data/config/locales/pt-BR.yml +114 -0
- data/config/locales/pt.yml +114 -0
- data/config/locales/ru.yml +5 -0
- data/config/locales/sv.yml +114 -0
- data/config/locales/uk.yml +5 -0
- data/db/migrate/20170118141619_create_debates.rb +18 -0
- data/db/migrate/20180117100413_add_debate_information_updates.rb +7 -0
- data/db/migrate/20180118132243_add_author_to_debates.rb +7 -0
- data/db/migrate/20180119150434_add_reference_to_debates.rb +12 -0
- data/db/migrate/20180122090505_add_user_group_author_to_debates.rb +7 -0
- data/lib/decidim/debates/admin.rb +10 -0
- data/lib/decidim/debates/admin_engine.rb +33 -0
- data/lib/decidim/debates/engine.rb +26 -0
- data/lib/decidim/debates/feature.rb +55 -0
- data/lib/decidim/debates/test/factories.rb +52 -0
- data/lib/decidim/debates/version.rb +10 -0
- data/lib/decidim/debates.rb +12 -0
- metadata +197 -0
@@ -0,0 +1,114 @@
|
|
1
|
+
gl:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
debate:
|
5
|
+
category_id: Categoría
|
6
|
+
description: Descrición
|
7
|
+
end_time: Remata a
|
8
|
+
information_updates: Actualizacións de información
|
9
|
+
instructions: Instrucións para participar
|
10
|
+
start_time: Comeza en
|
11
|
+
title: Título
|
12
|
+
user_group_id: Crear debate como
|
13
|
+
decidim:
|
14
|
+
debates:
|
15
|
+
actions:
|
16
|
+
confirm_destroy: Estás seguro?
|
17
|
+
destroy: Eliminar
|
18
|
+
edit: Editar
|
19
|
+
new: Novo %{name}
|
20
|
+
title: Accións
|
21
|
+
admin:
|
22
|
+
debates:
|
23
|
+
create:
|
24
|
+
invalid: Produciuse un problema ao crear o debate.
|
25
|
+
success: Debate creouse con éxito.
|
26
|
+
destroy:
|
27
|
+
success: Debate eliminado con éxito.
|
28
|
+
edit:
|
29
|
+
title: Editar debate
|
30
|
+
update: Actualizar debate
|
31
|
+
index:
|
32
|
+
title: Debates
|
33
|
+
new:
|
34
|
+
create: Crear debate
|
35
|
+
title: Novo debate
|
36
|
+
update:
|
37
|
+
invalid: Houbo un problema ao actualizar este debate.
|
38
|
+
success: Debate actualizado con éxito.
|
39
|
+
models:
|
40
|
+
debate:
|
41
|
+
name: Debate
|
42
|
+
debates:
|
43
|
+
count:
|
44
|
+
debates_count:
|
45
|
+
one: "Debate %{count}"
|
46
|
+
other: "%{count} debates"
|
47
|
+
create:
|
48
|
+
invalid: Produciuse un problema ao crear o debate.
|
49
|
+
success: Debate creouse con éxito.
|
50
|
+
debate:
|
51
|
+
comments:
|
52
|
+
one: Comentario
|
53
|
+
other: Comentarios
|
54
|
+
participate: Participar
|
55
|
+
filters:
|
56
|
+
all: Todo
|
57
|
+
category: Categoría
|
58
|
+
category_prompt: Selecciona unha categoría
|
59
|
+
citizens: Cidadáns
|
60
|
+
official: Oficial
|
61
|
+
origin: Orixe
|
62
|
+
search: Busca
|
63
|
+
filters_small_view:
|
64
|
+
close_modal: Pechar modal
|
65
|
+
filter: Filtro
|
66
|
+
filter_by: Filtrar por
|
67
|
+
unfold: Despregar
|
68
|
+
index:
|
69
|
+
new_debate: Novo debate
|
70
|
+
new:
|
71
|
+
back: De volta
|
72
|
+
create: Crear
|
73
|
+
select_a_category: Selecciona unha categoría
|
74
|
+
title: Novo debate
|
75
|
+
share:
|
76
|
+
close_window: Pechar ventá
|
77
|
+
share: Comparte
|
78
|
+
share_link: Compartir a ligazón
|
79
|
+
show:
|
80
|
+
comments: Comentarios
|
81
|
+
report: Informe
|
82
|
+
models:
|
83
|
+
debate:
|
84
|
+
fields:
|
85
|
+
end_time: Data de finalización
|
86
|
+
official_debate: Debate oficial
|
87
|
+
start_time: Data de inicio
|
88
|
+
title: Título
|
89
|
+
events:
|
90
|
+
debates:
|
91
|
+
create_debate_event:
|
92
|
+
space_followers:
|
93
|
+
email_intro: |-
|
94
|
+
Ola, creouse un novo debate sobre o espazo participativo %{space_title}, verifícalo e contribuír:
|
95
|
+
email_outro: Recibiches esta notificación porque estás seguindo o %{space_title} espazo participativo. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
96
|
+
email_subject: Novo debate sobre %{space_title}
|
97
|
+
notification_title: O <a href="%{resource_path}">%{resource_title}</a> debate foi creado en <a href="%{space_path}">%{space_title}</a>.
|
98
|
+
user_followers:
|
99
|
+
email_intro: |-
|
100
|
+
Ola, %{author_name} %{author_nickname}, a quen estás seguindo, creou un novo debate, revisádeo e contribuíu:
|
101
|
+
email_outro: Recibiches esta notificación porque estás seguindo %{author_nickname}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
102
|
+
email_subject: Novo debate por %{author_nickname}
|
103
|
+
notification_title: O <a href="%{resource_path}">%{resource_title}</a> debate foi creado por <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
104
|
+
features:
|
105
|
+
debates:
|
106
|
+
actions:
|
107
|
+
create: Crear
|
108
|
+
name: Debates
|
109
|
+
settings:
|
110
|
+
global:
|
111
|
+
comments_enabled: Comentarios habilitados
|
112
|
+
step:
|
113
|
+
comments_blocked: Comentarios bloqueados
|
114
|
+
creation_enabled: Debate creado polos usuarios activado
|
@@ -0,0 +1,114 @@
|
|
1
|
+
it:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
debate:
|
5
|
+
category_id: Categoria
|
6
|
+
description: Descrizione
|
7
|
+
end_time: Finisce a
|
8
|
+
information_updates: Aggiornamenti delle informazioni
|
9
|
+
instructions: Istruzioni per partecipare
|
10
|
+
start_time: Inizia a
|
11
|
+
title: Titolo
|
12
|
+
user_group_id: Crea dibattito come
|
13
|
+
decidim:
|
14
|
+
debates:
|
15
|
+
actions:
|
16
|
+
confirm_destroy: Sei sicuro?
|
17
|
+
destroy: Elimina
|
18
|
+
edit: modificare
|
19
|
+
new: Nuovo %{name}
|
20
|
+
title: Azioni
|
21
|
+
admin:
|
22
|
+
debates:
|
23
|
+
create:
|
24
|
+
invalid: C'è stato un problema durante la creazione del dibattito.
|
25
|
+
success: Dibattito creato con successo.
|
26
|
+
destroy:
|
27
|
+
success: Dibattito cancellato con successo.
|
28
|
+
edit:
|
29
|
+
title: Modifica dibattito
|
30
|
+
update: Aggiornamento del dibattito
|
31
|
+
index:
|
32
|
+
title: dibattiti
|
33
|
+
new:
|
34
|
+
create: Crea dibattito
|
35
|
+
title: Nuovo dibattito
|
36
|
+
update:
|
37
|
+
invalid: C'è stato un problema durante l'aggiornamento di questo dibattito.
|
38
|
+
success: Dibattito aggiornato con successo.
|
39
|
+
models:
|
40
|
+
debate:
|
41
|
+
name: Discussione
|
42
|
+
debates:
|
43
|
+
count:
|
44
|
+
debates_count:
|
45
|
+
one: "%{count} dibattito"
|
46
|
+
other: "%{count} dibattiti"
|
47
|
+
create:
|
48
|
+
invalid: C'è stato un problema durante la creazione del dibattito.
|
49
|
+
success: Dibattito creato con successo.
|
50
|
+
debate:
|
51
|
+
comments:
|
52
|
+
one: Commento
|
53
|
+
other: Commenti
|
54
|
+
participate: Partecipare
|
55
|
+
filters:
|
56
|
+
all: Tutti
|
57
|
+
category: Categoria
|
58
|
+
category_prompt: Seleziona una categoria
|
59
|
+
citizens: cittadini
|
60
|
+
official: Ufficiale
|
61
|
+
origin: Origine
|
62
|
+
search: Ricerca
|
63
|
+
filters_small_view:
|
64
|
+
close_modal: Chiudi modale
|
65
|
+
filter: Filtro
|
66
|
+
filter_by: Filtra per
|
67
|
+
unfold: spiegare
|
68
|
+
index:
|
69
|
+
new_debate: Nuovo dibattito
|
70
|
+
new:
|
71
|
+
back: Indietro
|
72
|
+
create: Creare
|
73
|
+
select_a_category: Si prega di selezionare una categoria
|
74
|
+
title: Nuovo dibattito
|
75
|
+
share:
|
76
|
+
close_window: Chiudi la finestra
|
77
|
+
share: Condividere
|
78
|
+
share_link: Condividi il link
|
79
|
+
show:
|
80
|
+
comments: Commenti
|
81
|
+
report: rapporto
|
82
|
+
models:
|
83
|
+
debate:
|
84
|
+
fields:
|
85
|
+
end_time: Data di fine
|
86
|
+
official_debate: Dibattito ufficiale
|
87
|
+
start_time: Data d'inizio
|
88
|
+
title: Titolo
|
89
|
+
events:
|
90
|
+
debates:
|
91
|
+
create_debate_event:
|
92
|
+
space_followers:
|
93
|
+
email_intro: |-
|
94
|
+
Salve, è stato creato un nuovo dibattito sullo spazio partecipativo %{space_title}, verificarlo e contribuire:
|
95
|
+
email_outro: Hai ricevuto questa notifica perché stai seguendo lo spazio partecipativo %{space_title}. È possibile interrompere la ricezione di notifiche seguendo il collegamento precedente.
|
96
|
+
email_subject: Nuovo dibattito su %{space_title}
|
97
|
+
notification_title: Il dibattito <a href="%{resource_path}">%{resource_title}</a> è stato creato su <a href="%{space_path}">%{space_title}</a>.
|
98
|
+
user_followers:
|
99
|
+
email_intro: |-
|
100
|
+
Ciao, %{author_name} %{author_nickname}, chi stai seguendo, ha creato un nuovo dibattito, dai un'occhiata e dai:
|
101
|
+
email_outro: Hai ricevuto questa notifica perché stai seguendo %{author_nickname}. È possibile interrompere la ricezione di notifiche seguendo il collegamento precedente.
|
102
|
+
email_subject: Nuovo dibattito di %{author_nickname}
|
103
|
+
notification_title: Il dibattito <a href="%{resource_path}">%{resource_title}</a> è stato creato da <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
104
|
+
features:
|
105
|
+
debates:
|
106
|
+
actions:
|
107
|
+
create: Creare
|
108
|
+
name: dibattiti
|
109
|
+
settings:
|
110
|
+
global:
|
111
|
+
comments_enabled: Commenti abilitati
|
112
|
+
step:
|
113
|
+
comments_blocked: Commenti bloccati
|
114
|
+
creation_enabled: Creazione di dibattiti da parte degli utenti abilitati
|
@@ -0,0 +1,114 @@
|
|
1
|
+
nl:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
debate:
|
5
|
+
category_id: Categorie
|
6
|
+
description: Beschrijving
|
7
|
+
end_time: Eindigt bij
|
8
|
+
information_updates: Informatie-updates
|
9
|
+
instructions: Instructies om deel te nemen
|
10
|
+
start_time: Begint om
|
11
|
+
title: Titel
|
12
|
+
user_group_id: Maak een debat als
|
13
|
+
decidim:
|
14
|
+
debates:
|
15
|
+
actions:
|
16
|
+
confirm_destroy: Weet je het zeker?
|
17
|
+
destroy: Verwijder
|
18
|
+
edit: Bewerk
|
19
|
+
new: Nieuwe %{name}
|
20
|
+
title: acties
|
21
|
+
admin:
|
22
|
+
debates:
|
23
|
+
create:
|
24
|
+
invalid: Er is een probleem geweest tijdens het maken van het debat.
|
25
|
+
success: Debat succesvol aangemaakt.
|
26
|
+
destroy:
|
27
|
+
success: Debat succesvol verwijderd.
|
28
|
+
edit:
|
29
|
+
title: Bewerk debat
|
30
|
+
update: Update debat
|
31
|
+
index:
|
32
|
+
title: debatten
|
33
|
+
new:
|
34
|
+
create: Maak een debat
|
35
|
+
title: Nieuw debat
|
36
|
+
update:
|
37
|
+
invalid: Er is een probleem geweest bij het bijwerken van dit debat.
|
38
|
+
success: Debat succesvol bijgewerkt.
|
39
|
+
models:
|
40
|
+
debate:
|
41
|
+
name: Debat
|
42
|
+
debates:
|
43
|
+
count:
|
44
|
+
debates_count:
|
45
|
+
one: "%{count} debat"
|
46
|
+
other: "%{count} debatten"
|
47
|
+
create:
|
48
|
+
invalid: Er is een probleem geweest tijdens het maken van het debat.
|
49
|
+
success: Debat succesvol aangemaakt.
|
50
|
+
debate:
|
51
|
+
comments:
|
52
|
+
one: Commentaar
|
53
|
+
other: Comments
|
54
|
+
participate: Deelnemen
|
55
|
+
filters:
|
56
|
+
all: Alle
|
57
|
+
category: Categorie
|
58
|
+
category_prompt: Kies een categorie
|
59
|
+
citizens: burgers
|
60
|
+
official: Officieel
|
61
|
+
origin: Oorsprong
|
62
|
+
search: Zoeken
|
63
|
+
filters_small_view:
|
64
|
+
close_modal: Modal sluiten
|
65
|
+
filter: Filter
|
66
|
+
filter_by: Filteren op
|
67
|
+
unfold: Ontvouwen
|
68
|
+
index:
|
69
|
+
new_debate: Nieuw debat
|
70
|
+
new:
|
71
|
+
back: Terug
|
72
|
+
create: creëren
|
73
|
+
select_a_category: Selecteer een categorie
|
74
|
+
title: Nieuw debat
|
75
|
+
share:
|
76
|
+
close_window: Venster sluiten
|
77
|
+
share: Delen
|
78
|
+
share_link: Deel link
|
79
|
+
show:
|
80
|
+
comments: Comments
|
81
|
+
report: Verslag doen van
|
82
|
+
models:
|
83
|
+
debate:
|
84
|
+
fields:
|
85
|
+
end_time: Einddatum
|
86
|
+
official_debate: Officieel debat
|
87
|
+
start_time: Begin datum
|
88
|
+
title: Titel
|
89
|
+
events:
|
90
|
+
debates:
|
91
|
+
create_debate_event:
|
92
|
+
space_followers:
|
93
|
+
email_intro: |-
|
94
|
+
Hallo, Er is een nieuw debat gestart op de %{space_title} participatieve ruimte, bekijk het en draag bij:
|
95
|
+
email_outro: Je hebt deze melding ontvangen omdat je de %{space_title} participatorische ruimte volgt. Je kunt stoppen met het ontvangen van meldingen na de vorige link.
|
96
|
+
email_subject: Nieuw debat op %{space_title}
|
97
|
+
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> debat is gemaakt op <a href="%{space_path}">%{space_title}</a>.
|
98
|
+
user_followers:
|
99
|
+
email_intro: |-
|
100
|
+
Hallo, %{author_name} %{author_nickname}, wie je volgt, heeft een nieuw debat gemaakt, bekijk het en draag bij:
|
101
|
+
email_outro: Je hebt deze melding ontvangen omdat je %{author_nickname} volgt. Je kunt stoppen met het ontvangen van meldingen na de vorige link.
|
102
|
+
email_subject: Nieuw debat door %{author_nickname}
|
103
|
+
notification_title: Het <a href="%{resource_path}">%{resource_title}</a> debat is gemaakt door <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
104
|
+
features:
|
105
|
+
debates:
|
106
|
+
actions:
|
107
|
+
create: creëren
|
108
|
+
name: debatten
|
109
|
+
settings:
|
110
|
+
global:
|
111
|
+
comments_enabled: Reacties ingeschakeld
|
112
|
+
step:
|
113
|
+
comments_blocked: Reacties geblokkeerd
|
114
|
+
creation_enabled: Debatcreatie door gebruikers ingeschakeld
|
@@ -0,0 +1,116 @@
|
|
1
|
+
pl:
|
2
|
+
activemodel:
|
3
|
+
attributes:
|
4
|
+
debate:
|
5
|
+
category_id: Kategoria
|
6
|
+
description: Opis
|
7
|
+
end_time: Kończy się na
|
8
|
+
information_updates: Aktualizacje informacji
|
9
|
+
instructions: Instrukcje uczestnictwa
|
10
|
+
start_time: Zaczyna się o
|
11
|
+
title: Tytuł
|
12
|
+
user_group_id: Utwórz debatę jako
|
13
|
+
decidim:
|
14
|
+
debates:
|
15
|
+
actions:
|
16
|
+
confirm_destroy: Jesteś pewny?
|
17
|
+
destroy: Kasować
|
18
|
+
edit: Edytować
|
19
|
+
new: Nowy %{name}
|
20
|
+
title: działania
|
21
|
+
admin:
|
22
|
+
debates:
|
23
|
+
create:
|
24
|
+
invalid: Podczas tworzenia debaty wystąpił problem.
|
25
|
+
success: Debatę utworzono pomyślnie.
|
26
|
+
destroy:
|
27
|
+
success: Debata została pomyślnie usunięta.
|
28
|
+
edit:
|
29
|
+
title: Edytuj debatę
|
30
|
+
update: Zaktualizuj debatę
|
31
|
+
index:
|
32
|
+
title: Debaty
|
33
|
+
new:
|
34
|
+
create: Stwórz debatę
|
35
|
+
title: Nowa debata
|
36
|
+
update:
|
37
|
+
invalid: Wystąpił problem podczas aktualizowania tej debaty.
|
38
|
+
success: Debata zaktualizowana pomyślnie.
|
39
|
+
models:
|
40
|
+
debate:
|
41
|
+
name: Debata
|
42
|
+
debates:
|
43
|
+
count:
|
44
|
+
debates_count:
|
45
|
+
one: "%{count} debata"
|
46
|
+
few: "%{count} debat"
|
47
|
+
other: "%{count} debat"
|
48
|
+
create:
|
49
|
+
invalid: Podczas tworzenia debaty wystąpił problem.
|
50
|
+
success: Debatę utworzono pomyślnie.
|
51
|
+
debate:
|
52
|
+
comments:
|
53
|
+
one: Komentarz
|
54
|
+
few: Komentarze
|
55
|
+
other: Komentarze
|
56
|
+
participate: Uczestniczyć
|
57
|
+
filters:
|
58
|
+
all: Wszystko
|
59
|
+
category: Kategoria
|
60
|
+
category_prompt: Wybierz kategorię
|
61
|
+
citizens: Obywatele
|
62
|
+
official: Urzędnik
|
63
|
+
origin: Pochodzenie
|
64
|
+
search: Szukaj
|
65
|
+
filters_small_view:
|
66
|
+
close_modal: Zamknij modalne
|
67
|
+
filter: Filtr
|
68
|
+
filter_by: Filtruj według
|
69
|
+
unfold: Rozwijać się
|
70
|
+
index:
|
71
|
+
new_debate: Nowa debata
|
72
|
+
new:
|
73
|
+
back: Plecy
|
74
|
+
create: Stwórz
|
75
|
+
select_a_category: Proszę wybierz kategorie
|
76
|
+
title: Nowa debata
|
77
|
+
share:
|
78
|
+
close_window: Zamknij okno
|
79
|
+
share: Dzielić
|
80
|
+
share_link: Udostępnij link
|
81
|
+
show:
|
82
|
+
comments: Komentarze
|
83
|
+
report: Raport
|
84
|
+
models:
|
85
|
+
debate:
|
86
|
+
fields:
|
87
|
+
end_time: Data końcowa
|
88
|
+
official_debate: Oficjalna debata
|
89
|
+
start_time: Data rozpoczęcia
|
90
|
+
title: Tytuł
|
91
|
+
events:
|
92
|
+
debates:
|
93
|
+
create_debate_event:
|
94
|
+
space_followers:
|
95
|
+
email_intro: |-
|
96
|
+
Cześć, Nowa debata została utworzona na %{space_title} obszarze partycypacyjnym, sprawdź i pomóż:
|
97
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{space_title} przestrzeń partycypacyjną. Możesz przestać otrzymywać powiadomienia po poprzednim linku.
|
98
|
+
email_subject: Nowa debata na temat %{space_title}
|
99
|
+
notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> została utworzona na <a href="%{space_path}">%{space_title}</a>.
|
100
|
+
user_followers:
|
101
|
+
email_intro: |-
|
102
|
+
Witaj, %{author_name} %{author_nickname}, którego obserwujesz, stworzył nową debatę, sprawdź i pomóż:
|
103
|
+
email_outro: Otrzymałeś to powiadomienie, ponieważ obserwujesz %{author_nickname}. Możesz przestać otrzymywać powiadomienia po poprzednim linku.
|
104
|
+
email_subject: Nowa debata %{author_nickname}
|
105
|
+
notification_title: Debata <a href="%{resource_path}">%{resource_title}</a> została utworzona przez <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
106
|
+
features:
|
107
|
+
debates:
|
108
|
+
actions:
|
109
|
+
create: Stwórz
|
110
|
+
name: Debaty
|
111
|
+
settings:
|
112
|
+
global:
|
113
|
+
comments_enabled: Komentarze włączone
|
114
|
+
step:
|
115
|
+
comments_blocked: Komentarze zablokowane
|
116
|
+
creation_enabled: Utworzenie debaty przez użytkowników
|