decidim-core 0.30.0.rc3 → 0.30.1
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/address/show.erb +3 -3
- data/app/cells/decidim/author/show.erb +1 -1
- data/app/cells/decidim/content_blocks/participatory_space_extra_data/extra_data.erb +2 -2
- data/app/cells/decidim/participatory_space_dropdown_metadata/metadata.erb +4 -4
- data/app/cells/decidim/participatory_space_dropdown_metadata/show.erb +5 -3
- data/app/commands/decidim/create_report.rb +6 -7
- data/app/commands/decidim/invite_user.rb +1 -1
- data/app/commands/decidim/search.rb +14 -0
- data/app/controllers/concerns/decidim/participatory_space_context.rb +4 -1
- data/app/controllers/decidim/reports_controller.rb +7 -2
- data/app/forms/decidim/account_form.rb +4 -1
- data/app/forms/decidim/ephemeral_user_form.rb +1 -1
- data/app/forms/decidim/omniauth_registration_form.rb +1 -1
- data/app/forms/decidim/registration_form.rb +1 -1
- data/app/helpers/decidim/menu_helper.rb +2 -2
- data/app/helpers/decidim/paginate_helper.rb +1 -1
- data/app/helpers/decidim/tooltip_helper.rb +4 -1
- data/app/mailers/decidim/notifications_digest_mailer.rb +7 -1
- data/app/mailers/decidim/reported_mailer.rb +18 -2
- data/app/models/decidim/action_log.rb +1 -9
- data/app/packs/src/decidim/datepicker/datepicker_functions.js +3 -3
- data/app/packs/src/decidim/index.js +4 -2
- data/app/packs/src/decidim/input_character_counter.js +1 -1
- data/app/packs/stylesheets/decidim/_cards.scss +1 -1
- data/app/packs/stylesheets/decidim/_content_blocks.scss +4 -0
- data/app/packs/stylesheets/decidim/_header.scss +60 -37
- data/app/packs/stylesheets/decidim/resource_history.scss +14 -4
- data/app/permissions/decidim/default_permissions.rb +2 -0
- data/app/presenters/decidim/log/user_presenter.rb +1 -0
- data/app/presenters/decidim/notification_to_mailer_presenter.rb +7 -3
- data/app/presenters/decidim/user_presenter.rb +1 -1
- data/app/queries/decidim/last_activity.rb +25 -0
- data/app/services/decidim/base_diff_renderer.rb +2 -0
- data/app/views/decidim/messaging/conversations/_reply_form.html.erb +1 -2
- data/app/views/decidim/messaging/conversations/_start.html.erb +1 -1
- data/app/views/decidim/reported_mailer/hidden_automatically.html.erb +25 -0
- data/app/views/decidim/reported_mailer/hidden_manually.html.erb +25 -0
- data/app/views/decidim/reported_mailer/report.html.erb +1 -1
- data/app/views/decidim/searches/_count.html.erb +1 -1
- data/app/views/decidim/searches/_filters.html.erb +40 -38
- data/app/views/decidim/shared/_results_per_page.html.erb +1 -1
- data/app/views/kaminari/decidim/_page.html.erb +1 -1
- data/app/views/kaminari/decidim/_paginator.html.erb +1 -1
- data/app/views/layouts/decidim/_logo.html.erb +2 -2
- data/app/views/layouts/decidim/footer/_main_legal.html.erb +1 -1
- data/app/views/layouts/decidim/header/_menu_breadcrumb_main_dropdown_desktop.html.erb +5 -11
- data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile_tablet.html.erb +5 -5
- data/config/locales/ar.yml +3 -10
- data/config/locales/bg.yml +2 -9
- data/config/locales/bs-BA.yml +2 -0
- data/config/locales/ca-IT.yml +2411 -0
- data/config/locales/ca.yml +36 -3
- data/config/locales/cs.yml +33 -14
- data/config/locales/de.yml +39 -15
- data/config/locales/el.yml +2 -9
- data/config/locales/en.yml +34 -1
- data/config/locales/es-MX.yml +38 -5
- data/config/locales/es-PY.yml +38 -5
- data/config/locales/es.yml +35 -2
- data/config/locales/eu.yml +68 -35
- data/config/locales/fi-plain.yml +4 -18
- data/config/locales/fi.yml +4 -18
- data/config/locales/fr-CA.yml +30 -12
- data/config/locales/fr.yml +29 -11
- data/config/locales/ga-IE.yml +2 -0
- data/config/locales/gl.yml +3 -6
- data/config/locales/hu.yml +2 -9
- data/config/locales/id-ID.yml +2 -7
- data/config/locales/is-IS.yml +0 -5
- data/config/locales/it.yml +12 -11
- data/config/locales/ja.yml +87 -23
- data/config/locales/lb.yml +5 -8
- data/config/locales/lt.yml +0 -7
- data/config/locales/lv.yml +2 -7
- data/config/locales/nl.yml +2 -5
- data/config/locales/no.yml +2 -5
- data/config/locales/pl.yml +2 -9
- data/config/locales/pt-BR.yml +3 -10
- data/config/locales/pt.yml +2 -5
- data/config/locales/ro-RO.yml +165 -7
- data/config/locales/ru.yml +0 -5
- data/config/locales/sk.yml +2 -7
- data/config/locales/sr-CS.yml +2 -0
- data/config/locales/sv.yml +54 -12
- data/config/locales/tr-TR.yml +3 -8
- data/config/locales/uk.yml +0 -5
- data/config/locales/zh-CN.yml +2 -7
- data/config/locales/zh-TW.yml +2 -7
- data/db/migrate/20171212103803_create_unique_nicknames.rb +1 -1
- data/db/migrate/20180221101934_fix_nickname_index.rb +1 -1
- data/db/migrate/20180706104107_add_nickname_to_managed_users.rb +1 -1
- data/db/migrate/20181001124950_move_users_groups_to_users_table.rb +1 -1
- data/db/migrate/20190412131728_fix_user_names.rb +1 -1
- data/lib/decidim/asset_router/storage.rb +7 -2
- data/lib/decidim/attributes/time_with_zone.rb +5 -1
- data/lib/decidim/content_parsers/blob_parser.rb +10 -8
- data/lib/decidim/core/test/factories.rb +12 -0
- data/lib/decidim/core/test/shared_examples/map_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/reports_examples.rb +8 -15
- data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +26 -0
- data/lib/decidim/core/test/shared_examples/versions_controller_examples.rb +26 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/moderation_tools.rb +14 -8
- data/lib/decidim/nicknamizable.rb +6 -9
- data/lib/decidim/participatory_space_user.rb +1 -3
- data/lib/decidim/private_download_helper.rb +3 -3
- data/lib/decidim/reportable.rb +6 -2
- data/lib/decidim/translatable_attributes.rb +5 -1
- data/lib/tasks/upgrade/clean.rake +9 -1
- data/lib/tasks/upgrade/decidim_fix_nickname_uniqueness.rake +4 -4
- data/lib/tasks/upgrade/migrations.rake +2 -0
- metadata +9 -8
- data/app/views/decidim/reported_mailer/hide.html.erb +0 -9
- data/lib/tasks/upgrade/clean_hidden_resources.rake +0 -33
data/config/locales/fr-CA.yml
CHANGED
@@ -6,6 +6,7 @@ fr-CA:
|
|
6
6
|
delete_reason: Pour quelle(s) raison(s) supprimez-vous votre compte ?
|
7
7
|
attachment:
|
8
8
|
documents: Documents
|
9
|
+
image: Image
|
9
10
|
photos: Photos
|
10
11
|
common:
|
11
12
|
created_at: Créé le
|
@@ -48,6 +49,12 @@ fr-CA:
|
|
48
49
|
tos_agreement: Conditions d'utilisation
|
49
50
|
user_group:
|
50
51
|
avatar: Avatar
|
52
|
+
errors:
|
53
|
+
models:
|
54
|
+
user:
|
55
|
+
attributes:
|
56
|
+
nickname:
|
57
|
+
format: Le pseudo doit être en minuscules et ne contenir aucun espace
|
51
58
|
models:
|
52
59
|
decidim/attachment_created_event: Document lié
|
53
60
|
decidim/component_published_event: Fonctionnalité active
|
@@ -106,7 +113,7 @@ fr-CA:
|
|
106
113
|
decidim_with_month_name_short: "%d %b"
|
107
114
|
help:
|
108
115
|
date_format: 'Format: jj/mm/aaaa'
|
109
|
-
order:
|
116
|
+
order: d-m-y
|
110
117
|
separator: "/"
|
111
118
|
datetime:
|
112
119
|
distance_in_words:
|
@@ -161,6 +168,7 @@ fr-CA:
|
|
161
168
|
front_page_link: Aller à la première page
|
162
169
|
logo: "Logo officiel de %{organization}"
|
163
170
|
opens_in_new_tab: S'ouvre dans un nouvel onglet
|
171
|
+
secondary_menu: Menu secondaire
|
164
172
|
skip_button: Passer au contenu principal
|
165
173
|
account:
|
166
174
|
blocked: Ce compte a été bloqué en raison d'une violation des conditions d'utilisation
|
@@ -581,7 +589,7 @@ fr-CA:
|
|
581
589
|
metrics:
|
582
590
|
name: Historique des statistiques de participation
|
583
591
|
participatory_space_metrics:
|
584
|
-
name:
|
592
|
+
name: Participation en chiffres
|
585
593
|
participatory_space_stats:
|
586
594
|
name: Statistiques
|
587
595
|
social_networks_metadata:
|
@@ -745,15 +753,10 @@ fr-CA:
|
|
745
753
|
error: Une erreur est survenue lors du téléchargement de l'image.
|
746
754
|
success: L'image a été téléchargée avec succès.
|
747
755
|
drag_and_drop_help: Ajoutez des images en les glissant - déposant ou en les collant depuis votre presse-papier.
|
748
|
-
endorsement_buttons_cell:
|
749
|
-
endorse: J’aime
|
750
756
|
endorsements:
|
751
757
|
identities:
|
752
758
|
done: Terminé
|
753
759
|
select_identity: Sélectionner une identité
|
754
|
-
endorsers_list:
|
755
|
-
others: "%{count} de plus"
|
756
|
-
you: vous
|
757
760
|
ephemeral_user: Visiteur
|
758
761
|
errors:
|
759
762
|
files:
|
@@ -1282,7 +1285,7 @@ fr-CA:
|
|
1282
1285
|
participants:
|
1283
1286
|
description: Nombre d'utilisateurs actifs dans l'organisation
|
1284
1287
|
object: les participants
|
1285
|
-
title:
|
1288
|
+
title: Participant·e·s
|
1286
1289
|
reported_users:
|
1287
1290
|
description: Nombre de participants signalés
|
1288
1291
|
user_reports:
|
@@ -1290,7 +1293,7 @@ fr-CA:
|
|
1290
1293
|
users:
|
1291
1294
|
description: Nombre d'utilisateurs dans l'organisation
|
1292
1295
|
object: utilisateurs
|
1293
|
-
title:
|
1296
|
+
title: Participant·e·s
|
1294
1297
|
newsletter_mailer:
|
1295
1298
|
newsletter:
|
1296
1299
|
no_reply_notice: Cet e-mail a été envoyé à partir d'une adresse automatique qui ne peut pas recevoir d'e-mail. Veuillez ne pas répondre à ce message.
|
@@ -1582,11 +1585,24 @@ fr-CA:
|
|
1582
1585
|
confirmation_instructions_sent: Instructions de confirmation d'email envoyées.
|
1583
1586
|
fill_in_email_to_confirm_it: Veuillez compléter le mail de votre groupe pour confirmer celui-ci.
|
1584
1587
|
reported_mailer:
|
1585
|
-
|
1588
|
+
hidden_automatically:
|
1589
|
+
content: Contenu signalé
|
1590
|
+
details: Détails
|
1586
1591
|
hello: Bonjour %{name},
|
1587
1592
|
manage_moderations: Gérer les modérations
|
1588
|
-
|
1589
|
-
|
1593
|
+
participatory_space: Espace participatif
|
1594
|
+
reason: Motif
|
1595
|
+
report_html: <p>Le <a href="%{url}">contenu</a> suivant a été masqué automatiquement.</p>
|
1596
|
+
subject: Une ressource a été masquée automatiquement
|
1597
|
+
hidden_manually:
|
1598
|
+
content: Contenu signalé
|
1599
|
+
details: Détails
|
1600
|
+
hello: Bonjour %{name},
|
1601
|
+
manage_moderations: Gérer les modérations
|
1602
|
+
participatory_space: Espace participatif
|
1603
|
+
reason: Motif
|
1604
|
+
report_html: <p>Le <a href="%{url}">contenu</a> suivant a été masqué automatiquement.</p>
|
1605
|
+
subject: Une ressource a été masquée par %{moderator}
|
1590
1606
|
report:
|
1591
1607
|
authors: Auteurs
|
1592
1608
|
content: Contenu signalé
|
@@ -1604,6 +1620,8 @@ fr-CA:
|
|
1604
1620
|
create:
|
1605
1621
|
error: Une erreur s'est produite lors de la création du rapport. Veuillez essayer à nouveau.
|
1606
1622
|
success: Le contenu a été signalé, il sera examiné par un administrateur.
|
1623
|
+
hide:
|
1624
|
+
success: Cette ressource a été masquée.
|
1607
1625
|
parent_hidden:
|
1608
1626
|
report_details: La ressource parente a été masquée
|
1609
1627
|
resource_endorsements:
|
data/config/locales/fr.yml
CHANGED
@@ -6,6 +6,7 @@ fr:
|
|
6
6
|
delete_reason: Pour quelle(s) raison(s) supprimez-vous votre compte ?
|
7
7
|
attachment:
|
8
8
|
documents: Documents
|
9
|
+
image: Image
|
9
10
|
photos: Photos
|
10
11
|
common:
|
11
12
|
created_at: Créé le
|
@@ -48,6 +49,12 @@ fr:
|
|
48
49
|
tos_agreement: Conditions d'utilisation
|
49
50
|
user_group:
|
50
51
|
avatar: Avatar
|
52
|
+
errors:
|
53
|
+
models:
|
54
|
+
user:
|
55
|
+
attributes:
|
56
|
+
nickname:
|
57
|
+
format: Le pseudo doit être en minuscules et ne contenir aucun espace
|
51
58
|
models:
|
52
59
|
decidim/attachment_created_event: Document lié
|
53
60
|
decidim/component_published_event: Fonctionnalité active
|
@@ -106,7 +113,7 @@ fr:
|
|
106
113
|
decidim_with_month_name_short: "%d %b"
|
107
114
|
help:
|
108
115
|
date_format: 'Format: jj/mm/aaaa'
|
109
|
-
order:
|
116
|
+
order: d-m-y
|
110
117
|
separator: "/"
|
111
118
|
datetime:
|
112
119
|
distance_in_words:
|
@@ -161,6 +168,7 @@ fr:
|
|
161
168
|
front_page_link: Aller à la première page
|
162
169
|
logo: "Logo officiel de %{organization}"
|
163
170
|
opens_in_new_tab: S'ouvre dans un nouvel onglet
|
171
|
+
secondary_menu: Menu secondaire
|
164
172
|
skip_button: Passer au contenu principal
|
165
173
|
account:
|
166
174
|
blocked: Ce compte a été bloqué en raison d'une violation des conditions d'utilisation
|
@@ -581,7 +589,7 @@ fr:
|
|
581
589
|
metrics:
|
582
590
|
name: Historique des statistiques de participation
|
583
591
|
participatory_space_metrics:
|
584
|
-
name:
|
592
|
+
name: Participation en chiffres
|
585
593
|
participatory_space_stats:
|
586
594
|
name: Statistiques
|
587
595
|
social_networks_metadata:
|
@@ -745,15 +753,10 @@ fr:
|
|
745
753
|
error: Une erreur est survenue lors du téléchargement de l'image.
|
746
754
|
success: L'image a été téléchargée avec succès.
|
747
755
|
drag_and_drop_help: Ajoutez des images en les glissant - déposant ou en les collant depuis votre presse-papier.
|
748
|
-
endorsement_buttons_cell:
|
749
|
-
endorse: J’aime
|
750
756
|
endorsements:
|
751
757
|
identities:
|
752
758
|
done: Terminé
|
753
759
|
select_identity: Sélectionner une identité
|
754
|
-
endorsers_list:
|
755
|
-
others: "%{count} de plus"
|
756
|
-
you: vous
|
757
760
|
ephemeral_user: Visiteur
|
758
761
|
errors:
|
759
762
|
files:
|
@@ -1290,7 +1293,7 @@ fr:
|
|
1290
1293
|
users:
|
1291
1294
|
description: Nombre d'utilisateurs dans l'organisation
|
1292
1295
|
object: utilisateurs
|
1293
|
-
title:
|
1296
|
+
title: Participants
|
1294
1297
|
newsletter_mailer:
|
1295
1298
|
newsletter:
|
1296
1299
|
no_reply_notice: Cet e-mail a été envoyé à partir d'une adresse automatique qui ne peut pas recevoir d'e-mail. Veuillez ne pas répondre à ce message.
|
@@ -1582,11 +1585,24 @@ fr:
|
|
1582
1585
|
confirmation_instructions_sent: Instructions de confirmation d'email envoyées.
|
1583
1586
|
fill_in_email_to_confirm_it: Veuillez compléter le mail de votre groupe pour confirmer celui-ci.
|
1584
1587
|
reported_mailer:
|
1585
|
-
|
1588
|
+
hidden_automatically:
|
1589
|
+
content: Contenu signalé
|
1590
|
+
details: Détails
|
1591
|
+
hello: Bonjour %{name},
|
1592
|
+
manage_moderations: Gérer les modérations
|
1593
|
+
participatory_space: Espace participatif
|
1594
|
+
reason: Motif
|
1595
|
+
report_html: <p>Le <a href="%{url}">contenu</a> suivant a été masqué automatiquement.</p>
|
1596
|
+
subject: Une ressource a été masquée automatiquement
|
1597
|
+
hidden_manually:
|
1598
|
+
content: Contenu signalé
|
1599
|
+
details: Détails
|
1586
1600
|
hello: Bonjour %{name},
|
1587
1601
|
manage_moderations: Gérer les modérations
|
1588
|
-
|
1589
|
-
|
1602
|
+
participatory_space: Espace participatif
|
1603
|
+
reason: Motif
|
1604
|
+
report_html: <p>Le <a href="%{url}">contenu</a> suivant a été masqué automatiquement.</p>
|
1605
|
+
subject: Une ressource a été masquée par %{moderator}
|
1590
1606
|
report:
|
1591
1607
|
authors: Auteurs
|
1592
1608
|
content: Contenu signalé
|
@@ -1604,6 +1620,8 @@ fr:
|
|
1604
1620
|
create:
|
1605
1621
|
error: Une erreur s'est produite lors de la création du rapport. Veuillez essayer à nouveau.
|
1606
1622
|
success: Le contenu a été signalé, il sera examiné par un administrateur.
|
1623
|
+
hide:
|
1624
|
+
success: Cette ressource a été masquée.
|
1607
1625
|
parent_hidden:
|
1608
1626
|
report_details: La ressource parente a été masquée
|
1609
1627
|
resource_endorsements:
|
data/config/locales/ga-IE.yml
CHANGED
data/config/locales/gl.yml
CHANGED
@@ -269,6 +269,8 @@ gl:
|
|
269
269
|
view_all: Ver todo
|
270
270
|
metrics:
|
271
271
|
name: Métricas da organización
|
272
|
+
participatory_space_metrics:
|
273
|
+
name: Participación en números
|
272
274
|
stats:
|
273
275
|
name: Estatísticas da organización
|
274
276
|
sub_hero:
|
@@ -626,7 +628,7 @@ gl:
|
|
626
628
|
users:
|
627
629
|
description: Número de usuarios da organización
|
628
630
|
object: usuarios
|
629
|
-
title:
|
631
|
+
title: Participantes
|
630
632
|
newsletter_mailer:
|
631
633
|
newsletter:
|
632
634
|
unsubscribe: Para desactivar a recepción deste tipo de correo electrónico, <a href="%{link}" target="_blank" class="unsubscribe">Subscribe</a>.
|
@@ -725,11 +727,6 @@ gl:
|
|
725
727
|
manage_user_group_users: Xestionar membros
|
726
728
|
resend_email_confirmation_instructions: Reenvía as instrucións de confirmación de correo electrónico
|
727
729
|
reported_mailer:
|
728
|
-
hide:
|
729
|
-
hello: Ola %{name},
|
730
|
-
manage_moderations: Xestionar moderacións
|
731
|
-
report_html: <p> O seguinte <a href="%{url}">content</a> ocultouse automaticamente.</p>
|
732
|
-
subject: Ocultouse un recurso automaticamente
|
733
730
|
report:
|
734
731
|
hello: Ola %{name},
|
735
732
|
report_html: <p> Informáronse os seguintes <a href="%{url}">content</a>.</p>
|
data/config/locales/hu.yml
CHANGED
@@ -494,7 +494,7 @@ hu:
|
|
494
494
|
metrics:
|
495
495
|
name: Szervezeti mutatók
|
496
496
|
participatory_space_metrics:
|
497
|
-
name:
|
497
|
+
name: Részvétel számokban
|
498
498
|
participatory_space_stats:
|
499
499
|
name: Statisztikák
|
500
500
|
social_networks_metadata:
|
@@ -580,8 +580,6 @@ hu:
|
|
580
580
|
error: Hiba történt a kép feltöltése közben.
|
581
581
|
success: Kép sikeresen feltöltve.
|
582
582
|
drag_and_drop_help: Képek hozzáadása húzással és ejtéssel vagy beillesztéssel.
|
583
|
-
endorsement_buttons_cell:
|
584
|
-
endorse: Tetszik
|
585
583
|
endorsements:
|
586
584
|
identities:
|
587
585
|
done: Kész
|
@@ -1056,7 +1054,7 @@ hu:
|
|
1056
1054
|
followers:
|
1057
1055
|
description: A résztvevők száma, akik ezt a részvételi teret követik
|
1058
1056
|
object: követők
|
1059
|
-
title:
|
1057
|
+
title: Követő
|
1060
1058
|
participants:
|
1061
1059
|
description: Az aktív felhasználók száma a szervezetben
|
1062
1060
|
object: résztvevők
|
@@ -1242,11 +1240,6 @@ hu:
|
|
1242
1240
|
confirmation_instructions_sent: A megerősítő email az utasításokkal elküldve.
|
1243
1241
|
fill_in_email_to_confirm_it: Kérjük, töltse ki a csoport e-mailjét a megerősítéshez.
|
1244
1242
|
reported_mailer:
|
1245
|
-
hide:
|
1246
|
-
hello: Helló %{name}!
|
1247
|
-
manage_moderations: Moderálódások kezelése
|
1248
|
-
report_html: <p>A következő <a href="%{url}">tartalom</a>automatikusan el volt rejtve.</p>
|
1249
|
-
subject: Egy erőforrás automatikusan elrejtve
|
1250
1243
|
report:
|
1251
1244
|
authors: Szerzők
|
1252
1245
|
content: Jelentett tartalom
|
data/config/locales/id-ID.yml
CHANGED
@@ -252,6 +252,8 @@ id:
|
|
252
252
|
view_all: Lihat semua
|
253
253
|
metrics:
|
254
254
|
name: Metrik organisasi
|
255
|
+
participatory_space_metrics:
|
256
|
+
name: Partisipasi dalam angka
|
255
257
|
stats:
|
256
258
|
name: Statistik organisasi
|
257
259
|
sub_hero:
|
@@ -571,11 +573,9 @@ id:
|
|
571
573
|
participants:
|
572
574
|
description: Jumlah pengguna aktif dalam organisasi
|
573
575
|
object: peserta
|
574
|
-
title: Peserta
|
575
576
|
users:
|
576
577
|
description: Jumlah pengguna dalam organisasi
|
577
578
|
object: pengguna
|
578
|
-
title: Pengguna
|
579
579
|
newsletter_mailer:
|
580
580
|
newsletter:
|
581
581
|
unsubscribe: Untuk memilih tidak menerima jenis email ini, <a href="%{link}" target="_blank" class="unsubscribe">Berhenti Berlangganan</a>.
|
@@ -665,11 +665,6 @@ id:
|
|
665
665
|
manage_user_group_users: Kelola anggota
|
666
666
|
resend_email_confirmation_instructions: Kirim ulang instruksi konfirmasi email
|
667
667
|
reported_mailer:
|
668
|
-
hide:
|
669
|
-
hello: Halo %{name},
|
670
|
-
manage_moderations: Kelola moderasi
|
671
|
-
report_html: <p>berikut <a href="%{url}">konten</a> telah disembunyikan secara otomatis.</p>
|
672
|
-
subject: Sumber daya telah disembunyikan secara otomatis
|
673
668
|
report:
|
674
669
|
hello: Halo %{name},
|
675
670
|
report_html: <p> <a href="%{url}">konten</a> berikut telah dilaporkan.</p>
|
data/config/locales/is-IS.yml
CHANGED
@@ -247,11 +247,6 @@ is:
|
|
247
247
|
newsletter_notifications: Ég vil fá fréttabréf
|
248
248
|
update_notifications_settings: Vista breytingar
|
249
249
|
reported_mailer:
|
250
|
-
hide:
|
251
|
-
hello: Halló %{name},
|
252
|
-
manage_moderations: Stjórna meðlimum
|
253
|
-
report_html: <p>Eftirfarandi <a href="%{url}">efni</a> hefur verið falið sjálfkrafa.</p>
|
254
|
-
subject: Úrræði hefur verið falið sjálfkrafa
|
255
250
|
report:
|
256
251
|
hello: Halló %{name},
|
257
252
|
report_html: <p>Eftirfarandi <a href="%{url}">efni</a> hefur verið tilkynnt.</p>
|
data/config/locales/it.yml
CHANGED
@@ -42,6 +42,7 @@ it:
|
|
42
42
|
decidim/promote_to_admin: Promosso ad amministratore del gruppo
|
43
43
|
decidim/removed_from_group: Rimosso dal gruppo
|
44
44
|
decidim/resource_endorsed_event: Risorsa approvata
|
45
|
+
decidim/user_group_created_event: Gruppo utenti creato
|
45
46
|
activerecord:
|
46
47
|
attributes:
|
47
48
|
decidim/user:
|
@@ -366,6 +367,8 @@ it:
|
|
366
367
|
view_all: Guarda tutto
|
367
368
|
metrics:
|
368
369
|
name: Metriche dell'organizzazione
|
370
|
+
participatory_space_metrics:
|
371
|
+
name: Partecipazione in cifre
|
369
372
|
stats:
|
370
373
|
name: Statistiche dell'organizzazione
|
371
374
|
sub_hero:
|
@@ -497,7 +500,7 @@ it:
|
|
497
500
|
email_outro: Hai ricevuto questa notifica perché hai fatto attività sul nostro sito web.
|
498
501
|
groups:
|
499
502
|
demoted_membership:
|
500
|
-
email_intro: Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ha rimosso i diritti di amministratore per quel gruppo.
|
503
|
+
email_intro: Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ha rimosso i tuoi diritti di amministratore per quel gruppo.
|
501
504
|
email_outro: Hai ricevuto questa notifica perché sei un membro di quel gruppo.
|
502
505
|
email_subject: Non sei più un amministratore del gruppo %{user_group_name}!
|
503
506
|
notification_title: Non sei più un amministratore del gruppo <a href="%{resource_path}">%{user_group_name}</a>.
|
@@ -508,7 +511,7 @@ it:
|
|
508
511
|
notification_title: Sei stato invitato a far parte del gruppo <a href="%{resource_path}">%{user_group_name}</a> . Controlla la pagina <a href="%{groups_profile_tab_path}">Gruppi</a> nel tuo profilo per approvarla!
|
509
512
|
join_request_accepted:
|
510
513
|
email_intro: Congratulazioni! Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ha accettato la tua richiesta di adesione.
|
511
|
-
email_outro: Hai ricevuto questa notifica perché la tua richiesta di
|
514
|
+
email_outro: Hai ricevuto questa notifica perché la tua richiesta di adesione è stata aggiornata.
|
512
515
|
email_subject: Sei stato accettato nel gruppo %{user_group_name}!
|
513
516
|
notification_title: Sei stato accettato nel gruppo <a href="%{resource_path}">%{user_group_name}</a>.
|
514
517
|
join_request_created:
|
@@ -522,7 +525,7 @@ it:
|
|
522
525
|
email_subject: La tua richiesta di aderire al gruppo %{user_group_name} è stata respinta!
|
523
526
|
notification_title: La tua richiesta di aderire al gruppo <a href="%{resource_path}">%{user_group_name}</a> è stata respinta.
|
524
527
|
promoted_to_admin:
|
525
|
-
email_intro: Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ti ha concesso i diritti di amministratore
|
528
|
+
email_intro: Un amministratore del gruppo <a href="%{resource_url}">%{user_group_name}</a> ti ha concesso i diritti di amministratore quel gruppo.
|
526
529
|
email_outro: Hai ricevuto questa notifica perché sei un membro di quel gruppo.
|
527
530
|
email_subject: Ora sei un amministratore del gruppo %{user_group_name}!
|
528
531
|
notification_title: Ora sei un amministratore del gruppo <a href="%{resource_path}">%{user_group_name}</a>.
|
@@ -535,7 +538,7 @@ it:
|
|
535
538
|
email_intro: Un nuovo gruppo di utenti è stato creato con il nome %{user_group_name}. Ora puoi verificarlo nel <a href="%{groups_admin_url}">pannello di amministrazione</a>.
|
536
539
|
email_outro: Hai ricevuto questa notifica perché sei un amministratore della piattaforma.
|
537
540
|
email_subject: È stato creato un nuovo gruppo di utenti
|
538
|
-
notification_title: Il gruppo
|
541
|
+
notification_title: Il gruppo di utenti %{user_group_name} è stato creato. Ora puoi verificarlo nel <a href="%{groups_admin_path}">pannello di amministratore</a>.
|
539
542
|
user_group_updated:
|
540
543
|
email_intro: Un gruppo di utenti con il nome %{user_group_name} ha aggiornato il suo profilo, lasciandolo non verificato. Ora puoi verificarlo nel <a href="%{groups_admin_url}">pannello di amministrazione</a>.
|
541
544
|
email_outro: Hai ricevuto questa notifica perché sei un amministratore della piattaforma.
|
@@ -786,11 +789,11 @@ it:
|
|
786
789
|
participants:
|
787
790
|
description: Numero di utenti attivi nell'organizzazione
|
788
791
|
object: partecipanti
|
789
|
-
title:
|
792
|
+
title: Partecipanti
|
790
793
|
users:
|
791
794
|
description: Numero di utenti nell'organizzazione
|
792
795
|
object: utenti
|
793
|
-
title:
|
796
|
+
title: Partecipanti
|
794
797
|
newsletter_mailer:
|
795
798
|
newsletter:
|
796
799
|
unsubscribe: Per disattivare la ricezione di questo tipo di email, <a href="%{link}" target="_blank" class="unsubscribe">Unsubscribe</a>.
|
@@ -910,11 +913,6 @@ it:
|
|
910
913
|
manage_user_group_users: Gestisci i membri
|
911
914
|
resend_email_confirmation_instructions: Rispedire le istruzioni per la conferma dell'email
|
912
915
|
reported_mailer:
|
913
|
-
hide:
|
914
|
-
hello: Ciao %{name},
|
915
|
-
manage_moderations: Gestire le moderazioni
|
916
|
-
report_html: <p>Il seguente <a href="%{url}">contenuto</a> è stato nascosto automaticamente.</p>
|
917
|
-
subject: Un contenuto è stato cancellato automaticamente
|
918
916
|
report:
|
919
917
|
authors: Autori
|
920
918
|
content: Contenuto segnalato
|
@@ -1016,6 +1014,9 @@ it:
|
|
1016
1014
|
help_text: "<strong>Attenzione:</strong> Il contenuto potrebbe essere tradotto automaticamente e non essere accurato al 100%."
|
1017
1015
|
show_original: Mostra testo originale
|
1018
1016
|
show_translated: Mostra testo tradotto automaticamente
|
1017
|
+
user_activity:
|
1018
|
+
index:
|
1019
|
+
no_activities_warning: Questo utente non ha ancora avuto alcuna attività.
|
1019
1020
|
user_contact_disabled: Questo partecipante non accetta messaggi diretti.
|
1020
1021
|
user_conversations:
|
1021
1022
|
create:
|