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
data/config/locales/fr.yml
CHANGED
|
@@ -430,6 +430,7 @@ fr:
|
|
|
430
430
|
explanation: Procédure d'autorisation factice
|
|
431
431
|
name: Procédure d'autorisation factice
|
|
432
432
|
ephemeral_dummy_authorization_handler:
|
|
433
|
+
explanation: Obtenir une vérification en saisissant un numéro de document se terminant par « X ».
|
|
433
434
|
fields:
|
|
434
435
|
allowed_postal_codes: Codes postaux autorisés (séparés par des virgules)
|
|
435
436
|
document_number: Numéro du document
|
|
@@ -517,7 +518,7 @@ fr:
|
|
|
517
518
|
global:
|
|
518
519
|
amendments_enabled: Modifications activées
|
|
519
520
|
comments_enabled: Activer le module de commentaire
|
|
520
|
-
comments_max_length:
|
|
521
|
+
comments_max_length: Nombre maximum de caractères par commentaire
|
|
521
522
|
dummy_global_attribute1: Attribut factice 1
|
|
522
523
|
dummy_global_attribute2: Attribut factice 2
|
|
523
524
|
dummy_global_translatable_text: Texte traduisible factice
|
|
@@ -619,6 +620,13 @@ fr:
|
|
|
619
620
|
all: Tout
|
|
620
621
|
filter_scope_values:
|
|
621
622
|
all: Tout
|
|
623
|
+
delete_user_mailer:
|
|
624
|
+
delete:
|
|
625
|
+
body_1: Votre compte a été désactivé et n'est plus accessible. La suppression permanente de vos données personnelles a été programmée, conformément à nos politiques de conservation.
|
|
626
|
+
body_2: Pour des raisons de sécurité, certaines données relatives à l’autorisation seront conservées ; si vous créez un nouveau compte et que vous l'autorisez à nouveau, elles peuvent être reliées à votre nouveau compte.
|
|
627
|
+
greetings_html: Cordialement,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
628
|
+
hello: Cher(ère) %{username},
|
|
629
|
+
subject: Votre compte a été supprimé
|
|
622
630
|
devise:
|
|
623
631
|
omniauth_registrations:
|
|
624
632
|
create:
|
|
@@ -781,13 +789,9 @@ fr:
|
|
|
781
789
|
affected_user:
|
|
782
790
|
email_intro: 'Une modification a été acceptée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
783
791
|
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
784
|
-
email_subject: Un amendement accepté pour %{amendable_title} du %{emendation_author_nickname}
|
|
785
|
-
notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été accepté pour <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
786
792
|
follower:
|
|
787
793
|
email_intro: 'Une modification a été acceptée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
788
794
|
email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
789
|
-
email_subject: Un amendement accepté pour %{amendable_title} du %{emendation_author_nickname}
|
|
790
|
-
notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été accepté pour <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
791
795
|
amendment_created:
|
|
792
796
|
affected_user:
|
|
793
797
|
email_intro: 'Une nouvelle modification a été créée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
@@ -803,29 +807,20 @@ fr:
|
|
|
803
807
|
affected_user:
|
|
804
808
|
email_intro: 'Une modification rejetée pour %{amendable_title} a été promue en %{amendable_type}indépendante. Vous pouvez le voir sur cette page:'
|
|
805
809
|
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
806
|
-
email_subject: Un amendement de %{emendation_author_nickname} a été publié en tant que nouveau %{amendable_type}
|
|
807
|
-
notification_title: A <a href="%{emendation_path}">a rejeté l' amendement</a> pour <a href="%{amendable_path}">%{amendable_title}</a> a été publiée en tant que nouveau %{amendable_type} par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
808
810
|
follower:
|
|
809
811
|
email_intro: 'Une modification rejetée pour %{amendable_title} a été promue en %{amendable_type}indépendante. Vous pouvez le voir sur cette page:'
|
|
810
812
|
email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
811
|
-
email_subject: Un amendement de %{emendation_author_nickname} a été publié en tant que nouveau %{amendable_type}
|
|
812
|
-
notification_title: A <a href="%{emendation_path}">a rejeté l' amendement</a> pour <a href="%{amendable_path}">%{amendable_title}</a> a été publiée en tant que nouveau %{amendable_type} par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
813
813
|
amendment_rejected:
|
|
814
814
|
affected_user:
|
|
815
815
|
email_intro: 'Une modification a été rejetée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
816
816
|
email_outro: Vous avez reçu cette notification parce que vous êtes l'auteur de %{amendable_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
817
|
-
email_subject: Un amendement rejeté pour %{amendable_title} à %{emendation_author_nickname}
|
|
818
|
-
notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été rejetée pour <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
819
817
|
follower:
|
|
820
818
|
email_intro: 'Une modification a été rejetée pour %{amendable_title}. Vous pouvez le voir sur cette page:'
|
|
821
819
|
email_outro: Vous avez reçu cette notification parce que vous suivez %{amendable_title}. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
822
|
-
email_subject: Un amendement rejeté pour %{amendable_title} à %{emendation_author_nickname}
|
|
823
|
-
notification_title: Le <a href="%{emendation_path}">amendement</a> créé par <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> a été rejetée pour <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
824
820
|
emendation_promoted:
|
|
825
821
|
follower:
|
|
826
822
|
email_intro: 'Une correction a été publiée pour %{amendable_title}. Vous pouvez la voir sur cette page :'
|
|
827
823
|
email_outro: Vous avez reçu cette notification parce que vous êtes un(e) auteur/trice de %{amendable_title}.
|
|
828
|
-
email_subject: Une correction réalisée par %{emendation_author_nickname} a été publiée en tant que nouvelle %{amendable_type}
|
|
829
824
|
attachments:
|
|
830
825
|
attachment_created:
|
|
831
826
|
email_intro: 'Un nouveau document a été ajouté à %{resource_title}. Vous pouvez le voir sur cette page :'
|
|
@@ -858,6 +853,18 @@ fr:
|
|
|
858
853
|
notification_body: Nous avons corrigé la façon dont les pseudonymes sont utilisés pour qu'il n'y ait pas de doublons, et c'est pourquoi nous avons supprimé la distinction entre les majuscules et les minuscules. <br/> Votre pseudonyme a été créé après un autre qui était identique, nous l'avons donc automatiquement modifié. Vous pouvez le modifier depuis <a href="%{link_to_account_settings}">les paramètres de votre compte</a>.
|
|
859
854
|
notification_event:
|
|
860
855
|
notification_title: Un événement a eu lieu sur <a href="%{resource_path}">%{resource_title}</a>.
|
|
856
|
+
participatory_space:
|
|
857
|
+
member_added:
|
|
858
|
+
published:
|
|
859
|
+
email_intro: Vous avez été ajouté(e) en tant que membre à un espace participatif.
|
|
860
|
+
email_outro: Vous avez reçu cette notification car un administrateur vous a ajouté à <a href="%{resource_url}">%{resource_title}</a>. Si l'accès à cet espace est restreint, vous pourrez y accéder avec votre compte.<br> Votre profil apparaîtra dans la <a href="%{members_page}">liste des membres</a> de cet espace.
|
|
861
|
+
email_subject: Vous avez maintenant accès à %{resource_title}.
|
|
862
|
+
notification_title: Vous avez maintenant accès à <a href="%{resource_url}">%{resource_title}</a>.
|
|
863
|
+
unpublished:
|
|
864
|
+
email_intro: Vous avez été ajouté(e) en tant que membre à un espace participatif.
|
|
865
|
+
email_outro: Vous avez reçu cette notification car un administrateur vous a ajouté à <a href="%{resource_url}">%{resource_title}</a>. Si l'accès à cet espace est restreint, vous pourrez y accéder avec votre compte.
|
|
866
|
+
email_subject: Vous avez maintenant accès à %{resource_title}.
|
|
867
|
+
notification_title: Vous avez maintenant accès à <a href="%{resource_url}">%{resource_title}</a>.
|
|
861
868
|
reports:
|
|
862
869
|
resource_hidden:
|
|
863
870
|
email_intro: Un administrateur a modéré votre %{resource_type} car il a été signalé comme %{report_reasons}.
|
|
@@ -868,15 +875,10 @@ fr:
|
|
|
868
875
|
<i>%{resource_content}</i>
|
|
869
876
|
users:
|
|
870
877
|
profile_updated:
|
|
871
|
-
|
|
872
|
-
email_outro: Vous recevez cette notification car vous suivez « %{nickname} ». Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
873
|
-
email_subject: "%{nickname} a mis à jour son profil public"
|
|
874
|
-
notification_title: Le <a href="%{resource_path}">profil public</a> de %{name} (%{nickname}), que vous suivez, a été mis à jour.
|
|
878
|
+
email_subject: "%{name} a mis à jour son profil"
|
|
875
879
|
user_officialized:
|
|
876
|
-
email_intro: Le participant %{name} (%{nickname}) a été officialisé.
|
|
877
880
|
email_outro: Vous avez reçu cette notification parce que vous êtes un administrateur de l'organisation. Si vous souhaitez vous désabonner des notifications, connectez-vous à la plateforme, puis rendez-vous dans l'onglet “Mon compte” > “Paramètres des notifications”.
|
|
878
881
|
email_subject: "%{name} a été officialisé"
|
|
879
|
-
notification_title: Le participant %{name} (%{nickname}) a été officialisé.
|
|
880
882
|
export_mailer:
|
|
881
883
|
download_your_data_export:
|
|
882
884
|
click_button_html: Cliquez sur le lien suivant pour télécharger vos données.<br/>Le fichier sera disponible au téléchargement jusqu'à %{date}.
|
|
@@ -1093,7 +1095,6 @@ fr:
|
|
|
1093
1095
|
create:
|
|
1094
1096
|
error: La conversation n'a pas commencé. Réessayez plus tard.
|
|
1095
1097
|
error_modal:
|
|
1096
|
-
close: Fermer la fenêtre de dialogue
|
|
1097
1098
|
correct_errors: Veuillez corriger les erreurs et réessayer.
|
|
1098
1099
|
intro: 'Il y a eu les erreurs suivantes avec votre message :'
|
|
1099
1100
|
ok: Ok
|
|
@@ -1380,13 +1381,6 @@ fr:
|
|
|
1380
1381
|
log_in: se connecter
|
|
1381
1382
|
never_logged_in: jamais connecté
|
|
1382
1383
|
subject: Avertissement de compte inactif
|
|
1383
|
-
removal_notification:
|
|
1384
|
-
body: Votre compte %{organization_name} a été supprimé en raison de son inactivité.
|
|
1385
|
-
greetings_html: |
|
|
1386
|
-
Cordialement,<br>
|
|
1387
|
-
%{organization_name}
|
|
1388
|
-
hello: Cher(ère) %{username},
|
|
1389
|
-
subject: Compte inactif supprimé
|
|
1390
1384
|
participatory_space:
|
|
1391
1385
|
pages:
|
|
1392
1386
|
user_profile:
|
|
@@ -1397,8 +1391,8 @@ fr:
|
|
|
1397
1391
|
members: Membres
|
|
1398
1392
|
participatory_spaces:
|
|
1399
1393
|
show:
|
|
1400
|
-
restricted_space:
|
|
1401
|
-
transparent_space: Ceci est un espace transparent. N'importe qui peut voir le contenu, mais seuls les membres peuvent participer.
|
|
1394
|
+
restricted_space: Il s'agit d'un espace restreint. Seuls les membres et les administrateurs peuvent le voir et y participer.
|
|
1395
|
+
transparent_space: Ceci est un espace transparent. N'importe qui peut voir le contenu, mais seuls les membres et les administrateurs peuvent participer.
|
|
1402
1396
|
passwords:
|
|
1403
1397
|
update:
|
|
1404
1398
|
error: Il y a eu un problème lors de la mise à jour de votre mot de passe.
|
data/config/locales/gl.yml
CHANGED
|
@@ -158,9 +158,6 @@ gl:
|
|
|
158
158
|
back: De volta
|
|
159
159
|
heading: Revisa a modificación
|
|
160
160
|
send: Aceptar a emenda
|
|
161
|
-
wizard_step_form:
|
|
162
|
-
steps:
|
|
163
|
-
'1': Crea a túa emenda
|
|
164
161
|
anonymous_user: Anónimo
|
|
165
162
|
application:
|
|
166
163
|
documents:
|
|
@@ -316,13 +313,9 @@ gl:
|
|
|
316
313
|
affected_user:
|
|
317
314
|
email_intro: 'A emenda foi aceptada para %{amendable_title}. Podes velo desde esta páxina:'
|
|
318
315
|
email_outro: Recibiches esta notificación porque es un autor de %{amendable_title}.
|
|
319
|
-
email_subject: Unha enmenda aceptada para %{amendable_title} de %{emendation_author_nickname}
|
|
320
|
-
notification_title: A <a href="%{emendation_path}">cambio</a> creado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi aceptado para <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
321
316
|
follower:
|
|
322
317
|
email_intro: 'A emenda foi aceptada para %{amendable_title}. Podes velo desde esta páxina:'
|
|
323
318
|
email_outro: Recibiches esta notificación porque estás seguindo %{amendable_title}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
|
324
|
-
email_subject: Unha enmenda aceptada para %{amendable_title} de %{emendation_author_nickname}
|
|
325
|
-
notification_title: A <a href="%{emendation_path}">cambio</a> creado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi aceptado para <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
326
319
|
amendment_created:
|
|
327
320
|
affected_user:
|
|
328
321
|
email_intro: 'Creouse unha nova emenda para %{amendable_title}. Podes velo desde esta páxina:'
|
|
@@ -338,24 +331,16 @@ gl:
|
|
|
338
331
|
affected_user:
|
|
339
332
|
email_intro: 'Unha enmenda rexeitada para %{amendable_title} foi promovida a unha independente %{amendable_type}. Podes velo desde esta páxina:'
|
|
340
333
|
email_outro: Recibiches esta notificación porque es un autor de %{amendable_title}.
|
|
341
|
-
email_subject: Unha emenda de %{emendation_author_nickname} publicouse como un novo %{amendable_type}
|
|
342
|
-
notification_title: Un <a href="%{emendation_path}">rexeitado cambio</a> para <a href="%{amendable_path}">%{amendable_title}</a> publicouse como unha nova %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
343
334
|
follower:
|
|
344
335
|
email_intro: 'Unha enmenda rexeitada para %{amendable_title} foi promovida a unha independente %{amendable_type}. Podes velo desde esta páxina:'
|
|
345
336
|
email_outro: Recibiches esta notificación porque estás seguindo %{amendable_title}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
|
346
|
-
email_subject: Unha emenda de %{emendation_author_nickname} publicouse como un novo %{amendable_type}
|
|
347
|
-
notification_title: Un <a href="%{emendation_path}">rexeitado cambio</a> para <a href="%{amendable_path}">%{amendable_title}</a> publicouse como unha nova %{amendable_type} por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
348
337
|
amendment_rejected:
|
|
349
338
|
affected_user:
|
|
350
339
|
email_intro: 'Rexeitouse unha modificación para %{amendable_title}. Podes velo desde esta páxina:'
|
|
351
340
|
email_outro: Recibiches esta notificación porque es un autor de %{amendable_title}.
|
|
352
|
-
email_subject: Unha enmenda rexeitada para %{amendable_title} de %{emendation_author_nickname}
|
|
353
|
-
notification_title: A <a href="%{emendation_path}">cambio</a> creado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi rexeitado por <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
354
341
|
follower:
|
|
355
342
|
email_intro: 'Rexeitouse unha modificación para %{amendable_title}. Podes velo desde esta páxina:'
|
|
356
343
|
email_outro: Recibiches esta notificación porque estás seguindo %{amendable_title}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
|
357
|
-
email_subject: Unha enmenda rexeitada para %{amendable_title} de %{emendation_author_nickname}
|
|
358
|
-
notification_title: A <a href="%{emendation_path}">cambio</a> creado por <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> foi rexeitado por <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
359
344
|
attachments:
|
|
360
345
|
attachment_created:
|
|
361
346
|
email_intro: 'Engadiuse un novo documento a %{resource_title}. Podes velo desde esta páxina:'
|
|
@@ -379,16 +364,9 @@ gl:
|
|
|
379
364
|
level_up:
|
|
380
365
|
email_outro: Recibiches esta notificación porque realizaches actividade no noso sitio web.
|
|
381
366
|
users:
|
|
382
|
-
profile_updated:
|
|
383
|
-
email_intro: O <a href="%{resource_url}">profile páxina</a> de %{name} (%{nickname}), quen está a seguir, foi actualizado.
|
|
384
|
-
email_outro: Recibiches esta notificación porque estás seguindo %{nickname}. Podes deixar de recibir notificacións seguindo a ligazón anterior.
|
|
385
|
-
email_subject: "%{nickname} actualizou o seu perfil"
|
|
386
|
-
notification_title: O <a href="%{resource_path}">profile páxina</a> de %{name} (%{nickname}), quen está a seguir, foi actualizado.
|
|
387
367
|
user_officialized:
|
|
388
|
-
email_intro: O participante %{name} (%{nickname}) foi oficializado.
|
|
389
368
|
email_outro: Recibiches esta notificación por que es administrador da organización.
|
|
390
369
|
email_subject: "%{name} foi oficializado"
|
|
391
|
-
notification_title: O participante %{name} (%{nickname}) foi oficializado.
|
|
392
370
|
export_mailer:
|
|
393
371
|
download_your_data_export:
|
|
394
372
|
download: Descarga
|
data/config/locales/hu.yml
CHANGED
|
@@ -295,9 +295,6 @@ hu:
|
|
|
295
295
|
success: A módosító javaslat sikeresen frissítve.
|
|
296
296
|
withdraw:
|
|
297
297
|
success: A módosítás visszavonása sikeres.
|
|
298
|
-
wizard_step_form:
|
|
299
|
-
steps:
|
|
300
|
-
'1': Készítse el a módosítását
|
|
301
298
|
anonymous_user: Névtelen
|
|
302
299
|
application:
|
|
303
300
|
document:
|
|
@@ -415,7 +412,6 @@ hu:
|
|
|
415
412
|
global:
|
|
416
413
|
amendments_enabled: A módosítások engedélyezve vannak
|
|
417
414
|
comments_enabled: Megjegyzések engedélyezve
|
|
418
|
-
comments_max_length: A hozzászólások maximális hossza
|
|
419
415
|
dummy_global_attribute1: Dummy tulajdonság 1
|
|
420
416
|
dummy_global_attribute2: Dummy tulajdonság 2
|
|
421
417
|
dummy_global_translatable_text: Kenyérszöveg - nem valódi fordítható szöveg
|
|
@@ -581,13 +577,9 @@ hu:
|
|
|
581
577
|
affected_user:
|
|
582
578
|
email_intro: 'Módosítást fogadtak el %{amendable_title}. Láthatja ezt erről az oldalról:'
|
|
583
579
|
email_outro: Ezt az értesítést megkaptuk, mert Ön szerzője a %{amendable_title}.
|
|
584
|
-
email_subject: Egy módosítás elfogadva %{amendable_title} innen %{emendation_author_nickname}
|
|
585
|
-
notification_title: A <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> által létrehozott <a href="%{emendation_path}"></a> módosítás elfogadott <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
586
580
|
follower:
|
|
587
581
|
email_intro: 'Módosítást fogadtak el %{amendable_title}. Láthatja ezt az oldalról:'
|
|
588
582
|
email_outro: Ezt az értesítést megkapta, mert %{amendable_title} követi. Leállíthatja az értesítések fogadását az előző link segítségével.
|
|
589
|
-
email_subject: Egy módosítás elfogadva %{amendable_title} -ra %{emendation_author_nickname}-tól
|
|
590
|
-
notification_title: A <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> által létrehozott <a href="%{emendation_path}"></a> módosítás elfogadásra került. <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
591
583
|
amendment_created:
|
|
592
584
|
affected_user:
|
|
593
585
|
email_intro: 'Új módosítási javaslat érkezett - %{amendable_title}. Erről az oldalról tudod megnézni:'
|
|
@@ -603,24 +595,16 @@ hu:
|
|
|
603
595
|
affected_user:
|
|
604
596
|
email_intro: 'Ezt az elutasított módosítást %{amendable_title} önálló módosítássá %{amendable_type} emelték. Láthatja ezt az oldalról:'
|
|
605
597
|
email_outro: Ezt az értesítést azért kapta, mert Ön szerzője a %{amendable_title} dokumentumnak.
|
|
606
|
-
email_subject: A %{emendation_author_nickname} ból származó módosítást új szövegként tették közzé %{amendable_type}
|
|
607
|
-
notification_title: A <a href="%{emendation_path}">elutasított módosítás </a> erre<a href="%{amendable_path}">%{amendable_title}</a> újként %{amendable_type} került közzétételre <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
608
598
|
follower:
|
|
609
599
|
email_intro: 'A %{amendable_title} című elutasított módosítást önálló %{amendable_type} módosításra emelték. Láthatja ezt az oldalról:'
|
|
610
600
|
email_outro: Ezt az értesítést azért kapta, mert a %{amendable_title} követi. Leállíthatja az értesítések fogadását az előző link segítségével.
|
|
611
|
-
email_subject: A %{emendation_author_nickname} tól származó módosítást új szövegként tették közzé %{amendable_type}
|
|
612
|
-
notification_title: A <a href="%{emendation_path}">elutasított módosítása </a> a <a href="%{amendable_path}">%{amendable_title}</a> re vonatkozóan újként került közzétételre %{amendable_type} <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
613
601
|
amendment_rejected:
|
|
614
602
|
affected_user:
|
|
615
603
|
email_intro: 'Egy módosítást elutasítottunk %{amendable_title}. Láthatja ezt az oldalról:'
|
|
616
604
|
email_outro: Ezt az értesítést azért kapta, mert Ön szerzője a %{amendable_title} dokumentumnak.
|
|
617
|
-
email_subject: Egy módosítás elutasítva %{amendable_title} melynek szerzője %{emendation_author_nickname}
|
|
618
|
-
notification_title: A <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> által létrehozott <a href="%{emendation_path}"></a> módosítást elutasították <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
619
605
|
follower:
|
|
620
606
|
email_intro: 'Egy módosítást elutasítottunk %{amendable_title}. Látható ez az oldalról:'
|
|
621
607
|
email_outro: Ezt az értesítést azért kapta, mert a %{amendable_title}-t követi. Leállíthatja az értesítések fogadását az előző link segítségével.
|
|
622
|
-
email_subject: "A %{emendation_author_nickname} által létrehozott módosítás itt \n%{amendable_title} elutasításra került"
|
|
623
|
-
notification_title: A <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> által létrehozott <a href="%{emendation_path}"></a> módosítás elutasításra került <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
624
608
|
attachments:
|
|
625
609
|
attachment_created:
|
|
626
610
|
email_intro: 'Új dokumentumot adtak hozzá a következőhöz: %{resource_title}. Innen érheted el:'
|
|
@@ -662,11 +646,6 @@ hu:
|
|
|
662
646
|
Egy adminisztrátor eltávolította a %{resource_type} -ját mert %{report_reasons}-ként jelentették </br>
|
|
663
647
|
<i>%{resource_content}</i>
|
|
664
648
|
users:
|
|
665
|
-
profile_updated:
|
|
666
|
-
email_intro: '%{name} (%{nickname}) (akit követsz) <a href="%{resource_url}">profil oldala</a> frissült.'
|
|
667
|
-
email_outro: 'Ezt az értesítést azért kaptad, mert őt követed: "%{nickname}". Az értesítéseket a következő linkre kattintva kapcsolhatod ki.'
|
|
668
|
-
email_subject: "%{nickname} frissítette profilját"
|
|
669
|
-
notification_title: '%{name} (%{nickname}) (akit egyébként követsz) <a href="%{resource_path}">profil oldala</a> frissült.'
|
|
670
649
|
user_officialized:
|
|
671
650
|
email_outro: Azért kapta ezt az értesítést, mert Ön a szervezet adminisztrátora.
|
|
672
651
|
email_subject: "%{name} regisztrációja hivatalossá lett téva"
|
|
@@ -833,7 +812,6 @@ hu:
|
|
|
833
812
|
create:
|
|
834
813
|
error: A beszélgetés nem kezdődött el. Próbáld újra később.
|
|
835
814
|
error_modal:
|
|
836
|
-
close: Ablak bezárás
|
|
837
815
|
correct_errors: Kérjük javítsa a hibákat és próbálja újra.
|
|
838
816
|
intro: 'A következő hibákat tartalmazza az üzenet:'
|
|
839
817
|
ok: OK
|
data/config/locales/id-ID.yml
CHANGED
|
@@ -145,9 +145,6 @@ id:
|
|
|
145
145
|
back: Kembali
|
|
146
146
|
heading: Tinjau amandemennya
|
|
147
147
|
send: Terima amandemen
|
|
148
|
-
wizard_step_form:
|
|
149
|
-
steps:
|
|
150
|
-
'1': Buat amandemen Anda
|
|
151
148
|
anonymous_user: Anonim
|
|
152
149
|
application:
|
|
153
150
|
documents:
|
|
@@ -298,13 +295,9 @@ id:
|
|
|
298
295
|
affected_user:
|
|
299
296
|
email_intro: 'Amendemen telah diterima untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
|
|
300
297
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda adalah seorang pengarang %{amendable_title}.
|
|
301
|
-
email_subject: Amandemen diterima untuk %{amendable_title} dari %{emendation_author_nickname}
|
|
302
|
-
notification_title: <a href="%{emendation_path}">amendemen</a> dibuat oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> telah diterima untuk <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
303
298
|
follower:
|
|
304
299
|
email_intro: 'Amendemen telah diterima untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
|
|
305
300
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{amendable_title}. Anda dapat berhenti menerima notifikasi mengikuti tautan sebelumnya.
|
|
306
|
-
email_subject: Amandemen diterima untuk %{amendable_title} dari %{emendation_author_nickname}
|
|
307
|
-
notification_title: <a href="%{emendation_path}">amendemen</a> dibuat oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> telah diterima untuk <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
308
301
|
amendment_created:
|
|
309
302
|
affected_user:
|
|
310
303
|
email_intro: 'Sebuah perubahan baru telah dibuat untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
|
|
@@ -320,24 +313,16 @@ id:
|
|
|
320
313
|
affected_user:
|
|
321
314
|
email_intro: 'Suatu emendasi yang ditolak untuk %{amendable_title} telah dipromosikan menjadi independen %{amendable_type}. Anda dapat melihatnya dari halaman ini:'
|
|
322
315
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda adalah seorang pengarang %{amendable_title}.
|
|
323
|
-
email_subject: Amandemen dari %{emendation_author_nickname} telah diterbitkan sebagai %{amendable_type}baru
|
|
324
|
-
notification_title: Amandemen</a> <a href="%{emendation_path}">ditolak untuk <a href="%{amendable_path}">%{amendable_title}</a> telah dipublikasikan sebagai %{amendable_type} baru oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>
|
|
325
316
|
follower:
|
|
326
317
|
email_intro: 'Suatu emendasi yang ditolak untuk %{amendable_title} telah dipromosikan menjadi independen %{amendable_type}. Anda dapat melihatnya dari halaman ini:'
|
|
327
318
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{amendable_title}. Anda dapat berhenti menerima notifikasi mengikuti tautan sebelumnya.
|
|
328
|
-
email_subject: Amandemen dari %{emendation_author_nickname} telah diterbitkan sebagai %{amendable_type}baru
|
|
329
|
-
notification_title: Amandemen</a> <a href="%{emendation_path}">ditolak untuk <a href="%{amendable_path}">%{amendable_title}</a> telah dipublikasikan sebagai %{amendable_type} baru oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>
|
|
330
319
|
amendment_rejected:
|
|
331
320
|
affected_user:
|
|
332
321
|
email_intro: 'Amendemen telah ditolak untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
|
|
333
322
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda adalah seorang pengarang %{amendable_title}.
|
|
334
|
-
email_subject: Amandemen ditolak untuk %{amendable_title} dari %{emendation_author_nickname}
|
|
335
|
-
notification_title: <a href="%{emendation_path}">amendemen</a> dibuat oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> telah ditolak untuk <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
336
323
|
follower:
|
|
337
324
|
email_intro: 'Amendemen telah ditolak untuk %{amendable_title}. Anda dapat melihatnya dari halaman ini:'
|
|
338
325
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{amendable_title}. Anda dapat berhenti menerima notifikasi mengikuti tautan sebelumnya.
|
|
339
|
-
email_subject: Amandemen ditolak untuk %{amendable_title} dari %{emendation_author_nickname}
|
|
340
|
-
notification_title: <a href="%{emendation_path}">amendemen</a> dibuat oleh <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> telah ditolak untuk <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
341
326
|
attachments:
|
|
342
327
|
attachment_created:
|
|
343
328
|
email_intro: 'Dokumen baru telah ditambahkan ke %{resource_title}. Anda dapat melihatnya dari halaman ini:'
|
|
@@ -360,12 +345,6 @@ id:
|
|
|
360
345
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda melakukan aktivitas di situs web kami.
|
|
361
346
|
level_up:
|
|
362
347
|
email_outro: Anda telah menerima pemberitahuan ini karena Anda melakukan aktivitas di situs web kami.
|
|
363
|
-
users:
|
|
364
|
-
profile_updated:
|
|
365
|
-
email_intro: Halaman <a href="%{resource_url}">profil</a> dari %{name} (%{nickname}), yang Anda ikuti, telah diperbarui.
|
|
366
|
-
email_outro: Anda telah menerima pemberitahuan ini karena Anda mengikuti %{nickname}. Anda dapat berhenti menerima notifikasi mengikuti tautan sebelumnya.
|
|
367
|
-
email_subject: "%{nickname} memperbarui profil mereka"
|
|
368
|
-
notification_title: Halaman <a href="%{resource_path}">profil</a> dari %{name} (%{nickname}), yang Anda ikuti, telah diperbarui.
|
|
369
348
|
export_mailer:
|
|
370
349
|
download_your_data_export:
|
|
371
350
|
download: Unduh
|
data/config/locales/is-IS.yml
CHANGED
|
@@ -172,12 +172,6 @@ is:
|
|
|
172
172
|
email_intro: 'Það hefur verið uppfært í "%{resource_title}". Þú getur séð það frá þessari síðu:'
|
|
173
173
|
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með "%{resource_title}". Þú getur sleppt því frá fyrri tengilinn.
|
|
174
174
|
email_subject: Uppfærsla á %{resource_title}
|
|
175
|
-
users:
|
|
176
|
-
profile_updated:
|
|
177
|
-
email_intro: <a href="%{resource_url}">prófíl síðu</a> af %{name} (%{nickname}), sem þú fylgist með, hefur verið uppfærð.
|
|
178
|
-
email_outro: Þú hefur fengið þessa tilkynningu vegna þess að þú fylgist með %{nickname}. Þú getur hætt við að fá tilkynningar eftir fyrri tengilinn.
|
|
179
|
-
email_subject: "%{nickname} uppfærði prófílinn sinn"
|
|
180
|
-
notification_title: <a href="%{resource_path}">prófíl síðu</a> af %{name} (%{nickname}), sem þú fylgist með, hefur verið uppfærð.
|
|
181
175
|
export_mailer:
|
|
182
176
|
subject: Útflutningur þinn "%{name}" er tilbúinn
|
|
183
177
|
filters:
|
data/config/locales/it.yml
CHANGED
|
@@ -324,7 +324,7 @@ it:
|
|
|
324
324
|
success: Bozza emendamento aggiornata correttamente.
|
|
325
325
|
wizard_step_form:
|
|
326
326
|
steps:
|
|
327
|
-
'
|
|
327
|
+
'2': Pubblica la tua rettifica
|
|
328
328
|
anonymous_user: Anonimo
|
|
329
329
|
application:
|
|
330
330
|
document:
|
|
@@ -424,7 +424,6 @@ it:
|
|
|
424
424
|
global:
|
|
425
425
|
amendments_enabled: Emendamenti abilitati
|
|
426
426
|
comments_enabled: Commenti abilitati
|
|
427
|
-
comments_max_length: Lunghezza massima dei commenti
|
|
428
427
|
dummy_global_attribute1: Attributo fittizio 1
|
|
429
428
|
dummy_global_attribute2: Attributo fittizio 2
|
|
430
429
|
dummy_global_translatable_text: Testo traducibile Dummy
|
|
@@ -536,13 +535,9 @@ it:
|
|
|
536
535
|
affected_user:
|
|
537
536
|
email_intro: 'Un''emendamento è stato accettato per %{amendable_title}. Puoi vederlo da questa pagina:'
|
|
538
537
|
email_outro: Hai ricevuto questa notifica perché sei un autore di %{amendable_title}.
|
|
539
|
-
email_subject: Un emendamento accettato per %{amendable_title} %{emendation_author_nickname}
|
|
540
|
-
notification_title: Il <a href="%{emendation_path}">modifica</a> creato da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> è stato accettato per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
541
538
|
follower:
|
|
542
539
|
email_intro: 'Un''emendamento è stato accettato per %{amendable_title}. Puoi vederlo da questa pagina:'
|
|
543
540
|
email_outro: Hai ricevuto questa notifica perché stai seguendo %{amendable_title}. È possibile interrompere la ricezione di notifiche facendo click su pulsante Smetti di seguire nella pagina del processo o del contenuto che stai seguendo.
|
|
544
|
-
email_subject: Un emendamento accettato per %{amendable_title} %{emendation_author_nickname}
|
|
545
|
-
notification_title: Il <a href="%{emendation_path}">modifica</a> creato da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> è stato accettato per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
546
541
|
amendment_created:
|
|
547
542
|
affected_user:
|
|
548
543
|
email_intro: 'Una nuova emendazione è stata creata per %{amendable_title}. Puoi vederlo da questa pagina:'
|
|
@@ -558,24 +553,16 @@ it:
|
|
|
558
553
|
affected_user:
|
|
559
554
|
email_intro: 'Un emendamento respinto per %{amendable_title} è stato promosso a un indipendente %{amendable_type}. Puoi vederlo da questa pagina:'
|
|
560
555
|
email_outro: Hai ricevuto questa notifica perché sei un autore di %{amendable_title}.
|
|
561
|
-
email_subject: Un emendamento da %{emendation_author_nickname} è stato pubblicato come nuovo %{amendable_type}
|
|
562
|
-
notification_title: A <a href="%{emendation_path}">respinto modifica</a> per <a href="%{amendable_path}">%{amendable_title}</a> è stato pubblicato come nuovo %{amendable_type} da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
563
556
|
follower:
|
|
564
557
|
email_intro: 'Un emendamento respinto per %{amendable_title} è stato promosso a un indipendente %{amendable_type}. Puoi vederlo da questa pagina:'
|
|
565
558
|
email_outro: Hai ricevuto questa notifica perché stai seguendo %{amendable_title}. È possibile interrompere la ricezione di notifiche facendo click su pulsante Smetti di seguire nella pagina del processo o del contenuto che stai seguendo.
|
|
566
|
-
email_subject: Un emendamento da %{emendation_author_nickname} è stato pubblicato come nuovo %{amendable_type}
|
|
567
|
-
notification_title: A <a href="%{emendation_path}">respinto modifica</a> per <a href="%{amendable_path}">%{amendable_title}</a> è stato pubblicato come nuovo %{amendable_type} da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
568
559
|
amendment_rejected:
|
|
569
560
|
affected_user:
|
|
570
561
|
email_intro: 'Un''emissione è stata rifiutata per %{amendable_title}. Puoi vederlo da questa pagina:'
|
|
571
562
|
email_outro: Hai ricevuto questa notifica perché sei un autore di %{amendable_title}.
|
|
572
|
-
email_subject: Un emendamento respinto per %{amendable_title} %{emendation_author_nickname}
|
|
573
|
-
notification_title: Il <a href="%{emendation_path}">modifica</a> creato da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> è stata rifiutata per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
574
563
|
follower:
|
|
575
564
|
email_intro: 'Un''emissione è stata rifiutata per %{amendable_title}. Puoi vederlo da questa pagina:'
|
|
576
565
|
email_outro: Hai ricevuto questa notifica perché stai seguendo %{amendable_title}. È possibile interrompere la ricezione di notifiche facendo click su pulsante Smetti di seguire nella pagina del processo o del contenuto che stai seguendo.
|
|
577
|
-
email_subject: Un emendamento respinto per %{amendable_title} %{emendation_author_nickname}
|
|
578
|
-
notification_title: Il <a href="%{emendation_path}">modifica</a> creato da <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> è stata rifiutata per <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
579
566
|
attachments:
|
|
580
567
|
attachment_created:
|
|
581
568
|
email_intro: 'Un nuovo documento è stato aggiunto a %{resource_title}. Puoi vederlo da questa pagina:'
|
|
@@ -607,11 +594,6 @@ it:
|
|
|
607
594
|
Un amministratore ha rimosso il tuo %{resource_type} perché è stato segnalato come %{report_reasons}.</br>
|
|
608
595
|
<i>%{resource_content}</i>
|
|
609
596
|
users:
|
|
610
|
-
profile_updated:
|
|
611
|
-
email_intro: La pagina <a href="%{resource_url}">profilo</a> di %{name} (%{nickname}), che stai seguendo, è stata aggiornata.
|
|
612
|
-
email_outro: Hai ricevuto questa notifica perché stai seguendo %{nickname}. È possibile interrompere la ricezione di notifiche seguendo il collegamento precedente.
|
|
613
|
-
email_subject: "%{nickname} ha aggiornato il proprio profilo"
|
|
614
|
-
notification_title: La pagina <a href="%{resource_path}">profilo</a> di %{name} (%{nickname}), che stai seguendo, è stata aggiornata.
|
|
615
597
|
user_officialized:
|
|
616
598
|
email_subject: ""
|
|
617
599
|
export_mailer:
|
|
@@ -747,7 +729,6 @@ it:
|
|
|
747
729
|
modal_title: Nuova conversazione
|
|
748
730
|
no_results: Nessun risultato
|
|
749
731
|
error_modal:
|
|
750
|
-
close: Chiudi modalità
|
|
751
732
|
correct_errors: Correggi gli errori e riprova.
|
|
752
733
|
intro: 'Ci sono stati i seguenti errori con il tuo messaggio:'
|
|
753
734
|
ok: Ok
|