decidim-core 0.31.4 → 0.31.6
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/content_blocks/cta_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +2 -2
- 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/html_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_cell.rb +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_cell.rb +1 -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_cell.rb +2 -2
- data/app/cells/decidim/content_blocks/static_page/two_pane_section_settings_form/show.erb +4 -2
- data/app/cells/decidim/data_consent/category.erb +5 -5
- data/app/cells/decidim/resource_types_filter/show.erb +2 -2
- data/app/cells/decidim/upload_modal_cell.rb +5 -0
- 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 +10 -0
- data/app/controllers/decidim/download_your_data_controller.rb +1 -1
- data/app/controllers/decidim/notifications_subscriptions_controller.rb +8 -0
- data/app/controllers/decidim/private_downloads_controller.rb +29 -0
- 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/attachment.rb +20 -2
- data/app/models/decidim/authorization.rb +7 -0
- data/app/models/decidim/moderation.rb +1 -1
- data/app/models/decidim/participatory_space_private_user.rb +1 -1
- data/app/models/decidim/private_download.rb +61 -0
- data/app/models/decidim/private_export.rb +6 -0
- 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/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/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/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/push-permissions.js +48 -13
- 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/_editor_suggestions.scss +49 -0
- data/app/packs/stylesheets/decidim/_floating_help.scss +1 -1
- 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/services/decidim/notifications_subscriptions_persistor.rb +6 -0
- data/app/services/decidim/push_subscription_endpoint_validator.rb +34 -0
- data/app/services/decidim/send_push_notification.rb +5 -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/notifications_settings/show.html.erb +5 -5
- 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_breadcrumb_mobile_tablet.html.erb +1 -1
- 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/locales/ar.yml +0 -5
- data/config/locales/bg.yml +0 -6
- data/config/locales/ca-IT.yml +10 -10
- data/config/locales/ca.yml +10 -10
- data/config/locales/cs.yml +4 -13
- data/config/locales/de.yml +5 -17
- data/config/locales/el.yml +0 -4
- data/config/locales/en.yml +9 -9
- data/config/locales/es-MX.yml +9 -9
- data/config/locales/es-PY.yml +9 -9
- data/config/locales/es.yml +9 -9
- data/config/locales/eu.yml +49 -49
- data/config/locales/fi-plain.yml +9 -9
- data/config/locales/fi.yml +11 -11
- data/config/locales/fr-CA.yml +10 -9
- data/config/locales/fr.yml +10 -9
- data/config/locales/gl.yml +0 -3
- data/config/locales/hu.yml +0 -5
- data/config/locales/id-ID.yml +0 -3
- data/config/locales/it.yml +11 -3
- data/config/locales/ja.yml +24 -21
- data/config/locales/lb.yml +0 -5
- data/config/locales/lt.yml +0 -5
- data/config/locales/lv.yml +0 -3
- data/config/locales/nl.yml +0 -5
- data/config/locales/no.yml +0 -5
- data/config/locales/pl.yml +2 -8
- data/config/locales/pt-BR.yml +3 -16
- data/config/locales/pt.yml +0 -5
- data/config/locales/ro-RO.yml +1 -14
- data/config/locales/sk.yml +1408 -4
- data/config/locales/sv.yml +3 -11
- data/config/locales/tr-TR.yml +0 -6
- data/config/locales/zh-CN.yml +0 -5
- data/config/locales/zh-TW.yml +0 -5
- data/config/routes.rb +1 -0
- 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/comments_examples.rb +6 -6
- 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 +14 -10
- 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
|
@@ -11,7 +11,7 @@ end
|
|
|
11
11
|
%>
|
|
12
12
|
|
|
13
13
|
<div class="layout-container">
|
|
14
|
-
<header <%= "class=with-admin-bar" if current_user && allowed_to?(:read, :admin_dashboard)
|
|
14
|
+
<header <%= "class=with-admin-bar" if current_user && allowed_to?(:read, :admin_dashboard) %> role="banner">
|
|
15
15
|
<div id="sticky-header-container" data-controller="sticky-header">
|
|
16
16
|
<%= render partial: "layouts/decidim/impersonation_warning" %>
|
|
17
17
|
<%= render partial: "layouts/decidim/omnipresent_banner" %>
|
|
@@ -37,7 +37,7 @@ end
|
|
|
37
37
|
<%= yield %>
|
|
38
38
|
</div>
|
|
39
39
|
|
|
40
|
-
<footer>
|
|
40
|
+
<footer role="contentinfo">
|
|
41
41
|
<% if current_user&.ephemeral? || content_for?(:focus_mode) %>
|
|
42
42
|
<%= render partial: "layouts/decidim/footer/focus_mode_main" %>
|
|
43
43
|
<% else %>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<div class="menu-bar__breadcrumb-mobile__dropdown-trigger">
|
|
3
3
|
<span class="inline-block w-full overflow-hidden text-ellipsis align-middle">
|
|
4
4
|
<% breadcrumb_items.last(2).each_with_index do |item, idx| %>
|
|
5
|
-
<% item_label =
|
|
5
|
+
<% item_label = translated_attribute(item[:label]) %>
|
|
6
6
|
<% if idx.positive? %>
|
|
7
7
|
<span>/</span>
|
|
8
8
|
<% end %>
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<%= yield :item_header %>
|
|
3
3
|
</div>
|
|
4
4
|
<div class="<%= layout_item_classes %>">
|
|
5
|
-
<main class="layout-item__main">
|
|
5
|
+
<main class="layout-item__main" role="main">
|
|
6
6
|
<% if params[:included_in] %>
|
|
7
7
|
<%= render partial: "layouts/decidim/shared/linked_resource" %>
|
|
8
8
|
<% end %>
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
<%= yield :aside %>
|
|
8
8
|
</aside>
|
|
9
9
|
<% main_tag = main_enabled ? :main : :div %>
|
|
10
|
-
<%= content_tag main_tag, class: "layout-2col__main" do %>
|
|
10
|
+
<%= content_tag main_tag, class: "layout-2col__main", role: (main_enabled ? "main" : nil) do %>
|
|
11
11
|
<%= content_for :flash_messages %>
|
|
12
12
|
<%= yield %>
|
|
13
13
|
<% end %>
|
data/config/locales/ar.yml
CHANGED
|
@@ -293,9 +293,6 @@ ar:
|
|
|
293
293
|
update_draft:
|
|
294
294
|
error: حدثت هناك مشكلة أثناء تحديث مسودة التعديل.
|
|
295
295
|
success: تم تحديث مسودة التعديل بنجاح.
|
|
296
|
-
wizard_step_form:
|
|
297
|
-
steps:
|
|
298
|
-
'1': إنشاء التعديل الخاص بك
|
|
299
296
|
anonymous_user: مجهول
|
|
300
297
|
application:
|
|
301
298
|
document:
|
|
@@ -410,7 +407,6 @@ ar:
|
|
|
410
407
|
global:
|
|
411
408
|
amendments_enabled: تم تمكين التعديلات
|
|
412
409
|
comments_enabled: تم تمكين التعليقات
|
|
413
|
-
comments_max_length: الحد الأقصى لطول التعليقات
|
|
414
410
|
dummy_global_attribute1: السمة الدمية 1
|
|
415
411
|
dummy_global_attribute2: السمة الدمية 2
|
|
416
412
|
dummy_global_translatable_text: نص افتراضي قابل للترجمة
|
|
@@ -813,7 +809,6 @@ ar:
|
|
|
813
809
|
modal_title: محادثة جديدة
|
|
814
810
|
no_results: لا توجد نتائج
|
|
815
811
|
error_modal:
|
|
816
|
-
close: اغلاق النموذج
|
|
817
812
|
correct_errors: يرجى تصحيح الأخطاء والمحاولة مرة أخرى.
|
|
818
813
|
intro: 'حدثت الأخطاء التالية في رسالتك:'
|
|
819
814
|
ok: حسناً
|
data/config/locales/bg.yml
CHANGED
|
@@ -337,10 +337,6 @@ bg:
|
|
|
337
337
|
success: Черновата на поправка е успешно обновена.
|
|
338
338
|
withdraw:
|
|
339
339
|
success: Изменението беше оттеглено успешно.
|
|
340
|
-
wizard_step_form:
|
|
341
|
-
steps:
|
|
342
|
-
'1': Създайте Ваша поправка
|
|
343
|
-
'2': Публикувайте своето изменение
|
|
344
340
|
anonymous_user: Анонимен
|
|
345
341
|
application:
|
|
346
342
|
document:
|
|
@@ -462,7 +458,6 @@ bg:
|
|
|
462
458
|
global:
|
|
463
459
|
amendments_enabled: Поправки разрешени
|
|
464
460
|
comments_enabled: Коментари разрешени
|
|
465
|
-
comments_max_length: Максимална дължина на коментарите
|
|
466
461
|
dummy_global_attribute1: Макетен атрибут 1
|
|
467
462
|
dummy_global_attribute2: Макетен атрибут 2
|
|
468
463
|
dummy_global_translatable_text: Макетен преводим текст
|
|
@@ -934,7 +929,6 @@ bg:
|
|
|
934
929
|
create:
|
|
935
930
|
error: Разговора не започна. Опитайте по-късно.
|
|
936
931
|
error_modal:
|
|
937
|
-
close: Затвори прозореца
|
|
938
932
|
correct_errors: Моля, коригирайте грешките и опитайте отново.
|
|
939
933
|
intro: 'Имаше следните грешки с вашето съобщение:'
|
|
940
934
|
ok: ОК
|
data/config/locales/ca-IT.yml
CHANGED
|
@@ -554,7 +554,7 @@ ca-IT:
|
|
|
554
554
|
global:
|
|
555
555
|
amendments_enabled: Esmenes habilitades
|
|
556
556
|
comments_enabled: Comentaris habilitats
|
|
557
|
-
comments_max_length:
|
|
557
|
+
comments_max_length: Caràcters màxims per comentari
|
|
558
558
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
559
559
|
dummy_global_attribute1: Atribut de prova 1
|
|
560
560
|
dummy_global_attribute2: Atribut de prova 2
|
|
@@ -661,6 +661,13 @@ ca-IT:
|
|
|
661
661
|
all: Tots
|
|
662
662
|
filter_taxonomy_values:
|
|
663
663
|
all: Totes
|
|
664
|
+
delete_user_mailer:
|
|
665
|
+
delete:
|
|
666
|
+
body_1: El teu compte s'ha desactivat i ja no és accessible. Les teves dades personals estan programades per eliminar-les permanentment d'acord amb les nostres polítiques de retenció de dades.
|
|
667
|
+
body_2: Per raons de seguretat, es conservaran algunes dades relacionades amb la verificació; d'aquesta manera si creessis un compte nou i el tornes a verificar, es podria vincular l'autorització amb aquest compte nou.
|
|
668
|
+
greetings_html: Atentament,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
669
|
+
hello: Hola %{username},
|
|
670
|
+
subject: El teu compte ha estat eliminat
|
|
664
671
|
devise:
|
|
665
672
|
omniauth_registrations:
|
|
666
673
|
create:
|
|
@@ -1175,7 +1182,7 @@ ca-IT:
|
|
|
1175
1182
|
taxonomy_presenter:
|
|
1176
1183
|
not_found: 'No s''ha trobat la taxonomia a la base de dades (ID: %{id})'
|
|
1177
1184
|
machine_translations:
|
|
1178
|
-
automatic: traducció automàtica a %{locale_name}
|
|
1185
|
+
automatic: traducció automàtica a %{locale_name}
|
|
1179
1186
|
managed_users:
|
|
1180
1187
|
expired_session: La sessió actual d'administració d'una participant ha caducat.
|
|
1181
1188
|
map:
|
|
@@ -1212,7 +1219,6 @@ ca-IT:
|
|
|
1212
1219
|
create:
|
|
1213
1220
|
error: No s'ha iniciat la conversa. Torna-ho a provar més tard.
|
|
1214
1221
|
error_modal:
|
|
1215
|
-
close: Tanca la finestra
|
|
1216
1222
|
correct_errors: Si us plau, corregiu els errors i torneu-ho a intentar.
|
|
1217
1223
|
intro: 'Hi ha els següents errors al vostre missatge:'
|
|
1218
1224
|
ok: D'acord
|
|
@@ -1338,6 +1344,7 @@ ca-IT:
|
|
|
1338
1344
|
own_activity: La meva pròpia activitat, com quan algú fa comentaris a la meva proposta o em menciona
|
|
1339
1345
|
push_notifications: Notificacions emergents
|
|
1340
1346
|
push_notifications_reminder: Per rebre notificacions de la plataforma, primer les has de permetre a la configuració del teu navegador.
|
|
1347
|
+
push_notifications_unsupported_browser: El navegador no és compatible.
|
|
1341
1348
|
receive_notifications_about: Vull rebre notificacions
|
|
1342
1349
|
update_notifications_settings: Guardar canvis
|
|
1343
1350
|
update:
|
|
@@ -1523,13 +1530,6 @@ ca-IT:
|
|
|
1523
1530
|
log_in: entra
|
|
1524
1531
|
never_logged_in: mai ha iniciat sessió
|
|
1525
1532
|
subject: Avís de compte inactiu
|
|
1526
|
-
removal_notification:
|
|
1527
|
-
body: El teu compte a %{organization_name} s'ha eliminat per inactivitat.
|
|
1528
|
-
greetings_html: |
|
|
1529
|
-
Atentament,<br>
|
|
1530
|
-
%{organization_name}
|
|
1531
|
-
hello: Benvolgut/da %{username},
|
|
1532
|
-
subject: Avís de compte inactiu
|
|
1533
1533
|
passwords:
|
|
1534
1534
|
update:
|
|
1535
1535
|
error: Hi ha hagut un problema en actualitzar la contrasenya.
|
data/config/locales/ca.yml
CHANGED
|
@@ -554,7 +554,7 @@ ca:
|
|
|
554
554
|
global:
|
|
555
555
|
amendments_enabled: Esmenes habilitades
|
|
556
556
|
comments_enabled: Comentaris habilitats
|
|
557
|
-
comments_max_length:
|
|
557
|
+
comments_max_length: Caràcters màxims per comentari
|
|
558
558
|
define_taxonomy_filters: Si us plau, defineix algunes filtres per aquest espai de participació abans de fer servir aquesta configuració.
|
|
559
559
|
dummy_global_attribute1: Atribut de prova 1
|
|
560
560
|
dummy_global_attribute2: Atribut de prova 2
|
|
@@ -661,6 +661,13 @@ ca:
|
|
|
661
661
|
all: Tots
|
|
662
662
|
filter_taxonomy_values:
|
|
663
663
|
all: Totes
|
|
664
|
+
delete_user_mailer:
|
|
665
|
+
delete:
|
|
666
|
+
body_1: El teu compte s'ha desactivat i ja no és accessible. Les teves dades personals estan programades per eliminar-les permanentment d'acord amb les nostres polítiques de retenció de dades.
|
|
667
|
+
body_2: Per raons de seguretat, es conservaran algunes dades relacionades amb la verificació; d'aquesta manera si creessis un compte nou i el tornes a verificar, es podria vincular l'autorització amb aquest compte nou.
|
|
668
|
+
greetings_html: Atentament,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
669
|
+
hello: Hola %{username},
|
|
670
|
+
subject: El teu compte ha estat eliminat
|
|
664
671
|
devise:
|
|
665
672
|
omniauth_registrations:
|
|
666
673
|
create:
|
|
@@ -1212,7 +1219,6 @@ ca:
|
|
|
1212
1219
|
create:
|
|
1213
1220
|
error: No s'ha iniciat la conversa. Torna-ho a provar més tard.
|
|
1214
1221
|
error_modal:
|
|
1215
|
-
close: Tanca la finestra
|
|
1216
1222
|
correct_errors: Si us plau, corregiu els errors i torneu-ho a intentar.
|
|
1217
1223
|
intro: 'Hi ha els següents errors al vostre missatge:'
|
|
1218
1224
|
ok: D'acord
|
|
@@ -1338,6 +1344,7 @@ ca:
|
|
|
1338
1344
|
own_activity: La meva pròpia activitat, com quan algú fa comentaris a la meva proposta o em menciona
|
|
1339
1345
|
push_notifications: Notificacions emergents
|
|
1340
1346
|
push_notifications_reminder: Per rebre notificacions de la plataforma, primer les has de permetre a la configuració del teu navegador.
|
|
1347
|
+
push_notifications_unsupported_browser: El navegador no és compatible.
|
|
1341
1348
|
receive_notifications_about: Vull rebre notificacions
|
|
1342
1349
|
update_notifications_settings: Guardar canvis
|
|
1343
1350
|
update:
|
|
@@ -1523,13 +1530,6 @@ ca:
|
|
|
1523
1530
|
log_in: entra
|
|
1524
1531
|
never_logged_in: mai ha iniciat sessió
|
|
1525
1532
|
subject: Avís de compte inactiu
|
|
1526
|
-
removal_notification:
|
|
1527
|
-
body: El teu compte a %{organization_name} s'ha eliminat per inactivitat.
|
|
1528
|
-
greetings_html: |
|
|
1529
|
-
Atentament,<br>
|
|
1530
|
-
%{organization_name}
|
|
1531
|
-
hello: Benvolgut/da %{username},
|
|
1532
|
-
subject: Avís de compte inactiu
|
|
1533
1533
|
passwords:
|
|
1534
1534
|
update:
|
|
1535
1535
|
error: Hi ha hagut un problema en actualitzar la contrasenya.
|
|
@@ -1857,7 +1857,7 @@ ca:
|
|
|
1857
1857
|
invite_collaborator:
|
|
1858
1858
|
subject: T'han convidat a col·laborar a %{organization}
|
|
1859
1859
|
invite_private_user:
|
|
1860
|
-
subject: T'han convidat a participar en un espai de participació privat a%{organization}
|
|
1860
|
+
subject: T'han convidat a participar en un espai de participació privat a %{organization}
|
|
1861
1861
|
organization_admin_invitation_instructions:
|
|
1862
1862
|
subject: T'han convidat a administrar %{organization}
|
|
1863
1863
|
password_change:
|
data/config/locales/cs.yml
CHANGED
|
@@ -447,10 +447,6 @@ cs:
|
|
|
447
447
|
withdraw:
|
|
448
448
|
error: Při stahování pozměňovacího návrhu došlo k chybě.
|
|
449
449
|
success: Pozměňovací návrh byl úspěšně stažen.
|
|
450
|
-
wizard_step_form:
|
|
451
|
-
steps:
|
|
452
|
-
'1': Vytvořte svůj pozměňovací návrh
|
|
453
|
-
'2': Publikovat svůj pozměňovací návrh
|
|
454
450
|
anonymous_user: Anonymní
|
|
455
451
|
application:
|
|
456
452
|
document:
|
|
@@ -589,7 +585,7 @@ cs:
|
|
|
589
585
|
global:
|
|
590
586
|
amendments_enabled: Pozměňovací návrhy povoleny
|
|
591
587
|
comments_enabled: Komentáře povoleny
|
|
592
|
-
comments_max_length: Maximální
|
|
588
|
+
comments_max_length: Maximální počet znaků na komentář
|
|
593
589
|
define_taxonomy_filters: Před použitím tohoto nastavení prosím definujte některé filtry pro tento participační prostor.
|
|
594
590
|
dummy_global_attribute1: Zástupný atribut 1
|
|
595
591
|
dummy_global_attribute2: Zástupný atribut 2
|
|
@@ -837,6 +833,7 @@ cs:
|
|
|
837
833
|
delete_reason: Důvod pro odstranění tohoto uživatele
|
|
838
834
|
deleted_at: Datum a čas, kdy byl tento uživatel odstraněn
|
|
839
835
|
email: E-mailová adresa tohoto uživatele
|
|
836
|
+
followers_count: Počet účastníků, kteří sledují tohoto uživatele
|
|
840
837
|
following_count: Počet účastníků, které tento uživatel sleduje
|
|
841
838
|
id: Jedinečný identifikátor tohoto uživatele
|
|
842
839
|
invitation_accepted_at: Datum a čas, kdy byla pozvánka přijata
|
|
@@ -1184,6 +1181,7 @@ cs:
|
|
|
1184
1181
|
create_with_space: "%{user_name} vytvořil %{resource_name} v %{space_name}"
|
|
1185
1182
|
delete: "%{user_name} odstraněno %{resource_name}"
|
|
1186
1183
|
delete_with_space: "%{user_name} smazán %{resource_name} v %{space_name}"
|
|
1184
|
+
publish: "%{user_name} publikoval %{resource_name}"
|
|
1187
1185
|
publish_with_space: "%{user_name} publikoval %{resource_name} v %{space_name}"
|
|
1188
1186
|
unknown_action: "%{user_name} provedla nějakou akci na %{resource_name}"
|
|
1189
1187
|
unknown_action_with_space: "%{user_name} provedlo nějakou akci na %{resource_name} v %{space_name}"
|
|
@@ -1242,7 +1240,6 @@ cs:
|
|
|
1242
1240
|
create:
|
|
1243
1241
|
error: Konverzace nebyla zahájena. Zkuste to znovu později.
|
|
1244
1242
|
error_modal:
|
|
1245
|
-
close: Zavřít okno
|
|
1246
1243
|
correct_errors: Opravte chyby a zkuste to znovu.
|
|
1247
1244
|
intro: 'Došlo k následujícím chybám ve vaší zprávě:'
|
|
1248
1245
|
ok: OK
|
|
@@ -1548,13 +1545,6 @@ cs:
|
|
|
1548
1545
|
log_in: přihlásit se
|
|
1549
1546
|
never_logged_in: nikdy se nepřihlásil
|
|
1550
1547
|
subject: Upozornění na neaktivní účet
|
|
1551
|
-
removal_notification:
|
|
1552
|
-
body: Váš %{organization_name} účet byl odstraněn z důvodu neaktivity.
|
|
1553
|
-
greetings_html: |
|
|
1554
|
-
S pozdravem,<br>
|
|
1555
|
-
%{organization_name}
|
|
1556
|
-
hello: Dobrý den %{username},
|
|
1557
|
-
subject: Neaktivní účet byl smazán
|
|
1558
1548
|
passwords:
|
|
1559
1549
|
update:
|
|
1560
1550
|
error: Došlo k problému s aktualizací hesla.
|
|
@@ -1847,6 +1837,7 @@ cs:
|
|
|
1847
1837
|
submit_button: Odeslat pozvánku
|
|
1848
1838
|
no_invitations_remaining: Žádné zbývající pozvánky
|
|
1849
1839
|
send_instructions: Pozvánka byla odeslána na %{email}.
|
|
1840
|
+
updated_not_active: Pozvánka úspěšně přijata.
|
|
1850
1841
|
mailer:
|
|
1851
1842
|
confirmation_instructions:
|
|
1852
1843
|
action: Potvrďte svůj účet
|
data/config/locales/de.yml
CHANGED
|
@@ -421,10 +421,6 @@ de:
|
|
|
421
421
|
withdraw:
|
|
422
422
|
error: Beim Zurückziehen der Änderung ist ein Problem aufgetreten.
|
|
423
423
|
success: Die Änderung wurde erfolgreich zurückgezogen.
|
|
424
|
-
wizard_step_form:
|
|
425
|
-
steps:
|
|
426
|
-
'1': Erstellen Sie Ihre Änderung
|
|
427
|
-
'2': Änderung veröffentlichen
|
|
428
424
|
anonymous_user: Anonym
|
|
429
425
|
application:
|
|
430
426
|
document:
|
|
@@ -557,7 +553,6 @@ de:
|
|
|
557
553
|
global:
|
|
558
554
|
amendments_enabled: Änderungen aktiviert
|
|
559
555
|
comments_enabled: Kommentare aktiviert
|
|
560
|
-
comments_max_length: Maximallänge der Kommentare
|
|
561
556
|
define_taxonomy_filters: Bitte definieren Sie einige Filter für diesen partizipativen Bereich, bevor Sie diese Einstellung verwenden.
|
|
562
557
|
dummy_global_attribute1: Dummy-Attribut 1
|
|
563
558
|
dummy_global_attribute2: Dummy-Attribut 2
|
|
@@ -708,12 +703,12 @@ de:
|
|
|
708
703
|
notice: |-
|
|
709
704
|
<p>Hallo, sind Sie sicher, dass Sie keinen Newsletter erhalten möchten?
|
|
710
705
|
Bitte prüfen Sie noch einmal, ob Sie das Kästchen mit der Bestellung des Newsletters nicht doch ankreuzen möchten.
|
|
711
|
-
Es ist sehr wichtig für uns, dass Sie gelegentlich E-Mails erhalten können,
|
|
706
|
+
Es ist sehr wichtig für uns, dass Sie gelegentlich E-Mails erhalten können,
|
|
712
707
|
damit wir Ihnen wichtige Informationen mitteilen können. Sie können die
|
|
713
708
|
Seite mit den Einstellungen für Mitteilungen jederzeit ändern.</p>
|
|
714
709
|
<p>Wenn Sie das Kästchen nicht ankreuzen, könnten Sie vielleicht wichtige Informationen
|
|
715
|
-
|
|
716
|
-
Wenn Sie dennoch keinen Newsletter erhalten möchten,
|
|
710
|
+
über neue Möglichkeiten der Teilnahme an der Plattform verpassen.<br>
|
|
711
|
+
Wenn Sie dennoch keinen Newsletter erhalten möchten,
|
|
717
712
|
haben wir vollstes Verständnis für Ihre Entscheidung.</p>
|
|
718
713
|
<p>Vielen Dank, dass Sie sich die Zeit zum Lesen genommen haben!</p>
|
|
719
714
|
title: Newsletter Benachrichtigungen
|
|
@@ -808,6 +803,7 @@ de:
|
|
|
808
803
|
invitation_sent_at: Datum und Uhrzeit, an dem die Einladung versendet wurde
|
|
809
804
|
invitations_count: Die Anzahl der an diesen Benutzer gesendeten Einladungen
|
|
810
805
|
invited_by: Der Benutzer, der diesen Benutzer eingeladen hat
|
|
806
|
+
last_sign_in_at: Datum und Uhrzeit des letzten Logins
|
|
811
807
|
locale: Die Plattformsprache, die dieser Benutzer ausgewählt hat
|
|
812
808
|
managed: Ob dieser Benutzer von einem anderen Benutzer verwaltet wird
|
|
813
809
|
name: Der Name des Benutzers
|
|
@@ -1209,7 +1205,6 @@ de:
|
|
|
1209
1205
|
create:
|
|
1210
1206
|
error: Die Unterhaltung wurde nicht gestartet. Versuchen Sie es später noch einmal.
|
|
1211
1207
|
error_modal:
|
|
1212
|
-
close: Fenster schließen
|
|
1213
1208
|
correct_errors: Bitte korrigiere diese Fehler und versuche es erneut.
|
|
1214
1209
|
intro: 'Es gab folgende Fehler bei Ihrer Nachricht:'
|
|
1215
1210
|
ok: OK
|
|
@@ -1367,7 +1362,7 @@ de:
|
|
|
1367
1362
|
one: "%{count} Ressource"
|
|
1368
1363
|
other: "%{count} Ressourcen"
|
|
1369
1364
|
spaces: Bereiche
|
|
1370
|
-
title: Open Data Dateien für %{organization}
|
|
1365
|
+
title: Open Data Dateien für %{organization}
|
|
1371
1366
|
moderated_users:
|
|
1372
1367
|
about: Die Beschreibung des Kontos
|
|
1373
1368
|
block_reasons: Der Grund der Blockierung eines Kontos durch einen Admin
|
|
@@ -1520,13 +1515,6 @@ de:
|
|
|
1520
1515
|
log_in: anmelden
|
|
1521
1516
|
never_logged_in: Nie angemeldet
|
|
1522
1517
|
subject: Inaktive Kontowarnung
|
|
1523
|
-
removal_notification:
|
|
1524
|
-
body: Ihr %{organization_name} Konto wurde aufgrund von Inaktivität gelöscht.
|
|
1525
|
-
greetings_html: |
|
|
1526
|
-
Freundliche Grüsse,<br>
|
|
1527
|
-
%{organization_name}
|
|
1528
|
-
hello: Hallo %{username},
|
|
1529
|
-
subject: Inaktives Konto gelöscht
|
|
1530
1518
|
passwords:
|
|
1531
1519
|
update:
|
|
1532
1520
|
error: Es gab ein Problem bei der Aktualisierung des Passwortes.
|
data/config/locales/el.yml
CHANGED
|
@@ -261,9 +261,6 @@ el:
|
|
|
261
261
|
update_draft:
|
|
262
262
|
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση του πρόχειρου τροποποίησης.
|
|
263
263
|
success: Το πρόχειρο τροποποίησης ενημερώθηκε επιτυχώς.
|
|
264
|
-
wizard_step_form:
|
|
265
|
-
steps:
|
|
266
|
-
'1': Δημιουργήστε την τροποποίησή σας
|
|
267
264
|
anonymous_user: Ανώνυμη
|
|
268
265
|
application:
|
|
269
266
|
document:
|
|
@@ -371,7 +368,6 @@ el:
|
|
|
371
368
|
global:
|
|
372
369
|
amendments_enabled: Οι τροποποιήσεις ενεργοποιήθηκαν
|
|
373
370
|
comments_enabled: Τα σχόλια ενεργοποιήθηκαν
|
|
374
|
-
comments_max_length: Μέγιστο μήκος σχολίων
|
|
375
371
|
dummy_global_attribute1: Εικονικό χαρακτηριστικό 1
|
|
376
372
|
dummy_global_attribute2: Εικονικό χαρακτηριστικό 2
|
|
377
373
|
dummy_global_translatable_text: Εικονικό μετατρέψιμο κείμενο
|
data/config/locales/en.yml
CHANGED
|
@@ -557,7 +557,7 @@ en:
|
|
|
557
557
|
global:
|
|
558
558
|
amendments_enabled: Amendments enabled
|
|
559
559
|
comments_enabled: Comments enabled
|
|
560
|
-
comments_max_length:
|
|
560
|
+
comments_max_length: Max characters per comment
|
|
561
561
|
define_taxonomy_filters: Please define some filters for this participatory space before using this setting.
|
|
562
562
|
dummy_global_attribute1: Dummy Attribute 1
|
|
563
563
|
dummy_global_attribute2: Dummy Attribute 2
|
|
@@ -664,6 +664,13 @@ en:
|
|
|
664
664
|
all: All
|
|
665
665
|
filter_taxonomy_values:
|
|
666
666
|
all: All
|
|
667
|
+
delete_user_mailer:
|
|
668
|
+
delete:
|
|
669
|
+
body_1: Your account has been deactivated and is no longer accessible. Your personal data is scheduled for permanent deletion in accordance with our data retention policies.
|
|
670
|
+
body_2: For security reasons, some authorization-related data will be retained; if you create a new account and authorize again, it may be linked to your new account.
|
|
671
|
+
greetings_html: Kind regards,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
672
|
+
hello: Dear %{username},
|
|
673
|
+
subject: Your account has been deleted
|
|
667
674
|
devise:
|
|
668
675
|
omniauth_registrations:
|
|
669
676
|
create:
|
|
@@ -1219,7 +1226,6 @@ en:
|
|
|
1219
1226
|
create:
|
|
1220
1227
|
error: Conversation not started. Try again later.
|
|
1221
1228
|
error_modal:
|
|
1222
|
-
close: Close modal
|
|
1223
1229
|
correct_errors: Please correct the errors and try again.
|
|
1224
1230
|
intro: 'There were the following errors with your message:'
|
|
1225
1231
|
ok: OK
|
|
@@ -1345,6 +1351,7 @@ en:
|
|
|
1345
1351
|
own_activity: My own activity, like when someone comments in my proposal or mentions me
|
|
1346
1352
|
push_notifications: Push notifications
|
|
1347
1353
|
push_notifications_reminder: To get notifications from the platform, you will need to allow them in your browser settings first.
|
|
1354
|
+
push_notifications_unsupported_browser: Your browser is not supported.
|
|
1348
1355
|
receive_notifications_about: I want to get notifications about
|
|
1349
1356
|
update_notifications_settings: Save changes
|
|
1350
1357
|
update:
|
|
@@ -1530,13 +1537,6 @@ en:
|
|
|
1530
1537
|
log_in: log in
|
|
1531
1538
|
never_logged_in: never logged in
|
|
1532
1539
|
subject: Inactive account warning
|
|
1533
|
-
removal_notification:
|
|
1534
|
-
body: Your %{organization_name} account has been deleted due to inactivity.
|
|
1535
|
-
greetings_html: |
|
|
1536
|
-
Kind regards,<br>
|
|
1537
|
-
%{organization_name}
|
|
1538
|
-
hello: Dear %{username},
|
|
1539
|
-
subject: Inactive account deleted
|
|
1540
1540
|
passwords:
|
|
1541
1541
|
update:
|
|
1542
1542
|
error: There was a problem updating the password.
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -557,7 +557,7 @@ es-MX:
|
|
|
557
557
|
global:
|
|
558
558
|
amendments_enabled: Enmiendas habilitadas
|
|
559
559
|
comments_enabled: Comentarios habilitados
|
|
560
|
-
comments_max_length:
|
|
560
|
+
comments_max_length: Máximo de caracteres por comentario
|
|
561
561
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
562
562
|
dummy_global_attribute1: Atributo de prueba 1
|
|
563
563
|
dummy_global_attribute2: Atributo de prueba 2
|
|
@@ -664,6 +664,13 @@ es-MX:
|
|
|
664
664
|
all: Todos
|
|
665
665
|
filter_taxonomy_values:
|
|
666
666
|
all: Todas
|
|
667
|
+
delete_user_mailer:
|
|
668
|
+
delete:
|
|
669
|
+
body_1: Tu cuenta ha sido desactivada y ya no es accesible. Tus datos personales están programados para su eliminación permanente de acuerdo con nuestras políticas de retención de datos.
|
|
670
|
+
body_2: Por razones de seguridad, se conservarán algunos datos relacionados con la verificación; de este modo si crearas una nueva cuenta y la verificaras de nuevo, se podría vincular la autorización con esta nueva cuenta.
|
|
671
|
+
greetings_html: Atentamente,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
672
|
+
hello: Hola %{username},
|
|
673
|
+
subject: Tu cuenta ha sido eliminada
|
|
667
674
|
devise:
|
|
668
675
|
omniauth_registrations:
|
|
669
676
|
create:
|
|
@@ -1215,7 +1222,6 @@ es-MX:
|
|
|
1215
1222
|
create:
|
|
1216
1223
|
error: No se ha iniciado la conversación. Vuelve a intentarlo más tarde.
|
|
1217
1224
|
error_modal:
|
|
1218
|
-
close: Cerrar modal
|
|
1219
1225
|
correct_errors: Por favor, corrige los errores e inténtalo de nuevo.
|
|
1220
1226
|
intro: 'Se han producido los siguientes errores en tu mensaje:'
|
|
1221
1227
|
ok: De acuerdo
|
|
@@ -1341,6 +1347,7 @@ es-MX:
|
|
|
1341
1347
|
own_activity: Mi propia actividad, como cuando alguien comenta en mi propuesta o me menciona.
|
|
1342
1348
|
push_notifications: Notificaciones emergentes
|
|
1343
1349
|
push_notifications_reminder: Para obtener notificaciones de la plataforma, primero tienes que permitirlas en la configuración de tu navegador.
|
|
1350
|
+
push_notifications_unsupported_browser: Tu navegador no es compatible.
|
|
1344
1351
|
receive_notifications_about: Quiero recibir notificaciones sobre
|
|
1345
1352
|
update_notifications_settings: Guardar cambios
|
|
1346
1353
|
update:
|
|
@@ -1526,13 +1533,6 @@ es-MX:
|
|
|
1526
1533
|
log_in: entra
|
|
1527
1534
|
never_logged_in: nunca ha iniciado sesión
|
|
1528
1535
|
subject: Aviso de cuenta inactiva
|
|
1529
|
-
removal_notification:
|
|
1530
|
-
body: Tu cuenta en %{organization_name} ha sido eliminada por inactividad.
|
|
1531
|
-
greetings_html: |
|
|
1532
|
-
Atentamente,<br>
|
|
1533
|
-
%{organization_name}
|
|
1534
|
-
hello: Estimado/a %{username},
|
|
1535
|
-
subject: Aviso de cuenta inactiva
|
|
1536
1536
|
passwords:
|
|
1537
1537
|
update:
|
|
1538
1538
|
error: Ha habido un problema al actualizar la contraseña.
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -557,7 +557,7 @@ es-PY:
|
|
|
557
557
|
global:
|
|
558
558
|
amendments_enabled: Enmiendas habilitadas
|
|
559
559
|
comments_enabled: Comentarios habilitados
|
|
560
|
-
comments_max_length:
|
|
560
|
+
comments_max_length: Máximo de caracteres por comentario
|
|
561
561
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
562
562
|
dummy_global_attribute1: Atributo ficticio 1
|
|
563
563
|
dummy_global_attribute2: Atributo ficticio 2
|
|
@@ -664,6 +664,13 @@ es-PY:
|
|
|
664
664
|
all: Todos
|
|
665
665
|
filter_taxonomy_values:
|
|
666
666
|
all: Todas
|
|
667
|
+
delete_user_mailer:
|
|
668
|
+
delete:
|
|
669
|
+
body_1: Tu cuenta ha sido desactivada y ya no es accesible. Tus datos personales están programados para su eliminación permanente de acuerdo con nuestras políticas de retención de datos.
|
|
670
|
+
body_2: Por razones de seguridad, se conservarán algunos datos relacionados con la verificación; de este modo si crearas una nueva cuenta y la verificaras de nuevo, se podría vincular la autorización con esta nueva cuenta.
|
|
671
|
+
greetings_html: Atentamente,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
672
|
+
hello: Hola %{username},
|
|
673
|
+
subject: Tu cuenta ha sido eliminada
|
|
667
674
|
devise:
|
|
668
675
|
omniauth_registrations:
|
|
669
676
|
create:
|
|
@@ -1215,7 +1222,6 @@ es-PY:
|
|
|
1215
1222
|
create:
|
|
1216
1223
|
error: No se ha iniciado la conversación. Vuelve a intentarlo más tarde.
|
|
1217
1224
|
error_modal:
|
|
1218
|
-
close: Cerrar modal
|
|
1219
1225
|
correct_errors: Por favor, corrige los errores e inténtalo de nuevo.
|
|
1220
1226
|
intro: 'Se han producido los siguientes errores en tu mensaje:'
|
|
1221
1227
|
ok: De acuerdo
|
|
@@ -1341,6 +1347,7 @@ es-PY:
|
|
|
1341
1347
|
own_activity: Mi propia actividad, como cuando alguien comenta en mi propuesta o me menciona.
|
|
1342
1348
|
push_notifications: Notificaciones emergentes
|
|
1343
1349
|
push_notifications_reminder: Para obtener notificaciones de la plataforma, primero tienes que permitirlas en la configuración de tu navegador.
|
|
1350
|
+
push_notifications_unsupported_browser: Tu navegador no es compatible.
|
|
1344
1351
|
receive_notifications_about: Quiero recibir notificaciones sobre
|
|
1345
1352
|
update_notifications_settings: Guardar cambios
|
|
1346
1353
|
update:
|
|
@@ -1526,13 +1533,6 @@ es-PY:
|
|
|
1526
1533
|
log_in: entra
|
|
1527
1534
|
never_logged_in: nunca ha iniciado sesión
|
|
1528
1535
|
subject: Aviso de cuenta inactiva
|
|
1529
|
-
removal_notification:
|
|
1530
|
-
body: Tu cuenta en %{organization_name} ha sido eliminada por inactividad.
|
|
1531
|
-
greetings_html: |
|
|
1532
|
-
Atentamente,<br>
|
|
1533
|
-
%{organization_name}
|
|
1534
|
-
hello: Estimado/a %{username},
|
|
1535
|
-
subject: Aviso de cuenta inactiva
|
|
1536
1536
|
passwords:
|
|
1537
1537
|
update:
|
|
1538
1538
|
error: Ha habido un problema al actualizar la contraseña.
|
data/config/locales/es.yml
CHANGED
|
@@ -554,7 +554,7 @@ es:
|
|
|
554
554
|
global:
|
|
555
555
|
amendments_enabled: Enmiendas habilitadas
|
|
556
556
|
comments_enabled: Comentarios habilitados
|
|
557
|
-
comments_max_length:
|
|
557
|
+
comments_max_length: Máximo de caracteres por comentario
|
|
558
558
|
define_taxonomy_filters: Por favor, define algunos filtros para este espacio de participación antes de utilizar esta configuración.
|
|
559
559
|
dummy_global_attribute1: Atributo de prueba 1
|
|
560
560
|
dummy_global_attribute2: Atributo de prueba 2
|
|
@@ -661,6 +661,13 @@ es:
|
|
|
661
661
|
all: Todos
|
|
662
662
|
filter_taxonomy_values:
|
|
663
663
|
all: Todas
|
|
664
|
+
delete_user_mailer:
|
|
665
|
+
delete:
|
|
666
|
+
body_1: Tu cuenta ha sido desactivada y ya no es accesible. Tus datos personales están programados para su eliminación permanente de acuerdo con nuestras políticas de retención de datos.
|
|
667
|
+
body_2: Por razones de seguridad, se conservarán algunos datos relacionados con la verificación; de este modo si crearas una nueva cuenta y la verificaras de nuevo, se podría vincular la autorización con esta nueva cuenta.
|
|
668
|
+
greetings_html: Atentamente,<br/><a href="%{organization_url}">%{organization_name}</a>
|
|
669
|
+
hello: Hola %{username},
|
|
670
|
+
subject: Tu cuenta ha sido eliminada
|
|
664
671
|
devise:
|
|
665
672
|
omniauth_registrations:
|
|
666
673
|
create:
|
|
@@ -1212,7 +1219,6 @@ es:
|
|
|
1212
1219
|
create:
|
|
1213
1220
|
error: No se ha iniciado la conversación. Vuelve a intentarlo más tarde.
|
|
1214
1221
|
error_modal:
|
|
1215
|
-
close: Cerrar modal
|
|
1216
1222
|
correct_errors: Por favor, corrige los errores e inténtalo de nuevo.
|
|
1217
1223
|
intro: 'Se han producido los siguientes errores en tu mensaje:'
|
|
1218
1224
|
ok: De acuerdo
|
|
@@ -1338,6 +1344,7 @@ es:
|
|
|
1338
1344
|
own_activity: Mi propia actividad, como cuando alguien comenta en mi propuesta o me menciona
|
|
1339
1345
|
push_notifications: Notificaciones emergentes
|
|
1340
1346
|
push_notifications_reminder: Para recibir notificaciones de la plataforma, primero tienes que permitirlas en la configuración de tu navegador.
|
|
1347
|
+
push_notifications_unsupported_browser: Tu navegador no es compatible.
|
|
1341
1348
|
receive_notifications_about: Quiero recibir notificaciones
|
|
1342
1349
|
update_notifications_settings: Guardar cambios
|
|
1343
1350
|
update:
|
|
@@ -1523,13 +1530,6 @@ es:
|
|
|
1523
1530
|
log_in: entra
|
|
1524
1531
|
never_logged_in: nunca ha iniciado sesión
|
|
1525
1532
|
subject: Aviso de cuenta inactiva
|
|
1526
|
-
removal_notification:
|
|
1527
|
-
body: Tu cuenta en %{organization_name} ha sido eliminada por inactividad.
|
|
1528
|
-
greetings_html: |
|
|
1529
|
-
Atentamente,<br>
|
|
1530
|
-
%{organization_name}
|
|
1531
|
-
hello: Estimado/a %{username},
|
|
1532
|
-
subject: Aviso de cuenta inactiva
|
|
1533
1533
|
passwords:
|
|
1534
1534
|
update:
|
|
1535
1535
|
error: Se ha producido un error al actualizar la contraseña.
|