decidim-core 0.32.0.rc2 → 0.32.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 +4 -4
- data/app/cells/decidim/amendable/amend_button_card/show.erb +2 -2
- data/app/cells/decidim/author_cell.rb +0 -4
- data/app/cells/decidim/card_metadata_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/cta_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_participatory_spaces_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/static_page/section_settings_form/show.erb +3 -1
- data/app/cells/decidim/content_blocks/static_page/summary_settings_form/show.erb +3 -1
- data/app/cells/decidim/content_blocks/static_page/two_pane_section_settings_form/show.erb +4 -2
- data/app/cells/decidim/resource_types_filter/show.erb +2 -2
- data/app/commands/decidim/destroy_account.rb +12 -1
- data/app/commands/decidim/multiple_attachments_methods.rb +28 -27
- data/app/controllers/concerns/decidim/devise_controllers.rb +9 -0
- data/app/events/decidim/amendable/amendment_base_event.rb +7 -1
- data/app/jobs/decidim/process_inactive_participant_job.rb +0 -7
- data/app/mailers/decidim/delete_user_mailer.rb +14 -0
- data/app/mailers/decidim/participants_account_mailer.rb +0 -16
- data/app/models/decidim/moderation.rb +1 -1
- data/app/models/decidim/participatory_space/member.rb +1 -1
- data/app/models/decidim/user_base_entity.rb +17 -2
- data/app/models/decidim/user_moderation.rb +1 -1
- data/app/packs/src/decidim/controllers/breadcrumb_truncate/breadcrumb_truncate.test.js +230 -0
- data/app/packs/src/decidim/controllers/breadcrumb_truncate/controller.js +172 -0
- data/app/packs/src/decidim/controllers/form_validator/form_validator.js +6 -6
- data/app/packs/src/decidim/controllers/form_validator/form_validator.test.js +23 -1
- data/app/packs/src/decidim/controllers/main_menu/controller.js +33 -0
- data/app/packs/src/decidim/controllers/main_menu/main_menu.test.js +77 -0
- data/app/packs/src/decidim/controllers/mention/controller.js +296 -140
- data/app/packs/src/decidim/controllers/mention/input_mentions.test.js +120 -457
- data/app/packs/src/decidim/controllers/multiple_mentions/controller.js +68 -32
- data/app/packs/src/decidim/controllers/multiple_mentions/input_multiple_mentions.test.js +30 -23
- data/app/packs/src/decidim/direct_uploads/upload_field.js +4 -4
- data/app/packs/src/decidim/direct_uploads/upload_modal.js +11 -7
- data/app/packs/src/decidim/editor/common/suggestion.js +3 -1
- data/app/packs/src/decidim/editor/extensions/indent/index.js +9 -0
- data/app/packs/src/decidim/geocoding/reverse_geocoding.js +15 -5
- data/app/packs/src/decidim/geocoding/reverse_geocoding.test.js +197 -0
- data/app/packs/src/decidim/index.js +4 -3
- data/app/packs/src/decidim/sw/sw.js +1 -1
- data/app/packs/src/decidim/utilities/text.js +6 -6
- data/app/packs/stylesheets/decidim/_conversations.scss +14 -0
- data/app/packs/stylesheets/decidim/_dropdown.scss +1 -1
- data/app/packs/stylesheets/decidim/_editor_suggestions.scss +49 -0
- data/app/packs/stylesheets/decidim/_floating_help.scss +1 -1
- data/app/packs/stylesheets/decidim/_header.scss +41 -8
- data/app/packs/stylesheets/decidim/_tom_select.scss +23 -0
- data/app/packs/stylesheets/decidim/application.scss +2 -0
- data/app/packs/stylesheets/decidim/editor.scss +2 -33
- data/app/packs/stylesheets/decidim/geocoding_addons.scss +10 -2
- data/app/presenters/decidim/menu_item_presenter.rb +9 -3
- data/app/presenters/decidim/stats_presenter.rb +1 -1
- data/app/uploaders/decidim/image_uploader.rb +1 -1
- data/app/views/decidim/delete_user_mailer/delete.html.erb +6 -0
- data/app/views/decidim/gamification/badges/index.html.erb +1 -1
- data/app/views/decidim/homepage/show.html.erb +1 -1
- data/app/views/decidim/last_activities/index.html.erb +1 -1
- data/app/views/decidim/messaging/conversations/_error_modal.html.erb +11 -19
- data/app/views/decidim/messaging/conversations/error.js.erb +12 -7
- data/app/views/decidim/newsletters/unsubscribe.html.erb +1 -1
- data/app/views/decidim/offline/show.html.erb +1 -1
- data/app/views/decidim/pages/index.html.erb +1 -1
- data/app/views/decidim/profiles/show.html.erb +1 -1
- data/app/views/decidim/shared/_resource_actions.html.erb +4 -4
- data/app/views/decidim/user_activities/index.html.erb +1 -1
- data/app/views/layouts/decidim/_wrapper.html.erb +2 -2
- data/app/views/layouts/decidim/header/_menu.html.erb +1 -1
- data/app/views/layouts/decidim/header/_menu_breadcrumb_desktop.html.erb +31 -4
- data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile.html.erb +18 -13
- data/app/views/layouts/decidim/shared/_layout_center.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_item.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_two_col.html.erb +1 -1
- data/config/initializers/decidim_locale_aware_named_route_helper.rb +16 -0
- data/config/locales/ar.yml +0 -25
- data/config/locales/bg.yml +0 -25
- data/config/locales/ca-IT.yml +46 -35
- data/config/locales/ca.yml +46 -35
- data/config/locales/cs.yml +12 -34
- data/config/locales/de.yml +5 -46
- data/config/locales/el.yml +0 -22
- data/config/locales/en.yml +45 -34
- data/config/locales/es-MX.yml +45 -34
- data/config/locales/es-PY.yml +45 -34
- data/config/locales/es.yml +45 -34
- data/config/locales/eu.yml +85 -74
- data/config/locales/fi-plain.yml +46 -34
- data/config/locales/fi.yml +46 -34
- data/config/locales/fr-CA.yml +24 -30
- data/config/locales/fr.yml +24 -30
- data/config/locales/gl.yml +0 -22
- data/config/locales/hu.yml +0 -22
- data/config/locales/id-ID.yml +0 -21
- data/config/locales/is-IS.yml +0 -6
- data/config/locales/it.yml +1 -20
- data/config/locales/ja.yml +55 -44
- data/config/locales/lb.yml +0 -23
- data/config/locales/lt.yml +0 -24
- data/config/locales/lv.yml +0 -21
- data/config/locales/nl.yml +0 -23
- data/config/locales/no.yml +0 -23
- data/config/locales/pl.yml +2 -27
- data/config/locales/pt-BR.yml +2 -40
- data/config/locales/pt.yml +0 -23
- data/config/locales/ro-RO.yml +1 -32
- data/config/locales/ru.yml +0 -8
- data/config/locales/sk.yml +1 -43
- data/config/locales/sv.yml +6 -40
- data/config/locales/tr-TR.yml +0 -24
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +0 -21
- data/config/locales/zh-TW.yml +0 -24
- data/decidim-core.gemspec +1 -1
- data/lib/decidim/api/functions/user_entity_list.rb +2 -0
- data/lib/decidim/attachment_attributes.rb +58 -9
- data/lib/decidim/command.rb +1 -1
- data/lib/decidim/content_renderers/base_renderer.rb +112 -0
- data/lib/decidim/content_renderers/blob_renderer.rb +4 -7
- data/lib/decidim/content_renderers/mention_resource_renderer.rb +10 -6
- data/lib/decidim/content_renderers/resource_renderer.rb +16 -7
- data/lib/decidim/content_renderers/user_renderer.rb +11 -9
- data/lib/decidim/core/content_blocks/registry_manager.rb +4 -4
- data/lib/decidim/core/engine.rb +8 -0
- data/lib/decidim/core/test/factories.rb +3 -0
- data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +10 -10
- data/lib/decidim/core/test/shared_examples/amendable/amendment_event_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb +3 -3
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +6 -6
- data/lib/decidim/core/test/shared_examples/has_space_in_mcell_examples.rb +2 -1
- data/lib/decidim/core/test/shared_examples/resource_liked_event_examples.rb +3 -3
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/map/autocomplete.rb +4 -3
- data/lib/decidim/searchable.rb +5 -0
- data/lib/decidim/view_model.rb +1 -1
- data/lib/tasks/decidim_mailers_tasks.rake +31 -9
- metadata +13 -9
- data/app/commands/decidim/gallery_methods.rb +0 -107
- data/app/packs/src/decidim/vendor/tribute.js +0 -1890
- data/app/packs/stylesheets/decidim/_tribute.scss +0 -36
- data/app/views/decidim/participants_account_mailer/removal_notification.html.erb +0 -11
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<%= yield :item_header %>
|
|
3
3
|
</div>
|
|
4
4
|
<div class="<%= layout_item_classes %>">
|
|
5
|
-
<main class="layout-item__main">
|
|
5
|
+
<main class="layout-item__main" role="main">
|
|
6
6
|
<% if params[:included_in] %>
|
|
7
7
|
<%= render partial: "layouts/decidim/shared/linked_resource" %>
|
|
8
8
|
<% end %>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<%= yield :aside %>
|
|
8
8
|
</aside>
|
|
9
9
|
<% main_tag = main_enabled ? :main : :div %>
|
|
10
|
-
<%= content_tag main_tag, class: "layout-2col__main" do %>
|
|
10
|
+
<%= content_tag main_tag, class: "layout-2col__main", role: (main_enabled ? "main" : nil) do %>
|
|
11
11
|
<%= content_for :flash_messages %>
|
|
12
12
|
<%= yield %>
|
|
13
13
|
<% end %>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
module Decidim
|
|
4
|
+
module LocaleAwareNamedRouteHelper
|
|
5
|
+
def call(_target, _method_name, _args, inner_options, _url_strategy)
|
|
6
|
+
inner_options = inner_options&.symbolize_keys
|
|
7
|
+
inner_options ||= {}
|
|
8
|
+
|
|
9
|
+
inner_options = inner_options.merge(locale: I18n.locale) if @options[:locale].present? && !inner_options.has_key?(:locale)
|
|
10
|
+
|
|
11
|
+
super
|
|
12
|
+
end
|
|
13
|
+
end
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
ActionDispatch::Routing::RouteSet::NamedRouteCollection::UrlHelper.prepend(Decidim::LocaleAwareNamedRouteHelper)
|
data/config/locales/ar.yml
CHANGED
|
@@ -289,9 +289,6 @@ ar:
|
|
|
289
289
|
update_draft:
|
|
290
290
|
error: حدثت هناك مشكلة أثناء تحديث مسودة التعديل.
|
|
291
291
|
success: تم تحديث مسودة التعديل بنجاح.
|
|
292
|
-
wizard_step_form:
|
|
293
|
-
steps:
|
|
294
|
-
'1': إنشاء التعديل الخاص بك
|
|
295
292
|
anonymous_user: مجهول
|
|
296
293
|
application:
|
|
297
294
|
document:
|
|
@@ -406,7 +403,6 @@ ar:
|
|
|
406
403
|
global:
|
|
407
404
|
amendments_enabled: تم تمكين التعديلات
|
|
408
405
|
comments_enabled: تم تمكين التعليقات
|
|
409
|
-
comments_max_length: الحد الأقصى لطول التعليقات
|
|
410
406
|
dummy_global_attribute1: السمة الدمية 1
|
|
411
407
|
dummy_global_attribute2: السمة الدمية 2
|
|
412
408
|
dummy_global_translatable_text: نص افتراضي قابل للترجمة
|
|
@@ -542,13 +538,9 @@ ar:
|
|
|
542
538
|
affected_user:
|
|
543
539
|
email_intro: 'تم قبول التعديل لمدة %{amendable_title}. يمكنك أن ترى ذلك من هذه الصفحة:'
|
|
544
540
|
email_outro: لقد تلقيت هذا الإشعار لأنك مؤلف برقم %{amendable_title}.
|
|
545
|
-
email_subject: تم قبول التعديل من %{amendable_title} من %{emendation_author_nickname}
|
|
546
|
-
notification_title: تم قبول التعديل <a href="%{emendation_path}"></a> تم إنشاؤه بواسطة <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> لمدة <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
547
541
|
follower:
|
|
548
542
|
email_intro: 'تم قبول التعديل لمدة %{amendable_title}. يمكنك أن ترى ذلك من هذه الصفحة:'
|
|
549
543
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{amendable_title}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
550
|
-
email_subject: تم قبول التعديل من %{amendable_title} من %{emendation_author_nickname}
|
|
551
|
-
notification_title: تم قبول التعديل <a href="%{emendation_path}"></a> تم إنشاؤه بواسطة <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> لمدة <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
552
544
|
amendment_created:
|
|
553
545
|
affected_user:
|
|
554
546
|
email_intro: 'تم إنشاء تعديل جديد لـ %{amendable_title}. يمكنك أن ترى ذلك من هذه الصفحة:'
|
|
@@ -564,29 +556,20 @@ ar:
|
|
|
564
556
|
affected_user:
|
|
565
557
|
email_intro: 'تم نشر تعديل مرفوض لـ %{amendable_title} باعتباره %{amendable_type}جديد. يمكنك أن ترى ذلك من هذه الصفحة:'
|
|
566
558
|
email_outro: لقد تلقيت هذا الإشعار لأنك مؤلف برقم %{amendable_title}.
|
|
567
|
-
email_subject: تم نشر تعديل من %{emendation_author_nickname} كـ %{amendable_type}جديد
|
|
568
|
-
notification_title: A <a href="%{emendation_path}">رفض التعديل</a> لل <a href="%{amendable_path}">%{amendable_title}</a> تم نشره باعتباره الجديدة %{amendable_type} من <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
569
559
|
follower:
|
|
570
560
|
email_intro: 'تم نشر تعديل مرفوض لـ %{amendable_title} باعتباره %{amendable_type}جديد. يمكنك أن ترى ذلك من هذه الصفحة:'
|
|
571
561
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{amendable_title}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
572
|
-
email_subject: تم نشر تعديل من %{emendation_author_nickname} كـ %{amendable_type}جديد
|
|
573
|
-
notification_title: A <a href="%{emendation_path}">رفض التعديل</a> لل <a href="%{amendable_path}">%{amendable_title}</a> تم نشره باعتباره الجديدة %{amendable_type} من <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
574
562
|
amendment_rejected:
|
|
575
563
|
affected_user:
|
|
576
564
|
email_intro: 'تم رفض التعديل لمدة %{amendable_title}. يمكنك أن ترى ذلك من هذه الصفحة:'
|
|
577
565
|
email_outro: لقد تلقيت هذا الإشعار لأنك مؤلف برقم %{amendable_title}.
|
|
578
|
-
email_subject: تم رفض التعديل لـ %{amendable_title} من %{emendation_author_nickname}
|
|
579
|
-
notification_title: تم رفض التعديل <a href="%{emendation_path}"></a> تم إنشاؤه بواسطة <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> لـ <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
580
566
|
follower:
|
|
581
567
|
email_intro: 'تم رفض التعديل لمدة %{amendable_title}. يمكنك أن ترى ذلك من هذه الصفحة:'
|
|
582
568
|
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{amendable_title}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
583
|
-
email_subject: تم رفض التعديل لـ %{amendable_title} من %{emendation_author_nickname}
|
|
584
|
-
notification_title: تم رفض التعديل <a href="%{emendation_path}"></a> تم إنشاؤه بواسطة <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> لـ <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
585
569
|
emendation_promoted:
|
|
586
570
|
follower:
|
|
587
571
|
email_intro: 'تم نشر تعديل لـ %{amendable_title}. يمكنك رؤيته من هذه الصفحة:'
|
|
588
572
|
email_outro: لقد تلقيت هذا الإشعار لأنك مؤلف %{amendable_title}.
|
|
589
|
-
email_subject: تم نشر تعديل من قبل %{emendation_author_nickname} كـ %{amendable_type} جديد
|
|
590
573
|
attachments:
|
|
591
574
|
attachment_created:
|
|
592
575
|
email_intro: 'تمت إضافة مستند جديد إلى %{resource_title}. يمكنك أن ترى ذلك من هذه الصفحة:'
|
|
@@ -617,16 +600,9 @@ ar:
|
|
|
617
600
|
notification_title: |-
|
|
618
601
|
قام مسؤول بإزالة %{resource_type} لأنه تم الإبلاغ عنه كـ %{report_reasons}.</br><i>%{resource_content}</i>
|
|
619
602
|
users:
|
|
620
|
-
profile_updated:
|
|
621
|
-
email_intro: و <a href="%{resource_url}">صفحة الملف الشخصي</a> من %{name} (%{nickname})، الذي كنت التالية، وقد تم تحديثها.
|
|
622
|
-
email_outro: لقد تلقيت هذا الإشعار لأنك تتابع %{nickname}. يمكنك إيقاف تلقي الإخطارات باتباع الرابط السابق.
|
|
623
|
-
email_subject: "%{nickname} تحديث ملفهم الشخصي"
|
|
624
|
-
notification_title: و <a href="%{resource_path}">صفحة الملف الشخصي</a> من %{name} (%{nickname})، الذي كنت التالية، وقد تم تحديثها.
|
|
625
603
|
user_officialized:
|
|
626
|
-
email_intro: تم إضفاء الطابع الرسمي على المشارك %{name} (%{nickname}).
|
|
627
604
|
email_outro: تلقيت هذا الإشعار لأنك مدير في هذه المنظمة.
|
|
628
605
|
email_subject: "تم إضفاء الطابع الرسمي على %{name}"
|
|
629
|
-
notification_title: تم إضفاء الطابع الرسمي على المشارك %{name} (%{nickname}).
|
|
630
606
|
export_mailer:
|
|
631
607
|
download_your_data_export:
|
|
632
608
|
download: تحميل
|
|
@@ -806,7 +782,6 @@ ar:
|
|
|
806
782
|
modal_title: محادثة جديدة
|
|
807
783
|
no_results: لا توجد نتائج
|
|
808
784
|
error_modal:
|
|
809
|
-
close: اغلاق النموذج
|
|
810
785
|
correct_errors: يرجى تصحيح الأخطاء والمحاولة مرة أخرى.
|
|
811
786
|
intro: 'حدثت الأخطاء التالية في رسالتك:'
|
|
812
787
|
ok: حسناً
|
data/config/locales/bg.yml
CHANGED
|
@@ -333,10 +333,6 @@ bg:
|
|
|
333
333
|
success: Черновата на поправка е успешно обновена.
|
|
334
334
|
withdraw:
|
|
335
335
|
success: Изменението беше оттеглено успешно.
|
|
336
|
-
wizard_step_form:
|
|
337
|
-
steps:
|
|
338
|
-
'1': Създайте Ваша поправка
|
|
339
|
-
'2': Публикувайте своето изменение
|
|
340
336
|
anonymous_user: Анонимен
|
|
341
337
|
application:
|
|
342
338
|
document:
|
|
@@ -458,7 +454,6 @@ bg:
|
|
|
458
454
|
global:
|
|
459
455
|
amendments_enabled: Поправки разрешени
|
|
460
456
|
comments_enabled: Коментари разрешени
|
|
461
|
-
comments_max_length: Максимална дължина на коментарите
|
|
462
457
|
dummy_global_attribute1: Макетен атрибут 1
|
|
463
458
|
dummy_global_attribute2: Макетен атрибут 2
|
|
464
459
|
dummy_global_translatable_text: Макетен преводим текст
|
|
@@ -642,13 +637,9 @@ bg:
|
|
|
642
637
|
affected_user:
|
|
643
638
|
email_intro: 'Приета е поправка в %{amendable_title}. Можете да я видите на тази страница:'
|
|
644
639
|
email_outro: Получавате това известие, защото сте автор на %{amendable_title}.
|
|
645
|
-
email_subject: Приета е поправка в %{amendable_title} от %{emendation_author_nickname}
|
|
646
|
-
notification_title: <a href="%{emendation_path}">Поправката</a> направена от <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> е приета за <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
647
640
|
follower:
|
|
648
641
|
email_intro: 'Приета е поправка в %{amendable_title}. Можете да я видите на тази страница:'
|
|
649
642
|
email_outro: Получавате това известие, защото следвате %{amendable_title}. Може да прекратите известията чрез предната връзка.
|
|
650
|
-
email_subject: Приета е поправка в %{amendable_title} от %{emendation_author_nickname}
|
|
651
|
-
notification_title: <a href="%{emendation_path}">Поправката</a> направена от <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> е приета за <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
652
643
|
amendment_created:
|
|
653
644
|
affected_user:
|
|
654
645
|
email_intro: 'Нова поправка е създадена в %{amendable_title}. Можете да я видите на тази страница:'
|
|
@@ -664,24 +655,16 @@ bg:
|
|
|
664
655
|
affected_user:
|
|
665
656
|
email_intro: 'Отхвърлена поправка в %{amendable_title} е публикувана като нов %{amendable_type}. Можете да видите на тази страница:'
|
|
666
657
|
email_outro: Получавате това известие, защото сте автор на %{amendable_title}.
|
|
667
|
-
email_subject: Поправка на %{emendation_author_nickname} е публикувана като нов %{amendable_type}
|
|
668
|
-
notification_title: Отхвърлената <a href="%{emendation_path}">поправка</a> в <a href="%{amendable_path}">%{amendable_title}</a> беше публикувана като нов %{amendable_type} от <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
669
658
|
follower:
|
|
670
659
|
email_intro: 'Отхвърлена поправка в %{amendable_title} е публикувана като нов %{amendable_type}. Можете да видите на тази страница:'
|
|
671
660
|
email_outro: Получавате това известие, защото следвате %{amendable_title}. Може да прекратите известията чрез предната връзка.
|
|
672
|
-
email_subject: Поправка на %{emendation_author_nickname} е публикувана като нов %{amendable_type}
|
|
673
|
-
notification_title: Отхвърлената <a href="%{emendation_path}">поправка</a> в <a href="%{amendable_path}">%{amendable_title}</a> беше публикувана като нов %{amendable_type} от <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
674
661
|
amendment_rejected:
|
|
675
662
|
affected_user:
|
|
676
663
|
email_intro: 'Поправка е отхвърлена в %{amendable_title}. Можете да я видите на тази страница:'
|
|
677
664
|
email_outro: Получавате това известие, защото сте автор на %{amendable_title}.
|
|
678
|
-
email_subject: Отхвърлена е поправка в %{amendable_title} от %{emendation_author_nickname}
|
|
679
|
-
notification_title: <a href="%{emendation_path}">Поправката</a> направена от <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> е отхвърлена за <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
680
665
|
follower:
|
|
681
666
|
email_intro: 'Поправка е отхвърлена в %{amendable_title}. Можете да я видите на тази страница:'
|
|
682
667
|
email_outro: Получавате това известие, защото следвате %{amendable_title}. Може да прекратите известията чрез предната връзка.
|
|
683
|
-
email_subject: Отхвърлена е поправка в %{amendable_title} от %{emendation_author_nickname}
|
|
684
|
-
notification_title: <a href="%{emendation_path}">Поправката</a> направена от <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> е отхвърлена за <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
685
668
|
attachments:
|
|
686
669
|
attachment_created:
|
|
687
670
|
email_intro: 'Нов документ е създаден в %{resource_title}. Можете да го видите на тази страница:'
|
|
@@ -723,16 +706,9 @@ bg:
|
|
|
723
706
|
Администратор премахна вашия %{resource_type}, защото е докладван като %{report_reasons}.</br>
|
|
724
707
|
<i>%{resource_content}</i>
|
|
725
708
|
users:
|
|
726
|
-
profile_updated:
|
|
727
|
-
email_intro: Профилната <a href="%{resource_url}">страница</a> на %{name} (%{nickname}), който следвате е обновена.
|
|
728
|
-
email_outro: Получавате това известие, защото следвате %{nickname}. Може да прекратите известията чрез предната връзка.
|
|
729
|
-
email_subject: "%{nickname} обнови своя профил"
|
|
730
|
-
notification_title: Профилната <a href="%{resource_path}">страница</a> на %{name} (%{nickname}), който следвате е обновена.
|
|
731
709
|
user_officialized:
|
|
732
|
-
email_intro: Участник %{name} (%{nickname}) е официален.
|
|
733
710
|
email_outro: Получихте това известие, защото сте администратор на организацията.
|
|
734
711
|
email_subject: "%{name} е официализиран"
|
|
735
|
-
notification_title: Участник %{name} (%{nickname}) е официализиран.
|
|
736
712
|
export_mailer:
|
|
737
713
|
download_your_data_export:
|
|
738
714
|
download: Сваляне
|
|
@@ -927,7 +903,6 @@ bg:
|
|
|
927
903
|
create:
|
|
928
904
|
error: Разговора не започна. Опитайте по-късно.
|
|
929
905
|
error_modal:
|
|
930
|
-
close: Затвори прозореца
|
|
931
906
|
correct_errors: Моля, коригирайте грешките и опитайте отново.
|
|
932
907
|
intro: 'Имаше следните грешки с вашето съобщение:'
|
|
933
908
|
ok: ОК
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -553,7 +553,7 @@ ca-IT:
|
|
|
553
553
|
global:
|
|
554
554
|
amendments_enabled: Esmenes habilitades
|
|
555
555
|
comments_enabled: Comentaris habilitats
|
|
556
|
-
comments_max_length:
|
|
556
|
+
comments_max_length: Caràcters màxims per comentari
|
|
557
557
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
558
558
|
dummy_global_attribute1: Atribut de prova 1
|
|
559
559
|
dummy_global_attribute2: Atribut de prova 2
|
|
@@ -659,6 +659,13 @@ ca-IT:
|
|
|
659
659
|
all: Tots
|
|
660
660
|
filter_taxonomy_values:
|
|
661
661
|
all: Totes
|
|
662
|
+
delete_user_mailer:
|
|
663
|
+
delete:
|
|
664
|
+
body_1: El teu compte s'ha desactivat i ja no és accessible. Les teves dades personals estan programades per eliminar-les permanentment d'acord amb les nostres polítiques de retenció de dades.
|
|
665
|
+
body_2: Per raons de seguretat, es conservaran algunes dades relacionades amb la verificació; d'aquesta manera si creessis un compte nou i el tornes a verificar, es podria vincular l'autorització amb aquest compte nou.
|
|
666
|
+
greetings_html: Atentament,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
667
|
+
hello: Hola %{username},
|
|
668
|
+
subject: El teu compte ha estat eliminat
|
|
662
669
|
devise:
|
|
663
670
|
omniauth_registrations:
|
|
664
671
|
create:
|
|
@@ -872,13 +879,13 @@ ca-IT:
|
|
|
872
879
|
affected_user:
|
|
873
880
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho des d''aquesta pàgina:'
|
|
874
881
|
email_outro: Has rebut aquesta notificació perquè s'ha acceptat una esmena presentada a l'apartat "%{amendable_title}" que administres.
|
|
875
|
-
email_subject: Esmena acceptada
|
|
876
|
-
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{
|
|
882
|
+
email_subject: Esmena acceptada de %{emendation_author_name} per a %{amendable_title}
|
|
883
|
+
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_name}</a> ha estat acceptada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
877
884
|
follower:
|
|
878
885
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho en aquesta pàgina:'
|
|
879
886
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'esmena "%{amendable_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
880
|
-
email_subject: Esmena
|
|
881
|
-
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{
|
|
887
|
+
email_subject: Esmena de %{emendation_author_name} acceptada per a %{amendable_title}
|
|
888
|
+
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_name}</a> ha estat acceptada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
882
889
|
amendment_created:
|
|
883
890
|
affected_user:
|
|
884
891
|
email_intro: 'S''ha creat una nova esmena per a %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
|
@@ -894,29 +901,29 @@ ca-IT:
|
|
|
894
901
|
affected_user:
|
|
895
902
|
email_intro: 'Una esmena rebutjada per %{amendable_title} ha estat publicada com una nova %{amendable_type}. La pots veure des d''aquesta pàgina:'
|
|
896
903
|
email_outro: Has rebut aquesta notificació perquè s'ha promogut una esmena a l'apartat "%{amendable_title}" que administres.
|
|
897
|
-
email_subject: Una nova esmena feta per %{
|
|
898
|
-
notification_title: Una <a href="%{emendation_path}">esmena rebutjada</a> per <a href="%{amendable_path}">%{amendable_title}</a> ha estat publicada com un nou %{amendable_type} per <a href="%{emendation_author_path}">%{
|
|
904
|
+
email_subject: Una nova esmena feta per %{emendation_author_name} s'ha publicat com a nova %{amendable_type}
|
|
905
|
+
notification_title: Una <a href="%{emendation_path}">esmena rebutjada</a> per <a href="%{amendable_path}">%{amendable_title}</a> ha estat publicada com un nou %{amendable_type} per <a href="%{emendation_author_path}">%{emendation_author_name}</a>.
|
|
899
906
|
follower:
|
|
900
907
|
email_intro: 'Una esmena rebutjada per %{amendable_title} ha estat publicada com una nova %{amendable_type}. Pots veure-ho des d''aquesta pàgina:'
|
|
901
908
|
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
902
|
-
email_subject: S'ha publicat una esmena feta per %{
|
|
903
|
-
notification_title: Una <a href="%{emendation_path}">esmena rebutjada</a> per <a href="%{amendable_path}">%{amendable_title}</a> ha estat publicada com un nou %{amendable_type} per <a href="%{emendation_author_path}">%{
|
|
909
|
+
email_subject: S'ha publicat una esmena feta per %{emendation_author_name} com a nova %{amendable_type}
|
|
910
|
+
notification_title: Una <a href="%{emendation_path}">esmena rebutjada</a> per <a href="%{amendable_path}">%{amendable_title}</a> ha estat publicada com un nou %{amendable_type} per <a href="%{emendation_author_path}">%{emendation_author_name}</a>.
|
|
904
911
|
amendment_rejected:
|
|
905
912
|
affected_user:
|
|
906
913
|
email_intro: 'Una esmena s''ha rebutjat per %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
|
907
914
|
email_outro: Has rebut aquesta notificació perquè s'ha rebutjat una esmena a l'apartat "%{amendable_title}" que administres.
|
|
908
|
-
email_subject:
|
|
909
|
-
notification_title:
|
|
915
|
+
email_subject: L'esmena de %{emendation_author_name} a %{amendable_title} s'ha rebutjat
|
|
916
|
+
notification_title: S'ha rebutjat l'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_name}</a> per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
910
917
|
follower:
|
|
911
918
|
email_intro: 'S''ha rebutjat una esmena per %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
|
912
919
|
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
913
|
-
email_subject:
|
|
914
|
-
notification_title:
|
|
920
|
+
email_subject: L'esmena de %{emendation_author_name} a %{amendable_title} s'ha rebutjat
|
|
921
|
+
notification_title: S'ha rebutjat l'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_name}</a> per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
915
922
|
emendation_promoted:
|
|
916
923
|
follower:
|
|
917
924
|
email_intro: 'S''ha publicat una esmena per a %{amendable_title}. La pots veure en aquesta pàgina:'
|
|
918
925
|
email_outro: Has rebut aquesta notificació perquè és autora de %{amendable_title}.
|
|
919
|
-
email_subject: Una esmena de %{
|
|
926
|
+
email_subject: Una esmena de %{emendation_author_name} s'ha publicat com un nou %{amendable_type}
|
|
920
927
|
attachments:
|
|
921
928
|
attachment_created:
|
|
922
929
|
email_intro: 'S''ha afegit un nou document a %{resource_title}. Pots veure''l des d''aquesta pàgina:'
|
|
@@ -949,6 +956,18 @@ ca-IT:
|
|
|
949
956
|
notification_body: S'ha corregit la manera en que es fan servir els àlies per a que no n'hi hagi de duplicats, per fer-ho ja no es distingueix entre majúscules i minúscules.<br/>El teu àlies es va crear més tard que un altre d'igual, així que s'ha renombrat automàticament. Pots modificar el teu àlies des de la <a href="%{link_to_account_settings}">configuració del teu compte</a>.
|
|
950
957
|
notification_event:
|
|
951
958
|
notification_title: S'ha produït un esdeveniment a <a href="%{resource_path}">%{resource_title}</a>.
|
|
959
|
+
participatory_space:
|
|
960
|
+
member_added:
|
|
961
|
+
published:
|
|
962
|
+
email_intro: Se t'ha afegit com a membre a un espai de participació.
|
|
963
|
+
email_outro: Heu rebut aquesta notificació perquè una administradora us ha afegit a <a href="%{resource_url}">"%{resource_title}"</a>. El vostre perfil es mostrarà a la <a href="%{members_page}">llista de membres</a> d'aquest espai.<br> Si l'accés a aquest espai és restringit, hi podràs accedir sempre que hagis iniciat la teva sessió amb el teu compte.
|
|
964
|
+
email_subject: Ara tens accés a "%{resource_title}".
|
|
965
|
+
notification_title: Ara tens accés a <a href="%{resource_url}">"%{resource_title}"</a>.
|
|
966
|
+
unpublished:
|
|
967
|
+
email_intro: Se t'ha afegit com a membre a un espai de participació.
|
|
968
|
+
email_outro: Heu rebut aquesta notificació perquè una administradora us ha afegit a <a href="%{resource_url}">"%{resource_title}"</a>. Si l'accés a aquest espai és restringit, hi podràs accedir sempre que hagis iniciat la teva sessió amb el teu compte.
|
|
969
|
+
email_subject: Ara tens accés a "%{resource_title}".
|
|
970
|
+
notification_title: Ara tens accés a <a href="%{resource_url}">"%{resource_title}"</a>.
|
|
952
971
|
reports:
|
|
953
972
|
parent_hidden:
|
|
954
973
|
email_intro: |-
|
|
@@ -968,24 +987,24 @@ ca-IT:
|
|
|
968
987
|
Una administradora ha eliminat el teu %{resource_type} degut a que has estat reportada com a %{report_reasons}..</br>
|
|
969
988
|
<i>%{resource_content}</i>
|
|
970
989
|
resource_liked:
|
|
971
|
-
email_intro: '%{liker_name}
|
|
972
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{
|
|
973
|
-
email_subject: "%{
|
|
974
|
-
notification_title: <a href="%{
|
|
990
|
+
email_intro: '%{liker_name}, a qui segueixes, li acaba d''agradar: "%{resource_title}", que et pot resultar interessant. Revisa-la i contribueix:'
|
|
991
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{liker_name}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
992
|
+
email_subject: "%{liker_name} ha realitzat un nou \"m'agrada\""
|
|
993
|
+
notification_title: 'A <a href="%{liker_path}">%{liker_name}</a> li ha agradat la %{resource_type}: <a href="%{resource_path}">%{resource_title}</a>.'
|
|
975
994
|
resources:
|
|
976
995
|
soft_deleted:
|
|
977
996
|
notification_title: 'Una administradora ha eliminado tu %{resource_type}: "%{resource_title}".'
|
|
978
997
|
users:
|
|
979
998
|
profile_updated:
|
|
980
|
-
email_intro: La
|
|
981
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint
|
|
982
|
-
email_subject: "%{
|
|
983
|
-
notification_title:
|
|
999
|
+
email_intro: La <a href="%{resource_url}">pàgina de perfil</a> de %{name}, a qui estàs seguint, s'ha actualitzat.
|
|
1000
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{name}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
1001
|
+
email_subject: "En/na %{name} ha actualitzat el seu perfil"
|
|
1002
|
+
notification_title: La <a href="%{resource_path}">pàgina de perfil</a> de %{name}, a qui estàs seguint, s'ha actualitzat.
|
|
984
1003
|
user_officialized:
|
|
985
|
-
email_intro:
|
|
1004
|
+
email_intro: En/na participant %{name} ha estat oficialitzada.
|
|
986
1005
|
email_outro: Has rebut aquesta notificació perquè administres la plataforma.
|
|
987
1006
|
email_subject: "S'ha oficialitzat a %{name}"
|
|
988
|
-
notification_title:
|
|
1007
|
+
notification_title: En/na participant %{name} ha estat oficialitzada.
|
|
989
1008
|
export_mailer:
|
|
990
1009
|
download_your_data_export:
|
|
991
1010
|
click_button_html: Clica a l'enllaç següent per a descarregar les teves dades.<br/>El fitxer estarà disponible per a la seva descàrrega fins al %{date}.
|
|
@@ -1179,7 +1198,7 @@ ca-IT:
|
|
|
1179
1198
|
taxonomy_presenter:
|
|
1180
1199
|
not_found: 'No s''ha trobat la taxonomia a la base de dades (ID: %{id})'
|
|
1181
1200
|
machine_translations:
|
|
1182
|
-
automatic: traducció automàtica a %{locale_name}
|
|
1201
|
+
automatic: traducció automàtica a %{locale_name}
|
|
1183
1202
|
managed_users:
|
|
1184
1203
|
expired_session: La sessió actual d'administració d'una participant ha caducat.
|
|
1185
1204
|
map:
|
|
@@ -1215,7 +1234,6 @@ ca-IT:
|
|
|
1215
1234
|
create:
|
|
1216
1235
|
error: No s'ha iniciat la conversa. Torna-ho a provar més tard.
|
|
1217
1236
|
error_modal:
|
|
1218
|
-
close: Tanca la finestra
|
|
1219
1237
|
correct_errors: Si us plau, corregiu els errors i torneu-ho a intentar.
|
|
1220
1238
|
intro: 'Hi ha els següents errors al vostre missatge:'
|
|
1221
1239
|
ok: D'acord
|
|
@@ -1527,13 +1545,6 @@ ca-IT:
|
|
|
1527
1545
|
log_in: entra
|
|
1528
1546
|
never_logged_in: mai ha iniciat sessió
|
|
1529
1547
|
subject: Avís de compte inactiu
|
|
1530
|
-
removal_notification:
|
|
1531
|
-
body: El teu compte a %{organization_name} s'ha eliminat per inactivitat.
|
|
1532
|
-
greetings_html: |
|
|
1533
|
-
Atentament,<br>
|
|
1534
|
-
%{organization_name}
|
|
1535
|
-
hello: Benvolgut/da %{username},
|
|
1536
|
-
subject: Avís de compte inactiu
|
|
1537
1548
|
participatory_space:
|
|
1538
1549
|
pages:
|
|
1539
1550
|
user_profile:
|
|
@@ -1544,8 +1555,8 @@ ca-IT:
|
|
|
1544
1555
|
members: Membres
|
|
1545
1556
|
participatory_spaces:
|
|
1546
1557
|
show:
|
|
1547
|
-
restricted_space: Aquest és un espai restringit. Només
|
|
1548
|
-
transparent_space: Aquest és un espai restringit però transparent. Qualsevol pot veure'n el contingut, però només les membres hi poden participar.
|
|
1558
|
+
restricted_space: Aquest és un espai restringit. Només membres i administradores el poden veure i participar-hi.
|
|
1559
|
+
transparent_space: Aquest és un espai restringit però transparent. Qualsevol pot veure'n el contingut, però només les membres i administradores hi poden participar.
|
|
1549
1560
|
passwords:
|
|
1550
1561
|
update:
|
|
1551
1562
|
error: Hi ha hagut un problema en actualitzar la contrasenya.
|
data/config/locales/ca.yml
CHANGED
|
@@ -553,7 +553,7 @@ ca:
|
|
|
553
553
|
global:
|
|
554
554
|
amendments_enabled: Esmenes habilitades
|
|
555
555
|
comments_enabled: Comentaris habilitats
|
|
556
|
-
comments_max_length:
|
|
556
|
+
comments_max_length: Caràcters màxims per comentari
|
|
557
557
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
558
558
|
dummy_global_attribute1: Atribut de prova 1
|
|
559
559
|
dummy_global_attribute2: Atribut de prova 2
|
|
@@ -659,6 +659,13 @@ ca:
|
|
|
659
659
|
all: Tots
|
|
660
660
|
filter_taxonomy_values:
|
|
661
661
|
all: Totes
|
|
662
|
+
delete_user_mailer:
|
|
663
|
+
delete:
|
|
664
|
+
body_1: El teu compte s'ha desactivat i ja no és accessible. Les teves dades personals estan programades per eliminar-les permanentment d'acord amb les nostres polítiques de retenció de dades.
|
|
665
|
+
body_2: Per raons de seguretat, es conservaran algunes dades relacionades amb la verificació; d'aquesta manera si creessis un compte nou i el tornes a verificar, es podria vincular l'autorització amb aquest compte nou.
|
|
666
|
+
greetings_html: Atentament,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
667
|
+
hello: Hola %{username},
|
|
668
|
+
subject: El teu compte ha estat eliminat
|
|
662
669
|
devise:
|
|
663
670
|
omniauth_registrations:
|
|
664
671
|
create:
|
|
@@ -872,13 +879,13 @@ ca:
|
|
|
872
879
|
affected_user:
|
|
873
880
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho des d''aquesta pàgina:'
|
|
874
881
|
email_outro: Has rebut aquesta notificació perquè s'ha acceptat una esmena presentada a l'apartat "%{amendable_title}" que administres.
|
|
875
|
-
email_subject: Esmena acceptada
|
|
876
|
-
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{
|
|
882
|
+
email_subject: Esmena acceptada de %{emendation_author_name} per a %{amendable_title}
|
|
883
|
+
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_name}</a> ha estat acceptada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
877
884
|
follower:
|
|
878
885
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho en aquesta pàgina:'
|
|
879
886
|
email_outro: Has rebut aquesta notificació perquè estàs seguint l'esmena "%{amendable_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
880
|
-
email_subject: Esmena
|
|
881
|
-
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{
|
|
887
|
+
email_subject: Esmena de %{emendation_author_name} acceptada per a %{amendable_title}
|
|
888
|
+
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_name}</a> ha estat acceptada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
882
889
|
amendment_created:
|
|
883
890
|
affected_user:
|
|
884
891
|
email_intro: 'S''ha creat una nova esmena per a %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
|
@@ -894,29 +901,29 @@ ca:
|
|
|
894
901
|
affected_user:
|
|
895
902
|
email_intro: 'Una esmena rebutjada per %{amendable_title} ha estat publicada com una nova %{amendable_type}. La pots veure des d''aquesta pàgina:'
|
|
896
903
|
email_outro: Has rebut aquesta notificació perquè s'ha promogut una esmena a l'apartat "%{amendable_title}" que administres.
|
|
897
|
-
email_subject: Una nova esmena feta per %{
|
|
898
|
-
notification_title: Una <a href="%{emendation_path}">esmena rebutjada</a> per <a href="%{amendable_path}">%{amendable_title}</a> ha estat publicada com un nou %{amendable_type} per <a href="%{emendation_author_path}">%{
|
|
904
|
+
email_subject: Una nova esmena feta per %{emendation_author_name} s'ha publicat com a nova %{amendable_type}
|
|
905
|
+
notification_title: Una <a href="%{emendation_path}">esmena rebutjada</a> per <a href="%{amendable_path}">%{amendable_title}</a> ha estat publicada com un nou %{amendable_type} per <a href="%{emendation_author_path}">%{emendation_author_name}</a>.
|
|
899
906
|
follower:
|
|
900
907
|
email_intro: 'Una esmena rebutjada per %{amendable_title} ha estat publicada com una nova %{amendable_type}. Pots veure-ho des d''aquesta pàgina:'
|
|
901
908
|
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
902
|
-
email_subject: S'ha publicat una esmena feta per %{
|
|
903
|
-
notification_title: Una <a href="%{emendation_path}">esmena rebutjada</a> per <a href="%{amendable_path}">%{amendable_title}</a> ha estat publicada com un nou %{amendable_type} per <a href="%{emendation_author_path}">%{
|
|
909
|
+
email_subject: S'ha publicat una esmena feta per %{emendation_author_name} com a nova %{amendable_type}
|
|
910
|
+
notification_title: Una <a href="%{emendation_path}">esmena rebutjada</a> per <a href="%{amendable_path}">%{amendable_title}</a> ha estat publicada com un nou %{amendable_type} per <a href="%{emendation_author_path}">%{emendation_author_name}</a>.
|
|
904
911
|
amendment_rejected:
|
|
905
912
|
affected_user:
|
|
906
913
|
email_intro: 'Una esmena s''ha rebutjat per %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
|
907
914
|
email_outro: Has rebut aquesta notificació perquè s'ha rebutjat una esmena a l'apartat "%{amendable_title}" que administres.
|
|
908
|
-
email_subject:
|
|
909
|
-
notification_title:
|
|
915
|
+
email_subject: L'esmena de %{emendation_author_name} a %{amendable_title} s'ha rebutjat
|
|
916
|
+
notification_title: S'ha rebutjat l'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_name}</a> per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
910
917
|
follower:
|
|
911
918
|
email_intro: 'S''ha rebutjat una esmena per %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
|
912
919
|
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
913
|
-
email_subject:
|
|
914
|
-
notification_title:
|
|
920
|
+
email_subject: L'esmena de %{emendation_author_name} a %{amendable_title} s'ha rebutjat
|
|
921
|
+
notification_title: S'ha rebutjat l'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_name}</a> per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
915
922
|
emendation_promoted:
|
|
916
923
|
follower:
|
|
917
924
|
email_intro: 'S''ha publicat una esmena per a %{amendable_title}. La pots veure en aquesta pàgina:'
|
|
918
925
|
email_outro: Has rebut aquesta notificació perquè és autora de %{amendable_title}.
|
|
919
|
-
email_subject: Una esmena de %{
|
|
926
|
+
email_subject: Una esmena de %{emendation_author_name} s'ha publicat com un nou %{amendable_type}
|
|
920
927
|
attachments:
|
|
921
928
|
attachment_created:
|
|
922
929
|
email_intro: 'S''ha afegit un nou document a %{resource_title}. Pots veure''l des d''aquesta pàgina:'
|
|
@@ -949,6 +956,18 @@ ca:
|
|
|
949
956
|
notification_body: S'ha corregit la manera en que es fan servir els àlies per a que no n'hi hagi de duplicats, per fer-ho ja no es distingueix entre majúscules i minúscules.<br/>El teu àlies es va crear més tard que un altre d'igual, així que s'ha renombrat automàticament. Pots modificar el teu àlies des de la <a href="%{link_to_account_settings}">configuració del teu compte</a>.
|
|
950
957
|
notification_event:
|
|
951
958
|
notification_title: S'ha produït un esdeveniment a <a href="%{resource_path}">%{resource_title}</a>.
|
|
959
|
+
participatory_space:
|
|
960
|
+
member_added:
|
|
961
|
+
published:
|
|
962
|
+
email_intro: Se t'ha afegit com a membre a un espai de participació.
|
|
963
|
+
email_outro: Heu rebut aquesta notificació perquè una administradora us ha afegit a <a href="%{resource_url}">"%{resource_title}"</a>. El vostre perfil es mostrarà a la <a href="%{members_page}">llista de membres</a> d'aquest espai.<br> Si l'accés a aquest espai és restringit, hi podràs accedir sempre que hagis iniciat la teva sessió amb el teu compte.
|
|
964
|
+
email_subject: Ara tens accés a "%{resource_title}".
|
|
965
|
+
notification_title: Ara tens accés a <a href="%{resource_url}">"%{resource_title}"</a>.
|
|
966
|
+
unpublished:
|
|
967
|
+
email_intro: Se t'ha afegit com a membre a un espai de participació.
|
|
968
|
+
email_outro: Heu rebut aquesta notificació perquè una administradora us ha afegit a <a href="%{resource_url}">"%{resource_title}"</a>. Si l'accés a aquest espai és restringit, hi podràs accedir sempre que hagis iniciat la teva sessió amb el teu compte.
|
|
969
|
+
email_subject: Ara tens accés a "%{resource_title}".
|
|
970
|
+
notification_title: Ara tens accés a <a href="%{resource_url}">"%{resource_title}"</a>.
|
|
952
971
|
reports:
|
|
953
972
|
parent_hidden:
|
|
954
973
|
email_intro: |-
|
|
@@ -968,24 +987,24 @@ ca:
|
|
|
968
987
|
Una administradora ha eliminat el teu %{resource_type} degut a que has estat reportada com a %{report_reasons}..</br>
|
|
969
988
|
<i>%{resource_content}</i>
|
|
970
989
|
resource_liked:
|
|
971
|
-
email_intro: '%{liker_name}
|
|
972
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{
|
|
973
|
-
email_subject: "%{
|
|
974
|
-
notification_title: <a href="%{
|
|
990
|
+
email_intro: '%{liker_name}, a qui segueixes, li acaba d''agradar: "%{resource_title}", que et pot resultar interessant. Revisa-la i contribueix:'
|
|
991
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{liker_name}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
992
|
+
email_subject: "%{liker_name} ha realitzat un nou \"m'agrada\""
|
|
993
|
+
notification_title: 'A <a href="%{liker_path}">%{liker_name}</a> li ha agradat la %{resource_type}: <a href="%{resource_path}">%{resource_title}</a>.'
|
|
975
994
|
resources:
|
|
976
995
|
soft_deleted:
|
|
977
996
|
notification_title: 'Una administradora ha eliminado tu %{resource_type}: "%{resource_title}".'
|
|
978
997
|
users:
|
|
979
998
|
profile_updated:
|
|
980
|
-
email_intro: La
|
|
981
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint
|
|
982
|
-
email_subject: "%{
|
|
983
|
-
notification_title:
|
|
999
|
+
email_intro: La <a href="%{resource_url}">pàgina de perfil</a> de %{name}, a qui estàs seguint, s'ha actualitzat.
|
|
1000
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{name}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
|
1001
|
+
email_subject: "En/na %{name} ha actualitzat el seu perfil"
|
|
1002
|
+
notification_title: La <a href="%{resource_path}">pàgina de perfil</a> de %{name}, a qui estàs seguint, s'ha actualitzat.
|
|
984
1003
|
user_officialized:
|
|
985
|
-
email_intro:
|
|
1004
|
+
email_intro: En/na participant %{name} ha estat oficialitzada.
|
|
986
1005
|
email_outro: Has rebut aquesta notificació perquè administres la plataforma.
|
|
987
1006
|
email_subject: "S'ha oficialitzat a %{name}"
|
|
988
|
-
notification_title:
|
|
1007
|
+
notification_title: En/na participant %{name} ha estat oficialitzada.
|
|
989
1008
|
export_mailer:
|
|
990
1009
|
download_your_data_export:
|
|
991
1010
|
click_button_html: Clica a l'enllaç següent per a descarregar les teves dades.<br/>El fitxer estarà disponible per a la seva descàrrega fins al %{date}.
|
|
@@ -1215,7 +1234,6 @@ ca:
|
|
|
1215
1234
|
create:
|
|
1216
1235
|
error: No s'ha iniciat la conversa. Torna-ho a provar més tard.
|
|
1217
1236
|
error_modal:
|
|
1218
|
-
close: Tanca la finestra
|
|
1219
1237
|
correct_errors: Si us plau, corregiu els errors i torneu-ho a intentar.
|
|
1220
1238
|
intro: 'Hi ha els següents errors al vostre missatge:'
|
|
1221
1239
|
ok: D'acord
|
|
@@ -1527,13 +1545,6 @@ ca:
|
|
|
1527
1545
|
log_in: entra
|
|
1528
1546
|
never_logged_in: mai ha iniciat sessió
|
|
1529
1547
|
subject: Avís de compte inactiu
|
|
1530
|
-
removal_notification:
|
|
1531
|
-
body: El teu compte a %{organization_name} s'ha eliminat per inactivitat.
|
|
1532
|
-
greetings_html: |
|
|
1533
|
-
Atentament,<br>
|
|
1534
|
-
%{organization_name}
|
|
1535
|
-
hello: Benvolgut/da %{username},
|
|
1536
|
-
subject: Avís de compte inactiu
|
|
1537
1548
|
participatory_space:
|
|
1538
1549
|
pages:
|
|
1539
1550
|
user_profile:
|
|
@@ -1544,8 +1555,8 @@ ca:
|
|
|
1544
1555
|
members: Membres
|
|
1545
1556
|
participatory_spaces:
|
|
1546
1557
|
show:
|
|
1547
|
-
restricted_space: Aquest és un espai restringit. Només
|
|
1548
|
-
transparent_space: Aquest és un espai restringit però transparent. Qualsevol pot veure'n el contingut, però només les membres hi poden participar.
|
|
1558
|
+
restricted_space: Aquest és un espai restringit. Només membres i administradores el poden veure i participar-hi.
|
|
1559
|
+
transparent_space: Aquest és un espai restringit però transparent. Qualsevol pot veure'n el contingut, però només les membres i administradores hi poden participar.
|
|
1549
1560
|
passwords:
|
|
1550
1561
|
update:
|
|
1551
1562
|
error: Hi ha hagut un problema en actualitzar la contrasenya.
|
|
@@ -1873,7 +1884,7 @@ ca:
|
|
|
1873
1884
|
invite_collaborator:
|
|
1874
1885
|
subject: T'han convidat a col·laborar a %{organization}
|
|
1875
1886
|
invite_member:
|
|
1876
|
-
subject: T'han convidat a participar en un espai de participació privat a%{organization}
|
|
1887
|
+
subject: T'han convidat a participar en un espai de participació privat a %{organization}
|
|
1877
1888
|
organization_admin_invitation_instructions:
|
|
1878
1889
|
subject: T'han convidat a administrar %{organization}
|
|
1879
1890
|
password_change:
|