decidim-proposals 0.32.0.rc2 → 0.32.0.rc3
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/cells/decidim/proposals/proposal_vote/show.erb +1 -16
- data/app/{views/decidim/proposals/proposals/participatory_texts/_proposal_votes_count.html.erb → cells/decidim/proposals/proposal_votes_count/participatory_texts.erb} +17 -17
- data/app/cells/decidim/proposals/proposal_votes_count/show.erb +12 -0
- data/app/cells/decidim/proposals/proposal_votes_count_cell.rb +81 -0
- data/app/forms/decidim/proposals/admin/proposals_import_form.rb +0 -1
- data/app/jobs/decidim/proposals/admin/import_proposals_job.rb +3 -1
- data/app/models/decidim/proposals/proposal.rb +7 -1
- data/app/packs/src/decidim/proposals/admin/proposals_merge.js +0 -3
- data/app/views/decidim/proposals/admin/proposal_states/index.html.erb +1 -1
- data/app/views/decidim/proposals/admin/proposals/_actions.html.erb +2 -2
- data/app/views/decidim/proposals/admin/proposals/bulk_actions/_merge.html.erb +1 -0
- data/app/views/decidim/proposals/proposal_votes/update_buttons_and_counters.js.erb +1 -1
- data/app/views/decidim/proposals/proposals/_proposal_actions.html.erb +4 -4
- data/app/views/decidim/proposals/proposals/_proposal_aside.html.erb +1 -1
- data/config/locales/ar.yml +0 -11
- data/config/locales/bg.yml +0 -11
- data/config/locales/ca-IT.yml +14 -14
- data/config/locales/ca.yml +14 -14
- data/config/locales/cs.yml +1 -15
- data/config/locales/de.yml +0 -15
- data/config/locales/el.yml +0 -11
- data/config/locales/en.yml +14 -14
- data/config/locales/es-MX.yml +14 -14
- data/config/locales/es-PY.yml +14 -14
- data/config/locales/es.yml +14 -14
- data/config/locales/eu.yml +16 -31
- data/config/locales/fi-plain.yml +14 -14
- data/config/locales/fi.yml +14 -14
- data/config/locales/fr-CA.yml +0 -15
- data/config/locales/fr.yml +0 -15
- data/config/locales/gl.yml +0 -11
- data/config/locales/hu.yml +0 -11
- data/config/locales/id-ID.yml +0 -11
- data/config/locales/is-IS.yml +0 -3
- data/config/locales/it.yml +0 -11
- data/config/locales/ja.yml +0 -15
- data/config/locales/lt.yml +0 -11
- data/config/locales/lv.yml +0 -11
- data/config/locales/nl.yml +0 -11
- data/config/locales/no.yml +0 -11
- data/config/locales/pl.yml +0 -11
- data/config/locales/pt-BR.yml +0 -15
- data/config/locales/pt.yml +0 -11
- data/config/locales/ro-RO.yml +0 -11
- data/config/locales/ru.yml +0 -3
- data/config/locales/sk.yml +0 -15
- data/config/locales/sv.yml +0 -15
- data/config/locales/tr-TR.yml +0 -11
- data/config/locales/uk.yml +0 -3
- data/config/locales/zh-CN.yml +0 -10
- data/config/locales/zh-TW.yml +0 -11
- data/decidim-proposals.gemspec +1 -1
- data/lib/decidim/proposals/version.rb +1 -1
- metadata +22 -22
- data/app/packs/entrypoints/decidim_proposals_geocoding.js +0 -2
- data/app/views/decidim/proposals/proposals/_votes_count.html.erb +0 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7973519a8399f52c3b533f15e9da611253c4ea341f94403d407f50134f0d6e70
|
|
4
|
+
data.tar.gz: cff4e776109ff903bdbda8da51b133d554b3ef71437e13394f03ba74b1f8e46a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 533e1ee40db7dfe4c7f6520903d873ec796a125e0248f0f0e443f2a2db90dbc40b9ff2376f8439ffa6e21010842a48730794268ae98a312c1b928eaeffe65691
|
|
7
|
+
data.tar.gz: a6d5853c486a2192504fb5d082da72d528c6713a51e9a1122741bb588661e49482b0bdeef020b6b7fcb00bbe4418d32e147854fdfb5e4a292dad1046161e98a6
|
|
@@ -1,19 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<% if component_settings.participatory_texts_enabled? && from_proposals_list %>
|
|
3
|
-
<%= render partial: "decidim/proposals/proposals/participatory_texts/proposal_votes_count", locals: { proposal: resource, from_proposals_list: true } %>
|
|
4
|
-
<% else %>
|
|
5
|
-
<% progress ||= resource.proposal_votes_count || 0 %>
|
|
6
|
-
<% total ||= resource.maximum_votes || 0 %>
|
|
7
|
-
<%= cell(
|
|
8
|
-
"decidim/progress_bar",
|
|
9
|
-
progress,
|
|
10
|
-
total:,
|
|
11
|
-
units_name: "decidim.proposals.proposals.votes_count.count",
|
|
12
|
-
element_id: "proposal-#{resource.id}-votes-count",
|
|
13
|
-
class: total.positive? ? "card__proposals-votes-limited" : "card__proposals-votes-unlimited"
|
|
14
|
-
) %>
|
|
15
|
-
<% end %>
|
|
16
|
-
<% end %>
|
|
1
|
+
<%= cell("decidim/proposals/proposal_votes_count", resource, from_proposals_list:) %>
|
|
17
2
|
|
|
18
3
|
<% button_classes = "button button__sm button__secondary w-full" %>
|
|
19
4
|
|
|
@@ -1,38 +1,38 @@
|
|
|
1
|
-
<% if
|
|
1
|
+
<% if resource.rejected? %>
|
|
2
2
|
<div></div>
|
|
3
3
|
<% else %>
|
|
4
4
|
<% if !current_user %>
|
|
5
5
|
<% if current_settings.votes_blocked? %>
|
|
6
|
-
<button type="button" name="button" class="column button button--sc disabled" disabled id="
|
|
7
|
-
<%=
|
|
6
|
+
<button type="button" name="button" class="column button button--sc disabled" disabled id="<%= element_id %>">
|
|
7
|
+
<%= resource.proposal_votes_count || 0 %>
|
|
8
8
|
</button>
|
|
9
9
|
<% else %>
|
|
10
|
-
<button type="button" name="button" class="column button button--sc" id="
|
|
11
|
-
<%=
|
|
10
|
+
<button type="button" name="button" class="column button button--sc" id="<%= element_id %>">
|
|
11
|
+
<%= resource.proposal_votes_count || 0 %>
|
|
12
12
|
</button>
|
|
13
13
|
<% end %>
|
|
14
14
|
<% else %>
|
|
15
|
-
<% if proposal_voted_by_user?(
|
|
16
|
-
<button type="button" name="button" class="column button success button--sc" id="
|
|
17
|
-
<%=
|
|
15
|
+
<% if proposal_voted_by_user?(resource) %>
|
|
16
|
+
<button type="button" name="button" class="column button success button--sc" id="<%= element_id %>">
|
|
17
|
+
<%= resource.proposal_votes_count || 0 %>
|
|
18
18
|
</button>
|
|
19
19
|
<% else %>
|
|
20
|
-
<% if
|
|
21
|
-
<button type="button" name="button" class="column button button--sc disabled" disabled id="
|
|
22
|
-
<%=
|
|
20
|
+
<% if resource.maximum_votes_reached? && !resource.can_accumulate_votes_beyond_threshold && current_component.participatory_space.can_participate?(current_user) %>
|
|
21
|
+
<button type="button" name="button" class="column button button--sc disabled" disabled id="<%= element_id %>">
|
|
22
|
+
<%= resource.proposal_votes_count || 0 %>
|
|
23
23
|
</button>
|
|
24
24
|
<% else %>
|
|
25
25
|
<% if vote_limit_enabled? && remaining_votes_count_for_user == 0 %>
|
|
26
|
-
<button type="button" name="button" class="column button button--sc" disabled id="
|
|
27
|
-
<%=
|
|
26
|
+
<button type="button" name="button" class="column button button--sc" disabled id="<%= element_id %>">
|
|
27
|
+
<%= resource.proposal_votes_count || 0 %>
|
|
28
28
|
</button>
|
|
29
29
|
<% elsif current_settings.votes_blocked? || !current_component.participatory_space.can_participate?(current_user) %>
|
|
30
|
-
<button type="button" name="button" class="column button button--sc disabled" disabled id="
|
|
31
|
-
<%=
|
|
30
|
+
<button type="button" name="button" class="column button button--sc disabled" disabled id="<%= element_id %>">
|
|
31
|
+
<%= resource.proposal_votes_count || 0 %>
|
|
32
32
|
</button>
|
|
33
33
|
<% else %>
|
|
34
|
-
<button type="button" name="button" class="column button button--sc" id="
|
|
35
|
-
<%=
|
|
34
|
+
<button type="button" name="button" class="column button button--sc" id="<%= element_id %>">
|
|
35
|
+
<%= resource.proposal_votes_count || 0 %>
|
|
36
36
|
</button>
|
|
37
37
|
<% end %>
|
|
38
38
|
<% end %>
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
<% if participatory_texts_variant? %>
|
|
2
|
+
<%= render :participatory_texts %>
|
|
3
|
+
<% else %>
|
|
4
|
+
<%= cell(
|
|
5
|
+
"decidim/progress_bar",
|
|
6
|
+
progress,
|
|
7
|
+
total:,
|
|
8
|
+
units_name: "decidim.proposals.proposals.votes_count.count",
|
|
9
|
+
element_id:,
|
|
10
|
+
class: progress_bar_class
|
|
11
|
+
) %>
|
|
12
|
+
<% end %>
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Decidim
|
|
4
|
+
module Proposals
|
|
5
|
+
# Renders the votes count (progress bar or participatory texts variant)
|
|
6
|
+
# for a given proposal
|
|
7
|
+
class ProposalVotesCountCell < Decidim::ViewModel
|
|
8
|
+
include Cell::ViewModel::Partial
|
|
9
|
+
include Decidim::Proposals::ProposalVotesHelper
|
|
10
|
+
|
|
11
|
+
alias resource model
|
|
12
|
+
|
|
13
|
+
def show
|
|
14
|
+
return unless can_see_votes?
|
|
15
|
+
|
|
16
|
+
render
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
private
|
|
20
|
+
|
|
21
|
+
def can_see_votes?
|
|
22
|
+
return false if component.current_settings.votes_hidden?
|
|
23
|
+
|
|
24
|
+
space_member? || admin? || transparent_space?
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
def space_member?
|
|
28
|
+
participatory_space.can_participate?(current_user)
|
|
29
|
+
end
|
|
30
|
+
|
|
31
|
+
def admin?
|
|
32
|
+
current_user&.admin?
|
|
33
|
+
end
|
|
34
|
+
|
|
35
|
+
def transparent_space?
|
|
36
|
+
participatory_space.try(:transparent?)
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def participatory_texts_variant?
|
|
40
|
+
component.settings.participatory_texts_enabled? && from_proposals_list?
|
|
41
|
+
end
|
|
42
|
+
|
|
43
|
+
def component
|
|
44
|
+
resource.component
|
|
45
|
+
end
|
|
46
|
+
alias current_component component
|
|
47
|
+
|
|
48
|
+
def participatory_space
|
|
49
|
+
component.participatory_space
|
|
50
|
+
end
|
|
51
|
+
|
|
52
|
+
def current_settings
|
|
53
|
+
component.current_settings
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
def component_settings
|
|
57
|
+
component.settings
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
def from_proposals_list?
|
|
61
|
+
options[:from_proposals_list]
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
def progress
|
|
65
|
+
resource.proposal_votes_count || 0
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
def total
|
|
69
|
+
resource.maximum_votes || 0
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
def progress_bar_class
|
|
73
|
+
total.positive? ? "card__proposals-votes-limited" : "card__proposals-votes-unlimited"
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
def element_id
|
|
77
|
+
"proposal-#{resource.id}-votes-count"
|
|
78
|
+
end
|
|
79
|
+
end
|
|
80
|
+
end
|
|
81
|
+
end
|
|
@@ -32,7 +32,9 @@ module Decidim
|
|
|
32
32
|
def proposals
|
|
33
33
|
proposals = Decidim::Proposals::Proposal.not_hidden.not_withdrawn.where(component: origin_component)
|
|
34
34
|
|
|
35
|
-
if @form["states"].
|
|
35
|
+
if @form["states"].blank?
|
|
36
|
+
proposals
|
|
37
|
+
elsif @form["states"].include?("not_answered")
|
|
36
38
|
proposals.not_answered.or(proposals.where(id: proposals.only_status(@form["states"]).pluck(:id)))
|
|
37
39
|
else
|
|
38
40
|
proposals.only_status(@form["states"])
|
|
@@ -426,8 +426,14 @@ module Decidim
|
|
|
426
426
|
# Create the :search_text ransacker alias for searching from both of these.
|
|
427
427
|
ransacker_i18n_multi :search_text, [:title, :body]
|
|
428
428
|
|
|
429
|
+
ransacker_i18n :translated_title, :title
|
|
430
|
+
|
|
429
431
|
def self.ransackable_attributes(_auth_object = nil)
|
|
430
|
-
%w(
|
|
432
|
+
%w(
|
|
433
|
+
id_string search_text title translated_title body is_emendation
|
|
434
|
+
comments_count proposal_votes_count published_at proposal_notes_count
|
|
435
|
+
state_published evaluation_assignments_count
|
|
436
|
+
)
|
|
431
437
|
end
|
|
432
438
|
|
|
433
439
|
def self.ransackable_associations(_auth_object = nil)
|
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import { createDialog } from "src/decidim/a11y"
|
|
2
|
-
import createEditor from "src/decidim/editor";
|
|
3
2
|
import attachGeocoding from "src/decidim/geocoding/attach_input";
|
|
4
3
|
import { initializeUploadFields } from "src/decidim/direct_uploads/upload_field";
|
|
5
4
|
import { initializeReverseGeocoding } from "src/decidim/geocoding/reverse_geocoding"
|
|
@@ -14,8 +13,6 @@ document.addEventListener("decidim:loaded", () => {
|
|
|
14
13
|
const activateDrawerForm = () => {
|
|
15
14
|
const saveForm = drawer.dialog.querySelector("#form-merge-proposals");
|
|
16
15
|
|
|
17
|
-
// Handles editor initialization
|
|
18
|
-
saveForm.querySelectorAll(".editor-container").forEach((element) => createEditor(element));
|
|
19
16
|
const form = document.querySelector(".proposals_merge_form_admin");
|
|
20
17
|
|
|
21
18
|
// Handles meeting checkbox
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
<% else %>
|
|
59
59
|
<li class="dropdown__item">
|
|
60
60
|
<div class="dropdown__button-disabled">
|
|
61
|
-
<%= with_tooltip t("tooltips.deleted_proposal_states_info", scope: "decidim.admin") do %>
|
|
61
|
+
<%= with_tooltip t("tooltips.deleted_proposal_states_info", scope: "decidim.admin"), class: :left do %>
|
|
62
62
|
<%= icon "delete-bin-line", class: "text-gray" %>
|
|
63
63
|
<span>
|
|
64
64
|
<%= t("actions.destroy", scope: "decidim.proposals") %>
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
<% else %>
|
|
23
23
|
<li class="dropdown__item">
|
|
24
24
|
<div class="dropdown__button-disabled">
|
|
25
|
-
<%= with_tooltip t("tooltips.cannot_edit_proposal_info", scope: "decidim.admin") do %>
|
|
25
|
+
<%= with_tooltip t("tooltips.cannot_edit_proposal_info", scope: "decidim.admin"), class: :left do %>
|
|
26
26
|
<%= icon "pencil-line", class: "text-gray" %>
|
|
27
27
|
<span>
|
|
28
28
|
<%= t("actions.edit_proposal", scope: "decidim.proposals") %>
|
|
@@ -73,7 +73,7 @@
|
|
|
73
73
|
<% end %>
|
|
74
74
|
<% else %>
|
|
75
75
|
<div class="dropdown__button-disabled">
|
|
76
|
-
<%= with_tooltip t("tooltips.deleted_proposals_info", scope: "decidim.admin") do %>
|
|
76
|
+
<%= with_tooltip t("tooltips.deleted_proposals_info", scope: "decidim.admin"), class: :left do %>
|
|
77
77
|
<%= icon "pencil-line", class: "text-gray" %>
|
|
78
78
|
<span>
|
|
79
79
|
<%= t("actions.edit_proposal", scope: "decidim.proposals") %>
|
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
</div>
|
|
5
5
|
<%# form_build automatically adds this tag when the editor form field is called but as this is rendered with ajax it will be ignored so we manually put here %>
|
|
6
|
+
<%= append_javascript_pack_tag "decidim_editor", defer: false %>
|
|
6
7
|
<%= append_stylesheet_pack_tag "decidim_editor" %>
|
|
7
8
|
<%= append_stylesheet_pack_tag "decidim_geocoding" %>
|
|
8
9
|
<% end %>
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
var $proposalVotesCount = $('#proposal-<%= proposal.id %>-votes-count');
|
|
4
4
|
|
|
5
5
|
if($proposalVotesCount[0]) {
|
|
6
|
-
morphdom($proposalVotesCount[0], '<%= j(
|
|
6
|
+
morphdom($proposalVotesCount[0], '<%= j(cell("decidim/proposals/proposal_votes_count", proposal, from_proposals_list: @from_proposals_list).to_s).strip.html_safe %>');
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
var $proposalVoteButton = $('#proposal-<%= proposal.id %>-vote-button');
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<% if @proposal.amendable? && allowed_to?(:edit, :proposal, proposal: @proposal) %>
|
|
2
|
-
<li role="
|
|
3
|
-
<%= link_to edit_proposal_path(@proposal), class: "dropdown__button" do %>
|
|
2
|
+
<li role="presentation" class="dropdown__item">
|
|
3
|
+
<%= link_to edit_proposal_path(@proposal), class: "dropdown__button", role: "menuitem" do %>
|
|
4
4
|
<span><%= t("edit_proposal", scope: "decidim.proposals.proposals.show") %></span>
|
|
5
5
|
<%= icon "pencil-line" %>
|
|
6
6
|
<% end %>
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
<% end %>
|
|
11
11
|
|
|
12
12
|
<% if @proposal.withdrawable_by?(current_user) %>
|
|
13
|
-
<li role="
|
|
14
|
-
<%= action_authorized_link_to :withdraw, withdraw_proposal_path(@proposal), resource: @proposal, method: :put, class: "dropdown__button", title: t("withdraw_btn_hint", scope: "decidim.proposals.proposals.show" ), data: { confirm: t("withdraw_confirmation_html", scope: "decidim.proposals.proposals.show" ) } do %>
|
|
13
|
+
<li role="presentation" class="dropdown__item">
|
|
14
|
+
<%= action_authorized_link_to :withdraw, withdraw_proposal_path(@proposal), resource: @proposal, method: :put, class: "dropdown__button", role: "menuitem", title: t("withdraw_btn_hint", scope: "decidim.proposals.proposals.show" ), data: { confirm: t("withdraw_confirmation_html", scope: "decidim.proposals.proposals.show" ) } do %>
|
|
15
15
|
<span><%= t("withdraw_proposal", scope: "decidim.proposals.proposals.show") %></span>
|
|
16
16
|
<%= icon "arrow-go-back-line" %>
|
|
17
17
|
<% end %>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<section class="layout-aside__section">
|
|
3
3
|
<div class="proposal__aside-vote layout-aside__ctas-buttons" data-controller="sticky-buttons">
|
|
4
4
|
<%= render partial: "vote_button", locals: { proposal: @proposal, from_proposals_list: false } unless @proposal.withdrawn? %>
|
|
5
|
-
<%=
|
|
5
|
+
<%= cell("decidim/proposals/proposal_votes_count", @proposal, from_proposals_list: false) %>
|
|
6
6
|
</div>
|
|
7
7
|
</section>
|
|
8
8
|
<% end %>
|
data/config/locales/ar.yml
CHANGED
|
@@ -187,17 +187,14 @@ ar:
|
|
|
187
187
|
email_intro: 'تم قبول %{requester_name} لأن يكون مسجلاً كمساهم في المسودة التعاونية <a href="%{resource_url}">%{resource_title}</a>.'
|
|
188
188
|
email_outro: لقد تلقيت هذا الإشعار لأنك مساهم مع <a href="%{resource_url}">%{resource_title}</a>.
|
|
189
189
|
email_subject: "تم قبول %{requester_name} للوصول كمساهم في %{resource_title}."
|
|
190
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> كان <strong>مقبولة للوصول كمساهم</strong> من <a href="%{resource_path}">%{resource_title}</a> مشروع تعاوني.
|
|
191
190
|
collaborative_draft_access_rejected:
|
|
192
191
|
email_intro: 'تم رفض %{requester_name} لأن يكون مسجلاً كمساهم في المسودة التعاونية <a href="%{resource_url}">%{resource_title}</a>.'
|
|
193
192
|
email_outro: لقد تلقيت هذا الإشعار لأنك مساهم مع <a href="%{resource_url}">%{resource_title}</a>.
|
|
194
193
|
email_subject: "تم رفض %{requester_name} للوصول كمساهم في المسودة التعاونية %{resource_title}."
|
|
195
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> تم رفض الوصول إلى <strong>كمساهم</strong> في المسودة التعاونية <a href="%{resource_path}">%{resource_title}</a>.
|
|
196
194
|
collaborative_draft_access_requested:
|
|
197
195
|
email_intro: 'طلب %{requester_name} إمكانية المشاركة كمساهم. يمكنك <strong>قبول أو رفض الطلب</strong> من صفحة المسودة التعاونية <a href="%{resource_url}">%{resource_title}</a>.'
|
|
198
196
|
email_outro: لقد تلقيت هذا الإشعار لأنك مساهم مع <a href="%{resource_url}">%{resource_title}</a>.
|
|
199
197
|
email_subject: "%{requester_name} طلب الوصول للمساهمة في %{resource_title}."
|
|
200
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> طلب الوصول للمساهمة في المسودة التعاونية <a href="%{resource_path}">%{resource_title}</a> . يرجى <strong>قبول أو رفض الطلب</strong>.
|
|
201
198
|
collaborative_draft_access_requester_accepted:
|
|
202
199
|
email_intro: تم قبول طلبك للمشاركة كمساهم في المسودة التعاونية <a href="%{resource_url}">%{resource_title}</a>.
|
|
203
200
|
email_outro: لقد تلقيت هذا الإشعار لأنك طلبت أن تصبح مساهماً مع <a href="%{resource_url}">%{resource_title}</a>.
|
|
@@ -209,10 +206,7 @@ ar:
|
|
|
209
206
|
email_subject: لقد تم رفضك كمساهم بـ %{resource_title}.
|
|
210
207
|
notification_title: لقد تم رفض دخولك <strong>كمساهم</strong> في المسودة التعاونية <a href="%{resource_path}">%{resource_title}</a>.
|
|
211
208
|
collaborative_draft_withdrawn:
|
|
212
|
-
email_intro: <a href="%{author_url}">%{author_name} %{author_nickname}</a> سحب <a href="%{resource_url}">%{resource_title}</a> المسودة التعاونية.
|
|
213
209
|
email_outro: لقد تلقيت هذا الإشعار لأنك مساهم مع <a href="%{resource_url}">%{resource_title}</a>.
|
|
214
|
-
email_subject: "%{author_name} %{author_nickname} سحب المشروع %{resource_title} التعاوني."
|
|
215
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <strong>سحبت</strong> مشروع <a href="%{resource_path}">%{resource_title}</a> التعاوني.
|
|
216
210
|
creation_enabled:
|
|
217
211
|
email_intro: 'يمكنك الآن إنشاء مقترحات جديدة في %{participatory_space_title}! ابدأ المشاركة في هذه الصفحة:'
|
|
218
212
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{participatory_space_title}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
@@ -222,11 +216,6 @@ ar:
|
|
|
222
216
|
email_outro: لقد تلقيت هذا الإشعار لأنك مؤلف "%{resource_title}".
|
|
223
217
|
email_subject: تم ذكر اقتراحك "%{mentioned_proposal_title}"
|
|
224
218
|
notification_title: لقد تم ذكر اقتراحك "%{mentioned_proposal_title}" <a href="%{resource_path}">في هذه المساحة</a> في التعليقات.
|
|
225
|
-
proposal_published:
|
|
226
|
-
email_intro: '%{author_name} %{author_nickname}، الذي تتابعه ، بنشر اقتراح جديد يسمى "%{resource_title}". التحقق من ذلك والمساهمة:'
|
|
227
|
-
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{author_nickname}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
228
|
-
email_subject: اقتراح جديد "%{resource_title}" من %{author_nickname}
|
|
229
|
-
notification_title: تم نشر مقترح <a href="%{resource_path}">%{resource_title}</a> بواسطة <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
|
230
219
|
proposal_published_for_space:
|
|
231
220
|
email_intro: تمت إضافة الاقتراح "%{resource_title}" إلى "%{participatory_space_title}" الذي تتابعه.
|
|
232
221
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع "%{participatory_space_title}". يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
data/config/locales/bg.yml
CHANGED
|
@@ -209,17 +209,14 @@ bg:
|
|
|
209
209
|
email_intro: '%{requester_name} получи достъп като сътрудник в съвместната чернова <a href="%{resource_url}">%{resource_title}</a>.'
|
|
210
210
|
email_outro: Получихте известие, защото сте сътрудник в <a href="%{resource_url}">%{resource_title}</a>.
|
|
211
211
|
email_subject: "%{requester_name} получи достъп като сътрудник в %{resource_title}."
|
|
212
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> <strong>получи достъп като сътрудник</strong> в съвместната чернова <a href="%{resource_path}">%{resource_title}</a>.
|
|
213
212
|
collaborative_draft_access_rejected:
|
|
214
213
|
email_intro: '%{requester_name} е отхвърлен като сътрудник в съвместната чернова <a href="%{resource_url}">%{resource_title}</a>.'
|
|
215
214
|
email_outro: Получихте известие, защото сте сътрудник в <a href="%{resource_url}">%{resource_title}</a>.
|
|
216
215
|
email_subject: "%{requester_name} е отхвърлен като сътрудник в съвместната чернова %{resource_title}."
|
|
217
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> <strong>е отхвърлен като сътрудник</strong> в съвместната чернова <a href="%{resource_path}">%{resource_title}</a>.
|
|
218
216
|
collaborative_draft_access_requested:
|
|
219
217
|
email_intro: '%{requester_name} заяви достъп като сътрудник. Можете да <strong>приемете или отхвърлите</strong> от сраницата на колективната чернова <a href="%{resource_url}">%{resource_title}</a>.'
|
|
220
218
|
email_outro: Получихте известие, защото сте сътрудник в <a href="%{resource_url}">%{resource_title}</a>.
|
|
221
219
|
email_subject: "%{requester_name} заяви достъп като сътрудник в %{resource_title}."
|
|
222
|
-
notification_title: <a href="%{requester_path}">%{requester_name} %{requester_nickname}</a> заяви достъп като сътрудник в колективната чернова <a href="%{resource_path}">%{resource_title}</a>. Моля, <strong>приемете или отхвърлете заявката</strong>.
|
|
223
220
|
collaborative_draft_access_requester_accepted:
|
|
224
221
|
email_intro: Получихте достъп като сътрудник в колективната чернова <a href="%{resource_url}">%{resource_title}</a>.
|
|
225
222
|
email_outro: Получихте известие, защото заявихте да бъдете сътрудник в <a href="%{resource_url}">%{resource_title}</a>.
|
|
@@ -231,10 +228,7 @@ bg:
|
|
|
231
228
|
email_subject: Отхвърлен сте като сътрудник в %{resource_title}.
|
|
232
229
|
notification_title: <strong>Отказан Ви е достъп като сътрудник</strong> в колективната чернова <a href="%{resource_path}">%{resource_title}</a>.
|
|
233
230
|
collaborative_draft_withdrawn:
|
|
234
|
-
email_intro: <a href="%{author_url}">%{author_name} %{author_nickname}</a> оттегли колективната чернова <a href="%{resource_url}">%{resource_title}</a>.
|
|
235
231
|
email_outro: Получихте известие, защото сте сътрудник в <a href="%{resource_url}">%{resource_title}</a>.
|
|
236
|
-
email_subject: "%{author_name} %{author_nickname} оттегли колективната чернова %{resource_title}."
|
|
237
|
-
notification_title: <a href="%{author_path}">%{author_name} %{author_nickname}</a> <strong>оттегли</strong> колективната чернова <a href="%{resource_path}">%{resource_title}</a>.
|
|
238
232
|
creation_enabled:
|
|
239
233
|
email_intro: 'Вече може да създавате предложения в %{participatory_space_title}! Участвайте в тази страница:'
|
|
240
234
|
email_outro: Получавате това известие, защото следвате %{participatory_space_title}. Може да прекратите известията чрез предната връзка.
|
|
@@ -245,11 +239,6 @@ bg:
|
|
|
245
239
|
email_outro: Получавате това известие, защото сте автор на %{resource_title}".
|
|
246
240
|
email_subject: Вашето предложение %{mentioned_proposal_title} е споменато
|
|
247
241
|
notification_title: Вашето предложение "%{mentioned_proposal_title}" беше споменато в коментарите <a href="%{resource_path}">на това пространство</a>.
|
|
248
|
-
proposal_published:
|
|
249
|
-
email_intro: '%{author_name} %{author_nickname}, което следвате, има публикувано ново предложение "%{resource_title}". Разгледайте го и допринасяйте:'
|
|
250
|
-
email_outro: Получавате това известие, защото следвате %{author_nickname}. Може да прекратите известията чрез предната връзка.
|
|
251
|
-
email_subject: Ново предложение "%{resource_title}" от %{author_nickname}
|
|
252
|
-
notification_title: Предложението <a href="%{resource_path}">%{resource_title}</a> беше публикувано от <a href="%{author_path}">%{author_name} %{author_nickname}</a>.
|
|
253
242
|
proposal_published_for_space:
|
|
254
243
|
email_intro: Предложението "%{resource_title}" беше добавено в "%{participatory_space_title}", което следвате.
|
|
255
244
|
email_outro: Получавате това известие, защото следвате "%{participatory_space_title}". Може да прекратите известията чрез предната връзка.
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -276,17 +276,17 @@ ca-IT:
|
|
|
276
276
|
email_intro: '%{author_name} ha creat una nota privada a %{resource_title}. La pots veure al <a href="%{admin_proposal_info_url}">taulell d''administració</a>.'
|
|
277
277
|
email_outro: Reps aquesta notificació perquè pots avaluar la proposta.
|
|
278
278
|
email_subject: Algú ha deixat una nota a la proposta %{resource_title}.
|
|
279
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
279
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> ha creat una nota privada a <a href="%{resource_path}">%{resource_title}</a>. La pots veure al <a href="%{admin_proposal_info_path}">taulell d'administració</a>.
|
|
280
280
|
proposal_note_mentioned:
|
|
281
|
-
email_intro: '"%{author_name}"
|
|
281
|
+
email_intro: '"%{author_name}" t''ha esmentat a una nota privada a "%{resource_title}". <a href="%{admin_proposal_info_url}">La pots veure al taulell d''administració</a>.'
|
|
282
282
|
email_outro: Has rebut aquesta notificació perquè t'han esmentat a una nota privada.
|
|
283
283
|
email_subject: Algú ha deixat una nota a la proposta %{resource_title}.
|
|
284
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
284
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> t'ha esmentat a una nota privada a "<a href="%{resource_path}">%{resource_title}</a>". <a href="%{admin_proposal_info_path}">La pots veure al taulell d'administració</a>.
|
|
285
285
|
proposal_note_replied:
|
|
286
286
|
email_intro: '%{author_name} ha respost la teva nota privada a %{resource_title}. Ho pots veure al <a href="%{admin_proposal_info_url}">taulell d''administració</a>.'
|
|
287
287
|
email_outro: Has rebut aquesta notificació perquè ets l'autora de la nota privada.
|
|
288
288
|
email_subject: "%{author_name} ha respost a la teva nota privada a %{resource_title}."
|
|
289
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
289
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> ha respost a la teva nota privada a <a href="%{resource_path}">%{resource_title}</a>. <a href="%{admin_proposal_info_path}">Pots veure la resposta des del taulell d'administració</a>.
|
|
290
290
|
coauthor_accepted_invite:
|
|
291
291
|
notification_title: <a href="%{coauthor_path}">%{coauthor_name}</a> ha acceptat la teva invitació per a ser coautora de la proposta "<a href="%{resource_path}">%{resource_title}</a>".
|
|
292
292
|
coauthor_invited:
|
|
@@ -303,17 +303,17 @@ ca-IT:
|
|
|
303
303
|
email_intro: 'S''ha acceptat %{requester_name} per accedir com a contribuidora de l''esborrany col·laboratiu <a href="%{resource_url}">%{resource_title}</a>.'
|
|
304
304
|
email_outro: Has rebut aquesta notificació perquè vas contribuir a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
305
305
|
email_subject: "S'ha acceptat %{requester_name} per accedir com a contribuidora del %{resource_title}."
|
|
306
|
-
notification_title: <a href="%{requester_path}">%{requester_name}
|
|
306
|
+
notification_title: <a href="%{requester_path}">%{requester_name}</a> ha estat <strong>acceptada per accedir com a contribuïdora</strong> de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
307
307
|
collaborative_draft_access_rejected:
|
|
308
308
|
email_intro: 'S''ha rebutjat que %{requester_name} accedeixi com a contribuidora de l''esborrany col·laboratiu <a href="%{resource_url}">%{resource_title}</a>.'
|
|
309
309
|
email_outro: Has rebut aquesta notificació perquè vas contribuir a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
310
310
|
email_subject: "S'ha rebutjat %{requester_name} per accedir com a contribuïdora de l'esborrany col·laboratiu %{resource_title}."
|
|
311
|
-
notification_title: <a href="%{requester_path}">%{requester_name}
|
|
311
|
+
notification_title: '<strong>S''ha rebutjat que <a href="%{requester_path}">%{requester_name}</a> accedeixi com a contribuïdora de l''esborrany col·laboratiu<strong>: <a href="%{resource_path}">%{resource_title}</a>.'
|
|
312
312
|
collaborative_draft_access_requested:
|
|
313
313
|
email_intro: '%{requester_name} ha sol·licitat accés com a contribuïdora. Pots <strong>acceptar o rebutjar la sol·licitud</strong> de l''esborrany col·laboratiu <a href="%{resource_url}">%{resource_title}</a>.'
|
|
314
314
|
email_outro: Has rebut aquesta notificació perquè vas contribuir a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
315
315
|
email_subject: "%{requester_name} ha demanat accés per contribuir a %{resource_title}."
|
|
316
|
-
notification_title: <a href="%{requester_path}">%{requester_name}
|
|
316
|
+
notification_title: <a href="%{requester_path}">%{requester_name}</a> ha sol·licitat accés per contribuir a l'esborrany col·laboratiu de <a href="%{resource_path}">%{resource_title}</a>. Si us plau, <strong>accepta o rebutja la sol·licitud</strong>.
|
|
317
317
|
collaborative_draft_access_requester_accepted:
|
|
318
318
|
email_intro: Has estat acceptada com a contribuïdora de l'esborrany col·laboratiu <a href="%{resource_url}">%{resource_title}</a>.
|
|
319
319
|
email_outro: Has rebut aquesta notificació perquè has sol·licitat poder contribuïr a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
@@ -325,10 +325,10 @@ ca-IT:
|
|
|
325
325
|
email_subject: Has estat rebutjada com a contribuïdora de %{resource_title}.
|
|
326
326
|
notification_title: Has estat rebutjada <strong>per accedir com a contribuïdora</strong> de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
327
327
|
collaborative_draft_withdrawn:
|
|
328
|
-
email_intro: <a href="%{author_url}">%{author_name}
|
|
328
|
+
email_intro: '<a href="%{author_url}">%{author_name}</a> ha retirat l''esborrany col·laboratiu: <a href="%{resource_url}">%{resource_title}</a>.'
|
|
329
329
|
email_outro: Has rebut aquesta notificació perquè vas contribuir a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
330
|
-
email_subject: "%{author_name}
|
|
331
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
330
|
+
email_subject: "%{author_name} ha retirat l'esborrany col·laboratiu: %{resource_title}."
|
|
331
|
+
notification_title: '<a href="%{author_path}">%{author_name}</a> <strong>ha retirat l''esborrany col·laboratiu</strong>: <a href="%{resource_path}">%{resource_title}</a>.'
|
|
332
332
|
creation_enabled:
|
|
333
333
|
email_intro: 'Ara pots crear noves propostes a %{participatory_space_title}! Comença a participar a aquesta pàgina:'
|
|
334
334
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
@@ -350,10 +350,10 @@ ca-IT:
|
|
|
350
350
|
email_subject: La proposta "%{resource_title}" s'ha fusionat amb una altra
|
|
351
351
|
notification_title: Una administradora ha fusionat la proposta "<a href="%{resource_path}">%{resource_title}</a> amb una altra.
|
|
352
352
|
proposal_published:
|
|
353
|
-
email_intro: '%{author_name}
|
|
354
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint
|
|
355
|
-
email_subject: Nova proposta "%{resource_title}" de %{
|
|
356
|
-
notification_title: La proposta <a href="%{resource_path}">%{resource_title}</a>
|
|
353
|
+
email_intro: '%{author_name}, a qui segueixes, ha publicat una nova proposta anomenada "%{resource_title}". Consulta i contribueix:'
|
|
354
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai %{author_name}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
355
|
+
email_subject: Nova proposta "%{resource_title}" de %{author_name}
|
|
356
|
+
notification_title: La proposta "<a href="%{resource_path}">%{resource_title}</a>" va ser publicada per <a href="%{author_path}">%{author_name} </a>.
|
|
357
357
|
proposal_published_for_space:
|
|
358
358
|
email_intro: La proposta "%{resource_title}" s'ha afegit a l'espai "%{participatory_space_title}", que segueixes.
|
|
359
359
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
data/config/locales/ca.yml
CHANGED
|
@@ -276,17 +276,17 @@ ca:
|
|
|
276
276
|
email_intro: '%{author_name} ha creat una nota privada a %{resource_title}. La pots veure al <a href="%{admin_proposal_info_url}">taulell d''administració</a>.'
|
|
277
277
|
email_outro: Reps aquesta notificació perquè pots avaluar la proposta.
|
|
278
278
|
email_subject: Algú ha deixat una nota a la proposta %{resource_title}.
|
|
279
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
279
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> ha creat una nota privada a <a href="%{resource_path}">%{resource_title}</a>. La pots veure al <a href="%{admin_proposal_info_path}">taulell d'administració</a>.
|
|
280
280
|
proposal_note_mentioned:
|
|
281
|
-
email_intro: '"%{author_name}"
|
|
281
|
+
email_intro: '"%{author_name}" t''ha esmentat a una nota privada a "%{resource_title}". <a href="%{admin_proposal_info_url}">La pots veure al taulell d''administració</a>.'
|
|
282
282
|
email_outro: Has rebut aquesta notificació perquè t'han esmentat a una nota privada.
|
|
283
283
|
email_subject: Algú ha deixat una nota a la proposta %{resource_title}.
|
|
284
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
284
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> t'ha esmentat a una nota privada a "<a href="%{resource_path}">%{resource_title}</a>". <a href="%{admin_proposal_info_path}">La pots veure al taulell d'administració</a>.
|
|
285
285
|
proposal_note_replied:
|
|
286
286
|
email_intro: '%{author_name} ha respost la teva nota privada a %{resource_title}. Ho pots veure al <a href="%{admin_proposal_info_url}">taulell d''administració</a>.'
|
|
287
287
|
email_outro: Has rebut aquesta notificació perquè ets l'autora de la nota privada.
|
|
288
288
|
email_subject: "%{author_name} ha respost a la teva nota privada a %{resource_title}."
|
|
289
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
289
|
+
notification_title: <a href="%{author_path}">%{author_name}</a> ha respost a la teva nota privada a <a href="%{resource_path}">%{resource_title}</a>. <a href="%{admin_proposal_info_path}">Pots veure la resposta des del taulell d'administració</a>.
|
|
290
290
|
coauthor_accepted_invite:
|
|
291
291
|
notification_title: <a href="%{coauthor_path}">%{coauthor_name}</a> ha acceptat la teva invitació per a ser coautora de la proposta "<a href="%{resource_path}">%{resource_title}</a>".
|
|
292
292
|
coauthor_invited:
|
|
@@ -303,17 +303,17 @@ ca:
|
|
|
303
303
|
email_intro: 'S''ha acceptat %{requester_name} per accedir com a contribuidora de l''esborrany col·laboratiu <a href="%{resource_url}">%{resource_title}</a>.'
|
|
304
304
|
email_outro: Has rebut aquesta notificació perquè vas contribuir a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
305
305
|
email_subject: "S'ha acceptat %{requester_name} per accedir com a contribuidora del %{resource_title}."
|
|
306
|
-
notification_title: <a href="%{requester_path}">%{requester_name}
|
|
306
|
+
notification_title: <a href="%{requester_path}">%{requester_name}</a> ha estat <strong>acceptada per accedir com a contribuïdora</strong> de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
307
307
|
collaborative_draft_access_rejected:
|
|
308
308
|
email_intro: 'S''ha rebutjat que %{requester_name} accedeixi com a contribuidora de l''esborrany col·laboratiu <a href="%{resource_url}">%{resource_title}</a>.'
|
|
309
309
|
email_outro: Has rebut aquesta notificació perquè vas contribuir a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
310
310
|
email_subject: "S'ha rebutjat %{requester_name} per accedir com a contribuïdora de l'esborrany col·laboratiu %{resource_title}."
|
|
311
|
-
notification_title: <a href="%{requester_path}">%{requester_name}
|
|
311
|
+
notification_title: '<strong>S''ha rebutjat que <a href="%{requester_path}">%{requester_name}</a> accedeixi com a contribuïdora de l''esborrany col·laboratiu<strong>: <a href="%{resource_path}">%{resource_title}</a>.'
|
|
312
312
|
collaborative_draft_access_requested:
|
|
313
313
|
email_intro: '%{requester_name} ha sol·licitat accés com a contribuïdora. Pots <strong>acceptar o rebutjar la sol·licitud</strong> de l''esborrany col·laboratiu <a href="%{resource_url}">%{resource_title}</a>.'
|
|
314
314
|
email_outro: Has rebut aquesta notificació perquè vas contribuir a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
315
315
|
email_subject: "%{requester_name} ha demanat accés per contribuir a %{resource_title}."
|
|
316
|
-
notification_title: <a href="%{requester_path}">%{requester_name}
|
|
316
|
+
notification_title: <a href="%{requester_path}">%{requester_name}</a> ha sol·licitat accés per contribuir a l'esborrany col·laboratiu de <a href="%{resource_path}">%{resource_title}</a>. Si us plau, <strong>accepta o rebutja la sol·licitud</strong>.
|
|
317
317
|
collaborative_draft_access_requester_accepted:
|
|
318
318
|
email_intro: Has estat acceptada com a contribuïdora de l'esborrany col·laboratiu <a href="%{resource_url}">%{resource_title}</a>.
|
|
319
319
|
email_outro: Has rebut aquesta notificació perquè has sol·licitat poder contribuïr a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
@@ -325,10 +325,10 @@ ca:
|
|
|
325
325
|
email_subject: Has estat rebutjada com a contribuïdora de %{resource_title}.
|
|
326
326
|
notification_title: Has estat rebutjada <strong>per accedir com a contribuïdora</strong> de l'esborrany col·laboratiu <a href="%{resource_path}">%{resource_title}</a>.
|
|
327
327
|
collaborative_draft_withdrawn:
|
|
328
|
-
email_intro: <a href="%{author_url}">%{author_name}
|
|
328
|
+
email_intro: '<a href="%{author_url}">%{author_name}</a> ha retirat l''esborrany col·laboratiu: <a href="%{resource_url}">%{resource_title}</a>.'
|
|
329
329
|
email_outro: Has rebut aquesta notificació perquè vas contribuir a la proposta "<a href="%{resource_url}">%{resource_title}</a>".
|
|
330
|
-
email_subject: "%{author_name}
|
|
331
|
-
notification_title: <a href="%{author_path}">%{author_name}
|
|
330
|
+
email_subject: "%{author_name} ha retirat l'esborrany col·laboratiu: %{resource_title}."
|
|
331
|
+
notification_title: '<a href="%{author_path}">%{author_name}</a> <strong>ha retirat l''esborrany col·laboratiu</strong>: <a href="%{resource_path}">%{resource_title}</a>.'
|
|
332
332
|
creation_enabled:
|
|
333
333
|
email_intro: 'Ara pots crear noves propostes a %{participatory_space_title}! Comença a participar a aquesta pàgina:'
|
|
334
334
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
@@ -350,10 +350,10 @@ ca:
|
|
|
350
350
|
email_subject: La proposta "%{resource_title}" s'ha fusionat amb una altra
|
|
351
351
|
notification_title: Una administradora ha fusionat la proposta "<a href="%{resource_path}">%{resource_title}</a> amb una altra.
|
|
352
352
|
proposal_published:
|
|
353
|
-
email_intro: '%{author_name}
|
|
354
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint
|
|
355
|
-
email_subject: Nova proposta "%{resource_title}" de %{
|
|
356
|
-
notification_title: La proposta <a href="%{resource_path}">%{resource_title}</a>
|
|
353
|
+
email_intro: '%{author_name}, a qui segueixes, ha publicat una nova proposta anomenada "%{resource_title}". Consulta i contribueix:'
|
|
354
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai %{author_name}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
355
|
+
email_subject: Nova proposta "%{resource_title}" de %{author_name}
|
|
356
|
+
notification_title: La proposta "<a href="%{resource_path}">%{resource_title}</a>" va ser publicada per <a href="%{author_path}">%{author_name} </a>.
|
|
357
357
|
proposal_published_for_space:
|
|
358
358
|
email_intro: La proposta "%{resource_title}" s'ha afegit a l'espai "%{participatory_space_title}", que segueixes.
|
|
359
359
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|