decidim-proposals 0.23.1 → 0.23.2
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/forms/decidim/proposals/admin/proposal_form.rb +8 -0
- data/app/models/decidim/proposals/proposal.rb +3 -1
- data/app/presenters/decidim/proposals/admin_log/proposal_presenter.rb +2 -2
- data/app/presenters/decidim/proposals/admin_log/valuation_assignment_presenter.rb +2 -2
- data/app/presenters/decidim/proposals/proposal_presenter.rb +31 -12
- data/app/views/decidim/proposals/admin/proposals/_form.html.erb +2 -2
- data/app/views/decidim/proposals/collaborative_drafts/edit.html.erb +6 -4
- data/app/views/decidim/proposals/collaborative_drafts/show.html.erb +6 -4
- data/app/views/decidim/proposals/proposals/edit.html.erb +6 -4
- data/app/views/decidim/proposals/proposals/show.html.erb +6 -4
- data/config/locales/ar.yml +1 -0
- data/config/locales/bg.yml +4 -0
- data/config/locales/ca.yml +6 -6
- data/config/locales/cs.yml +23 -23
- data/config/locales/de.yml +105 -78
- data/config/locales/el.yml +1 -1
- data/config/locales/es-MX.yml +3 -3
- data/config/locales/es-PY.yml +3 -3
- data/config/locales/es.yml +3 -3
- data/config/locales/eu.yml +5 -2
- data/config/locales/fi-plain.yml +1 -1
- data/config/locales/fi.yml +8 -8
- data/config/locales/fr-CA.yml +4 -4
- data/config/locales/fr.yml +4 -4
- data/config/locales/gl.yml +6 -3
- data/config/locales/hu.yml +1 -0
- data/config/locales/id-ID.yml +1 -0
- data/config/locales/is-IS.yml +4 -1
- data/config/locales/it.yml +3 -3
- data/config/locales/ja.yml +1 -1
- data/config/locales/lv.yml +1 -0
- data/config/locales/nl.yml +16 -16
- data/config/locales/no.yml +1 -0
- data/config/locales/pt-BR.yml +2 -1
- data/config/locales/ru.yml +4 -1
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +2 -1
- data/config/locales/sv.yml +5 -5
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/tr-TR.yml +381 -217
- data/config/locales/uk.yml +4 -1
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +23 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bf8436d8e7bd0abece36dfae02bcf16ca734ec265801f7303a230c2437985597
|
4
|
+
data.tar.gz: 2cdc0f69b70b20c4fbc6d25348ffbd8468f5ef5124b701efe52ade54ec1d4a8c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b42188e0710db1ddd09f9c017b90175d13c9ac0f668ecb21c054f058d4594916d3754fa20d77e5a9b7e8b31d647a9910cd67b85ff4bda70d9463bda2362753a2
|
7
|
+
data.tar.gz: 07fd952489969582cc240213e1a96e25c173bad7f3950263b5bdaa7b3c0c02b093df5fb5f02f1dce924ff4794e46ef149e76a231fc6649f154a75178ede10a25
|
@@ -13,6 +13,14 @@ module Decidim
|
|
13
13
|
validates :title, :body, translatable_presence: true
|
14
14
|
|
15
15
|
validate :notify_missing_attachment_if_errored
|
16
|
+
|
17
|
+
def map_model(model)
|
18
|
+
super(model)
|
19
|
+
presenter = ProposalPresenter.new(model)
|
20
|
+
|
21
|
+
self.title = presenter.title(all_locales: title.is_a?(Hash))
|
22
|
+
self.body = presenter.body(all_locales: body.is_a?(Hash))
|
23
|
+
end
|
16
24
|
end
|
17
25
|
end
|
18
26
|
end
|
@@ -130,7 +130,9 @@ module Decidim
|
|
130
130
|
.where(decidim_author_type: "Decidim::UserBaseEntity")
|
131
131
|
.pluck(:decidim_author_id).to_a.compact.uniq
|
132
132
|
|
133
|
-
|
133
|
+
commentators_ids = Decidim::Comments::Comment.user_commentators_ids_in(proposals)
|
134
|
+
|
135
|
+
(endorsements_participants_ids + participants_has_voted_ids + coauthors_recipients_ids + commentators_ids).flatten.compact.uniq
|
134
136
|
end
|
135
137
|
|
136
138
|
# Public: Updates the vote count of this proposal.
|
@@ -38,28 +38,33 @@ module Decidim
|
|
38
38
|
# extras - should include extra hashtags?
|
39
39
|
#
|
40
40
|
# Returns a String.
|
41
|
-
def title(links: false, extras: true, html_escape: false)
|
42
|
-
|
43
|
-
text = decidim_html_escape(text) if html_escape
|
41
|
+
def title(links: false, extras: true, html_escape: false, all_locales: false)
|
42
|
+
return unless proposal
|
44
43
|
|
45
|
-
|
46
|
-
|
44
|
+
handle_locales(proposal.title, all_locales) do |content|
|
45
|
+
content = decidim_html_escape(content) if html_escape
|
46
|
+
|
47
|
+
renderer = Decidim::ContentRenderers::HashtagRenderer.new(content)
|
48
|
+
renderer.render(links: links, extras: extras).html_safe
|
49
|
+
end
|
47
50
|
end
|
48
51
|
|
49
52
|
def id_and_title(links: false, extras: true, html_escape: false)
|
50
53
|
"##{proposal.id} - #{title(links: links, extras: extras, html_escape: html_escape)}"
|
51
54
|
end
|
52
55
|
|
53
|
-
def body(links: false, extras: true, strip_tags: false)
|
54
|
-
|
56
|
+
def body(links: false, extras: true, strip_tags: false, all_locales: false)
|
57
|
+
return unless proposal
|
55
58
|
|
56
|
-
|
59
|
+
handle_locales(proposal.body, all_locales) do |content|
|
60
|
+
content = strip_tags(sanitize_text(content)) if strip_tags
|
57
61
|
|
58
|
-
|
59
|
-
|
62
|
+
renderer = Decidim::ContentRenderers::HashtagRenderer.new(content)
|
63
|
+
content = renderer.render(links: links, extras: extras).html_safe
|
60
64
|
|
61
|
-
|
62
|
-
|
65
|
+
content = Decidim::ContentRenderers::LinkRenderer.new(content).render if links
|
66
|
+
content
|
67
|
+
end
|
63
68
|
end
|
64
69
|
|
65
70
|
# Returns the proposal versions, hiding not published answers
|
@@ -130,6 +135,20 @@ module Decidim
|
|
130
135
|
def sanitize_text(text)
|
131
136
|
add_line_feeds(sanitize_ordered_lists(sanitize_unordered_lists(text)))
|
132
137
|
end
|
138
|
+
|
139
|
+
def handle_locales(content, all_locales, &block)
|
140
|
+
if all_locales
|
141
|
+
content.each_with_object({}) do |(key, value), parsed_content|
|
142
|
+
parsed_content[key] = if key == "machine_translations"
|
143
|
+
handle_locales(value, all_locales, &block)
|
144
|
+
else
|
145
|
+
block.call(value)
|
146
|
+
end
|
147
|
+
end
|
148
|
+
else
|
149
|
+
yield(translated_attribute(content))
|
150
|
+
end
|
151
|
+
end
|
133
152
|
end
|
134
153
|
end
|
135
154
|
end
|
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
<div class="card-section">
|
7
7
|
<div class="row column hashtags__container">
|
8
|
-
<%= form.translated :text_field, :title, class: "js-hashtags",
|
8
|
+
<%= form.translated :text_field, :title, autofocus: true, class: "js-hashtags", hashtaggable: true %>
|
9
9
|
</div>
|
10
10
|
|
11
11
|
<div class="row column hashtags__container">
|
12
|
-
<%= form.translated :editor, :body, hashtaggable: true
|
12
|
+
<%= form.translated :editor, :body, hashtaggable: true %>
|
13
13
|
</div>
|
14
14
|
|
15
15
|
<% if @form.component_automatic_hashtags.any? %>
|
@@ -1,10 +1,12 @@
|
|
1
1
|
<% add_decidim_page_title(proposal_wizard_step_title(action_name)) %>
|
2
2
|
|
3
3
|
<div class="row columns">
|
4
|
-
|
5
|
-
<%=
|
6
|
-
|
7
|
-
|
4
|
+
<div class="m-bottom">
|
5
|
+
<%= link_to :back, class: "muted-link" do %>
|
6
|
+
<%= icon "chevron-left", class: "icon--small", role: "img", "aria-hidden": true %>
|
7
|
+
<%= t(".back") %>
|
8
|
+
<% end %>
|
9
|
+
</div>
|
8
10
|
<h2 class="section-heading"><%= t(".title") %></h2>
|
9
11
|
</div>
|
10
12
|
|
@@ -14,10 +14,12 @@
|
|
14
14
|
<% end %>
|
15
15
|
|
16
16
|
<div class="row column view-header">
|
17
|
-
|
18
|
-
<%=
|
19
|
-
|
20
|
-
|
17
|
+
<div class="m-bottom">
|
18
|
+
<%= link_to collaborative_drafts_path do %>
|
19
|
+
<%= icon "chevron-left", class: "icon--small", role: "img", "aria-hidden": true %>
|
20
|
+
<%= t(".back") %>
|
21
|
+
<% end %>
|
22
|
+
</div>
|
21
23
|
|
22
24
|
<h2 class="heading2">
|
23
25
|
<%= present(@collaborative_draft).title(links: true, html_escape: true) %>
|
@@ -1,10 +1,12 @@
|
|
1
1
|
<% add_decidim_page_title(proposal_wizard_step_title(action_name)) %>
|
2
2
|
|
3
3
|
<div class="row columns">
|
4
|
-
|
5
|
-
<%=
|
6
|
-
|
7
|
-
|
4
|
+
<div class="m-bottom">
|
5
|
+
<%= link_to :back, class: "muted-link" do %>
|
6
|
+
<%= icon "chevron-left", class: "icon--small", role: "img", "aria-hidden": true %>
|
7
|
+
<%= t(".back") %>
|
8
|
+
<% end %>
|
9
|
+
</div>
|
8
10
|
<h2 class="section-heading"><%= t(".title") %></h2>
|
9
11
|
</div>
|
10
12
|
|
@@ -34,10 +34,12 @@ extra_admin_link(
|
|
34
34
|
<%= emendation_announcement_for @proposal %>
|
35
35
|
<div class="row column view-header">
|
36
36
|
|
37
|
-
|
38
|
-
<%=
|
39
|
-
|
40
|
-
|
37
|
+
<div class="m-bottom">
|
38
|
+
<%= link_to proposals_path(filter_link_params), class: "small hollow" do %>
|
39
|
+
<%= icon "chevron-left", class: "icon--small", role: "img", "aria-hidden": true %>
|
40
|
+
<%= t(".back_to_list") %>
|
41
|
+
<% end %>
|
42
|
+
</div>
|
41
43
|
|
42
44
|
<% if @proposal.emendation? %>
|
43
45
|
<h3 class="heading3"><%= t(".changes_at_title", title: present(@proposal.amendable).title(links: true, html_escape: true)) %></h3>
|
data/config/locales/ar.yml
CHANGED
data/config/locales/bg.yml
CHANGED
@@ -229,6 +229,10 @@ bg:
|
|
229
229
|
proposal_published_for_space:
|
230
230
|
email_intro: Предложението "%{resource_title}" беше добавено в "%{participatory_space_title}", което следвате.
|
231
231
|
email_outro: Получавате това известие, защото следвате "%{participatory_space_title}". Може да прекратите известията чрез предната връзка.
|
232
|
+
participatory_processes:
|
233
|
+
participatory_process_groups:
|
234
|
+
highlighted_proposals:
|
235
|
+
proposals: Предложения
|
232
236
|
proposals:
|
233
237
|
versions:
|
234
238
|
collaborative_drafts:
|
data/config/locales/ca.yml
CHANGED
@@ -432,7 +432,7 @@ ca:
|
|
432
432
|
cancel: Cancel·lar
|
433
433
|
change_category: Canvia la categoria
|
434
434
|
change_scope: Canviar àmbit
|
435
|
-
merge:
|
435
|
+
merge: Fusionar a una nova
|
436
436
|
merge_button: Fusionar
|
437
437
|
publish: Publica
|
438
438
|
publish_answers: Publica respostes
|
@@ -574,7 +574,7 @@ ca:
|
|
574
574
|
no_similars_found: Enhorabona! No s'han trobat esborranys col·laboratius similars
|
575
575
|
title: Esborranys col·laboratius similars
|
576
576
|
complete:
|
577
|
-
send:
|
577
|
+
send: Envia
|
578
578
|
title: Completa el teu esborrany col·laboratiu
|
579
579
|
count:
|
580
580
|
drafts_count:
|
@@ -652,7 +652,7 @@ ca:
|
|
652
652
|
update:
|
653
653
|
error: S'ha produït un error en desar l'esborrany col·laboratiu.
|
654
654
|
success: L'esborrany col·laboratiu s'ha actualitzat correctament.
|
655
|
-
title:
|
655
|
+
title: Edita l'esborrany col·laboratiu
|
656
656
|
wizard_aside:
|
657
657
|
back: Torna
|
658
658
|
back_from_collaborative_draft: Tornar a l'esborrany col·laboratiu
|
@@ -662,12 +662,12 @@ ca:
|
|
662
662
|
back_from_step_4: Tornar a editar l'esborrany
|
663
663
|
info: Estàs creant un <strong>esborrany col·laboratiu</strong>.
|
664
664
|
wizard_steps:
|
665
|
-
current_step:
|
666
|
-
see_steps: veure
|
665
|
+
current_step: Pas actual
|
666
|
+
see_steps: veure les fases
|
667
667
|
step_1: Crea el teu esborrany col·laboratiu
|
668
668
|
step_2: Compara amb esborranys col·laboratius
|
669
669
|
step_3: Completa el teu esborrany col·laboratiu
|
670
|
-
step_of:
|
670
|
+
step_of: Fase %{current_step_num} de %{total_steps}
|
671
671
|
title: Passos per a la creació d'un esborrany col·laboratiu
|
672
672
|
create:
|
673
673
|
error: Hi ha hagut un error en desar la proposta.
|
data/config/locales/cs.yml
CHANGED
@@ -8,7 +8,7 @@ cs:
|
|
8
8
|
decidim_scope_id: Rozsah
|
9
9
|
has_address: Má adresu
|
10
10
|
scope_id: Oblast působnosti
|
11
|
-
state:
|
11
|
+
state: Stav
|
12
12
|
title: Titul
|
13
13
|
user_group_id: Vytvořit návrh spolupráce jako
|
14
14
|
proposal:
|
@@ -21,7 +21,7 @@ cs:
|
|
21
21
|
decidim_scope_id: Rozsah
|
22
22
|
has_address: Má adresu
|
23
23
|
scope_id: Oblast působnosti
|
24
|
-
state:
|
24
|
+
state: Stav
|
25
25
|
suggested_hashtags: Navrhované hashtags
|
26
26
|
title: Titul
|
27
27
|
user_group_id: Vytvořit návrh jako
|
@@ -147,10 +147,10 @@ cs:
|
|
147
147
|
proposal_edit_before_minutes: Návrhy mohou být editovány autory před tím, než projde hodně minut
|
148
148
|
proposal_length: Maximální délka návrhu
|
149
149
|
proposal_limit: Limit návrhu na uživatele
|
150
|
-
proposal_wizard_step_1_help_text:
|
151
|
-
proposal_wizard_step_2_help_text:
|
152
|
-
proposal_wizard_step_3_help_text:
|
153
|
-
proposal_wizard_step_4_help_text:
|
150
|
+
proposal_wizard_step_1_help_text: Text průvodce kroku nápovědy "Vytvořit" Návrh
|
151
|
+
proposal_wizard_step_2_help_text: Text průvodce kroku nápovědy "Porovnat" návrhy
|
152
|
+
proposal_wizard_step_3_help_text: Text průvodce kroku nápovědy „Dokončit“ Návrh
|
153
|
+
proposal_wizard_step_4_help_text: Text průvodce kroku nápovědy "Publikovat" Návrh
|
154
154
|
resources_permissions_enabled: Pro každý návrh lze nastavit oprávnění akce
|
155
155
|
scope_id: Oblast působnosti
|
156
156
|
scopes_enabled: Oblasti působnosti povoleny
|
@@ -169,7 +169,7 @@ cs:
|
|
169
169
|
participants: Pozměňovací návrhy jsou viditelné pouze pro jejich autory
|
170
170
|
amendments_visibility_help: Pokud je zvolena možnost "pozměňovací návrhy jsou viditelné pouze jejich autorům", musí být účastník přihlášen, aby se seznámil s provedenými pozměňovacími návrhy.
|
171
171
|
announcement: Oznámení
|
172
|
-
answers_with_costs: Povolit náklady
|
172
|
+
answers_with_costs: Povolit finanční náklady v odpovědích návrhu
|
173
173
|
automatic_hashtags: Do všech návrhů byly přidány značky Hashtags
|
174
174
|
comments_blocked: Komentáře byly blokovány
|
175
175
|
creation_enabled: Vytváření návrhu je povoleno
|
@@ -177,7 +177,7 @@ cs:
|
|
177
177
|
endorsements_enabled: Schvalování povoleno
|
178
178
|
proposal_answering_enabled: Odpovídání návrhu je povoleno
|
179
179
|
publish_answers_immediately: Okamžitě publikovat odpovědi návrhu
|
180
|
-
suggested_hashtags:
|
180
|
+
suggested_hashtags: Hashtagy navržené uživatelům pro nové návrhy
|
181
181
|
votes_blocked: Hlasování bylo blokováno
|
182
182
|
votes_enabled: Hlasování povoleno
|
183
183
|
votes_hidden: Hlasy skryté (pokud jsou povoleny hlasy, při kontrole se skryje počet hlasů)
|
@@ -384,7 +384,7 @@ cs:
|
|
384
384
|
info_1: Následující oddíly byly analyzovány z importovaného dokumentu, byly převedeny na návrhy. Nyní můžete před publikováním zkontrolovat a upravit vše, co potřebujete.
|
385
385
|
publish_document: Publikujte dokument
|
386
386
|
save_draft: Uložit koncept
|
387
|
-
title:
|
387
|
+
title: Náhled participačního textu
|
388
388
|
new_import:
|
389
389
|
accepted_mime_types:
|
390
390
|
md: Markdown
|
@@ -610,7 +610,7 @@ cs:
|
|
610
610
|
related_to: Související s
|
611
611
|
scope: Rozsah
|
612
612
|
search: Vyhledávání
|
613
|
-
state:
|
613
|
+
state: Stav
|
614
614
|
withdrawn: Staženo
|
615
615
|
filters_small_view:
|
616
616
|
close_modal: Zavřít modální
|
@@ -623,10 +623,10 @@ cs:
|
|
623
623
|
new_collaborative_draft_button:
|
624
624
|
new_collaborative_draft: Nový návrh spolupráce
|
625
625
|
orders:
|
626
|
-
label: '
|
627
|
-
most_contributed:
|
628
|
-
random:
|
629
|
-
recent:
|
626
|
+
label: 'Řazení konceptů podle:'
|
627
|
+
most_contributed: Nejvíce příspěvků
|
628
|
+
random: Náhodně
|
629
|
+
recent: Nedávné
|
630
630
|
requests:
|
631
631
|
accepted_request:
|
632
632
|
error: Nelze přijmout jako spolupracovník, zkuste to znovu později.
|
@@ -666,7 +666,7 @@ cs:
|
|
666
666
|
update:
|
667
667
|
error: Při ukládání schématu spolupráce došlo k chybám.
|
668
668
|
success: Protokol o spolupráci byl úspěšně aktualizován.
|
669
|
-
title:
|
669
|
+
title: Úprava konceptu spolupráce
|
670
670
|
wizard_aside:
|
671
671
|
back: Zadní
|
672
672
|
back_from_collaborative_draft: Zpět na koncepty spolupráce
|
@@ -707,7 +707,7 @@ cs:
|
|
707
707
|
published_answer: Publikovaná odpověď
|
708
708
|
published_at: Publikováno v
|
709
709
|
scope: Rozsah
|
710
|
-
state:
|
710
|
+
state: Stav
|
711
711
|
title: Titul
|
712
712
|
valuator: Hodnotitel
|
713
713
|
valuators: Hodnotitelé
|
@@ -763,7 +763,7 @@ cs:
|
|
763
763
|
related_to: Související s
|
764
764
|
scope: Rozsah
|
765
765
|
search: Vyhledávání
|
766
|
-
state:
|
766
|
+
state: Stav
|
767
767
|
type: Typ
|
768
768
|
voted: Hlasoval
|
769
769
|
filters_small_view:
|
@@ -786,19 +786,19 @@ cs:
|
|
786
786
|
send: Pokračovat
|
787
787
|
title: Vytvořte svůj návrh
|
788
788
|
orders:
|
789
|
-
label: '
|
789
|
+
label: 'Seřadit návrhy podle:'
|
790
790
|
most_commented: Nejvíce komentované
|
791
791
|
most_endorsed: Nejvíce schválené
|
792
792
|
most_followed: Nejvíce sledované
|
793
|
-
most_voted: Nejvíce
|
794
|
-
random:
|
795
|
-
recent:
|
793
|
+
most_voted: Nejvíce podporované
|
794
|
+
random: Náhodně
|
795
|
+
recent: Nedávné
|
796
796
|
with_more_authors: S více autory
|
797
797
|
participatory_texts:
|
798
798
|
index:
|
799
799
|
document_index: Index dokumentů
|
800
800
|
view_index:
|
801
|
-
see_index:
|
801
|
+
see_index: Prohlédnout seznam
|
802
802
|
preview:
|
803
803
|
modify: Upravte návrh
|
804
804
|
proposal_edit_before_minutes:
|
@@ -890,7 +890,7 @@ cs:
|
|
890
890
|
see_steps: viz kroky
|
891
891
|
step_1: Vytvořte svůj návrh
|
892
892
|
step_2: Porovnejte
|
893
|
-
step_3:
|
893
|
+
step_3: Dokončete
|
894
894
|
step_4: Publikujte svůj návrh
|
895
895
|
step_of: Krok %{current_step_num} z %{total_steps}
|
896
896
|
title: Kroky vytváření návrhů
|
data/config/locales/de.yml
CHANGED
@@ -8,9 +8,9 @@ de:
|
|
8
8
|
decidim_scope_id: Umfang
|
9
9
|
has_address: Hat eine Adresse
|
10
10
|
scope_id: Bereich
|
11
|
-
state:
|
11
|
+
state: Status
|
12
12
|
title: Titel
|
13
|
-
user_group_id:
|
13
|
+
user_group_id: Kollaborativen Entwurf erstellen als
|
14
14
|
proposal:
|
15
15
|
address: Adresse
|
16
16
|
answer: Antworten
|
@@ -21,7 +21,7 @@ de:
|
|
21
21
|
decidim_scope_id: Umfang
|
22
22
|
has_address: Hat eine Adresse
|
23
23
|
scope_id: Bereich
|
24
|
-
state:
|
24
|
+
state: Status
|
25
25
|
suggested_hashtags: Vorgeschlagene Hashtags
|
26
26
|
title: Titel
|
27
27
|
user_group_id: Vorschlag erstellen als
|
@@ -45,7 +45,7 @@ de:
|
|
45
45
|
proposal:
|
46
46
|
attributes:
|
47
47
|
attachment:
|
48
|
-
needs_to_be_reattached:
|
48
|
+
needs_to_be_reattached: Der Anhang muss erneut angehängt werden
|
49
49
|
body:
|
50
50
|
cant_be_equal_to_template: kann nicht gleich der Vorlage sein
|
51
51
|
identical: UND Titel dürfen nicht identisch sein
|
@@ -80,10 +80,32 @@ de:
|
|
80
80
|
admin:
|
81
81
|
filters:
|
82
82
|
proposals:
|
83
|
+
category_id_eq:
|
84
|
+
label: Kategorie
|
85
|
+
is_emendation_true:
|
86
|
+
label: Art
|
87
|
+
values:
|
88
|
+
'false': Vorschläge
|
89
|
+
'true': Änderungen
|
90
|
+
scope_id_eq:
|
91
|
+
label: Umfang
|
92
|
+
state_eq:
|
93
|
+
label: Zustand
|
94
|
+
values:
|
95
|
+
accepted: Angenommen
|
96
|
+
evaluating: In Bearbeitung
|
97
|
+
published: Veröffentlicht
|
98
|
+
rejected: Abgelehnt
|
99
|
+
validating: Technische Validierung
|
100
|
+
withdrawn: Zurückgezogen
|
101
|
+
state_null:
|
102
|
+
label: Bundesländer
|
103
|
+
values:
|
104
|
+
'true': Unbeantwortet
|
83
105
|
valuator_role_ids_has:
|
84
106
|
label: Zugewiesen zu dem Schätzer
|
85
107
|
search_placeholder:
|
86
|
-
id_string_or_title_cont:
|
108
|
+
id_string_or_title_cont: In %{collection} nach ID oder Titel suchen.
|
87
109
|
components:
|
88
110
|
proposals:
|
89
111
|
actions:
|
@@ -102,7 +124,7 @@ de:
|
|
102
124
|
announcement: Ankündigung
|
103
125
|
attachments_allowed: Anhänge zulassen
|
104
126
|
can_accumulate_supports_beyond_threshold: Kann Unterstützungen über den Schwellenwert hinaus ansammeln
|
105
|
-
collaborative_drafts_enabled:
|
127
|
+
collaborative_drafts_enabled: Kollaborative Entwürfe aktiviert
|
106
128
|
comments_enabled: Kommentare aktiviert
|
107
129
|
comments_max_length: Maximale Länge der Kommentare (0 für Standardwert)
|
108
130
|
geocoding_enabled: Geocoding aktiviert
|
@@ -155,50 +177,50 @@ de:
|
|
155
177
|
proposals:
|
156
178
|
admin:
|
157
179
|
proposal_note_created:
|
158
|
-
email_intro: Jemand hat eine Notiz
|
180
|
+
email_intro: Jemand hat eine Notiz zum Vorschlag "%{resource_title}" hinterlassen. Schauen Sie sich diese im <a href="%{admin_proposal_info_url}">Admin-Panel</a> an
|
159
181
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie diesen Vorschlag bewerten können.
|
160
182
|
email_subject: Jemand hat eine Notiz für Vorschlag %{resource_title} erstellt.
|
161
|
-
notification_title: Jemand hat eine Notiz für Vorschlag <a href="%{resource_path}">%{resource_title}</a>erstellt. Sie können sie über <a href="%{admin_proposal_info_path}">
|
183
|
+
notification_title: Jemand hat eine Notiz für den Vorschlag <a href="%{resource_path}">%{resource_title}</a>erstellt. Sie können sie über das <a href="%{admin_proposal_info_path}">Admin-Panel</a> anzeigen
|
162
184
|
collaborative_draft_access_accepted:
|
163
|
-
email_intro: '%{requester_name} wurde
|
164
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
165
|
-
email_subject: "%{requester_name} wurde
|
166
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> wurde
|
185
|
+
email_intro: '%{requester_name} wurde zur Mitwirkung am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> akzeptiert.'
|
186
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> mitwirken.
|
187
|
+
email_subject: "%{requester_name} wurde zur Mitwirkung an %{resource_title} akzeptiert."
|
188
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> wurde zur Mitwirkung am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>angenommen</strong>.
|
167
189
|
collaborative_draft_access_rejected:
|
168
|
-
email_intro: '%{requester_name} wurde
|
169
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
170
|
-
email_subject: "%{requester_name} wurde als
|
171
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> wurde
|
190
|
+
email_intro: '%{requester_name} wurde als Mitwirkender des kollaborativen Entwurfs <a href="%{resource_path}">%{resource_title}</a> abgelehnt.'
|
191
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> mitwirken.
|
192
|
+
email_subject: "%{requester_name} wurde als Mitwirkender des kollaborativen Entwurfs %{resource_title} abgelehnt."
|
193
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> wurde als Mitwirkender beim kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>abgelehnt</strong>.
|
172
194
|
collaborative_draft_access_requested:
|
173
|
-
email_intro: '%{requester_name}
|
174
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
175
|
-
email_subject: "%{requester_name}
|
176
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a>
|
195
|
+
email_intro: '%{requester_name} hat um Zugriff auf Ihren kollaborativen Entwurf angefragt. Sie können den Antrag auf der Seite des kollaborativen Entwurfs <a href="%{resource_path}">%{resource_title}</a> <strong>annehmen oder ablehnen</strong>.'
|
196
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> mitwirken.
|
197
|
+
email_subject: "%{requester_name} hat um Zugang zur Mitwirkung bei %{resource_title} angefragt."
|
198
|
+
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> hat Zugriff beantragt, um beim kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> mitzuwirken. Bitte <strong>den Antrag akzeptieren oder ablehnen</strong>.
|
177
199
|
collaborative_draft_access_requester_accepted:
|
178
|
-
email_intro: Sie wurden
|
179
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
180
|
-
email_subject:
|
181
|
-
notification_title: Sie
|
200
|
+
email_intro: Sie wurden zur Mitwirkung am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> akzeptiert.
|
201
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie angefragt haben, bei <a href="%{resource_path}">%{resource_title}</a> mitzuwirken.
|
202
|
+
email_subject: Sie wurden als Mitwirkender von %{resource_title} angenommen.
|
203
|
+
notification_title: Sie wurden zur Mitwirkung am kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>akzeptiert</strong>.
|
182
204
|
collaborative_draft_access_requester_rejected:
|
183
|
-
email_intro:
|
184
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
185
|
-
email_subject: Sie wurden als Mitwirkender von %{resource_title}abgelehnt.
|
186
|
-
notification_title: Sie wurden
|
205
|
+
email_intro: Der Zugriff auf den kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> wurde Ihnen verweigert.
|
206
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie angefragt haben, bei <a href="%{resource_path}">%{resource_title}</a> mitzuwirken.
|
207
|
+
email_subject: Sie wurden als Mitwirkender von %{resource_title} abgelehnt.
|
208
|
+
notification_title: Sie wurden als Mitwirkender beim kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>abgelehnt</strong>.
|
187
209
|
collaborative_draft_withdrawn:
|
188
|
-
email_intro: <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
189
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie
|
190
|
-
email_subject: "%{author_name} %{author_nickname}
|
191
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a>
|
210
|
+
email_intro: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat den kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> zurückgezogen.
|
211
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie bei <a href="%{resource_path}">%{resource_title}</a> mitwirken.
|
212
|
+
email_subject: "%{author_name} %{author_nickname} hat den kollaborativen Entwurf %{resource_title} zurückgezogen."
|
213
|
+
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> hat den kollaborativen Entwurf <a href="%{resource_path}">%{resource_title}</a> <strong>zurückgezogen</strong>.
|
192
214
|
creation_enabled:
|
193
|
-
email_intro: 'Sie können jetzt neue Vorschläge in %{participatory_space_title}erstellen!
|
194
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie
|
195
|
-
email_subject:
|
196
|
-
notification_title: Sie können jetzt <a href="%{resource_path}">neue Vorschläge</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a>
|
215
|
+
email_intro: 'Sie können jetzt neue Vorschläge in %{participatory_space_title} erstellen! Beteiligen Sie sich auf dieser Seite:'
|
216
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
217
|
+
email_subject: In %{participatory_space_title} sind jetzt Vorschläge verfügbar
|
218
|
+
notification_title: Sie können jetzt <a href="%{resource_path}">neue Vorschläge</a> in <a href="%{participatory_space_url}">%{participatory_space_title}</a> erfassen
|
197
219
|
endorsing_enabled:
|
198
|
-
email_intro: 'Sie können Vorschläge in %{participatory_space_title}!
|
199
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie
|
200
|
-
email_subject:
|
201
|
-
notification_title: Sie können nun
|
220
|
+
email_intro: 'Sie können Vorschläge in %{participatory_space_title} unterstützen! Beteiligen Sie sich auf dieser Seite:'
|
221
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
222
|
+
email_subject: In %{participatory_space_title} ist es jetzt möglich, Vorschläge zu unterstützen
|
223
|
+
notification_title: Sie können nun Vorschläge in <a href="%{participatory_space_url}">%{participatory_space_title}</a> <a href="%{resource_path}">unterstützen</a>
|
202
224
|
proposal_accepted:
|
203
225
|
affected_user:
|
204
226
|
email_intro: 'Ihr Vorschlag "%{resource_title}" wurde angenommen. Sie können die Antwort auf dieser Seite lesen:'
|
@@ -207,35 +229,35 @@ de:
|
|
207
229
|
notification_title: Ihr Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde angenommen.
|
208
230
|
follower:
|
209
231
|
email_intro: 'Der Vorschlag "%{resource_title}" wurde akzeptiert. Sie können die Antwort auf dieser Seite lesen:'
|
210
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Sie
|
232
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
211
233
|
email_subject: Ein Vorschlag, dem Sie folgen, wurde akzeptiert
|
212
|
-
notification_title: Der <a href="%{resource_path}">%{resource_title}</a>
|
234
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde angenommen.
|
213
235
|
proposal_evaluating:
|
214
236
|
affected_user:
|
215
|
-
email_intro: 'Ihr
|
237
|
+
email_intro: 'Ihr Vorschlag "%{resource_title}" wird derzeit geprüft. Das Resultat wird auf dieser Seite aufgeschaltet werden:'
|
216
238
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von "%{resource_title}" sind.
|
217
|
-
email_subject: Ihr Vorschlag wird
|
218
|
-
notification_title: Ihr Vorschlag <a href="%{resource_path}">%{resource_title}</a> wird
|
239
|
+
email_subject: Ihr Vorschlag wird evaluiert
|
240
|
+
notification_title: Ihr Vorschlag <a href="%{resource_path}">%{resource_title}</a> wird evaluiert.
|
219
241
|
follower:
|
220
|
-
email_intro: 'Der Vorschlag "%{resource_title}" wird
|
221
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Sie
|
242
|
+
email_intro: 'Der Vorschlag "%{resource_title}" wird derzeit geprüft. Das Resultat wird auf dieser Seite aufgeschaltet werden:'
|
243
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
222
244
|
email_subject: Ein Vorschlag, dem Sie folgen, wird evaluiert
|
223
|
-
notification_title: Der <a href="%{resource_path}">%{resource_title}</a>
|
245
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wird evaluiert.
|
224
246
|
proposal_mentioned:
|
225
|
-
email_intro: Ihr Vorschlag
|
247
|
+
email_intro: Ihr Vorschlag "%{mentioned_proposal_title}" wurde <a href="%{resource_url}">hier</a> in den Kommentaren erwähnt.
|
226
248
|
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie ein Autor von "%{resource_title}" sind.
|
227
249
|
email_subject: Ihr Vorschlag "%{mentioned_proposal_title}" wurde erwähnt
|
228
|
-
notification_title: Ihr Vorschlag
|
250
|
+
notification_title: Ihr Vorschlag "%{mentioned_proposal_title}" wurde <a href="%{resource_path}">hier</a> in den Kommentaren erwähnt.
|
229
251
|
proposal_published:
|
230
|
-
email_intro: '%{author_name} %{author_nickname}, dem Sie folgen, hat einen neuen Vorschlag mit dem Namen "%{resource_title}" veröffentlicht.
|
231
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_nickname}. Sie
|
232
|
-
email_subject: Neuer Vorschlag "%{resource_title}"
|
233
|
-
notification_title: Der <a href="%{resource_path}">%{resource_title}</a>
|
252
|
+
email_intro: '%{author_name} %{author_nickname}, dem Sie folgen, hat einen neuen Vorschlag mit dem Namen "%{resource_title}" veröffentlicht. Sehen Sie es sich an und reden Sie mit:'
|
253
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{author_nickname} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
254
|
+
email_subject: Neuer Vorschlag "%{resource_title}" von %{author_nickname}
|
255
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde von <a href="%{author_path}">%{author_name} %{author_nickname}</a> veröffentlicht.
|
234
256
|
proposal_published_for_space:
|
235
|
-
email_intro: Der Vorschlag "%{resource_title}" wurde zu "%{participatory_space_title}" hinzugefügt,
|
236
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{participatory_space_title}" folgen. Sie können
|
237
|
-
email_subject: Neuer Vorschlag "%{resource_title}" zu %{participatory_space_title}hinzugefügt
|
238
|
-
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde zu %{participatory_space_title}hinzugefügt
|
257
|
+
email_intro: Der Vorschlag "%{resource_title}" wurde zu "%{participatory_space_title}" hinzugefügt, welchem Sie folgen.
|
258
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{participatory_space_title}" folgen. Sie können den Erhalt von Benachrichtigungen über den vorherigen Link beenden.
|
259
|
+
email_subject: Neuer Vorschlag "%{resource_title}" zu %{participatory_space_title} hinzugefügt
|
260
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde zu %{participatory_space_title} hinzugefügt
|
239
261
|
proposal_rejected:
|
240
262
|
affected_user:
|
241
263
|
email_intro: 'Ihr Vorschlag "%{resource_title}" wurde abgelehnt. Sie können die Antwort auf dieser Seite lesen:'
|
@@ -244,24 +266,24 @@ de:
|
|
244
266
|
notification_title: Ihr Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde abgelehnt.
|
245
267
|
follower:
|
246
268
|
email_intro: 'Der Vorschlag "%{resource_title}" wurde abgelehnt. Sie können die Antwort auf dieser Seite lesen:'
|
247
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Sie
|
269
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie "%{resource_title}" folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
248
270
|
email_subject: Ein Vorschlag, dem Sie folgen, wurde abgelehnt
|
249
|
-
notification_title: Der <a href="%{resource_path}">%{resource_title}</a>
|
271
|
+
notification_title: Der Vorschlag <a href="%{resource_path}">%{resource_title}</a> wurde abgelehnt.
|
250
272
|
proposal_update_category:
|
251
|
-
email_intro: 'Ein Administrator hat die Kategorie Ihres
|
252
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des
|
273
|
+
email_intro: 'Ein Administrator hat die Kategorie Ihres Vorschlags "%{resource_title}" aktualisiert, sehen Sie es sich an:'
|
274
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
|
253
275
|
email_subject: Die Vorschlagskategorie %{resource_title} wurde aktualisiert
|
254
|
-
notification_title: Die <a href="%{resource_path}">%{resource_title}</a>
|
276
|
+
notification_title: Die Vorschlagskategorie <a href="%{resource_path}">%{resource_title}</a> wurde von einem Administrator aktualisiert.
|
255
277
|
proposal_update_scope:
|
256
|
-
email_intro: 'Ein Administrator hat den
|
257
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des
|
258
|
-
email_subject: Der
|
259
|
-
notification_title: Der
|
278
|
+
email_intro: 'Ein Administrator hat den Bereich Ihres Vorschlags „%{resource_title}“ aktualisiert, sehen Sie es sich das auf dieser Seite an:'
|
279
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie der Autor des Vorschlags sind.
|
280
|
+
email_subject: Der Bereich des Vorschlags %{resource_title} wurde aktualisiert
|
281
|
+
notification_title: Der Bereich des Vorschlags <a href="%{resource_path}">%{resource_title}</a> wurde von einem Administrator aktualisiert.
|
260
282
|
voting_enabled:
|
261
|
-
email_intro: 'Sie können Vorschläge in %{participatory_space_title}abstimmen!
|
262
|
-
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title}. Sie
|
263
|
-
email_subject:
|
264
|
-
notification_title: Sie können jetzt <a href="%{
|
283
|
+
email_intro: 'Sie können für Vorschläge in %{participatory_space_title} abstimmen! Beteiligen Sie sich auf dieser Seite:'
|
284
|
+
email_outro: Sie haben diese Benachrichtigung erhalten, weil Sie %{participatory_space_title} folgen. Falls Sie keine solchen Benachrichtigungen mehr erhalten möchten, besuchen Sie den obigen Link.
|
285
|
+
email_subject: In %{participatory_space_title} ist es jetzt möglich, für Vorschläge abzustimmen
|
286
|
+
notification_title: Sie können jetzt für Vorschläge in <a href="%{participatory_space_url}">%{participatory_space_title}</a> <a href="%{resource_path}">abstimmen</a>
|
265
287
|
gamification:
|
266
288
|
badges:
|
267
289
|
accepted_proposals:
|
@@ -334,7 +356,7 @@ de:
|
|
334
356
|
actions:
|
335
357
|
preview: Vorschau
|
336
358
|
exports:
|
337
|
-
comments:
|
359
|
+
comments: Bemerkungen
|
338
360
|
proposals: Vorschläge
|
339
361
|
models:
|
340
362
|
proposal:
|
@@ -512,7 +534,7 @@ de:
|
|
512
534
|
all: Alle
|
513
535
|
filter_origin_values:
|
514
536
|
all: Alle
|
515
|
-
citizens:
|
537
|
+
citizens: Einzelpersonen
|
516
538
|
meetings: Meetings
|
517
539
|
official: Offiziell
|
518
540
|
user_groups: Benutzergruppen
|
@@ -552,7 +574,7 @@ de:
|
|
552
574
|
no_similars_found: Gut gemacht! Keine ähnlichen kollaborativen Entwürfe gefunden
|
553
575
|
title: Ähnliche kollaborative Entwürfe
|
554
576
|
complete:
|
555
|
-
send:
|
577
|
+
send: Abschicken
|
556
578
|
title: Vervollständigen Sie Ihren gemeinsamen Entwurf
|
557
579
|
count:
|
558
580
|
drafts_count:
|
@@ -562,7 +584,7 @@ de:
|
|
562
584
|
error: Beim Erstellen dieser kollaborativen Entwürfe ist ein Problem aufgetreten
|
563
585
|
success: Collaborative Draft wurde erfolgreich erstellt.
|
564
586
|
edit:
|
565
|
-
attachment_legend: "(Optional) Fügen Sie
|
587
|
+
attachment_legend: "(Optional) Fügen Sie einen Anhang hinzu"
|
566
588
|
back: Zurück
|
567
589
|
select_a_category: Bitte wählen Sie eine Kategorie
|
568
590
|
send: Abschicken
|
@@ -592,7 +614,7 @@ de:
|
|
592
614
|
label: 'Bestellentwürfe von:'
|
593
615
|
most_contributed: Am meisten beigetragen
|
594
616
|
random: Zufällig
|
595
|
-
recent:
|
617
|
+
recent: Kürzlich hinzugefügt
|
596
618
|
requests:
|
597
619
|
accepted_request:
|
598
620
|
error: Könnte nicht als Mitarbeiter akzeptiert werden, versuchen Sie es später erneut.
|
@@ -630,7 +652,7 @@ de:
|
|
630
652
|
update:
|
631
653
|
error: Beim Speichern des gemeinsamen Entwurfs sind Fehler aufgetreten.
|
632
654
|
success: Collaborative Draft wurde erfolgreich aktualisiert.
|
633
|
-
title:
|
655
|
+
title: Gemeinsamen Entwurf bearbeiten
|
634
656
|
wizard_aside:
|
635
657
|
back: Zurück
|
636
658
|
back_from_collaborative_draft: Zurück zu gemeinschaftlichen Entwürfen
|
@@ -700,8 +722,13 @@ de:
|
|
700
722
|
one: "%{count} Vorschlag"
|
701
723
|
other: "%{count} Vorschläge"
|
702
724
|
edit:
|
725
|
+
add_documents: Dokumente
|
726
|
+
add_images: Datei
|
703
727
|
attachment_legend: "(Optional) Fügen Sie einen Anhang hinzu"
|
704
728
|
back: Zurück
|
729
|
+
delete_document: Dokument löschen
|
730
|
+
delete_image: Bild löschen
|
731
|
+
gallery_legend: "(Optional) Ein Bild zur Vorschlagskarte hinzufügen"
|
705
732
|
select_a_category: Bitte wählen sie eine Kategorie
|
706
733
|
send: Abschicken
|
707
734
|
title: Vorschlag bearbeiten
|
@@ -747,7 +774,7 @@ de:
|
|
747
774
|
most_followed: Am meisten gefolgt
|
748
775
|
most_voted: Am meisten unterstützt
|
749
776
|
random: Zufällig
|
750
|
-
recent: Kürzlich
|
777
|
+
recent: Kürzlich hinzugefügt
|
751
778
|
with_more_authors: Mit mehr Autoren
|
752
779
|
participatory_texts:
|
753
780
|
index:
|