decidim-core 0.28.0 → 0.28.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/activity_cell.rb +2 -2
- data/app/cells/decidim/address/online.erb +27 -9
- data/app/cells/decidim/address/show.erb +27 -12
- data/app/cells/decidim/address_cell.rb +29 -0
- data/app/cells/decidim/authorization_modal/show.erb +8 -4
- data/app/cells/decidim/authorization_modal_cell.rb +1 -0
- data/app/cells/decidim/card_metadata_cell.rb +3 -3
- data/app/cells/decidim/coauthorships_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/menu_breadcrumb_last_activity_cell.rb +6 -0
- data/app/cells/decidim/content_blocks/participatory_space_hero_cell.rb +20 -4
- data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form/show.erb +8 -0
- data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form_cell.rb +13 -0
- data/app/cells/decidim/content_blocks/participatory_space_metadata_cell.rb +1 -1
- data/app/cells/decidim/footer_pages_cell.rb +3 -3
- data/app/cells/decidim/profile/tabs.erb +3 -2
- data/app/cells/decidim/tags_cell.rb +3 -1
- data/app/cells/decidim/upload_modal/modal.erb +2 -2
- data/app/commands/decidim/create_omniauth_registration.rb +1 -3
- data/app/commands/decidim/messaging/reply_to_conversation.rb +3 -0
- data/app/commands/decidim/messaging/start_conversation.rb +3 -0
- data/app/controllers/concerns/decidim/devise_authentication_methods.rb +36 -0
- data/app/controllers/concerns/decidim/paginable.rb +1 -1
- data/app/controllers/decidim/devise/omniauth_registrations_controller.rb +1 -22
- data/app/controllers/decidim/devise/sessions_controller.rb +1 -24
- data/app/events/decidim/welcome_notification_event.rb +6 -9
- data/app/helpers/decidim/application_helper.rb +0 -18
- data/app/helpers/decidim/cells_paginate_helper.rb +1 -1
- data/app/helpers/decidim/check_boxes_tree_helper.rb +6 -6
- data/app/helpers/decidim/layout_helper.rb +1 -1
- data/app/helpers/decidim/map_helper.rb +1 -1
- data/app/helpers/decidim/menu_helper.rb +2 -0
- data/app/helpers/decidim/newsletters_helper.rb +83 -16
- data/app/helpers/decidim/paginate_helper.rb +1 -1
- data/app/helpers/decidim/sanitize_helper.rb +9 -0
- data/app/helpers/decidim/social_share_button_helper.rb +1 -1
- data/app/helpers/decidim/user_profile_helper.rb +7 -2
- data/app/mailers/decidim/messaging/conversation_mailer.rb +3 -72
- data/app/models/decidim/push_notification_message.rb +38 -0
- data/app/packs/entrypoints/decidim_overrides.scss +2 -0
- data/app/packs/images/decidim/.keep +0 -0
- data/app/packs/src/decidim/a11y.js +1 -1
- data/app/packs/src/decidim/account_form.js +1 -1
- data/app/packs/src/decidim/data_consent/consent_manager.test.js +1 -1
- data/app/packs/src/decidim/data_consent/index.js +1 -1
- data/app/packs/src/decidim/direct_uploads/upload_field.js +1 -1
- data/app/packs/src/decidim/direct_uploads/upload_modal.js +10 -6
- data/app/packs/src/decidim/editor/extensions/hashtag/index.js +1 -1
- data/app/packs/src/decidim/editor/extensions/mention/index.js +1 -1
- data/app/packs/src/decidim/editor/extensions/video_embed/index.js +3 -0
- data/app/packs/src/decidim/editor/test/editor/create.test.js +1 -1
- data/app/packs/src/decidim/editor/test/extensions/bold.test.js +2 -3
- data/app/packs/src/decidim/editor/test/extensions/character_count.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/decidim_kit.test.js +2 -3
- data/app/packs/src/decidim/editor/test/extensions/dialog.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/emoji.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/hashtag.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/heading.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/image.test.js +4 -4
- data/app/packs/src/decidim/editor/test/extensions/indent.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/link.test.js +3 -3
- data/app/packs/src/decidim/editor/test/extensions/mention.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/ordered_list.test.js +2 -2
- data/app/packs/src/decidim/editor/test/extensions/video_embed.test.js +3 -3
- data/app/packs/src/decidim/editor/test/helpers.js +5 -4
- data/app/packs/src/decidim/editor/test/toolbar/basic.test.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/content.test.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/full.test.js +3 -3
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic.js +6 -6
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_block.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_formatting.js +1 -1
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_indent.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_link.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_list.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_basic_styling.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_content.js +7 -7
- data/app/packs/src/decidim/editor/test/toolbar/shared/behaves_like_content_styling.js +2 -2
- data/app/packs/src/decidim/editor/test/toolbar/shared/context.js +1 -1
- data/app/packs/src/decidim/editor/test/utilities/paste_transform.test.js +2 -2
- data/app/packs/src/decidim/external_domain_warning.js +13 -0
- data/app/packs/src/decidim/external_domain_warning.test.js +1 -1
- data/app/packs/src/decidim/external_link.js +48 -9
- data/app/packs/src/decidim/external_link.test.js +1 -1
- data/app/packs/src/decidim/focus_guard.js +8 -20
- data/app/packs/src/decidim/form_filter.component_for_testing.js +1 -1
- data/app/packs/src/decidim/form_filter.js +3 -3
- data/app/packs/src/decidim/geocoding/attach_input.js +1 -1
- data/app/packs/src/decidim/i18n.test.js +1 -1
- data/app/packs/src/decidim/index.js +4 -1
- data/app/packs/src/decidim/input_hashtags.js +1 -1
- data/app/packs/src/decidim/input_mentions.js +1 -1
- data/app/packs/src/decidim/input_multiple_mentions.js +1 -1
- data/app/packs/src/decidim/sw/index.js +3 -3
- data/app/packs/src/decidim/user_registrations.js +1 -1
- data/app/packs/src/decidim/vizzs/index.js +1 -1
- data/app/packs/stylesheets/decidim/_cards.scss +2 -2
- data/app/packs/stylesheets/decidim/_dropdown.scss +2 -2
- data/app/packs/stylesheets/decidim/_layout.scss +4 -4
- data/app/packs/stylesheets/decidim/application.scss +0 -3
- data/app/packs/stylesheets/decidim/decidim_application.scss +4 -0
- data/app/packs/stylesheets/decidim/legacy/leaflet.scss +88 -107
- data/app/presenters/decidim/admin_log/oauth_application_resource_presenter.rb +1 -1
- data/app/presenters/decidim/log/diff_presenter.rb +1 -1
- data/app/presenters/decidim/notification_to_mailer_presenter.rb +9 -0
- data/app/services/decidim/events_manager.rb +6 -0
- data/app/services/decidim/iframe_disabler.rb +4 -0
- data/app/services/decidim/push_notification_message_sender.rb +40 -0
- data/app/services/decidim/send_push_notification.rb +22 -8
- data/app/uploaders/decidim/background_image_uploader.rb +11 -0
- data/app/views/decidim/application/_collection.html.erb +2 -2
- data/app/views/decidim/application/_document.html.erb +1 -1
- data/app/views/decidim/devise/registrations/new.html.erb +2 -2
- data/app/views/decidim/notifications_digest_mailer/_email_content.html.erb +7 -0
- data/app/views/decidim/offline/show.html.erb +15 -9
- data/app/views/layouts/decidim/_head.html.erb +1 -0
- data/app/views/layouts/decidim/_js_configuration.html.erb +3 -1
- data/app/views/layouts/decidim/footer/_main_social_media_links.html.erb +5 -5
- data/app/views/layouts/decidim/footer/_mini.html.erb +2 -2
- data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +1 -1
- data/config/assets.rb +1 -0
- data/config/locales/ar.yml +63 -7
- data/config/locales/bg.yml +32 -2
- data/config/locales/ca.yml +29 -24
- data/config/locales/cs.yml +6 -2
- data/config/locales/de.yml +34 -29
- data/config/locales/el.yml +3 -6
- data/config/locales/en.yml +7 -2
- data/config/locales/es-MX.yml +9 -4
- data/config/locales/es-PY.yml +9 -4
- data/config/locales/es.yml +27 -22
- data/config/locales/eu.yml +22 -8
- data/config/locales/fi-plain.yml +8 -3
- data/config/locales/fi.yml +10 -5
- data/config/locales/fr-CA.yml +12 -7
- data/config/locales/fr.yml +12 -7
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +4 -2
- data/config/locales/he-IL.yml +1 -0
- data/config/locales/hu.yml +264 -7
- data/config/locales/id-ID.yml +0 -2
- data/config/locales/it.yml +2 -5
- data/config/locales/ja.yml +11 -6
- data/config/locales/lb.yml +2 -5
- data/config/locales/lt.yml +0 -10
- data/config/locales/lv.yml +0 -2
- data/config/locales/nl.yml +1 -2
- data/config/locales/no.yml +2 -5
- data/config/locales/pl.yml +581 -2
- data/config/locales/pt-BR.yml +202 -18
- data/config/locales/pt.yml +2 -5
- data/config/locales/ro-RO.yml +2 -5
- data/config/locales/ru.yml +7 -2
- data/config/locales/sk.yml +0 -2
- data/config/locales/sv.yml +24 -5
- data/config/locales/tr-TR.yml +3 -5
- data/config/locales/uk.yml +12 -2
- data/config/locales/zh-CN.yml +0 -5
- data/config/locales/zh-TW.yml +2 -10
- data/decidim-core.gemspec +90 -0
- data/lib/decidim/asset_router/storage.rb +2 -0
- data/lib/decidim/attribute_encryptor.rb +6 -4
- data/lib/decidim/attributes/time_with_zone.rb +1 -1
- data/lib/decidim/core/engine.rb +7 -6
- data/lib/decidim/core/seeds.rb +36 -32
- data/lib/decidim/core/test/factories.rb +296 -89
- data/lib/decidim/core/test/shared_examples/amendable/amendment_created_event_examples.rb +6 -26
- data/lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb +8 -26
- data/lib/decidim/core/test/shared_examples/has_attachment_collections.rb +8 -6
- data/lib/decidim/core/test/shared_examples/has_attachments.rb +8 -8
- data/lib/decidim/core/test/shared_examples/has_category.rb +27 -0
- data/lib/decidim/core/test/shared_examples/has_reference.rb +1 -1
- data/lib/decidim/core/test/shared_examples/has_space_in_mcell_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/map_examples.rb +3 -0
- data/lib/decidim/core/test/shared_examples/resource_endorsed_event_examples.rb +5 -2
- data/lib/decidim/core/test/shared_examples/resource_locator_presenter_examples.rb +134 -0
- data/lib/decidim/core/test/shared_examples/simple_event.rb +18 -2
- data/lib/decidim/core/test.rb +1 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/core.rb +1 -0
- data/lib/decidim/engine_router.rb +17 -4
- data/lib/decidim/events/base_event.rb +3 -3
- data/lib/decidim/events/simple_event.rb +3 -17
- data/lib/decidim/form_builder.rb +8 -2
- data/lib/decidim/has_category.rb +1 -1
- data/lib/decidim/has_conversations.rb +91 -0
- data/lib/decidim/participable.rb +17 -0
- data/lib/decidim/upgrade/wysiwyg_migrator.rb +7 -0
- data/lib/decidim/view_model.rb +1 -0
- data/lib/decidim/webpacker/webpack/.modernizrrc +9 -0
- data/lib/premailer/adapter/decidim.rb +5 -4
- data/lib/tasks/decidim_reminders_tasks.rake +1 -0
- data/lib/tasks/upgrade/decidim_fix_categorization.rake +15 -0
- metadata +27 -30
- data/app/views/decidim/searches/index.js.erb +0 -7
- data/config/brakeman.ignore +0 -37
- data/config/environment.rb +0 -3
@@ -1,5 +1,6 @@
|
|
1
1
|
<%
|
2
2
|
js_configs = {
|
3
|
+
api_path: decidim_api.root_path(locale: nil),
|
3
4
|
icons_path: Decidim.cors_enabled ? "" : asset_pack_path("media/images/remixicon.symbol.svg"),
|
4
5
|
messages: {
|
5
6
|
"selfxssWarning": I18n.t("decidim.security.selfxss_warning"),
|
@@ -24,7 +25,8 @@ character_messages = {
|
|
24
25
|
}
|
25
26
|
}
|
26
27
|
external_link_messages = {
|
27
|
-
"externalLink": t("decidim.accessibility.external_link")
|
28
|
+
"externalLink": t("decidim.accessibility.external_link"),
|
29
|
+
"opensInNewTab": t("decidim.accessibility.opens_in_new_tab")
|
28
30
|
}
|
29
31
|
validator_messages = {
|
30
32
|
"correctErrors": t("forms.correct_errors")
|
@@ -1,7 +1,7 @@
|
|
1
1
|
<ul class="flex justify-between md:justify-start gap-6 text-sm text-white hover:[&_a]:opacity-50">
|
2
2
|
<% if current_organization.twitter_handler.present? %>
|
3
3
|
<li>
|
4
|
-
<a target="_blank" data-external-link="
|
4
|
+
<a target="_blank" data-external-link="text-only" rel="noopener noreferrer" href="https://twitter.com/<%= current_organization.twitter_handler %>">
|
5
5
|
<span class="sr-only"><%= t("layouts.decidim.social_media_links.x", organization: translated_attribute(current_organization.name)) %></span>
|
6
6
|
<%= icon "twitter-x-line", class: "w-8 h-8 fill-current", "aria-label": "X" %>
|
7
7
|
</a>
|
@@ -9,7 +9,7 @@
|
|
9
9
|
<% end %>
|
10
10
|
<% if current_organization.facebook_handler.present? %>
|
11
11
|
<li>
|
12
|
-
<a target="_blank" data-external-link="
|
12
|
+
<a target="_blank" data-external-link="text-only" rel="noopener noreferrer" href="https://www.facebook.com/<%= current_organization.facebook_handler %>">
|
13
13
|
<span class="sr-only"><%= t("layouts.decidim.social_media_links.facebook", organization: translated_attribute(current_organization.name)) %></span>
|
14
14
|
<%= icon "facebook-fill", class: "w-8 h-8 fill-current", "aria-label": "Facebook" %>
|
15
15
|
</a>
|
@@ -17,7 +17,7 @@
|
|
17
17
|
<% end %>
|
18
18
|
<% if current_organization.instagram_handler.present? %>
|
19
19
|
<li>
|
20
|
-
<a target="_blank" data-external-link="
|
20
|
+
<a target="_blank" data-external-link="text-only" rel="noopener noreferrer" href="https://www.instagram.com/<%= current_organization.instagram_handler %>">
|
21
21
|
<span class="sr-only"><%= t("layouts.decidim.social_media_links.instagram", organization: translated_attribute(current_organization.name)) %></span>
|
22
22
|
<%= icon "instagram-line", class: "w-8 h-8 fill-current", "aria-label": "Instagram" %>
|
23
23
|
</a>
|
@@ -25,7 +25,7 @@
|
|
25
25
|
<% end %>
|
26
26
|
<% if current_organization.youtube_handler.present? %>
|
27
27
|
<li>
|
28
|
-
<a target="_blank" data-external-link="
|
28
|
+
<a target="_blank" data-external-link="text-only" rel="noopener noreferrer" href="https://www.youtube.com/<%= current_organization.youtube_handler %>">
|
29
29
|
<span class="sr-only"><%= t("layouts.decidim.social_media_links.youtube", organization: translated_attribute(current_organization.name)) %></span>
|
30
30
|
<%= icon "youtube-line", class: "w-8 h-8 fill-current", "aria-label": "Youtube" %>
|
31
31
|
</a>
|
@@ -33,7 +33,7 @@
|
|
33
33
|
<% end %>
|
34
34
|
<% if current_organization.github_handler.present? %>
|
35
35
|
<li>
|
36
|
-
<a target="_blank" data-external-link="
|
36
|
+
<a target="_blank" data-external-link="text-only" rel="noopener noreferrer" href="https://www.github.com/<%= current_organization.github_handler %>">
|
37
37
|
<span class="sr-only"><%= t("layouts.decidim.social_media_links.github", organization: translated_attribute(current_organization.name)) %></span>
|
38
38
|
<%= icon "github-fill", class: "w-8 h-8 fill-current", "aria-label": "Github" %>
|
39
39
|
</a>
|
@@ -1,14 +1,14 @@
|
|
1
1
|
<div class="mini-footer">
|
2
2
|
<div class="mini-footer__content">
|
3
3
|
<div>
|
4
|
-
<a rel="decidim noopener noreferrer" href="https://decidim.org/" target="_blank" data-external-link="
|
4
|
+
<a rel="decidim noopener noreferrer" href="https://decidim.org/" target="_blank" data-external-link="text-only">
|
5
5
|
<%= image_pack_tag("media/images/decidim-logo.svg", alt: t("layouts.decidim.footer.decidim_logo"), class: "max-h-8 block") %>
|
6
6
|
</a>
|
7
7
|
<div class="text-xs mt-2 [&_a]:underline">
|
8
8
|
<%= t("layouts.decidim.footer.made_with_open_source").html_safe %>
|
9
9
|
</div>
|
10
10
|
</div>
|
11
|
-
<a class="flex gap-1 hover:opacity-50" rel="license noopener noreferrer" href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank" data-external-link="
|
11
|
+
<a class="flex gap-1 hover:opacity-50" rel="license noopener noreferrer" href="http://creativecommons.org/licenses/by-sa/4.0/" target="_blank" data-external-link="text-only">
|
12
12
|
<span class="sr-only"><%= t("layouts.decidim.footer.cc_by_license") %></span>
|
13
13
|
<%= icon "creative-commons-line", class: "w-6 h-6 fill-current" %>
|
14
14
|
<%= icon "creative-commons-by-line", class: "w-6 h-6 fill-current" %>
|
@@ -17,7 +17,7 @@
|
|
17
17
|
</span>
|
18
18
|
<% if dropdown_item.present? %>
|
19
19
|
<button id="secondary-dropdown-trigger-mobile" data-component="dropdown" data-hover="true" data-target="secondary-dropdown-menu-mobile">
|
20
|
-
<%= icon "arrow-down-s-line", class: "flex-none w-6 h-6 fill-current"
|
20
|
+
<%= icon "arrow-down-s-line", class: "flex-none w-6 h-6 fill-current" %><span class="sr-only"><%= t("layouts.decidim.header.main_menu") %></span>
|
21
21
|
</button>
|
22
22
|
<% end %>
|
23
23
|
<% if content_for?(:participatory_space_mobile_actions) %>
|
data/config/assets.rb
CHANGED
@@ -4,6 +4,7 @@ base_path = File.expand_path("..", __dir__)
|
|
4
4
|
|
5
5
|
Decidim::Webpacker.register_path("#{base_path}/app/packs")
|
6
6
|
Decidim::Webpacker.register_entrypoints(
|
7
|
+
decidim_overrides: "#{base_path}/app/packs/entrypoints/decidim_overrides.scss",
|
7
8
|
decidim_core: "#{base_path}/app/packs/entrypoints/decidim_core.js",
|
8
9
|
decidim_sw: "#{base_path}/app/packs/entrypoints/decidim_sw.js",
|
9
10
|
decidim_conference_diploma: "#{base_path}/app/packs/entrypoints/decidim_conference_diploma.js",
|
data/config/locales/ar.yml
CHANGED
@@ -92,9 +92,7 @@ ar:
|
|
92
92
|
'true': 'نعم'
|
93
93
|
carrierwave:
|
94
94
|
errors:
|
95
|
-
file_resolution_too_large: دقة الملف أكبر من المسموح به
|
96
95
|
file_size_too_large: حجم الملف أكبر من المسموح به
|
97
|
-
not_inside_organization: لم يتم إرفاق الملف بأي منظمة
|
98
96
|
date:
|
99
97
|
formats:
|
100
98
|
decidim_short: "%d/%m/%Y"
|
@@ -320,11 +318,13 @@ ar:
|
|
320
318
|
document:
|
321
319
|
download: نزّل الملف
|
322
320
|
documents:
|
321
|
+
documents: المستندات
|
323
322
|
related_documents: الوثائق ذات الصلة
|
324
323
|
photo:
|
325
324
|
alt: صورة الوسائط
|
326
325
|
title: الصورة
|
327
326
|
photos:
|
327
|
+
photos: الصور
|
328
328
|
related_photos: الصور ذات الصلة
|
329
329
|
author:
|
330
330
|
avatar: 'الصورة الرمزية: %{name}'
|
@@ -464,8 +464,6 @@ ar:
|
|
464
464
|
description: الوصف
|
465
465
|
footer_sub_hero:
|
466
466
|
name: تذييل البطل الفرعي راية
|
467
|
-
hero:
|
468
|
-
name: صورة البطل
|
469
467
|
hero_settings_form:
|
470
468
|
background_image: الصورة الخلفية
|
471
469
|
welcome_text: نص الترحيب
|
@@ -487,6 +485,10 @@ ar:
|
|
487
485
|
view_all: عرض الكل
|
488
486
|
metrics:
|
489
487
|
name: مقاييس المنظمة
|
488
|
+
participatory_space_stats:
|
489
|
+
name: الإحصائيات
|
490
|
+
social_networks_metadata:
|
491
|
+
name: الشبكات الاجتماعية
|
490
492
|
static_page:
|
491
493
|
section:
|
492
494
|
name: قسم
|
@@ -516,6 +518,7 @@ ar:
|
|
516
518
|
newsletter_title: الاتصال إذن
|
517
519
|
sign_up: انشئ حسابًا
|
518
520
|
subtitle: اشترك للمشاركة في المناقشات ودعم المقترحات.
|
521
|
+
terms: شروط الخدمة
|
519
522
|
tos_agreement: بالتسجيل فإنك توافق على %{link}.
|
520
523
|
tos_title: شروط الخدمة
|
521
524
|
username_help: الاسم العام الذي يظهر في مشاركاتك. بهدف ضمان عدم الكشف عن هويته ، يمكن أن يكون أي اسم.
|
@@ -531,6 +534,11 @@ ar:
|
|
531
534
|
title: الإخطارات الإخبارية
|
532
535
|
omniauth_buttons:
|
533
536
|
or: أو
|
537
|
+
password_fields:
|
538
|
+
hidden_password: كلمة المرور الخاصة بك مخفية
|
539
|
+
hide_password: إخفاء كلمة المرور
|
540
|
+
show_password: إظهار كلمة المرور
|
541
|
+
placeholder_email: hi@example.org
|
534
542
|
doorkeeper:
|
535
543
|
authorizations:
|
536
544
|
new:
|
@@ -719,6 +727,7 @@ ar:
|
|
719
727
|
notification_title: تم إضفاء الطابع الرسمي على المشارك %{name} (%{nickname}).
|
720
728
|
export_mailer:
|
721
729
|
download_your_data_export:
|
730
|
+
click_button: 'انقر فوق الرابط التالي لتحميل بياناتك.<br/>الملف سيكون متاحا حتى %{date}.<br/>ستحتاج إلى <a href="https://www.7-zip.org/">7-Zip</a> (للويندوز)، <a href="https://www.keka.io/en/">Keka</a> (لماكوس) أو <a href="https://peazip.github.io">PeaZip</a> (للينوكس) لفتحه. كلمة المرور: %{password}'
|
722
731
|
download: تحميل
|
723
732
|
export:
|
724
733
|
ready: يرجى الاطلاع على نسخة مضغوطة من التصدير.
|
@@ -773,6 +782,7 @@ ar:
|
|
773
782
|
file_help:
|
774
783
|
file:
|
775
784
|
explanation: 'إرشادات الملف:'
|
785
|
+
message_1: يجب أن تكون صورة أو وثيقة.
|
776
786
|
message_2: بالنسبة للصور، يُفضل استخدام صور بالوضع العرضي، تقوم الخدمة باقتصاص الصورة.
|
777
787
|
icon:
|
778
788
|
explanation: 'إرشادات للأيقونة:'
|
@@ -885,6 +895,7 @@ ar:
|
|
885
895
|
all: جميع أنواع النشاط
|
886
896
|
index:
|
887
897
|
last_activity: النشاط الاخير
|
898
|
+
name: الأنشطة الأخيرة
|
888
899
|
links:
|
889
900
|
invalid_url: URL غير صالح
|
890
901
|
warning:
|
@@ -1103,11 +1114,13 @@ ar:
|
|
1103
1114
|
register: تسجيل
|
1104
1115
|
hero:
|
1105
1116
|
participate: مشاركة
|
1117
|
+
participate_title: المشاركة في مسارات المنصة
|
1106
1118
|
welcome: مرحبًا بكم على %{organization}!
|
1107
1119
|
statistics:
|
1108
1120
|
headline: الحالة الحالية لـ %{organization}
|
1109
1121
|
sub_hero:
|
1110
1122
|
register: تسجيل
|
1123
|
+
register_title: قم بالتسجيل لإنشاء حساب
|
1111
1124
|
index:
|
1112
1125
|
standalone_pages: صفحات
|
1113
1126
|
subheading: انتقل من خلال صفحات المساعدة من %{name}
|
@@ -1117,6 +1130,9 @@ ar:
|
|
1117
1130
|
metrics:
|
1118
1131
|
headline: المشاركة في الأرقام
|
1119
1132
|
link: عرض جميع الإحصاءات
|
1133
|
+
terms_of_service:
|
1134
|
+
form:
|
1135
|
+
agreement: أوافق على هذه الشروط
|
1120
1136
|
participatory_space_private_users:
|
1121
1137
|
not_allowed: غير مسموح لك بمشاهدة هذا المحتوى
|
1122
1138
|
profile:
|
@@ -1143,6 +1159,8 @@ ar:
|
|
1143
1159
|
edit_user_group: تعديل الملف الشخصي للمجموعة
|
1144
1160
|
invite_user: دعوة مشارك
|
1145
1161
|
join_user_group: طلب الانضمام للمجموعة
|
1162
|
+
leave_user_group: مغادرة الفريق
|
1163
|
+
manage_user_group: إدارة الفريق
|
1146
1164
|
manage_user_group_admins: إدارة المدراء
|
1147
1165
|
manage_user_group_users: إدارة الاعضاء
|
1148
1166
|
message: الرسالة
|
@@ -1194,12 +1212,14 @@ ar:
|
|
1194
1212
|
scopes_picker_input:
|
1195
1213
|
select_scope: 'يرجى تحديد نطاق (حالياً: %{current})'
|
1196
1214
|
search:
|
1215
|
+
name: البحث
|
1197
1216
|
results: نتائج البحث
|
1198
1217
|
results_found_for_term: '%{count} نتائج البحث: "%{term}"'
|
1199
1218
|
term_input_placeholder: بحث
|
1200
1219
|
searches:
|
1201
1220
|
filters:
|
1202
1221
|
jump_to: 'اقفز إلى:'
|
1222
|
+
search: البحث
|
1203
1223
|
state:
|
1204
1224
|
active: نشيط
|
1205
1225
|
all: الكل
|
@@ -1207,6 +1227,7 @@ ar:
|
|
1207
1227
|
past: الماضي
|
1208
1228
|
filters_small_view:
|
1209
1229
|
filter: منقي
|
1230
|
+
filter_and_search: التصفية والبحث
|
1210
1231
|
filter_by: مصنف بواسطة
|
1211
1232
|
results:
|
1212
1233
|
view_all: عرض الكل (%{count})
|
@@ -1248,6 +1269,7 @@ ar:
|
|
1248
1269
|
floating_help:
|
1249
1270
|
help: المساعدة
|
1250
1271
|
login_modal:
|
1272
|
+
please_log_in: برجى تسجيل الدخول
|
1251
1273
|
sign_up: انشئ حسابًا
|
1252
1274
|
mentions_modal:
|
1253
1275
|
remove_recipient: إزالة المستلم %{name}
|
@@ -1433,6 +1455,8 @@ ar:
|
|
1433
1455
|
links:
|
1434
1456
|
back: الى الخلف
|
1435
1457
|
forgot_your_password: نسيت رقمك السري؟
|
1458
|
+
log_in: تسجيل الدخول
|
1459
|
+
log_in_with_provider: تسجيل الدخول باستخدام %{provider}
|
1436
1460
|
sign_up: انشئ حسابًا
|
1437
1461
|
minimum_password_length:
|
1438
1462
|
zero: "(%{count} حرف كحد أدنى)"
|
@@ -1449,20 +1473,41 @@ ar:
|
|
1449
1473
|
doorkeeper:
|
1450
1474
|
scopes:
|
1451
1475
|
public: معلوماتك العامة.
|
1476
|
+
editor:
|
1477
|
+
extensions:
|
1478
|
+
link:
|
1479
|
+
bubbleMenu:
|
1480
|
+
edit: تعديل
|
1481
|
+
remove: حذف
|
1482
|
+
url: العنوان الشبكي
|
1483
|
+
hrefLabel: رابط URL
|
1484
|
+
targetLabel: الهدف
|
1485
|
+
targets:
|
1486
|
+
blank: لسان جديد
|
1487
|
+
videoEmbed:
|
1488
|
+
titleLabel: العنوان
|
1489
|
+
urlLabel: الرابط التشعبي للفيديو
|
1490
|
+
inputDialog:
|
1491
|
+
buttons:
|
1492
|
+
cancel: إلغاء
|
1493
|
+
remove: حذف
|
1494
|
+
save: حفظ
|
1495
|
+
close: اغلاق النموذج
|
1496
|
+
toolbar:
|
1497
|
+
control:
|
1498
|
+
blockquote: اقتباس
|
1499
|
+
bold: خط غليظ
|
1452
1500
|
emojis:
|
1453
1501
|
button: إضافة Emoji
|
1454
1502
|
categories:
|
1455
1503
|
activities: أنشطة
|
1456
|
-
animals-nature: الحيوانات والطبيعة
|
1457
1504
|
custom: طباع
|
1458
1505
|
flags: الأعلام
|
1459
|
-
food-drink: الطعام والشراب
|
1460
1506
|
objects: أشياء
|
1461
1507
|
people-body: أشخاص و أجسام
|
1462
1508
|
recents: تم استخدامه مؤخراً
|
1463
1509
|
smileys-emotion: وجوه تعبيرية (Smileys) و عواطف
|
1464
1510
|
symbols: الرموز
|
1465
|
-
travel-places: الأماكن والسفر
|
1466
1511
|
error:
|
1467
1512
|
load: فشل تحميل الرموز التعبيرية
|
1468
1513
|
recents:
|
@@ -1512,6 +1557,8 @@ ar:
|
|
1512
1557
|
timestamp_error_message: آسف ، كان ذلك سريعًا جدًا! يرجى إعادة تقديم.
|
1513
1558
|
layouts:
|
1514
1559
|
decidim:
|
1560
|
+
announcements:
|
1561
|
+
view_more: المزيد من المعلومات
|
1515
1562
|
data_consent:
|
1516
1563
|
details:
|
1517
1564
|
columns:
|
@@ -1567,10 +1614,15 @@ ar:
|
|
1567
1614
|
cc_by_license: رخصة المشاع الإبداعي
|
1568
1615
|
data_consent_settings: إعدادات ملفات تعريف الارتباط
|
1569
1616
|
decidim_logo: شعار Decidim
|
1617
|
+
decidim_title: Decidim
|
1570
1618
|
download_open_data: تحميل ملفات البيانات المفتوحة
|
1619
|
+
log_in: تسجيل الدخول
|
1571
1620
|
made_with_open_source: موقع تم إنشاؤه <a target="_blank" href="https://github.com/decidim/decidim">بالبرمجيات الحرة</a>.
|
1621
|
+
resources: الموارد
|
1572
1622
|
sign_up: انشئ حسابًا
|
1623
|
+
terms_and_conditions: الشروط والأحكام
|
1573
1624
|
header:
|
1625
|
+
log_in: تسجيل الدخول
|
1574
1626
|
main_menu: القائمة الرئيسية
|
1575
1627
|
user_menu: قائمة المستخدم
|
1576
1628
|
impersonation_warning:
|
@@ -1590,11 +1642,14 @@ ar:
|
|
1590
1642
|
timeout_modal:
|
1591
1643
|
body: لقد كنت غير نشط لمدة %{minutes} دقائق. إذا استمريت في كونك غير نشط، سيتم تسجيل خروجك تلقائيًا من أجل الأمان الخاص بك.
|
1592
1644
|
continue_session: متابعة الجلسة
|
1645
|
+
log_out: الخروج
|
1593
1646
|
title: هل ترغب في متابعة جلستك؟
|
1594
1647
|
user_menu:
|
1595
1648
|
account: 'حساب المستخدم: %{name}'
|
1596
1649
|
admin_dashboard: لوحة القيادة الادارية
|
1650
|
+
configuration: الإعدادات
|
1597
1651
|
conversations: المحادثات
|
1652
|
+
log_out: الخروج
|
1598
1653
|
notifications: إخطارات
|
1599
1654
|
profile: حسابي
|
1600
1655
|
public_profile: ملفي الشخصي العام
|
@@ -1606,6 +1661,7 @@ ar:
|
|
1606
1661
|
my_data: بياناتي
|
1607
1662
|
my_interests: اهتماماتي
|
1608
1663
|
notifications_settings: إعدادات الإخطارات
|
1664
|
+
profile: الملف الشخصي
|
1609
1665
|
title: إعدادات المشارك
|
1610
1666
|
user_groups: المجموعات
|
1611
1667
|
locale:
|
data/config/locales/bg.yml
CHANGED
@@ -58,6 +58,9 @@ bg:
|
|
58
58
|
booleans:
|
59
59
|
'false': 'Не'
|
60
60
|
'true': 'Да'
|
61
|
+
carrierwave:
|
62
|
+
errors:
|
63
|
+
file_size_too_large: Размерът на файла е твърде голям
|
61
64
|
date:
|
62
65
|
formats:
|
63
66
|
decidim_short: "%d/%m/%Y"
|
@@ -311,8 +314,6 @@ bg:
|
|
311
314
|
content_blocks:
|
312
315
|
footer_sub_hero:
|
313
316
|
name: Долен колонтитул на под-геройския банер
|
314
|
-
hero:
|
315
|
-
name: Изображение на героя
|
316
317
|
hero_settings_form:
|
317
318
|
background_image: Фоново изображение
|
318
319
|
welcome_text: Поздравителен текст
|
@@ -505,6 +506,8 @@ bg:
|
|
505
506
|
email_outro: Получавате това известие, защото сте администратор на платформата.
|
506
507
|
email_subject: Група от участници обнови профила си
|
507
508
|
notification_title: Групата %{user_group_name} обнови профила си, което я прави "непроверена". Проверете я на <a href="%{groups_admin_path}">админ панел</a>.
|
509
|
+
nickname_event:
|
510
|
+
notification_body: Коригирахме начина, по който се използват прякорите, така че да няма дубликати, и затова премахнахме правилото за отнасящо се към главни и малки букви. <br/> Вашият псевдоним е създаден след друг със същото име, така че автоматично го преименувахме. Можете да го промените от <a href="%{link_to_account_settings}">настройките на вашия акаунт</a>.
|
508
511
|
notification_event:
|
509
512
|
notification_title: Настъпи събитие в <a href="%{resource_path}">%{resource_title}</a>.
|
510
513
|
resource_endorsed:
|
@@ -546,6 +549,7 @@ bg:
|
|
546
549
|
create:
|
547
550
|
button: Следвай
|
548
551
|
error: Възникна проблем със следването на този ресурс.
|
552
|
+
participatory_space: Следвате <span class="show-for-sr">%{resource_name}</span>
|
549
553
|
destroy:
|
550
554
|
button: Спри следването
|
551
555
|
error: Възникна проблем с отказа от следване на този ресурс.
|
@@ -554,6 +558,11 @@ bg:
|
|
554
558
|
decidim/user:
|
555
559
|
password: Паролата е твърде къса.
|
556
560
|
password_confirmation: Паролата и потвърждението на паролата трябва да съвпадат.
|
561
|
+
file_help:
|
562
|
+
file:
|
563
|
+
message_2: Относно изображенията, препотъчваме използването на пейзажно-ориентирани изображения, системата изрязва изображението (при портретна ориентация).
|
564
|
+
image:
|
565
|
+
message_1: За предпочитане пейзажно-ориентирано изображение, което няма текст.
|
557
566
|
gamification:
|
558
567
|
all_badges_link: Виж всички достъпни значки.
|
559
568
|
badges:
|
@@ -897,6 +906,9 @@ bg:
|
|
897
906
|
share_link: Сподели връзка
|
898
907
|
statistics:
|
899
908
|
comments_count: Коментари
|
909
|
+
user_activity:
|
910
|
+
index:
|
911
|
+
no_activities_warning: Този участник все още няма активности.
|
900
912
|
user_contact_disabled: Този участник не приема директни съобщения.
|
901
913
|
user_conversations:
|
902
914
|
create:
|
@@ -927,6 +939,7 @@ bg:
|
|
927
939
|
versions:
|
928
940
|
resource_version:
|
929
941
|
of_versions: "(от %{number})"
|
942
|
+
see_other_versions: виж други версии
|
930
943
|
version: Версия %{number}
|
931
944
|
versions_list_item:
|
932
945
|
show:
|
@@ -1042,6 +1055,23 @@ bg:
|
|
1042
1055
|
doorkeeper:
|
1043
1056
|
scopes:
|
1044
1057
|
public: Вашата публична информация.
|
1058
|
+
emojis:
|
1059
|
+
categories:
|
1060
|
+
activities: Активности
|
1061
|
+
people-body: Хора и тяло
|
1062
|
+
recents: Наскоро използвани
|
1063
|
+
smileys-emotion: Усмивки и емоции
|
1064
|
+
error:
|
1065
|
+
load: Проблем при зареждане на емотиконки
|
1066
|
+
recents:
|
1067
|
+
clear: Изтриване на последните емотиконки
|
1068
|
+
none: Все още не сте избрали имотиконки.
|
1069
|
+
retry: Опитайте отново
|
1070
|
+
search:
|
1071
|
+
_: Търсете имотиконки...
|
1072
|
+
clear: Изчисти търсенето
|
1073
|
+
error: Проблем при търсене на имотиконки
|
1074
|
+
not_found: Няма намерени резултати
|
1045
1075
|
errors:
|
1046
1076
|
messages:
|
1047
1077
|
confirmation_period_expired: трябва Ви потвърдят в рамките на %{period}, моля заявете отново
|
data/config/locales/ca.yml
CHANGED
@@ -80,7 +80,7 @@ ca:
|
|
80
80
|
'true': 'Sí'
|
81
81
|
carrierwave:
|
82
82
|
errors:
|
83
|
-
file_cannot_be_processed: No s'ha pogut
|
83
|
+
file_cannot_be_processed: No s'ha pogut processar el fitxer
|
84
84
|
file_resolution_too_large: La resolució de l'arxiu és massa gran
|
85
85
|
file_size_too_large: La mida del fitxer és massa gran
|
86
86
|
not_inside_organization: L'arxiu no està relacionat amb cap organització
|
@@ -144,6 +144,7 @@ ca:
|
|
144
144
|
external_link: Enllaç extern
|
145
145
|
front_page_link: Anar a la pàgina principal
|
146
146
|
logo: "Logo oficial de %{organization}"
|
147
|
+
opens_in_new_tab: Obrir en una pestanya nova
|
147
148
|
skip_button: Vés al contingut principal
|
148
149
|
account:
|
149
150
|
blocked: Aquest compte ha estat bloquejat degut a una violació dels termes i condicions d'ús
|
@@ -278,7 +279,7 @@ ca:
|
|
278
279
|
user_moderation:
|
279
280
|
unreport: "%{user_name} ha desfet el report %{resource_type} - %{unreported_user_name}"
|
280
281
|
admin_terms_of_service:
|
281
|
-
default_body: "<h2>TERMES I CONDICIONS D'ÚS DEL SERVEI D'ADMINISTRACIÓ</h2><p>Donem per fet que has rebut l'habitual explicació per part del Servei d'Administració general de la plataforma. En general es redueix a aquestes tres coses:</p><ol><li>Respecta la privadesa d'altri.</li><li>Pensa abans de fer clic.</li><li>A un gran poder
|
282
|
+
default_body: "<h2>TERMES I CONDICIONS D'ÚS DEL SERVEI D'ADMINISTRACIÓ</h2><p>Donem per fet que has rebut l'habitual explicació per part del Servei d'Administració general de la plataforma. En general es redueix a aquestes tres coses:</p><ol><li>Respecta la privadesa d'altri.</li><li>Pensa abans de fer clic.</li><li>A un gran poder li correspon gran responsabilitat.</li></ol>"
|
282
283
|
alert:
|
283
284
|
dismiss: Descartar notificació
|
284
285
|
amendments:
|
@@ -512,7 +513,7 @@ ca:
|
|
512
513
|
global_menu:
|
513
514
|
name: Menú global
|
514
515
|
hero:
|
515
|
-
name: Imatge
|
516
|
+
name: Imatge principal i botó d'acció
|
516
517
|
hero_settings_form:
|
517
518
|
background_image: Imatge de fons
|
518
519
|
welcome_text: Text de benvinguda
|
@@ -689,29 +690,29 @@ ca:
|
|
689
690
|
amendment_accepted:
|
690
691
|
affected_user:
|
691
692
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho des d''aquesta pàgina:'
|
692
|
-
email_outro: Has rebut aquesta notificació perquè
|
693
|
+
email_outro: Has rebut aquesta notificació perquè s'ha acceptat una esmena presentada a l'apartat "%{amendable_title}" que administres.
|
693
694
|
email_subject: Esmena acceptada per %{amendable_title} a %{emendation_author_nickname}
|
694
695
|
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha estat acceptada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
695
696
|
follower:
|
696
697
|
email_intro: 'S''ha acceptat una esmena per %{amendable_title}. Pots veure-ho en aquesta pàgina:'
|
697
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
698
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'esmena "%{amendable_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
698
699
|
email_subject: Esmena acceptada per %{amendable_title} de %{emendation_author_nickname}
|
699
700
|
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha estat acceptada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
700
701
|
amendment_created:
|
701
702
|
affected_user:
|
702
703
|
email_intro: 'S''ha creat una nova esmena per a %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
703
|
-
email_outro: Has rebut aquesta notificació perquè
|
704
|
+
email_outro: Has rebut aquesta notificació perquè s'ha presentat una esmena a l'apartat "%{amendable_title}" que administres.
|
704
705
|
email_subject: Nova esmena per a %{amendable_title}
|
705
706
|
notification_title: S'ha creat una nova esmena per a <a href="%{amendable_path}">%{amendable_title}</a>.
|
706
707
|
follower:
|
707
708
|
email_intro: 'S''ha creat una nova esmena per a %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
708
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{amendable_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
709
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'esmena "%{amendable_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
709
710
|
email_subject: Nova esmena per a %{amendable_title}
|
710
711
|
notification_title: S'ha creat una nova esmena per a <a href="%{amendable_path}">%{amendable_title}</a>.
|
711
712
|
amendment_promoted:
|
712
713
|
affected_user:
|
713
714
|
email_intro: 'Una esmena rebutjada per %{amendable_title} ha estat publicada com una nova %{amendable_type}. La pots veure des d''aquesta pàgina:'
|
714
|
-
email_outro: Has rebut aquesta notificació perquè
|
715
|
+
email_outro: Has rebut aquesta notificació perquè s'ha promogut una esmena a l'apartat "%{amendable_title}" que administres.
|
715
716
|
email_subject: Una nova esmena feta per %{emendation_author_nickname} s'ha publicat com a nova %{amendable_type}
|
716
717
|
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_nickname}</a>.
|
717
718
|
follower:
|
@@ -722,7 +723,7 @@ ca:
|
|
722
723
|
amendment_rejected:
|
723
724
|
affected_user:
|
724
725
|
email_intro: 'Una esmena s''ha rebutjat per %{amendable_title}. La pots veure des d''aquesta pàgina:'
|
725
|
-
email_outro: Has rebut aquesta notificació perquè
|
726
|
+
email_outro: Has rebut aquesta notificació perquè s'ha rebutjat una esmena a l'apartat "%{amendable_title}" que administres.
|
726
727
|
email_subject: Esmena rebutjada per %{amendable_title} a %{emendation_author_nickname}
|
727
728
|
notification_title: L'<a href="%{emendation_path}">esmena</a> creada per <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> ha estat rebutjada per <a href="%{amendable_path}">%{amendable_title}</a>.
|
728
729
|
follower:
|
@@ -733,13 +734,13 @@ ca:
|
|
733
734
|
attachments:
|
734
735
|
attachment_created:
|
735
736
|
email_intro: 'S''ha afegit un nou document a %{resource_title}. Pots veure''l des d''aquesta pàgina:'
|
736
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{resource_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
737
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint "%{resource_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
737
738
|
email_subject: S'ha produït una actualització per a %{resource_title}
|
738
739
|
notification_title: S'ha afegit un <a href="%{resource_path}"> nou document</a> a <a href="%{attached_to_url}">%{resource_title}</a>
|
739
740
|
components:
|
740
741
|
component_published:
|
741
742
|
email_intro: 'Ja està actiu el component %{resource_title} per %{participatory_space_title}. Pots veure''l des d''aquesta pàgina:'
|
742
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint %{participatory_space_title}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
743
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint l'espai "%{participatory_space_title}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
743
744
|
email_subject: Una actualització a %{participatory_space_title}
|
744
745
|
notification_title: Ja està actiu el component %{resource_title} per <a href="%{resource_path}">%{participatory_space_title}</a>
|
745
746
|
email_event:
|
@@ -771,17 +772,17 @@ ca:
|
|
771
772
|
notification_title: T'han convidat a unir-te al grup <a href="%{resource_path}">%{user_group_name}</a>. Comprova els <a href="%{groups_profile_tab_path}">grups de la pàgina</a> en el teu perfil per acceptar la invitació!
|
772
773
|
join_request_accepted:
|
773
774
|
email_intro: Felicitats! Una administradora del grup <a href="%{resource_url}">%{user_group_name}</a> ha acceptat la teva sol·licitud per unir-te.
|
774
|
-
email_outro: Has rebut aquesta notificació perquè s'ha actualitzat la teva sol·licitud per a formar
|
775
|
+
email_outro: Has rebut aquesta notificació perquè s'ha actualitzat la teva sol·licitud per a formar part del grup.
|
775
776
|
email_subject: La teva sol·licitud per a unir-te al grup %{user_group_name} ha estat acceptada!
|
776
777
|
notification_title: Has estat acceptada al grup <a href="%{resource_path}">%{user_group_name}</a>.
|
777
778
|
join_request_created:
|
778
779
|
email_intro: Algú ha sol·licitat unir-se al grup %{user_group_name}. Pots acceptar-la o rebutjar-la des de <a href="%{resource_url}"> la pàgina de membres</a>.
|
779
|
-
email_outro: Has rebut aquesta notificació perquè
|
780
|
+
email_outro: Has rebut aquesta notificació perquè administres el grup "%{user_group_name}".
|
780
781
|
email_subject: Algú ha sol·licitat unir-se al grup %{user_group_name}!
|
781
782
|
notification_title: Algú ha sol·licitat unir-se al grup %{user_group_name}. Pots acceptar o rebutjar la sol·licitud des de <a href="%{resource_path}">els membres del grup de la pàgina</a>.
|
782
783
|
join_request_rejected:
|
783
784
|
email_intro: Una administradora del grup <a href="%{resource_url}">%{user_group_name}</a> ha rebutjat la teva sol·licitud per unir-te.
|
784
|
-
email_outro: Has rebut aquesta notificació perquè la teva sol·licitud d'incorporació s'ha actualitzat.
|
785
|
+
email_outro: Has rebut aquesta notificació perquè la teva sol·licitud d'incorporació al grup s'ha actualitzat.
|
785
786
|
email_subject: La teva sol·licitud per unir-te al grup %{user_group_name} ha estat rebutjada!
|
786
787
|
notification_title: La teva sol·licitud per unir-te al grup <a href="%{resource_path}">%{user_group_name}</a> ha estat rebutjada.
|
787
788
|
promoted_to_admin:
|
@@ -801,7 +802,7 @@ ca:
|
|
801
802
|
notification_title: S'ha creat el grup d'usuàries %{user_group_name}. Ara pots verificar-ho al <a href="%{groups_admin_path}">taulell d'administració</a>.
|
802
803
|
user_group_updated:
|
803
804
|
email_intro: El grup d'usuàries %{user_group_name} ha actualitzat el seu perfil perdent-ne la verificació. Pots tornar a verificar-lo a través del <a href="%{groups_admin_url}"> taulell d'administració</a>.
|
804
|
-
email_outro: Has rebut aquesta notificació perquè
|
805
|
+
email_outro: Has rebut aquesta notificació perquè admnistres la plataforma.
|
805
806
|
email_subject: Un grup d'usuàries ha actualitzat el seu perfil
|
806
807
|
notification_title: El grup d'usuàries %{user_group_name} ha actualitzat el seu perfil perdent-ne la verificació. Pots tornar a verificar-lo a través del <a href="%{groups_admin_path}"> taulell d'administració</a>.
|
807
808
|
nickname_event:
|
@@ -811,25 +812,25 @@ ca:
|
|
811
812
|
reports:
|
812
813
|
resource_hidden:
|
813
814
|
email_intro: Una administradora ha eliminat el teu %{resource_type} degut a que has estat reportada com a %{report_reasons}.
|
814
|
-
email_outro: Has rebut aquesta notificació perquè
|
815
|
+
email_outro: Has rebut aquesta notificació perquè s'ha eliminiat un contingut que havies creat.
|
815
816
|
email_subject: S'ha eliminat el/la teu/teva %{resource_type}
|
816
817
|
notification_title: |-
|
817
818
|
Una administradora ha eliminat el teu %{resource_type} degut a que has estat reportada com a %{report_reasons}..</br>
|
818
819
|
<i>%{resource_content}</i>
|
819
820
|
resource_endorsed:
|
820
821
|
email_intro: '%{endorser_name} %{endorser_nickname}, a qui segueixes, acaba d''adherir-se a "%{resource_title}" que et pot resultar interessant, revisa-la i contribueix:'
|
821
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint a %{endorser_nickname}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
822
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint a "%{endorser_nickname}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
822
823
|
email_subject: "%{endorser_nickname} s'ha adherit a una proposta"
|
823
824
|
notification_title: <a href="%{endorser_path}">%{endorser_name} %{endorser_nickname}</a> s'ha adherit a <a href="%{resource_path}">%{resource_title}</a> (%{resource_type}).
|
824
825
|
users:
|
825
826
|
profile_updated:
|
826
827
|
email_intro: La pàgina <a href="%{resource_url}"> de perfil </a> de %{name} (%{nickname}), a qui estàs seguint, s'ha actualitzat.
|
827
|
-
email_outro: Has rebut aquesta notificació perquè estàs seguint a %{nickname}. Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
828
|
+
email_outro: Has rebut aquesta notificació perquè estàs seguint a "%{nickname}". Pots deixar de rebre notificacions seguint l'enllaç anterior.
|
828
829
|
email_subject: "%{nickname} ha actualitzat el seu perfil"
|
829
830
|
notification_title: El <a href="%{resource_path}"> perfi l</a> de %{name} (%{nickname}), a qui estàs seguint, s'ha actualitzat.
|
830
831
|
user_officialized:
|
831
832
|
email_intro: La participant %{name} (%{nickname}) ha estat oficialitzada.
|
832
|
-
email_outro: Has rebut aquesta notificació perquè
|
833
|
+
email_outro: Has rebut aquesta notificació perquè administres la plataforma.
|
833
834
|
email_subject: "S'ha oficialitzat a %{name}"
|
834
835
|
notification_title: La participant %{name} (%{nickname}) ha estat oficialitzada.
|
835
836
|
export_mailer:
|
@@ -1091,13 +1092,13 @@ ca:
|
|
1091
1092
|
messaging:
|
1092
1093
|
conversation_mailer:
|
1093
1094
|
comanagers_new_conversation:
|
1094
|
-
admin_in_group: Reps aquesta notificació perquè
|
1095
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1095
1096
|
greeting: Hola, %{recipient}!
|
1096
1097
|
intro: "%{manager} ha iniciat una nova conversa en nom de %{group}. Fes clic aquí per veure-la:"
|
1097
1098
|
outro: Gaudeix de la plataforma!
|
1098
1099
|
subject: "%{manager} ha iniciat una nova conversa com a %{group}"
|
1099
1100
|
comanagers_new_message:
|
1100
|
-
admin_in_group: Reps aquesta notificació perquè
|
1101
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1101
1102
|
greeting: Hola, %{recipient}!
|
1102
1103
|
intro: "%{manager} ha publicat nous missatge a una conversa en nom de %{group}. Fes clic aquí per veure-la:"
|
1103
1104
|
outro: Gaudeix de la plataforma!
|
@@ -1108,13 +1109,13 @@ ca:
|
|
1108
1109
|
outro: Gaudeix de la plataforma!
|
1109
1110
|
subject: "%{sender} ha iniciat una conversa amb tu"
|
1110
1111
|
new_group_conversation:
|
1111
|
-
admin_in_group: Reps aquesta notificació perquè
|
1112
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1112
1113
|
greeting: Hola, %{recipient}!
|
1113
1114
|
intro: "%{sender} ha iniciat una nova conversa amb el %{group}. Fes clic aquí per veure-la:"
|
1114
1115
|
outro: Gaudeix de la plataforma!
|
1115
1116
|
subject: "%{sender} ha iniciat una nova conversa amb %{group}"
|
1116
1117
|
new_group_message:
|
1117
|
-
admin_in_group: Reps aquesta notificació perquè
|
1118
|
+
admin_in_group: Reps aquesta notificació perquè administres el grup "%{group}".
|
1118
1119
|
greeting: Hola, %{recipient}!
|
1119
1120
|
intro: "%{sender} ha publicat nous missatge a una conversa amb el grup %{group}. Fes clic aquí per veure-la:"
|
1120
1121
|
outro: Gaudeix de la plataforma!
|
@@ -1274,7 +1275,8 @@ ca:
|
|
1274
1275
|
offline:
|
1275
1276
|
name: Sense connexió
|
1276
1277
|
show:
|
1277
|
-
|
1278
|
+
message_1: Sembla que no tens connexió a Internet.
|
1279
|
+
message_2: Si us plau, torneu-ho a provar més tard.
|
1278
1280
|
retry: Torna-ho a provar
|
1279
1281
|
open_data:
|
1280
1282
|
not_available_yet: Els fitxers Open Data encara no estan disponibles, torna-ho a provar d'aquí a uns minuts.
|
@@ -1453,6 +1455,8 @@ ca:
|
|
1453
1455
|
close_modal: Tancar el modal
|
1454
1456
|
ok: D'acord
|
1455
1457
|
title: Confirmar
|
1458
|
+
embed:
|
1459
|
+
title: Contingut del vídeo incrustat
|
1456
1460
|
extended_navigation_bar:
|
1457
1461
|
more: Més
|
1458
1462
|
unfold: Desplegar
|
@@ -2038,6 +2042,7 @@ ca:
|
|
2038
2042
|
long_with_particles: "%d %B, de %Y a les %H:%M"
|
2039
2043
|
short: "%d/%m/%Y %H:%M"
|
2040
2044
|
time_of_day: "%H:%M"
|
2045
|
+
tooltip: "%d-%m-%Y %H:%M %p %Z (GMT %:z)"
|
2041
2046
|
versions:
|
2042
2047
|
directions:
|
2043
2048
|
left: Esborrats
|