decidim-core 0.31.2 → 0.31.4
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/content_blocks/highlighted_elements_with_cell_for_list_cell.rb +5 -1
- data/app/cells/decidim/nav_links/show.erb +3 -3
- data/app/cells/decidim/participatory_space_private_user/show.erb +6 -6
- data/app/cells/decidim/participatory_space_private_user_cell.rb +0 -4
- data/app/cells/decidim/report_button/already_reported_modal.erb +1 -1
- data/app/cells/decidim/report_button/flag_modal.erb +1 -1
- data/app/cells/decidim/report_user_button/already_reported_modal.erb +1 -1
- data/app/cells/decidim/report_user_button/flag_modal.erb +1 -1
- data/app/cells/decidim/share_text_widget/modal.erb +1 -1
- data/app/cells/decidim/upload_modal/files.erb +5 -1
- data/app/cells/decidim/upload_modal_cell.rb +10 -1
- data/app/commands/decidim/multiple_attachments_methods.rb +20 -3
- data/app/helpers/decidim/mailer_helper.rb +36 -0
- data/app/helpers/decidim/menu_helper.rb +2 -1
- data/app/helpers/decidim/newsletters_helper.rb +4 -22
- data/app/jobs/decidim/find_and_update_descendants_job.rb +8 -2
- data/app/jobs/decidim/update_search_indexes_job.rb +2 -2
- data/app/mailers/decidim/application_mailer.rb +4 -0
- data/app/packs/src/decidim/a11y.js +29 -0
- data/app/packs/src/decidim/a11y.test.js +81 -0
- data/app/packs/src/decidim/confirm.js +8 -1
- data/app/packs/src/decidim/confirm.test.js +225 -0
- data/app/packs/src/decidim/controllers/accordion/accordion.test.js +118 -0
- data/app/packs/src/decidim/controllers/accordion/controller.js +24 -0
- data/app/packs/src/decidim/controllers/dropdown/controller.js +26 -0
- data/app/packs/src/decidim/controllers/dropdown/dropdown.test.js +187 -0
- data/app/packs/src/decidim/controllers/form_validator/form_validator.js +3 -2
- data/app/packs/src/decidim/controllers/form_validator/form_validator.test.js +5 -0
- data/app/packs/src/decidim/controllers/language_change/controller.js +1 -0
- data/app/packs/src/decidim/controllers/language_change/language_change.test.js +13 -0
- data/app/packs/src/decidim/datepicker/datepicker_functions.js +26 -0
- data/app/packs/src/decidim/datepicker/generate_datepicker.js +2 -1
- data/app/packs/src/decidim/datepicker/generate_timepicker.js +3 -2
- data/app/packs/src/decidim/datepicker/test/datepicker_functions_adjust_picker_position.test.js +234 -0
- data/app/packs/src/decidim/editor/extensions/image/index.js +49 -11
- data/app/packs/src/decidim/editor/extensions/image/node_view.js +9 -1
- data/app/packs/src/decidim/editor/extensions/link/bubble_menu.js +34 -6
- data/app/packs/src/decidim/editor/extensions/link/index.js +45 -12
- data/app/packs/src/decidim/editor/test/extensions/image_links.test.js +161 -0
- data/app/packs/src/decidim/refactor/moved/focus_guard.js +4 -4
- data/app/packs/stylesheets/decidim/_cards.scss +12 -4
- data/app/packs/stylesheets/decidim/_flash.scss +1 -1
- data/app/packs/stylesheets/decidim/_rich_text.scss +17 -0
- data/app/packs/stylesheets/decidim/editor.scss +10 -0
- data/app/presenters/decidim/menu_item_presenter.rb +7 -1
- data/app/views/decidim/devise/invitations/edit.html.erb +3 -3
- data/app/views/decidim/devise/registrations/new.html.erb +1 -0
- data/app/views/decidim/devise/shared/_tos_fields.html.erb +3 -3
- data/app/views/decidim/notification_mailer/event_received.html.erb +3 -3
- data/app/views/decidim/pages/_tabbed.html.erb +3 -3
- data/app/views/decidim/shared/_filters.html.erb +5 -5
- data/app/views/decidim/shared/filters/_check_boxes_tree.html.erb +1 -1
- data/app/views/decidim/shared/filters/_collection.html.erb +1 -1
- data/config/initializers/devise.rb +6 -0
- data/config/locales/ar.yml +3 -3
- data/config/locales/bg.yml +0 -4
- data/config/locales/ca-IT.yml +7 -6
- data/config/locales/ca.yml +7 -6
- data/config/locales/cs.yml +5 -8
- data/config/locales/de.yml +31 -8
- data/config/locales/el.yml +0 -2
- data/config/locales/en.yml +5 -4
- data/config/locales/es-MX.yml +10 -9
- data/config/locales/es-PY.yml +10 -9
- data/config/locales/es.yml +12 -11
- data/config/locales/eu.yml +7 -5
- data/config/locales/fi-plain.yml +10 -4
- data/config/locales/fi.yml +11 -5
- data/config/locales/fr-CA.yml +7 -5
- data/config/locales/fr.yml +8 -7
- data/config/locales/gl.yml +0 -2
- data/config/locales/hu.yml +4 -8
- data/config/locales/id-ID.yml +0 -2
- data/config/locales/it.yml +1 -3
- data/config/locales/ja.yml +7 -8
- data/config/locales/lb.yml +0 -2
- data/config/locales/lt.yml +1 -3
- data/config/locales/lv.yml +0 -2
- data/config/locales/nl.yml +0 -2
- data/config/locales/no.yml +0 -2
- data/config/locales/pl.yml +0 -4
- data/config/locales/pt-BR.yml +4 -5
- data/config/locales/pt.yml +0 -2
- data/config/locales/ro-RO.yml +1 -5
- data/config/locales/ru.yml +0 -2
- data/config/locales/sk.yml +0 -4
- data/config/locales/sv.yml +8 -7
- data/config/locales/tr-TR.yml +17 -5
- data/config/locales/zh-CN.yml +0 -2
- data/config/locales/zh-TW.yml +1 -3
- data/lib/decidim/assets/tailwind/tailwind.config.js.erb +1 -1
- data/lib/decidim/content_parsers/blob_parser.rb +3 -3
- data/lib/decidim/content_renderers/blob_renderer.rb +2 -2
- data/lib/decidim/core/test/shared_examples/participatory_space_members_shared_examples.rb +121 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/form_builder.rb +58 -36
- data/lib/decidim/maintenance/taxonomy_importer.rb +1 -1
- data/lib/decidim/participatory_space_user.rb +1 -1
- data/lib/decidim/searchable.rb +4 -4
- metadata +14 -6
data/config/locales/cs.yml
CHANGED
|
@@ -307,7 +307,7 @@ cs:
|
|
|
307
307
|
delete: "%{user_name} odstranila %{resource_name} aplikaci OAuth"
|
|
308
308
|
update: "%{user_name} aktualizovala %{resource_name} aplikaci OAuth"
|
|
309
309
|
organization:
|
|
310
|
-
update: "%{user_name}
|
|
310
|
+
update: "%{user_name} aktualizoval nastavení organizace"
|
|
311
311
|
update_external_domain: "%{user_name} aktualizoval externí domény organizace"
|
|
312
312
|
participatory_space_private_user:
|
|
313
313
|
create: "%{user_name} pozval %{resource_name} aby se stal soukromým uživatelem"
|
|
@@ -625,7 +625,7 @@ cs:
|
|
|
625
625
|
global_menu:
|
|
626
626
|
name: Globální menu
|
|
627
627
|
hero:
|
|
628
|
-
name: Obrázek hrdiny a
|
|
628
|
+
name: Obrázek hrdiny a výzva k akci
|
|
629
629
|
hero_settings_form:
|
|
630
630
|
background_image: Obrázek pozadí
|
|
631
631
|
cta_button_path: URL tlačítka Výzvy k akci
|
|
@@ -1142,7 +1142,7 @@ cs:
|
|
|
1142
1142
|
description: Odznaky jsou uznání akcí účastníků a pokrok v platformě. Jakmile začnete objevovat, účastnit se a spolupracovat v platformě, získáte různé odznaky.
|
|
1143
1143
|
level: Úroveň %{level}
|
|
1144
1144
|
reached_top: Dosáhli jste nejvyšší úrovně tohoto odznaku.
|
|
1145
|
-
title:
|
|
1145
|
+
title: Co jsou odznaky?
|
|
1146
1146
|
groups:
|
|
1147
1147
|
roles:
|
|
1148
1148
|
admin: Správce
|
|
@@ -1575,7 +1575,7 @@ cs:
|
|
|
1575
1575
|
user:
|
|
1576
1576
|
actions:
|
|
1577
1577
|
disabled_message: Zpráva
|
|
1578
|
-
edit_profile:
|
|
1578
|
+
edit_profile: Upravit profil
|
|
1579
1579
|
message: Zpráva
|
|
1580
1580
|
resend_email_confirmation_instructions: Znovu odeslat pokyny pro potvrzení e-mailu
|
|
1581
1581
|
qr:
|
|
@@ -1847,8 +1847,6 @@ cs:
|
|
|
1847
1847
|
submit_button: Odeslat pozvánku
|
|
1848
1848
|
no_invitations_remaining: Žádné zbývající pozvánky
|
|
1849
1849
|
send_instructions: Pozvánka byla odeslána na %{email}.
|
|
1850
|
-
updated: Vaše heslo bylo úspěšně nastaveno. Nyní jste přihlášeni.
|
|
1851
|
-
updated_not_active: Vaše heslo bylo úspěšně nastaveno.
|
|
1852
1850
|
mailer:
|
|
1853
1851
|
confirmation_instructions:
|
|
1854
1852
|
action: Potvrďte svůj účet
|
|
@@ -1908,8 +1906,6 @@ cs:
|
|
|
1908
1906
|
confirm_new_password: Potvrďte nové heslo
|
|
1909
1907
|
new_password: Nové heslo
|
|
1910
1908
|
old_password_help: Chcete-li potvrdit změny vašeho účtu, zadejte prosím své aktuální heslo.
|
|
1911
|
-
password_help: "minimální počet znaků je %{minimum_characters}, nesmí být příliš obvyklý (např. 123456) a musí se lišit od vašeho uživatelského jména a e-mailu."
|
|
1912
|
-
password_help_admin: "minimální počet znaků je %{minimum_characters}, nesmí být příliš časté (např. 123456), musí se lišit od vaší přezdívky a e-mailu a musí se lišit od vašich starých hesel."
|
|
1913
1909
|
title: Změna hesla
|
|
1914
1910
|
new:
|
|
1915
1911
|
forgot_your_password: Zapomněli jste heslo?
|
|
@@ -2159,6 +2155,7 @@ cs:
|
|
|
2159
2155
|
confirm_title_close_ephemeral_session: Před opuštěním této stránky…
|
|
2160
2156
|
log_in: Přihlásit
|
|
2161
2157
|
main_menu: Hlavní menu
|
|
2158
|
+
mobile_account_greeting: Dobrý den %{user_name}
|
|
2162
2159
|
user_menu: Uživatelské Menu
|
|
2163
2160
|
impersonation_warning:
|
|
2164
2161
|
close_session: Zavřít sezení
|
data/config/locales/de.yml
CHANGED
|
@@ -108,7 +108,7 @@ de:
|
|
|
108
108
|
date:
|
|
109
109
|
buttons:
|
|
110
110
|
close: Schliessen
|
|
111
|
-
select:
|
|
111
|
+
select: Auswählen
|
|
112
112
|
formats:
|
|
113
113
|
decidim_short: "%d/%m/%Y"
|
|
114
114
|
decidim_short_dashed: "%d-%m-%Y"
|
|
@@ -1055,6 +1055,8 @@ de:
|
|
|
1055
1055
|
explanation: 'Anleitung für Bild:'
|
|
1056
1056
|
message_1: Vorzugsweise ein Bild im Querformat, das keinen Text enthält.
|
|
1057
1057
|
message_2: Der Dienst schneidet die Datei zu.
|
|
1058
|
+
import_file:
|
|
1059
|
+
message_1: Muss ein JSON-Dokument sein, das über die Exportfunktion heruntergeladen wurde.
|
|
1058
1060
|
file_validation:
|
|
1059
1061
|
allowed_file_extensions: 'Erlaubte Dateiformate: %{extensions}'
|
|
1060
1062
|
max_file_dimension: 'Maximale Dateigröße: %{resolution} Pixel'
|
|
@@ -1290,9 +1292,13 @@ de:
|
|
|
1290
1292
|
same_language: Der Inhalt wurde in Ihrer bevorzugten Sprache (%{language}) veröffentlicht, daher wird in dieser E-Mail keine automatisierte Übersetzung angezeigt.
|
|
1291
1293
|
translated_text: 'Automatisch übersetzter Text:'
|
|
1292
1294
|
notifications:
|
|
1295
|
+
action_error: Beim Aktualisieren der Benachrichtigungseinstellungen ist ein Fehler aufgetreten.
|
|
1293
1296
|
no_notifications: Noch keine Benachrichtigungen
|
|
1294
1297
|
show:
|
|
1298
|
+
deleted: Inhalt wurde vom Autor gelöscht.
|
|
1295
1299
|
missing_event: Hoppla, diese Benachrichtigung gehört zu einem Artikel, der nicht mehr verfügbar ist. Du kannst sie verwerfen.
|
|
1300
|
+
moderated: Inhalt wurde durch Moderation versteckt.
|
|
1301
|
+
not_available: Hoppla, diese Benachrichtigung gehört zu einem Artikel, der nicht mehr verfügbar ist. Es ist keine weitere Aktion erforderlich.
|
|
1296
1302
|
notifications_digest_mailer:
|
|
1297
1303
|
header:
|
|
1298
1304
|
daily: Tägliche Zusammenfassung
|
|
@@ -1301,6 +1307,7 @@ de:
|
|
|
1301
1307
|
hello: Hallo %{name}
|
|
1302
1308
|
intro:
|
|
1303
1309
|
daily: 'Dies sind die Benachrichtigungen vom letzten Tag basierend auf den Aktivitäten, denen Sie folgen:'
|
|
1310
|
+
real_time: 'Es gibt eine Benachrichtigung über die Aktivität, die Sie folgen:'
|
|
1304
1311
|
weekly: 'Dies sind die Benachrichtigungen der letzten Woche, basierend auf den Aktivitäten, die Sie folgen:'
|
|
1305
1312
|
outro: Sie haben diese Benachrichtigung erhalten, weil Sie diesen Inhalt oder seine Verfassenden folgen. Sie können dem Inhalt direkt auf seiner Seite entfolgen.
|
|
1306
1313
|
see_more: Weitere Benachrichtigungen ansehen
|
|
@@ -1443,7 +1450,9 @@ de:
|
|
|
1443
1450
|
title: Wie man diese Dateien öffnet und mit ihnen arbeitet
|
|
1444
1451
|
license:
|
|
1445
1452
|
body_1_html: Diese Datenbank von %{organization_name} wird unter %{link_database} zur Verfügung gestellt. Alle Rechte an einzelnen Inhalten der Datenbank sind unter %{link_contents} lizenziert.
|
|
1453
|
+
license_contents_link: https://opendatacommons.org/licenses/dbcl/1.0/
|
|
1446
1454
|
license_contents_name: Lizenz für Datenbankinhalte
|
|
1455
|
+
license_database_link: https://opendatacommons.org/licenses/odbl/1.0/
|
|
1447
1456
|
license_database_name: Offene Datenbanklizenz
|
|
1448
1457
|
title: Lizenz
|
|
1449
1458
|
title: Offene Daten
|
|
@@ -1523,7 +1532,7 @@ de:
|
|
|
1523
1532
|
error: Es gab ein Problem bei der Aktualisierung des Passwortes.
|
|
1524
1533
|
success: Passwort erfolgreich aktualisiert.
|
|
1525
1534
|
profile:
|
|
1526
|
-
deleted: Gelöschter
|
|
1535
|
+
deleted: Gelöschter Teilnehmer
|
|
1527
1536
|
inaccessible_message: Dieses Profil ist wegen Verletzung der Nutzungsbedingungen nicht zugänglich!
|
|
1528
1537
|
profiles:
|
|
1529
1538
|
default_officialization_text_for_users: Dieser Teilnehmer ist öffentlich verifiziert, sein/ihr Name oder seine/ihre Rolle wurde auf Übereinstimmung mit dem wirklichen Namen und der wirklichen Rolle überprüft.
|
|
@@ -1540,7 +1549,7 @@ de:
|
|
|
1540
1549
|
disabled_message: Nachricht
|
|
1541
1550
|
edit_profile: Profil bearbeiten
|
|
1542
1551
|
message: Nachricht
|
|
1543
|
-
resend_email_confirmation_instructions:
|
|
1552
|
+
resend_email_confirmation_instructions: E-Mail-Bestätigungsanweisungen erneut versenden
|
|
1544
1553
|
qr:
|
|
1545
1554
|
show:
|
|
1546
1555
|
scan: QR-Code scannen
|
|
@@ -1726,9 +1735,23 @@ de:
|
|
|
1726
1735
|
notify_deprecation_to_owner:
|
|
1727
1736
|
body_1: 'Wir möchten Sie gerne über ein wichtiges Update ihres Gruppenprofil informieren: %{organization_name}.'
|
|
1728
1737
|
body_2: Wir möchten die Erfahrungen von Organisationen vereinfachen und verbessern und werden deshalb die Funktion "Benutzergruppen" abschalten. Ihre Gruppe, <strong>%{name}</strong>, wurde in ein reguläres Konto umgewandelt.
|
|
1738
|
+
body_3: Um weiterhin auf Ihr Konto zuzugreifen und den Zugriff freizugeben, müssen Sie ein Passwort festlegen. Sobald gesetzt, können Sie die Anmeldedaten (E-Mail und Passwort) an jeden weitergeben.
|
|
1729
1739
|
greeting: Hallo %{name},
|
|
1740
|
+
instructions_1: 'Klicken Sie auf den Link unten, um Ihr Passwort zu setzen:'
|
|
1741
|
+
instructions_2: 'Teilen Sie die Anmeldedaten (E-Mail: %{email} und das neue Passwort) mit Ihren Kollegen.'
|
|
1742
|
+
instructions_title: "<strong>Was sie tun müssen</strong>"
|
|
1730
1743
|
set_password: Passwort festlegen
|
|
1731
1744
|
subject: Wichtige Aktualisierung für Ihr Gruppenprofil
|
|
1745
|
+
notify_user_group_patched:
|
|
1746
|
+
body_1_html: 'Wir möchten Sie gerne über ein wichtiges Update ihres Gruppenprofil informieren: %{organization_name}.'
|
|
1747
|
+
body_2_html: Wir möchten die Erfahrungen von Organisationen vereinfachen und verbessern und werden deshalb die Funktion "Benutzergruppen" abschalten. Ihre Gruppe, <strong>%{name}</strong>, wurde in ein reguläres Konto umgewandelt.
|
|
1748
|
+
body_3_html: Um weiterhin auf Ihr Konto zuzugreifen und den Zugriff freizugeben, müssen Sie eine neue E-Mail und ein neues Passwort setzen. Bitte beachten Sie, dass jedes Mitglied deiner Gruppe diese E-Mail erhält. Um den weiteren Zugriff sicherzustellen, müssen Sie sich intern auf die gemeinsamen Zugangsdaten (E-Mail und Passwort) einigen, die jeder verwenden wird.
|
|
1749
|
+
greeting: Hallo %{name},
|
|
1750
|
+
instructions_1_html: 'Verwenden Sie die folgenden temporären Anmeldeinformationen, um sich einzuloggen: <br><br> Benutzername: <strong>%{email}</strong> <br> Passwort: <strong>%{password}</strong><br><br>'
|
|
1751
|
+
instructions_2_html: Geben Sie eine neue E-Mail-Adresse und ein Passwort ein.
|
|
1752
|
+
instructions_3_html: Teilen Sie die ausgewählten Anmeldedaten mit Ihren Kollegen, damit die gesamte Gruppe weiterhin auf das Konto zugreifen kann.
|
|
1753
|
+
instructions_title_html: "<strong>Was Sie tun müssen</strong>"
|
|
1754
|
+
subject: Wichtige Aktualisierung für Ihr Gruppenprofil
|
|
1732
1755
|
user_report_mailer:
|
|
1733
1756
|
notify:
|
|
1734
1757
|
body_1: Benutzer %{user} wurde von %{token} gemeldet
|
|
@@ -1778,6 +1801,7 @@ de:
|
|
|
1778
1801
|
send_paranoid_instructions: Wenn Ihre E-Mail-Adresse in unserer Datenbank vorhanden ist, erhalten Sie innerhalb weniger Minuten eine E-Mail mit Anweisungen zur Bestätigung Ihrer E-Mail-Adresse.
|
|
1779
1802
|
failure:
|
|
1780
1803
|
already_authenticated: Sie sind bereits angemeldet.
|
|
1804
|
+
csrf_token: Ihre Anfrage konnte nicht verifiziert werden. Bitte versuchen Sie es erneut.
|
|
1781
1805
|
inactive: Dein Benutzerkonto ist noch nicht aktiviert.
|
|
1782
1806
|
invalid: Ungültige %{authentication_keys} oder Passwort
|
|
1783
1807
|
invited: Sie haben eine ausstehende Einladung, akzeptieren Sie sie, um die Erstellung Ihres Kontos abzuschließen.
|
|
@@ -1792,6 +1816,7 @@ de:
|
|
|
1792
1816
|
nickname_help: Ihr Pseudonym auf %{organization}. Kann nur Buchstaben, Zahlen, '-' und '_' enthalten.
|
|
1793
1817
|
submit_button: Speichern
|
|
1794
1818
|
subtitle: Wenn Sie die Einladung annehmen, geben Sie bitte Ihren Kontonamen und Ihr Passwort ein.
|
|
1819
|
+
subtitle_no_password: Wenn Sie die Einladung annehmen, geben Sie bitte Ihren Kontonamen ein.
|
|
1795
1820
|
invitation_removed: Ihre Einladung wurde entfernt.
|
|
1796
1821
|
invitation_token_invalid: Das angegebene Einladungstoken ist nicht gültig!
|
|
1797
1822
|
new:
|
|
@@ -1799,8 +1824,8 @@ de:
|
|
|
1799
1824
|
submit_button: Eine Einladung schicken
|
|
1800
1825
|
no_invitations_remaining: Keine Einladungen übrig
|
|
1801
1826
|
send_instructions: Eine Einladungs-E-Mail wurde an %{email}gesendet.
|
|
1802
|
-
updated:
|
|
1803
|
-
updated_not_active:
|
|
1827
|
+
updated: Einladung erfolgreich angenommen. Sie sind jetzt angemeldet.
|
|
1828
|
+
updated_not_active: Einladung erfolgreich angenommen.
|
|
1804
1829
|
mailer:
|
|
1805
1830
|
confirmation_instructions:
|
|
1806
1831
|
action: Konto bestätigen
|
|
@@ -1858,8 +1883,6 @@ de:
|
|
|
1858
1883
|
confirm_new_password: Bestätige neues Passwort
|
|
1859
1884
|
new_password: Neues Passwort
|
|
1860
1885
|
old_password_help: Um die Änderungen an Ihrem Konto zu bestätigen, geben Sie bitte Ihr aktuelles Passwort ein.
|
|
1861
|
-
password_help: "Das Passwort muss aus mindestens %{minimum_characters} Zeichen bestehen, darf nicht zu gewöhnlich sein (z. B. 123456) oder Ihren Kontonamen bzw. Ihre E-Mail-Adresse enthalten."
|
|
1862
|
-
password_help_admin: "Das Passwort muss aus mindestens %{minimum_characters} Zeichen bestehen, darf nicht zu gewöhnlich sein (z. B. 123456) oder Ihren Kontonamen oder Ihre E-Mail-Adresse enthalten und muss sich von Ihren alten Passwörtern unterscheiden."
|
|
1863
1886
|
title: Passwort ändern
|
|
1864
1887
|
new:
|
|
1865
1888
|
forgot_your_password: Haben Sie Ihr Passwort vergessen?
|
|
@@ -2202,7 +2225,7 @@ de:
|
|
|
2202
2225
|
buttons:
|
|
2203
2226
|
close: Schliessen
|
|
2204
2227
|
reset: Zurücksetzen
|
|
2205
|
-
select:
|
|
2228
|
+
select: Auswählen
|
|
2206
2229
|
formats:
|
|
2207
2230
|
day_of_month: "%d. %b"
|
|
2208
2231
|
day_of_week: "%a"
|
data/config/locales/el.yml
CHANGED
|
@@ -975,8 +975,6 @@ el:
|
|
|
975
975
|
submit_button: Στείλτε μια πρόσκληση
|
|
976
976
|
no_invitations_remaining: Δεν απομένουν προσκλήσεις
|
|
977
977
|
send_instructions: Στάλθηκε ένα email πρόσκλησης στη διεύθυνση %{email}.
|
|
978
|
-
updated: Ο κωδικός πρόσβασης ορίστηκε με επιτυχία. Έχετε συνδεθεί.
|
|
979
|
-
updated_not_active: Ο κωδικός πρόσβασης ορίστηκε με επιτυχία.
|
|
980
978
|
mailer:
|
|
981
979
|
confirmation_instructions:
|
|
982
980
|
action: Επιβεβαίωση του λογαριασμού μου
|
data/config/locales/en.yml
CHANGED
|
@@ -1826,6 +1826,7 @@ en:
|
|
|
1826
1826
|
nickname_help: Your nickname in %{organization}. Can only contain letters, numbers, '-' and '_'.
|
|
1827
1827
|
submit_button: Save
|
|
1828
1828
|
subtitle: If you accept the invitation please set your nickname and password.
|
|
1829
|
+
subtitle_no_password: If you accept the invitation please set your nickname.
|
|
1829
1830
|
invitation_removed: Your invitation was removed.
|
|
1830
1831
|
invitation_token_invalid: The invitation token provided is not valid!
|
|
1831
1832
|
new:
|
|
@@ -1833,8 +1834,8 @@ en:
|
|
|
1833
1834
|
submit_button: Send an invitation
|
|
1834
1835
|
no_invitations_remaining: No invitations remaining
|
|
1835
1836
|
send_instructions: An invitation email has been sent to %{email}.
|
|
1836
|
-
updated:
|
|
1837
|
-
updated_not_active:
|
|
1837
|
+
updated: Invitation accepted successfully. You are now signed in.
|
|
1838
|
+
updated_not_active: Invitation accepted successfully.
|
|
1838
1839
|
mailer:
|
|
1839
1840
|
confirmation_instructions:
|
|
1840
1841
|
action: Confirm my account
|
|
@@ -1894,8 +1895,8 @@ en:
|
|
|
1894
1895
|
confirm_new_password: Confirm new password
|
|
1895
1896
|
new_password: New password
|
|
1896
1897
|
old_password_help: In order to confirm the changes to your account, please provide your current password.
|
|
1897
|
-
password_help: "%{minimum_characters} characters minimum, must not be too common (e.g. 123456) and must be different from your nickname and
|
|
1898
|
-
password_help_admin: "%{minimum_characters} characters minimum, must not be too common (e.g. 123456), must be different from your nickname
|
|
1898
|
+
password_help: "%{minimum_characters} characters minimum, must contain at least 5 different characters, must not be too common (e.g. 123456) and must be different from your name, nickname, email and the organization's host."
|
|
1899
|
+
password_help_admin: "%{minimum_characters} characters minimum, must contain at least 5 different characters, must not be too common (e.g. 123456), must be different from your name, nickname, email, the organization's host and must be different from your old passwords."
|
|
1899
1900
|
title: Password change
|
|
1900
1901
|
new:
|
|
1901
1902
|
forgot_your_password: Forgot your password?
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -304,7 +304,7 @@ es-MX:
|
|
|
304
304
|
create: "%{user_name} ha creado un enlace de acceso en %{space_name}"
|
|
305
305
|
create_with_space: "%{user_name} ha creado un enlace de acceso para %{resource_name} en %{space_name}"
|
|
306
306
|
delete: "%{user_name} ha eliminado un enlace de acceso en %{space_name}"
|
|
307
|
-
delete_with_space: "%{user_name} ha eliminado un enlace de acceso para%{resource_name} en %{space_name}"
|
|
307
|
+
delete_with_space: "%{user_name} ha eliminado un enlace de acceso para %{resource_name} en %{space_name}"
|
|
308
308
|
update: "%{user_name} ha actualizado un enlace de acceso en %{space_name}"
|
|
309
309
|
update_with_space: "%{user_name} ha actualizado un enlace de acceso para %{resource_name} en %{space_name}"
|
|
310
310
|
static_page:
|
|
@@ -1425,7 +1425,7 @@ es-MX:
|
|
|
1425
1425
|
download:
|
|
1426
1426
|
components: Componentes
|
|
1427
1427
|
core: Núcleo
|
|
1428
|
-
spaces: Espacio
|
|
1428
|
+
spaces: Espacio de participación
|
|
1429
1429
|
title: Descargar recursos
|
|
1430
1430
|
download_open_data: Descargar todos los archivos de datos abiertos
|
|
1431
1431
|
download_resource: Descargar "%{resource_name}" en formato CSV
|
|
@@ -1516,9 +1516,9 @@ es-MX:
|
|
|
1516
1516
|
participants_account_mailer:
|
|
1517
1517
|
inactivity_notification:
|
|
1518
1518
|
body_html: |
|
|
1519
|
-
<p>Nuestros registros indican que creaste una cuenta %{organization_name} en <strong>%{date_account_creation}</strong> que no ha estado activa desde <strong>%{date_last_connection}</strong
|
|
1519
|
+
<p>Nuestros registros indican que creaste una cuenta %{organization_name} en <strong>%{date_account_creation}</strong> que no ha estado activa desde <strong>%{date_last_connection}</strong>.</p>
|
|
1520
1520
|
<p>Para proteger tu privacidad, se ha programado la eliminación automática de esta cuenta en <strong>%{days} días</strong>.</p>
|
|
1521
|
-
<p>Si deseas conservar tu cuenta %{organization_name}, simplemente
|
|
1521
|
+
<p>Si deseas conservar tu cuenta %{organization_name}, simplemente %{login_url} antes de ese plazo, y tu cuenta se conservará.<p>
|
|
1522
1522
|
greetings_html: |
|
|
1523
1523
|
Atentamente,<br>
|
|
1524
1524
|
%{organization_name}
|
|
@@ -1553,7 +1553,7 @@ es-MX:
|
|
|
1553
1553
|
user:
|
|
1554
1554
|
actions:
|
|
1555
1555
|
disabled_message: Mensaje
|
|
1556
|
-
edit_profile: Editar perfil
|
|
1556
|
+
edit_profile: Editar el perfil
|
|
1557
1557
|
message: Mensaje
|
|
1558
1558
|
resend_email_confirmation_instructions: Vuelva a enviar las instrucciones de confirmación por correo electrónico
|
|
1559
1559
|
qr:
|
|
@@ -1822,6 +1822,7 @@ es-MX:
|
|
|
1822
1822
|
nickname_help: Tu alias en %{organization}. Solo puede contener letras, números, '-' y '_'.
|
|
1823
1823
|
submit_button: Guardar
|
|
1824
1824
|
subtitle: Si aceptas la invitación, por favor establece tu nombre de usuario/a y contraseña.
|
|
1825
|
+
subtitle_no_password: Si aceptas la invitación, por favor establece tu apodo.
|
|
1825
1826
|
invitation_removed: Tu invitación fue eliminada.
|
|
1826
1827
|
invitation_token_invalid: '¡El token de invitación proporcionado no es válido!'
|
|
1827
1828
|
new:
|
|
@@ -1829,8 +1830,8 @@ es-MX:
|
|
|
1829
1830
|
submit_button: Enviar una invitación
|
|
1830
1831
|
no_invitations_remaining: No quedan invitaciones
|
|
1831
1832
|
send_instructions: Se envió un correo electrónico de invitación a %{email}.
|
|
1832
|
-
updated:
|
|
1833
|
-
updated_not_active:
|
|
1833
|
+
updated: La invitación se ha aceptado correctamente. Se ha iniciado tu sesión.
|
|
1834
|
+
updated_not_active: La invitación se ha aceptado correctamente.
|
|
1834
1835
|
mailer:
|
|
1835
1836
|
confirmation_instructions:
|
|
1836
1837
|
action: Confirmar mi cuenta
|
|
@@ -1889,8 +1890,8 @@ es-MX:
|
|
|
1889
1890
|
confirm_new_password: Confirmar la nueva contraseña
|
|
1890
1891
|
new_password: Contraseña
|
|
1891
1892
|
old_password_help: Para confirmar los cambios en tu cuenta, por favor proporciónanos tu contraseña actual.
|
|
1892
|
-
password_help: "%{minimum_characters} caracteres
|
|
1893
|
-
password_help_admin: "%{minimum_characters} caracteres
|
|
1893
|
+
password_help: "La contraseña debe tener al menos %{minimum_characters} caracteres, de estos, al menos 5 caracteres deben ser diferentes, no deben ser demasiado comunes (e. 123456) y debe ser diferente del número, apodo, correo electrónico y del dominio de la plataforma."
|
|
1894
|
+
password_help_admin: "La contraseña debe tener al menos %{minimum_characters} caracteres, de estos, al menos 5 caracteres deben ser diferentes, no deben ser demasiado comunes (e. 123456) y debe ser diferente del número, apodo, correo electrónico, dominio de la plataforma o contraseñas antiguas."
|
|
1894
1895
|
title: Cambio de contraseña
|
|
1895
1896
|
new:
|
|
1896
1897
|
forgot_your_password: '¿Olvidaste tu contraseña?'
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -304,7 +304,7 @@ es-PY:
|
|
|
304
304
|
create: "%{user_name} ha creado un enlace de acceso en %{space_name}"
|
|
305
305
|
create_with_space: "%{user_name} ha creado un enlace de acceso para %{resource_name} en %{space_name}"
|
|
306
306
|
delete: "%{user_name} ha eliminado un enlace de acceso en %{space_name}"
|
|
307
|
-
delete_with_space: "%{user_name} ha eliminado un enlace de acceso para%{resource_name} en %{space_name}"
|
|
307
|
+
delete_with_space: "%{user_name} ha eliminado un enlace de acceso para %{resource_name} en %{space_name}"
|
|
308
308
|
update: "%{user_name} ha actualizado un enlace de acceso en %{space_name}"
|
|
309
309
|
update_with_space: "%{user_name} ha actualizado un enlace de acceso para %{resource_name} en %{space_name}"
|
|
310
310
|
static_page:
|
|
@@ -1425,7 +1425,7 @@ es-PY:
|
|
|
1425
1425
|
download:
|
|
1426
1426
|
components: Componentes
|
|
1427
1427
|
core: Núcleo
|
|
1428
|
-
spaces: Espacio
|
|
1428
|
+
spaces: Espacio de participación
|
|
1429
1429
|
title: Descargar recursos
|
|
1430
1430
|
download_open_data: Descargar todos los archivos de datos abiertos
|
|
1431
1431
|
download_resource: Descargar "%{resource_name}" en formato CSV
|
|
@@ -1516,9 +1516,9 @@ es-PY:
|
|
|
1516
1516
|
participants_account_mailer:
|
|
1517
1517
|
inactivity_notification:
|
|
1518
1518
|
body_html: |
|
|
1519
|
-
<p>Nuestros registros indican que creaste una cuenta %{organization_name} en <strong>%{date_account_creation}</strong> que no ha estado activa desde <strong>%{date_last_connection}</strong
|
|
1519
|
+
<p>Nuestros registros indican que creaste una cuenta %{organization_name} en <strong>%{date_account_creation}</strong> que no ha estado activa desde <strong>%{date_last_connection}</strong>.</p>
|
|
1520
1520
|
<p>Para proteger tu privacidad, se ha programado la eliminación automática de esta cuenta en <strong>%{days} días</strong>.</p>
|
|
1521
|
-
<p>Si deseas conservar tu cuenta %{organization_name}, simplemente
|
|
1521
|
+
<p>Si deseas conservar tu cuenta %{organization_name}, simplemente %{login_url} antes de ese plazo, y tu cuenta se conservará.<p>
|
|
1522
1522
|
greetings_html: |
|
|
1523
1523
|
Atentamente,<br>
|
|
1524
1524
|
%{organization_name}
|
|
@@ -1553,7 +1553,7 @@ es-PY:
|
|
|
1553
1553
|
user:
|
|
1554
1554
|
actions:
|
|
1555
1555
|
disabled_message: Mensaje
|
|
1556
|
-
edit_profile: Editar perfil
|
|
1556
|
+
edit_profile: Editar el perfil
|
|
1557
1557
|
message: Mensaje
|
|
1558
1558
|
resend_email_confirmation_instructions: Vuelva a enviar las instrucciones de confirmación por correo electrónico
|
|
1559
1559
|
qr:
|
|
@@ -1822,6 +1822,7 @@ es-PY:
|
|
|
1822
1822
|
nickname_help: Tu alias en %{organization}. Solo puede contener letras, números, '-' y '_'.
|
|
1823
1823
|
submit_button: Guardar
|
|
1824
1824
|
subtitle: Si aceptas la invitación, por favor establece tu nombre de usuario/a y contraseña.
|
|
1825
|
+
subtitle_no_password: Si aceptas la invitación, por favor establece tu apodo.
|
|
1825
1826
|
invitation_removed: Tu invitación fue eliminada.
|
|
1826
1827
|
invitation_token_invalid: '¡El token de invitación proporcionado no es válido!'
|
|
1827
1828
|
new:
|
|
@@ -1829,8 +1830,8 @@ es-PY:
|
|
|
1829
1830
|
submit_button: Envia una invitacion
|
|
1830
1831
|
no_invitations_remaining: No quedan invitaciones
|
|
1831
1832
|
send_instructions: Se envió un correo electrónico de invitación a %{email}.
|
|
1832
|
-
updated:
|
|
1833
|
-
updated_not_active:
|
|
1833
|
+
updated: La invitación se ha aceptado correctamente. Se ha iniciado tu sesión.
|
|
1834
|
+
updated_not_active: La invitación se ha aceptado correctamente.
|
|
1834
1835
|
mailer:
|
|
1835
1836
|
confirmation_instructions:
|
|
1836
1837
|
action: Confirmar mi cuenta
|
|
@@ -1889,8 +1890,8 @@ es-PY:
|
|
|
1889
1890
|
confirm_new_password: Confirmar nueva contraseña
|
|
1890
1891
|
new_password: Contraseña
|
|
1891
1892
|
old_password_help: Para confirmar los cambios en tu cuenta, por favor proporciónanos tu contraseña actual.
|
|
1892
|
-
password_help: "%{minimum_characters} caracteres
|
|
1893
|
-
password_help_admin: "%{minimum_characters} caracteres
|
|
1893
|
+
password_help: "La contraseña debe tener al menos %{minimum_characters} caracteres, de estos, al menos 5 caracteres deben ser diferentes, no deben ser demasiado comunes (e. 123456) y debe ser diferente del número, apodo, correo electrónico y del dominio de la plataforma."
|
|
1894
|
+
password_help_admin: "La contraseña debe tener al menos %{minimum_characters} caracteres, de estos, al menos 5 caracteres deben ser diferentes, no deben ser demasiado comunes (e. 123456) y debe ser diferente del número, apodo, correo electrónico, dominio de la plataforma o contraseñas antiguas."
|
|
1894
1895
|
title: Cambio de contraseña
|
|
1895
1896
|
new:
|
|
1896
1897
|
forgot_your_password: '¿Olvidaste tu contraseña?'
|
data/config/locales/es.yml
CHANGED
|
@@ -304,7 +304,7 @@ es:
|
|
|
304
304
|
create: "%{user_name} ha creado un enlace de acceso en %{space_name}"
|
|
305
305
|
create_with_space: "%{user_name} ha creado un enlace de acceso para %{resource_name} en %{space_name}"
|
|
306
306
|
delete: "%{user_name} ha eliminado un enlace de acceso en %{space_name}"
|
|
307
|
-
delete_with_space: "%{user_name} ha eliminado un enlace de acceso para%{resource_name} en %{space_name}"
|
|
307
|
+
delete_with_space: "%{user_name} ha eliminado un enlace de acceso para %{resource_name} en %{space_name}"
|
|
308
308
|
update: "%{user_name} ha actualizado un enlace de acceso en %{space_name}"
|
|
309
309
|
update_with_space: "%{user_name} ha actualizado un enlace de acceso para %{resource_name} en %{space_name}"
|
|
310
310
|
static_page:
|
|
@@ -1197,7 +1197,7 @@ es:
|
|
|
1197
1197
|
subject: "%{sender} ha iniciado una conversación contigo"
|
|
1198
1198
|
new_message:
|
|
1199
1199
|
greeting: '¡Hola, %{recipient}!'
|
|
1200
|
-
intro: "%{sender} ha publicado nuevos mensajes en tu conversación.
|
|
1200
|
+
intro: "%{sender} ha publicado nuevos mensajes en tu conversación. Para verlos y responder, inicia tu sesión y haz clic en el enlace que encontrarás más abajo:"
|
|
1201
1201
|
outro: '¡Disfruta de la plataforma!'
|
|
1202
1202
|
subject: Tienes nuevos mensajes de %{sender}
|
|
1203
1203
|
conversations:
|
|
@@ -1422,7 +1422,7 @@ es:
|
|
|
1422
1422
|
download:
|
|
1423
1423
|
components: Componentes
|
|
1424
1424
|
core: Núcleo
|
|
1425
|
-
spaces: Espacio
|
|
1425
|
+
spaces: Espacio de participación
|
|
1426
1426
|
title: Descargar recursos
|
|
1427
1427
|
download_open_data: Descargar todos los archivos de datos abiertos
|
|
1428
1428
|
download_resource: Descargar "%{resource_name}" en formato CSV
|
|
@@ -1513,9 +1513,9 @@ es:
|
|
|
1513
1513
|
participants_account_mailer:
|
|
1514
1514
|
inactivity_notification:
|
|
1515
1515
|
body_html: |
|
|
1516
|
-
<p>Nuestros registros indican que creaste una cuenta %{organization_name} en <strong>%{date_account_creation}</strong> que no ha estado activa desde <strong>%{date_last_connection}</strong
|
|
1516
|
+
<p>Nuestros registros indican que creaste una cuenta %{organization_name} en <strong>%{date_account_creation}</strong> que no ha estado activa desde <strong>%{date_last_connection}</strong>.</p>
|
|
1517
1517
|
<p>Para proteger tu privacidad, se ha programado la eliminación automática de esta cuenta en <strong>%{days} días</strong>.</p>
|
|
1518
|
-
<p>Si deseas conservar tu cuenta %{organization_name}, simplemente
|
|
1518
|
+
<p>Si deseas conservar tu cuenta %{organization_name}, simplemente %{login_url} antes de ese plazo, y tu cuenta se conservará.<p>
|
|
1519
1519
|
greetings_html: |
|
|
1520
1520
|
Atentamente,<br>
|
|
1521
1521
|
%{organization_name}
|
|
@@ -1550,9 +1550,9 @@ es:
|
|
|
1550
1550
|
user:
|
|
1551
1551
|
actions:
|
|
1552
1552
|
disabled_message: Mensaje
|
|
1553
|
-
edit_profile:
|
|
1553
|
+
edit_profile: Editar el perfil
|
|
1554
1554
|
message: Mensaje
|
|
1555
|
-
resend_email_confirmation_instructions:
|
|
1555
|
+
resend_email_confirmation_instructions: Reenvía un correo electrónico con las instrucciones de confirmación
|
|
1556
1556
|
qr:
|
|
1557
1557
|
show:
|
|
1558
1558
|
scan: Escanea el código QR
|
|
@@ -1819,6 +1819,7 @@ es:
|
|
|
1819
1819
|
nickname_help: Tu alias en %{organization}. Solo puede contener letras, números, '-' y '_'.
|
|
1820
1820
|
submit_button: Guardar
|
|
1821
1821
|
subtitle: Si aceptas la invitación, por favor establece tu alias y contraseña.
|
|
1822
|
+
subtitle_no_password: Si aceptas la invitación, por favor establece tu apodo.
|
|
1822
1823
|
invitation_removed: Se ha eliminado tu invitación.
|
|
1823
1824
|
invitation_token_invalid: '¡El token de invitación proporcionado no es válido!'
|
|
1824
1825
|
new:
|
|
@@ -1826,8 +1827,8 @@ es:
|
|
|
1826
1827
|
submit_button: Enviar una invitación
|
|
1827
1828
|
no_invitations_remaining: No quedan invitaciones
|
|
1828
1829
|
send_instructions: Se envió una invitación via correo electrónico a %{email}.
|
|
1829
|
-
updated:
|
|
1830
|
-
updated_not_active:
|
|
1830
|
+
updated: La invitación se ha aceptado correctamente. Se ha iniciado tu sesión.
|
|
1831
|
+
updated_not_active: La invitación se ha aceptado correctamente.
|
|
1831
1832
|
mailer:
|
|
1832
1833
|
confirmation_instructions:
|
|
1833
1834
|
action: Confirmar mi cuenta
|
|
@@ -1886,8 +1887,8 @@ es:
|
|
|
1886
1887
|
confirm_new_password: Confirmar la nueva contraseña
|
|
1887
1888
|
new_password: Nueva contraseña
|
|
1888
1889
|
old_password_help: Para confirmar los cambios en tu cuenta, por favor proporciónanos tu contraseña actual.
|
|
1889
|
-
password_help: "%{minimum_characters} caracteres
|
|
1890
|
-
password_help_admin: "%{minimum_characters} caracteres
|
|
1890
|
+
password_help: "La contraseña debe tener al menos %{minimum_characters} caracteres, de estos, al menos 5 caracteres deben ser diferentes, no deben ser demasiado comunes (e. 123456) y debe ser diferente del número, apodo, correo electrónico y del dominio de la plataforma."
|
|
1891
|
+
password_help_admin: "La contraseña debe tener al menos %{minimum_characters} caracteres, de estos, al menos 5 caracteres deben ser diferentes, no deben ser demasiado comunes (e. 123456) y debe ser diferente del número, apodo, correo electrónico, dominio de la plataforma o contraseñas antiguas."
|
|
1891
1892
|
title: Cambio de contraseña
|
|
1892
1893
|
new:
|
|
1893
1894
|
forgot_your_password: '¿Olvidaste tu contraseña?'
|
data/config/locales/eu.yml
CHANGED
|
@@ -1552,7 +1552,7 @@ eu:
|
|
|
1552
1552
|
disabled_message: Mezua
|
|
1553
1553
|
edit_profile: Editatu profila
|
|
1554
1554
|
message: Mezua
|
|
1555
|
-
resend_email_confirmation_instructions: Birbidali
|
|
1555
|
+
resend_email_confirmation_instructions: Birbidali helbide elektroniko bat berresteko instrukzioekin
|
|
1556
1556
|
qr:
|
|
1557
1557
|
show:
|
|
1558
1558
|
scan: Eskaneatu QR kodea
|
|
@@ -1819,6 +1819,7 @@ eu:
|
|
|
1819
1819
|
nickname_help: Zure ezizena %{organization}-an. Letrak, zenbakiak, '-' eta '_' soilik eduki ditzake.
|
|
1820
1820
|
submit_button: Gorde
|
|
1821
1821
|
subtitle: Gonbidapena onartzen baduzu, mesedez, ezarri zure ezizena eta pasahitza.
|
|
1822
|
+
subtitle_no_password: Gonbidapena onartzen baduzu, jarri zure ezizena.
|
|
1822
1823
|
invitation_removed: Zure gonbidapena kendu egin da.
|
|
1823
1824
|
invitation_token_invalid: Gonbidapen token hori ez da baliozkoa!
|
|
1824
1825
|
new:
|
|
@@ -1826,8 +1827,8 @@ eu:
|
|
|
1826
1827
|
submit_button: Bidali gonbidapena
|
|
1827
1828
|
no_invitations_remaining: Ez da gonbidapenik geratzen
|
|
1828
1829
|
send_instructions: Gonbidapen-mezu elektroniko bat %{email} helbidera bidali da.
|
|
1829
|
-
updated:
|
|
1830
|
-
updated_not_active:
|
|
1830
|
+
updated: Gonbidapena behar bezala onartu da. Orain erregistratuta zaude.
|
|
1831
|
+
updated_not_active: Gonbidapena behar bezala onartu da.
|
|
1831
1832
|
mailer:
|
|
1832
1833
|
confirmation_instructions:
|
|
1833
1834
|
action: Berretsi nire kontua
|
|
@@ -1886,8 +1887,8 @@ eu:
|
|
|
1886
1887
|
confirm_new_password: Berretsi pasahitz berria
|
|
1887
1888
|
new_password: Pasahitza
|
|
1888
1889
|
old_password_help: Zure kontuaren aldaketak baieztatzeko, mesedez eman zure egungo pasahitza.
|
|
1889
|
-
password_help: "%{minimum_characters} karaktere izan behar ditu
|
|
1890
|
-
password_help_admin: "%{minimum_characters} karaktere izan behar ditu
|
|
1890
|
+
password_help: "Pasahitzak gutxienez %{minimum_characters} karaktere izan behar ditu, 5 karaktere desberdin izan behar ditu, ez du oso ohikoa izan behar (adibidez, 123456), zure izena, ezizena, posta elektronikoa, erakundearen anfitrioia eta zure pasahitz zaharren desberdina izan behar du."
|
|
1891
|
+
password_help_admin: "Pasahitzak gutxienez %{minimum_characters} karaktere izan behar ditu, 5 karaktere desberdin izan behar ditu, ez du oso ohikoa izan behar (adibidez, 123456), zure izena, ezizena, posta elektronikoa, erakundearen anfitrioia eta zure pasahitz zaharren desberdina izan behar du."
|
|
1891
1892
|
title: Pasahitza aldatu egin da
|
|
1892
1893
|
new:
|
|
1893
1894
|
forgot_your_password: Pasahitza ahaztu duzu?
|
|
@@ -2132,6 +2133,7 @@ eu:
|
|
|
2132
2133
|
confirm_title_close_ephemeral_session: Orri honetatik irten baino lehen…
|
|
2133
2134
|
log_in: Hasi saioa
|
|
2134
2135
|
main_menu: Menu nagusia
|
|
2136
|
+
mobile_account_greeting: Kaixo, %{user_name}
|
|
2135
2137
|
user_menu: Parte-hartzailearen menua
|
|
2136
2138
|
impersonation_warning:
|
|
2137
2139
|
close_session: Itxi saioa
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -1059,6 +1059,9 @@ fi-pl:
|
|
|
1059
1059
|
explanation: 'Kuvan ohjeistus:'
|
|
1060
1060
|
message_1: Käytä mieluiten vaakasuuntaista kuvaa, jossa ei ole tekstiä.
|
|
1061
1061
|
message_2: Palvelu rajaa kuvaa.
|
|
1062
|
+
import_file:
|
|
1063
|
+
explanation: 'Tuontitiedoston ohjeistus:'
|
|
1064
|
+
message_1: Tiedoston on oltava JSON-muotoinen, joka on ladattu vientitoiminnon kautta.
|
|
1062
1065
|
file_validation:
|
|
1063
1066
|
allowed_file_extensions: 'Sallitut tiedostopäätteet: %{extensions}'
|
|
1064
1067
|
max_file_dimension: 'Tiedoston enimmäismitat: %{resolution} pikseliä'
|
|
@@ -1803,6 +1806,7 @@ fi-pl:
|
|
|
1803
1806
|
send_paranoid_instructions: Jos sähköpostiosoitteesi on tietokannassamme, saat hetken kuluttua sähköpostiisi ohjeet tunnuksen vahvistamiseen.
|
|
1804
1807
|
failure:
|
|
1805
1808
|
already_authenticated: Olet jo kirjautunut sisään.
|
|
1809
|
+
csrf_token: Pyyntöäsi ei voitu vahvistaa. Yritä uudelleen.
|
|
1806
1810
|
inactive: Tilisi ei ole vielä aktivoitu.
|
|
1807
1811
|
invalid: Virheellinen %{authentication_keys} tai salasana.
|
|
1808
1812
|
invited: Sinulla on odottava kutsu, hyväksy se ja viimeistele tilin luominen.
|
|
@@ -1817,6 +1821,7 @@ fi-pl:
|
|
|
1817
1821
|
nickname_help: Nimimerkkisi palvelussa %{organization}. Voi sisältää ainoastaan kirjaimia, numeroita sekä yhdysmerkkejä "-" ja alaviivoja "_".
|
|
1818
1822
|
submit_button: Tallenna
|
|
1819
1823
|
subtitle: Jos hyväksyt kutsun, aseta käyttäjänimesi ja salasana.
|
|
1824
|
+
subtitle_no_password: Jos hyväksyt kutsun, aseta tilillesi nimi.
|
|
1820
1825
|
invitation_removed: Kutsusi peruutettiin.
|
|
1821
1826
|
invitation_token_invalid: Käyttämäsi kutsuavain ei ole voimassa!
|
|
1822
1827
|
new:
|
|
@@ -1824,8 +1829,8 @@ fi-pl:
|
|
|
1824
1829
|
submit_button: Lähetä kutsu
|
|
1825
1830
|
no_invitations_remaining: Ei kutsuja jäljellä
|
|
1826
1831
|
send_instructions: Kutsuviesti on lähetetty %{email}.
|
|
1827
|
-
updated:
|
|
1828
|
-
updated_not_active:
|
|
1832
|
+
updated: Kutsun hyväksyminen onnistui. Olet nyt kirjautunut sisään.
|
|
1833
|
+
updated_not_active: Kutsun hyväksyminen onnistui.
|
|
1829
1834
|
mailer:
|
|
1830
1835
|
confirmation_instructions:
|
|
1831
1836
|
action: Vahvista käyttäjätilini
|
|
@@ -1885,8 +1890,8 @@ fi-pl:
|
|
|
1885
1890
|
confirm_new_password: Vahvista uusi salasana
|
|
1886
1891
|
new_password: Uusi salasana
|
|
1887
1892
|
old_password_help: Vahvistaaksesi muutokset käyttäjätiliisi, anna nykyinen salasanasi.
|
|
1888
|
-
password_help: "
|
|
1889
|
-
password_help_admin: "
|
|
1893
|
+
password_help: "Vähintään %{minimum_characters} merkkiä, vähintään 5 eri merkkiä, ei voi olla yleisesti käytetty salasana (esim. 123456), eikä voi vastata nimeäsi, nimimerkkiäsi, sähköpostiosoitettasi tai tämän palvelun verkko-osoitetta."
|
|
1894
|
+
password_help_admin: "Vähintään %{minimum_characters} merkkiä, vähintään 5 eri merkkiä, ei voi olla yleisesti käytetty salasana (esim. 123456), eikä voi vastata nimeäsi, nimimerkkiäsi, sähköpostiosoitettasi tai tämän palvelun verkko-osoitetta. Et myöskään voi käyttää aikaisempia salasanojasi."
|
|
1890
1895
|
title: Salasanan vaihto
|
|
1891
1896
|
new:
|
|
1892
1897
|
forgot_your_password: Unohditko salasanasi?
|
|
@@ -2128,6 +2133,7 @@ fi-pl:
|
|
|
2128
2133
|
confirm_title_close_ephemeral_session: Ennen kuin poistut tältä sivulta…
|
|
2129
2134
|
log_in: Kirjaudu sisään
|
|
2130
2135
|
main_menu: Päävalikko
|
|
2136
|
+
mobile_account_greeting: Hei %{user_name}
|
|
2131
2137
|
user_menu: Käyttäjän valikko
|
|
2132
2138
|
impersonation_warning:
|
|
2133
2139
|
close_session: Sulje istunto
|
data/config/locales/fi.yml
CHANGED
|
@@ -1059,6 +1059,9 @@ fi:
|
|
|
1059
1059
|
explanation: 'Kuvan ohjeistus:'
|
|
1060
1060
|
message_1: Käytä mieluiten vaakasuuntaista kuvaa, jossa ei ole tekstiä.
|
|
1061
1061
|
message_2: Palvelu rajaa kuvaa.
|
|
1062
|
+
import_file:
|
|
1063
|
+
explanation: 'Tuontitiedoston ohjeistus:'
|
|
1064
|
+
message_1: Tiedoston on oltava JSON-muotoinen, joka on ladattu vientitoiminnon kautta.
|
|
1062
1065
|
file_validation:
|
|
1063
1066
|
allowed_file_extensions: 'Sallitut tiedostopäätteet: %{extensions}'
|
|
1064
1067
|
max_file_dimension: 'Tiedoston enimmäismitat: %{resolution} pikseliä'
|
|
@@ -1534,7 +1537,7 @@ fi:
|
|
|
1534
1537
|
error: Salasanan päivitys epäonnistui.
|
|
1535
1538
|
success: Salasanan päivitys onnistui.
|
|
1536
1539
|
profile:
|
|
1537
|
-
deleted:
|
|
1540
|
+
deleted: Poistettu osallistuja
|
|
1538
1541
|
inaccessible_message: Tämä käyttäjäprofiili ei ole käytettävissä, koska käyttäjä on rikkonut käyttöehtoja!
|
|
1539
1542
|
profiles:
|
|
1540
1543
|
default_officialization_text_for_users: Tämä osallistuja on julkisesti vahvistettu, ja hänen nimensä sekä asemansa oikeellisuus on varmistettu.
|
|
@@ -1803,6 +1806,7 @@ fi:
|
|
|
1803
1806
|
send_paranoid_instructions: Jos sähköpostiosoitteesi on tietokannassamme, saat hetken kuluttua sähköpostiisi ohjeet tunnuksen vahvistamiseen.
|
|
1804
1807
|
failure:
|
|
1805
1808
|
already_authenticated: Olet jo kirjautunut sisään.
|
|
1809
|
+
csrf_token: Pyyntöäsi ei voitu vahvistaa. Yritä uudelleen.
|
|
1806
1810
|
inactive: Tilisi ei ole vielä aktivoitu.
|
|
1807
1811
|
invalid: Virheellinen %{authentication_keys} tai salasana.
|
|
1808
1812
|
invited: Sinulla on odottava kutsu, hyväksy se ja viimeistele tilin luominen.
|
|
@@ -1817,6 +1821,7 @@ fi:
|
|
|
1817
1821
|
nickname_help: Nimimerkkisi palvelussa %{organization}. Voi sisältää ainoastaan kirjaimia, numeroita sekä yhdysmerkkejä "-" ja alaviivoja "_".
|
|
1818
1822
|
submit_button: Tallenna
|
|
1819
1823
|
subtitle: Jos hyväksyt kutsun, aseta käyttäjänimesi ja salasana.
|
|
1824
|
+
subtitle_no_password: Jos hyväksyt kutsun, aseta tilillesi nimi.
|
|
1820
1825
|
invitation_removed: Kutsusi on peruttu.
|
|
1821
1826
|
invitation_token_invalid: Käyttämäsi kutsuavain ei ole voimassa!
|
|
1822
1827
|
new:
|
|
@@ -1824,8 +1829,8 @@ fi:
|
|
|
1824
1829
|
submit_button: Lähetä kutsu
|
|
1825
1830
|
no_invitations_remaining: Ei kutsuja jäljellä
|
|
1826
1831
|
send_instructions: Kutsuviesti on lähetetty %{email}.
|
|
1827
|
-
updated:
|
|
1828
|
-
updated_not_active:
|
|
1832
|
+
updated: Kutsun hyväksyminen onnistui. Olet nyt kirjautunut sisään.
|
|
1833
|
+
updated_not_active: Kutsun hyväksyminen onnistui.
|
|
1829
1834
|
mailer:
|
|
1830
1835
|
confirmation_instructions:
|
|
1831
1836
|
action: Vahvista käyttäjätilini
|
|
@@ -1885,8 +1890,8 @@ fi:
|
|
|
1885
1890
|
confirm_new_password: Vahvista uusi salasana
|
|
1886
1891
|
new_password: Uusi salasana
|
|
1887
1892
|
old_password_help: Vahvistaaksesi muutokset käyttäjätiliisi, anna nykyinen salasanasi.
|
|
1888
|
-
password_help: "
|
|
1889
|
-
password_help_admin: "
|
|
1893
|
+
password_help: "Vähintään %{minimum_characters} merkkiä, vähintään 5 eri merkkiä, ei voi olla yleisesti käytetty salasana (esim. 123456), eikä voi vastata nimeäsi, nimimerkkiäsi, sähköpostiosoitettasi tai tämän palvelun verkko-osoitetta."
|
|
1894
|
+
password_help_admin: "Vähintään %{minimum_characters} merkkiä, vähintään 5 eri merkkiä, ei voi olla yleisesti käytetty salasana (esim. 123456), eikä voi vastata nimeäsi, nimimerkkiäsi, sähköpostiosoitettasi tai tämän palvelun verkko-osoitetta. Et myöskään voi käyttää aikaisempia salasanojasi."
|
|
1890
1895
|
title: Salasanan vaihto
|
|
1891
1896
|
new:
|
|
1892
1897
|
forgot_your_password: Unohditko salasanasi?
|
|
@@ -2131,6 +2136,7 @@ fi:
|
|
|
2131
2136
|
confirm_title_close_ephemeral_session: Ennen kuin poistut tältä sivulta…
|
|
2132
2137
|
log_in: Kirjaudu sisään
|
|
2133
2138
|
main_menu: Päävalikko
|
|
2139
|
+
mobile_account_greeting: Hei %{user_name}
|
|
2134
2140
|
user_menu: Käyttäjän valikko
|
|
2135
2141
|
impersonation_warning:
|
|
2136
2142
|
close_session: Sulje istunto
|