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/fr-CA.yml
CHANGED
|
@@ -1403,7 +1403,7 @@ fr-CA:
|
|
|
1403
1403
|
user:
|
|
1404
1404
|
actions:
|
|
1405
1405
|
disabled_message: Message
|
|
1406
|
-
edit_profile:
|
|
1406
|
+
edit_profile: Modifier le profil
|
|
1407
1407
|
message: Message
|
|
1408
1408
|
resend_email_confirmation_instructions: Renvoyer les instructions de confirmation par courrier électronique
|
|
1409
1409
|
qr:
|
|
@@ -1664,6 +1664,7 @@ fr-CA:
|
|
|
1664
1664
|
nickname_help: Cet identifiant est public et unique sur %{organization} ; il permet aux autres utilisateurs de vous suivre, de vous contacter ou de vous mentionner dans leurs commentaires. Il s’affichera précédé d’un « @ » ; il ne peut contenir que des lettres, des chiffres ainsi que les caractères "-" et "_".
|
|
1665
1665
|
submit_button: Sauvegarder
|
|
1666
1666
|
subtitle: Si vous acceptez l'invitation, veuillez indiquer votre pseudonyme et votre mot de passe.
|
|
1667
|
+
subtitle_no_password: Si vous acceptez l'invitation, veuillez définir votre pseudonyme.
|
|
1667
1668
|
invitation_removed: Votre invitation a été supprimée.
|
|
1668
1669
|
invitation_token_invalid: Le jeton d'invitation fourni n'est pas valide!
|
|
1669
1670
|
new:
|
|
@@ -1671,8 +1672,8 @@ fr-CA:
|
|
|
1671
1672
|
submit_button: Envoyer une invitation
|
|
1672
1673
|
no_invitations_remaining: Aucune invitation restante
|
|
1673
1674
|
send_instructions: Un email d'invitation a été envoyé à %{email}.
|
|
1674
|
-
updated:
|
|
1675
|
-
updated_not_active:
|
|
1675
|
+
updated: Invitation acceptée avec succès. Vous êtes maintenant connecté(e).
|
|
1676
|
+
updated_not_active: Invitation acceptée avec succès.
|
|
1676
1677
|
mailer:
|
|
1677
1678
|
confirmation_instructions:
|
|
1678
1679
|
action: Confirmer mon compte
|
|
@@ -1731,8 +1732,8 @@ fr-CA:
|
|
|
1731
1732
|
confirm_new_password: Confirmer le nouveau mot de passe
|
|
1732
1733
|
new_password: Nouveau mot de passe
|
|
1733
1734
|
old_password_help: Afin de confirmer les modifications apportées à votre compte, veuillez saisir votre mot de passe actuel.
|
|
1734
|
-
password_help: "%{minimum_characters} caractères minimum, ne doit pas être trop commun (
|
|
1735
|
-
password_help_admin: "%{minimum_characters} caractères minimum, ne doit pas être trop commun (
|
|
1735
|
+
password_help: "%{minimum_characters} caractères minimum, doit contenir au moins 5 caractères différents, ne doit pas être trop commun (ex. 123456) et doit être différent de votre nom, de votre pseudo, de votre courriel et du nom de l'organisation."
|
|
1736
|
+
password_help_admin: "%{minimum_characters} caractères minimum, doit contenir au moins 5 caractères différents, ne doit pas être trop commun (ex. 123456) et doit être différent de votre nom, de votre pseudo, de votre courriel, du nom de l'organisation et de vos anciens mots de passe."
|
|
1736
1737
|
title: Changement de mot de passe
|
|
1737
1738
|
new:
|
|
1738
1739
|
forgot_your_password: Mot de passe oublié?
|
|
@@ -1973,6 +1974,7 @@ fr-CA:
|
|
|
1973
1974
|
confirm_title_close_ephemeral_session: Avant de quitter cette page…
|
|
1974
1975
|
log_in: Se connecter
|
|
1975
1976
|
main_menu: Menu principal
|
|
1977
|
+
mobile_account_greeting: Bonjour %{user_name},
|
|
1976
1978
|
user_menu: Menu utilisateur
|
|
1977
1979
|
impersonation_warning:
|
|
1978
1980
|
close_session: Fermer la session
|
data/config/locales/fr.yml
CHANGED
|
@@ -1388,7 +1388,7 @@ fr:
|
|
|
1388
1388
|
error: Il y a eu un problème lors de la mise à jour de votre mot de passe.
|
|
1389
1389
|
success: Mot de passe mis à jour avec succès.
|
|
1390
1390
|
profile:
|
|
1391
|
-
deleted: Utilisateur
|
|
1391
|
+
deleted: Utilisateur supprimé
|
|
1392
1392
|
inaccessible_message: Ce profil est inaccessible en raison d'une violation des conditions d'utilisation !
|
|
1393
1393
|
profiles:
|
|
1394
1394
|
default_officialization_text_for_users: L'identité de ce participant a été vérifiée. Son nom ou son rôle correspondent avec son vrai nom ou son vrai rôle dans le monde réel.
|
|
@@ -1403,7 +1403,7 @@ fr:
|
|
|
1403
1403
|
user:
|
|
1404
1404
|
actions:
|
|
1405
1405
|
disabled_message: Message
|
|
1406
|
-
edit_profile:
|
|
1406
|
+
edit_profile: Modifier le profil
|
|
1407
1407
|
message: Message
|
|
1408
1408
|
resend_email_confirmation_instructions: Renvoyer les instructions de confirmation par courrier électronique
|
|
1409
1409
|
qr:
|
|
@@ -1664,6 +1664,7 @@ fr:
|
|
|
1664
1664
|
nickname_help: Cet identifiant est public et unique sur %{organization} ; il permet aux autres utilisateurs de vous suivre, de vous contacter ou de vous mentionner dans leurs commentaires. Il s’affichera précédé d’un « @ » ; il ne peut contenir que des lettres, des chiffres ainsi que les caractères "-" et "_".
|
|
1665
1665
|
submit_button: Sauvegarder
|
|
1666
1666
|
subtitle: Si vous acceptez l'invitation, veuillez indiquer votre pseudonyme et votre mot de passe.
|
|
1667
|
+
subtitle_no_password: Si vous acceptez l'invitation, veuillez définir votre pseudonyme.
|
|
1667
1668
|
invitation_removed: Votre invitation a été supprimée.
|
|
1668
1669
|
invitation_token_invalid: Le jeton d'invitation fourni n'est pas valide!
|
|
1669
1670
|
new:
|
|
@@ -1671,8 +1672,8 @@ fr:
|
|
|
1671
1672
|
submit_button: Envoyer une invitation
|
|
1672
1673
|
no_invitations_remaining: Aucune invitation restante
|
|
1673
1674
|
send_instructions: Un email d'invitation a été envoyé à %{email}.
|
|
1674
|
-
updated:
|
|
1675
|
-
updated_not_active:
|
|
1675
|
+
updated: Invitation acceptée avec succès. Vous êtes maintenant connecté(e).
|
|
1676
|
+
updated_not_active: Invitation acceptée avec succès.
|
|
1676
1677
|
mailer:
|
|
1677
1678
|
confirmation_instructions:
|
|
1678
1679
|
action: Confirmer mon compte
|
|
@@ -1731,8 +1732,8 @@ fr:
|
|
|
1731
1732
|
confirm_new_password: Confirmer le nouveau mot de passe
|
|
1732
1733
|
new_password: Nouveau mot de passe
|
|
1733
1734
|
old_password_help: Afin de confirmer les modifications apportées à votre compte, veuillez saisir votre mot de passe actuel.
|
|
1734
|
-
password_help: "%{minimum_characters} caractères minimum, ne doit pas être trop commun (
|
|
1735
|
-
password_help_admin: "%{minimum_characters} caractères minimum, ne doit pas être trop commun (
|
|
1735
|
+
password_help: "%{minimum_characters} caractères minimum, doit contenir au moins 5 caractères différents, ne doit pas être trop commun (ex. 123456) et doit être différent de votre nom, de votre pseudo, de votre courriel et du nom de l'organisation."
|
|
1736
|
+
password_help_admin: "%{minimum_characters} caractères minimum, doit contenir au moins 5 caractères différents, ne doit pas être trop commun (ex. 123456) et doit être différent de votre nom, de votre pseudo, de votre courriel, du nom de l'organisation et de vos anciens mots de passe."
|
|
1736
1737
|
title: Changement de mot de passe
|
|
1737
1738
|
new:
|
|
1738
1739
|
forgot_your_password: Mot de passe oublié?
|
|
@@ -2077,7 +2078,7 @@ fr:
|
|
|
2077
2078
|
buttons:
|
|
2078
2079
|
close: Fermer
|
|
2079
2080
|
reset: Réinitialiser
|
|
2080
|
-
select:
|
|
2081
|
+
select:
|
|
2081
2082
|
formats:
|
|
2082
2083
|
day_of_month: "%b %d"
|
|
2083
2084
|
day_of_week: "%a"
|
data/config/locales/gl.yml
CHANGED
|
@@ -688,8 +688,6 @@ gl:
|
|
|
688
688
|
submit_button: Enviar unha invitación
|
|
689
689
|
no_invitations_remaining: Non hai invitacións restantes
|
|
690
690
|
send_instructions: Enviouse un correo electrónico de invitación a %{email}.
|
|
691
|
-
updated: O seu contrasinal configurouse con éxito. Agora iniciaches sesión.
|
|
692
|
-
updated_not_active: O seu contrasinal configurouse con éxito.
|
|
693
691
|
mailer:
|
|
694
692
|
confirmation_instructions:
|
|
695
693
|
action: Confirme a miña conta
|
data/config/locales/hu.yml
CHANGED
|
@@ -72,7 +72,7 @@ hu:
|
|
|
72
72
|
date:
|
|
73
73
|
buttons:
|
|
74
74
|
close: Bezár
|
|
75
|
-
select:
|
|
75
|
+
select: Kiválaszt
|
|
76
76
|
formats:
|
|
77
77
|
decidim_short: "%Y.%m.%d"
|
|
78
78
|
decidim_short_dashed: "%d-%m-%Y"
|
|
@@ -850,7 +850,7 @@ hu:
|
|
|
850
850
|
no_conversations: Még nem rendelkezik beszélgetésekkel.
|
|
851
851
|
title: Beszélgetések
|
|
852
852
|
reply_form:
|
|
853
|
-
placeholder:
|
|
853
|
+
placeholder: Az Ön válasza...
|
|
854
854
|
send: Küldés
|
|
855
855
|
show:
|
|
856
856
|
back: Vissza az összes beszélgetéshez
|
|
@@ -1196,8 +1196,6 @@ hu:
|
|
|
1196
1196
|
submit_button: Küldjön meghívót
|
|
1197
1197
|
no_invitations_remaining: Nincsenek meghívók
|
|
1198
1198
|
send_instructions: Meghívó e-mailt küldött %{email}.
|
|
1199
|
-
updated: A jelszó sikeresen be lett állítva. Most bejelentkezett.
|
|
1200
|
-
updated_not_active: A jelszó sikeresen be lett állítva.
|
|
1201
1199
|
mailer:
|
|
1202
1200
|
confirmation_instructions:
|
|
1203
1201
|
action: Fiókom megerősítése
|
|
@@ -1253,8 +1251,6 @@ hu:
|
|
|
1253
1251
|
change_my_password: A jelszó megváltoztatása
|
|
1254
1252
|
confirm_new_password: Erősítse meg az új jelszót
|
|
1255
1253
|
new_password: Új jelszó
|
|
1256
|
-
password_help: "%{minimum_characters} karakter a minimum, nem lehet túl gyakori (pl. 123456), és különböznie kell a becenevétől és az e-mail címétől."
|
|
1257
|
-
password_help_admin: "%{minimum_characters} karakter a minimum, nem lehet túl gyakori (pl. 123456), és különböznie kell a becenevétől és az e-mail címétől és a régi jelszavaitól."
|
|
1258
1254
|
title: Jelszó módosítása
|
|
1259
1255
|
new:
|
|
1260
1256
|
forgot_your_password: Elfelejtette a jelszavát?
|
|
@@ -1419,7 +1415,7 @@ hu:
|
|
|
1419
1415
|
description: Leírás
|
|
1420
1416
|
name: Név
|
|
1421
1417
|
service: Szolgáltatás
|
|
1422
|
-
type:
|
|
1418
|
+
type: Típus
|
|
1423
1419
|
items:
|
|
1424
1420
|
_session_id:
|
|
1425
1421
|
description: Lehetővé teszi a weboldalak számára, hogy emlékezzenek a felhasználóra a weboldalon belül, amikor az a weboldalak között mozog.
|
|
@@ -1565,7 +1561,7 @@ hu:
|
|
|
1565
1561
|
buttons:
|
|
1566
1562
|
close: Bezárás
|
|
1567
1563
|
reset: Visszaállítás
|
|
1568
|
-
select:
|
|
1564
|
+
select: Kiválaszt
|
|
1569
1565
|
formats:
|
|
1570
1566
|
day_of_month: "%b %d"
|
|
1571
1567
|
day_of_week: "%a"
|
data/config/locales/id-ID.yml
CHANGED
|
@@ -611,8 +611,6 @@ id:
|
|
|
611
611
|
submit_button: Kirim undangan
|
|
612
612
|
no_invitations_remaining: Tidak ada undangan yang tersisa
|
|
613
613
|
send_instructions: Email undangan telah dikirim ke %{email}.
|
|
614
|
-
updated: Kata sandi Anda berhasil ditetapkan. Anda sekarang masuk.
|
|
615
|
-
updated_not_active: Kata sandi Anda berhasil ditetapkan.
|
|
616
614
|
mailer:
|
|
617
615
|
confirmation_instructions:
|
|
618
616
|
action: Konfirmasikan akun saya
|
data/config/locales/it.yml
CHANGED
|
@@ -101,7 +101,7 @@ it:
|
|
|
101
101
|
date:
|
|
102
102
|
buttons:
|
|
103
103
|
close: Chiudere
|
|
104
|
-
select:
|
|
104
|
+
select: Seleziona
|
|
105
105
|
formats:
|
|
106
106
|
decidim_short: "%d/%m/%Y"
|
|
107
107
|
decidim_short_dashed: "%d-%m-%Y"
|
|
@@ -1017,8 +1017,6 @@ it:
|
|
|
1017
1017
|
submit_button: Invia un invito
|
|
1018
1018
|
no_invitations_remaining: Nessun invito rimanente
|
|
1019
1019
|
send_instructions: Una email di invito è stata inviata a %{email}.
|
|
1020
|
-
updated: La tua password è stata impostata correttamente. Ora hai effettuato l'accesso.
|
|
1021
|
-
updated_not_active: La tua password è stata impostata correttamente.
|
|
1022
1020
|
mailer:
|
|
1023
1021
|
confirmation_instructions:
|
|
1024
1022
|
action: Conferma il mio account
|
data/config/locales/ja.yml
CHANGED
|
@@ -36,7 +36,7 @@ ja:
|
|
|
36
36
|
taxonomy:
|
|
37
37
|
name: タクソノミー名
|
|
38
38
|
taxonomy_filter:
|
|
39
|
-
internal_name:
|
|
39
|
+
internal_name: 管理用ラベル
|
|
40
40
|
name: ラベル
|
|
41
41
|
root_taxonomy_id: タクソノミーから
|
|
42
42
|
space_filter: フィルタとして利用可能
|
|
@@ -1517,7 +1517,7 @@ ja:
|
|
|
1517
1517
|
error: パスワードの更新中に問題が発生しました。
|
|
1518
1518
|
success: パスワードを更新しました。
|
|
1519
1519
|
profile:
|
|
1520
|
-
deleted:
|
|
1520
|
+
deleted: 参加者を削除しました
|
|
1521
1521
|
inaccessible_message: このプロフィールは利用規約違反のためアクセスできません!
|
|
1522
1522
|
profiles:
|
|
1523
1523
|
default_officialization_text_for_users: この参加者は公的に検証されます。彼/彼女の名前または役割が実名・実際の役割に対応していることが確認されています。
|
|
@@ -1534,7 +1534,7 @@ ja:
|
|
|
1534
1534
|
disabled_message: メッセージ
|
|
1535
1535
|
edit_profile: プロフィールを編集
|
|
1536
1536
|
message: メッセージ
|
|
1537
|
-
resend_email_confirmation_instructions:
|
|
1537
|
+
resend_email_confirmation_instructions: 確認メールを再送する
|
|
1538
1538
|
qr:
|
|
1539
1539
|
show:
|
|
1540
1540
|
scan: QRコードをスキャン
|
|
@@ -1808,8 +1808,6 @@ ja:
|
|
|
1808
1808
|
submit_button: 招待状を送信
|
|
1809
1809
|
no_invitations_remaining: 招待状は残っていません
|
|
1810
1810
|
send_instructions: '%{email} に招待メールが送信されました。'
|
|
1811
|
-
updated: パスワードは正常に設定され、ログイン完了しました。
|
|
1812
|
-
updated_not_active: パスワードが正常に設定されました。
|
|
1813
1811
|
mailer:
|
|
1814
1812
|
confirmation_instructions:
|
|
1815
1813
|
action: アカウントを確認する
|
|
@@ -1868,8 +1866,8 @@ ja:
|
|
|
1868
1866
|
confirm_new_password: 新しいパスワードを確認
|
|
1869
1867
|
new_password: 新しいパスワード
|
|
1870
1868
|
old_password_help: アカウントの変更を確認するには、現在のパスワードを入力してください。
|
|
1871
|
-
password_help: "
|
|
1872
|
-
password_help_admin: "
|
|
1869
|
+
password_help: "%{minimum_characters} 文字以上必要で、少なくとも 5 種類の異なる文字を含める必要があります。一般的な文字列(例:123456)は使用できず、氏名、ニックネーム、メールアドレス、および組織のホスト名とは異なるものでなければなりません。"
|
|
1870
|
+
password_help_admin: "%{minimum_characters}文字以上必要で、少なくとも5種類以上の異なる文字を含む必要があり、一般的なパターン(例:123456)は使用できません。氏名、ニックネーム、メールアドレス、組織のホスト名と重複せず、かつ以前使用していたパスワードとは異なるものでなければなりません。"
|
|
1873
1871
|
title: パスワードの変更
|
|
1874
1872
|
new:
|
|
1875
1873
|
forgot_your_password: パスワードをお忘れですか?
|
|
@@ -2045,7 +2043,7 @@ ja:
|
|
|
2045
2043
|
description: 説明
|
|
2046
2044
|
name: 名前
|
|
2047
2045
|
service: サービス
|
|
2048
|
-
type:
|
|
2046
|
+
type: 種別
|
|
2049
2047
|
items:
|
|
2050
2048
|
_session_id:
|
|
2051
2049
|
description: ウェブページ間を移動したときにウェブサイト内のユーザーをウェブサイトが記憶できるようにします。
|
|
@@ -2111,6 +2109,7 @@ ja:
|
|
|
2111
2109
|
confirm_title_close_ephemeral_session: このページから離れる前に…
|
|
2112
2110
|
log_in: ログイン
|
|
2113
2111
|
main_menu: メインメニュー
|
|
2112
|
+
mobile_account_greeting: こんにちは、 %{user_name} さん
|
|
2114
2113
|
user_menu: ユーザーメニュー
|
|
2115
2114
|
impersonation_warning:
|
|
2116
2115
|
close_session: セッションを閉じる
|
data/config/locales/lb.yml
CHANGED
|
@@ -871,8 +871,6 @@ lb:
|
|
|
871
871
|
submit_button: Eng Invitatioun verschécken
|
|
872
872
|
no_invitations_remaining: Keng Invitatiounen iwwreg
|
|
873
873
|
send_instructions: Eng Invitatiouns-Email gouf un %{email} geschéckt.
|
|
874
|
-
updated: Däin Passwuert gouf dir attribuéiert. Du bass elo registréiert.
|
|
875
|
-
updated_not_active: Däin Passwuert gouf dir attribuéiert.
|
|
876
874
|
mailer:
|
|
877
875
|
confirmation_instructions:
|
|
878
876
|
action: Kont bestätegen
|
data/config/locales/lt.yml
CHANGED
|
@@ -1112,7 +1112,7 @@ lt:
|
|
|
1112
1112
|
disabled_message: Žinutė
|
|
1113
1113
|
edit_profile: Redaguoti profilį
|
|
1114
1114
|
message: Pranešimas
|
|
1115
|
-
resend_email_confirmation_instructions:
|
|
1115
|
+
resend_email_confirmation_instructions: Išsiųsti patvirtinimo instrukcijas dar kartą
|
|
1116
1116
|
reported_mailer:
|
|
1117
1117
|
report:
|
|
1118
1118
|
authors: Autoriai
|
|
@@ -1282,8 +1282,6 @@ lt:
|
|
|
1282
1282
|
submit_button: Siųsti pakvietimą
|
|
1283
1283
|
no_invitations_remaining: Kvietimų neliko
|
|
1284
1284
|
send_instructions: Kvietimo e. laiškas išsiųstas %{email}.
|
|
1285
|
-
updated: Jūsų slaptažodis buvo sėkmingai nustatytas. Dabar esate prisijungę.
|
|
1286
|
-
updated_not_active: Jūsų slaptažodis nustatytas.
|
|
1287
1285
|
mailer:
|
|
1288
1286
|
confirmation_instructions:
|
|
1289
1287
|
action: Patvirtinti mano paskyrą
|
data/config/locales/lv.yml
CHANGED
|
@@ -721,8 +721,6 @@ lv:
|
|
|
721
721
|
submit_button: Nosūtiet ielūgumu
|
|
722
722
|
no_invitations_remaining: Neviens ielūgums nav atlicis
|
|
723
723
|
send_instructions: Ielūguma e-pasts ir nosūtīts uz adresi %{email}.
|
|
724
|
-
updated: Jūsu parole tika veiksmīgi iestatīta. Tagad esat pierakstīts.
|
|
725
|
-
updated_not_active: Jūsu parole tika veiksmīgi iestatīta.
|
|
726
724
|
mailer:
|
|
727
725
|
confirmation_instructions:
|
|
728
726
|
action: Apstiprināt manu kontu
|
data/config/locales/nl.yml
CHANGED
|
@@ -864,8 +864,6 @@ nl:
|
|
|
864
864
|
submit_button: Een uitnodiging sturen
|
|
865
865
|
no_invitations_remaining: Er zijn nog geen uitnodigingen
|
|
866
866
|
send_instructions: Er is een uitnodigingsmail verzonden naar %{email}.
|
|
867
|
-
updated: Uw wachtwoord is succesvol ingesteld. U bent nu ingelogd.
|
|
868
|
-
updated_not_active: Uw wachtwoord is succesvol ingesteld.
|
|
869
867
|
mailer:
|
|
870
868
|
confirmation_instructions:
|
|
871
869
|
action: Bevestig mijn account
|
data/config/locales/no.yml
CHANGED
|
@@ -895,8 +895,6 @@
|
|
|
895
895
|
submit_button: Send en invitasjon
|
|
896
896
|
no_invitations_remaining: Ingen invitasjoner igjen
|
|
897
897
|
send_instructions: En invitasjons epost har blitt sendt til %{email}.
|
|
898
|
-
updated: Passordet ditt ble angitt. Du er nå pålogget.
|
|
899
|
-
updated_not_active: Passordet ditt ble angitt.
|
|
900
898
|
mailer:
|
|
901
899
|
confirmation_instructions:
|
|
902
900
|
action: Bekreft kontoen min
|
data/config/locales/pl.yml
CHANGED
|
@@ -1316,8 +1316,6 @@ pl:
|
|
|
1316
1316
|
submit_button: Wyślij zaproszenie
|
|
1317
1317
|
no_invitations_remaining: Brak innych zaproszeń
|
|
1318
1318
|
send_instructions: Wiadomość e-mail z zaproszeniem została wysłana na adres %{email}.
|
|
1319
|
-
updated: Twoje hasło zostało pomyślnie ustawione. Jesteś teraz zalogowany.
|
|
1320
|
-
updated_not_active: Twoje hasło zostało pomyślnie ustawione.
|
|
1321
1319
|
mailer:
|
|
1322
1320
|
confirmation_instructions:
|
|
1323
1321
|
action: Potwierdź moje konto
|
|
@@ -1374,8 +1372,6 @@ pl:
|
|
|
1374
1372
|
confirm_new_password: Potwierdź nowe hasło
|
|
1375
1373
|
new_password: Nowe hasło
|
|
1376
1374
|
old_password_help: Aby potwierdzić zmiany na koncie, podaj swoje aktualne hasło.
|
|
1377
|
-
password_help: "Minimalna liczba znaków: %{minimum_characters}; nie może być zbyt powszechne (np. 123456) i musi różnić się od Twojego pseudonimu i adresu e-mail."
|
|
1378
|
-
password_help_admin: "Minimalna liczba znaków: %{minimum_characters}; nie może być zbyt powszechne (np. 123456) i musi różnić się od Twojego pseudonimu i adresu e-mail, a także Twoich poprzednich haseł."
|
|
1379
1375
|
title: Zmiana hasła
|
|
1380
1376
|
new:
|
|
1381
1377
|
forgot_your_password: Zapomniałeś hasła?
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -1553,7 +1553,7 @@ pt-BR:
|
|
|
1553
1553
|
disabled_message: Mensagem
|
|
1554
1554
|
edit_profile: Editar perfil
|
|
1555
1555
|
message: Mensagem
|
|
1556
|
-
resend_email_confirmation_instructions:
|
|
1556
|
+
resend_email_confirmation_instructions: Reenviar instruções de confirmação
|
|
1557
1557
|
qr:
|
|
1558
1558
|
show:
|
|
1559
1559
|
scan: Digitalizar código QR
|
|
@@ -1826,8 +1826,6 @@ pt-BR:
|
|
|
1826
1826
|
submit_button: Envie um convite
|
|
1827
1827
|
no_invitations_remaining: Nenhum convite restante
|
|
1828
1828
|
send_instructions: Um email de convite foi enviado para %{email}.
|
|
1829
|
-
updated: Sua senha foi configurada com sucesso. Agora você está conectado.
|
|
1830
|
-
updated_not_active: Sua senha foi configurada com sucesso.
|
|
1831
1829
|
mailer:
|
|
1832
1830
|
confirmation_instructions:
|
|
1833
1831
|
action: Confirme minha conta
|
|
@@ -1887,8 +1885,8 @@ pt-BR:
|
|
|
1887
1885
|
confirm_new_password: Confirme a nova senha
|
|
1888
1886
|
new_password: Nova senha
|
|
1889
1887
|
old_password_help: Para confirmar as alterações à sua conta, por favor, forneça a sua senha atual.
|
|
1890
|
-
password_help: "
|
|
1891
|
-
password_help_admin: "
|
|
1888
|
+
password_help: "%{minimum_characters} caracteres mínimod, deve conter pelo menos 5 caracteres diferentes, não deve ser muito comum (por exemplo, 123456) e deve ser diferente do seu nome, apelido, e-mail e \nhost da organização."
|
|
1889
|
+
password_help_admin: "%{minimum_characters} caracteres mínimos, deve conter pelo menos 5 caracteres diferentes, não deve ser muito comum (por exemplo, 123456) deve ser diferente do seu nome, apelido, e-mail, host da organização e deve ser diferente de suas senhas antigas."
|
|
1892
1890
|
title: Senha alterada
|
|
1893
1891
|
new:
|
|
1894
1892
|
forgot_your_password: Esqueceu sua senha?
|
|
@@ -2133,6 +2131,7 @@ pt-BR:
|
|
|
2133
2131
|
confirm_title_close_ephemeral_session: Antes de sair desta página…
|
|
2134
2132
|
log_in: Iniciar sessão
|
|
2135
2133
|
main_menu: Menu principal
|
|
2134
|
+
mobile_account_greeting: Olá, %{user_name}
|
|
2136
2135
|
user_menu: Menu de usuários
|
|
2137
2136
|
impersonation_warning:
|
|
2138
2137
|
close_session: Fechar sessão
|
data/config/locales/pt.yml
CHANGED
|
@@ -875,8 +875,6 @@ pt:
|
|
|
875
875
|
submit_button: Enviar um convite
|
|
876
876
|
no_invitations_remaining: Nenhum convite restante
|
|
877
877
|
send_instructions: Um e-mail de convite foi enviado para %{email}.
|
|
878
|
-
updated: A sua palavra-passe foi configurada corretamente. Agora tem sessão iniciada.
|
|
879
|
-
updated_not_active: A sua palavra-passe foi configurada corretamente.
|
|
880
878
|
mailer:
|
|
881
879
|
confirmation_instructions:
|
|
882
880
|
action: Confirmar a minha conta
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -112,7 +112,7 @@ ro:
|
|
|
112
112
|
date:
|
|
113
113
|
buttons:
|
|
114
114
|
close: Închideți
|
|
115
|
-
select:
|
|
115
|
+
select: Selectați
|
|
116
116
|
formats:
|
|
117
117
|
decidim_short: "%d/%m/%Y"
|
|
118
118
|
decidim_short_dashed: "%d-%m-%Y"
|
|
@@ -1669,8 +1669,6 @@ ro:
|
|
|
1669
1669
|
submit_button: Trimiteți o invitație
|
|
1670
1670
|
no_invitations_remaining: Nicio invitație rămasă
|
|
1671
1671
|
send_instructions: Un e-mail de invitație a fost trimis la %{email}.
|
|
1672
|
-
updated: Parola dvs. a fost setată cu succes. Acum ești conectat.
|
|
1673
|
-
updated_not_active: Parola dvs. a fost setată cu succes.
|
|
1674
1672
|
mailer:
|
|
1675
1673
|
confirmation_instructions:
|
|
1676
1674
|
action: Confirmaţi contul
|
|
@@ -1719,8 +1717,6 @@ ro:
|
|
|
1719
1717
|
confirm_new_password: Confirmați parola nouă
|
|
1720
1718
|
new_password: Parola nouă
|
|
1721
1719
|
old_password_help: Pentru a confirma modificările aduse contului dumneavoastră, vă rugăm să introduceți parola curentă.
|
|
1722
|
-
password_help: "%{minimum_characters} nr. minim de caractere, nu trebuie să fie prea des întâlnite (de exemplu, 123456) și trebuie să fie diferite de numele dvs. și de adresa dvs. e-mail."
|
|
1723
|
-
password_help_admin: "Minim %{minimum_characters} caractere, nu trebuie să fie prea comun (ex. 123456), trebuie să fie diferit de porecla și adresa de e-mail și trebuie să fie diferită de parola veche."
|
|
1724
1720
|
title: Schimbare parolă
|
|
1725
1721
|
new:
|
|
1726
1722
|
forgot_your_password: Ați uitat parola?
|
data/config/locales/ru.yml
CHANGED
|
@@ -518,8 +518,6 @@ ru:
|
|
|
518
518
|
submit_button: Отправить приглашение
|
|
519
519
|
no_invitations_remaining: Приглашений не осталось
|
|
520
520
|
send_instructions: Приглашение было отправлено на %{email}.
|
|
521
|
-
updated: Ваш пароль был успешно установлен. Вы вошли в систему.
|
|
522
|
-
updated_not_active: Ваш пароль был успешно установлен.
|
|
523
521
|
mailer:
|
|
524
522
|
confirmation_instructions:
|
|
525
523
|
action: Подтвердить мой аккаунт
|
data/config/locales/sk.yml
CHANGED
|
@@ -719,8 +719,6 @@ sk:
|
|
|
719
719
|
submit_button: Odoslať pozvánku
|
|
720
720
|
no_invitations_remaining: Žiadne zostávajúce pozvánky
|
|
721
721
|
send_instructions: Pozvánka bola odoslaná na%{email}.
|
|
722
|
-
updated: Vaše heslo bolo úspešne nastavené. Teraz ste prihlásení.
|
|
723
|
-
updated_not_active: Vaše heslo bolo úspešne nastavené.
|
|
724
722
|
mailer:
|
|
725
723
|
confirmation_instructions:
|
|
726
724
|
action: Potvrďte svoj účet
|
|
@@ -762,8 +760,6 @@ sk:
|
|
|
762
760
|
change_my_password: Zmeňte heslo
|
|
763
761
|
confirm_new_password: Potvrďte nové heslo
|
|
764
762
|
new_password: Nové heslo
|
|
765
|
-
password_help: "%{minimum_characters} je minimum znakov, nesmie byť príliš bežné (napr. 123456) a musí byť iné ako vaše prezývka a váš e-mail."
|
|
766
|
-
password_help_admin: "%{minimum_characters} je minimum znakov, nesmie byť príliš bežné (napr. 123456) a musí byť iné ako vaše prezývka a váš e-mail."
|
|
767
763
|
new:
|
|
768
764
|
forgot_your_password: Zabudli ste heslo?
|
|
769
765
|
send_me_reset_password_instructions: Pošlite mi pokyny na resetovanie hesla
|
data/config/locales/sv.yml
CHANGED
|
@@ -473,7 +473,7 @@ sv:
|
|
|
473
473
|
allowed_postal_codes: Tillåtna postnummer (separerade med kommatecken)
|
|
474
474
|
document_number: Dokumentnummer
|
|
475
475
|
postal_code: Postnummer
|
|
476
|
-
name:
|
|
476
|
+
name: Exempel-verifiering för tillfälliga användare
|
|
477
477
|
errors:
|
|
478
478
|
duplicate_authorization: En deltagare är redan auktoriserad med samma data. En administratör kommer att kontakta dig för att verifiera dina uppgifter.
|
|
479
479
|
expired_at: Förföll vid %{timestamp}
|
|
@@ -1555,7 +1555,7 @@ sv:
|
|
|
1555
1555
|
disabled_message: Meddelande
|
|
1556
1556
|
edit_profile: Redigera profil
|
|
1557
1557
|
message: Meddelande
|
|
1558
|
-
resend_email_confirmation_instructions: Skicka
|
|
1558
|
+
resend_email_confirmation_instructions: Skicka e-postmeddelande med bekräftelseinstruktioner igen
|
|
1559
1559
|
qr:
|
|
1560
1560
|
show:
|
|
1561
1561
|
scan: Scanna QR-koden
|
|
@@ -1819,6 +1819,7 @@ sv:
|
|
|
1819
1819
|
nickname_help: Ditt användarnamn i %{organization}. Kan bara innehålla små bokstäver a-z, siffror, '-' och '_'.
|
|
1820
1820
|
submit_button: Spara
|
|
1821
1821
|
subtitle: Om du godkänner inbjudan väljer du ditt användarnamn och lösenord.
|
|
1822
|
+
subtitle_no_password: Om du accepterar inbjudan var vänlig ange ditt alias.
|
|
1822
1823
|
invitation_removed: Din inbjudan har tagits bort.
|
|
1823
1824
|
invitation_token_invalid: Ogiltig token för inbjudan!
|
|
1824
1825
|
new:
|
|
@@ -1826,8 +1827,8 @@ sv:
|
|
|
1826
1827
|
submit_button: Skicka en inbjudan
|
|
1827
1828
|
no_invitations_remaining: Inga inbjudningar kvar
|
|
1828
1829
|
send_instructions: Ett e-brev med inbjudan har skickats till %{email}.
|
|
1829
|
-
updated:
|
|
1830
|
-
updated_not_active:
|
|
1830
|
+
updated: Inbjudan godtogs. Du är nu inloggad.
|
|
1831
|
+
updated_not_active: Inbjudan godtogs.
|
|
1831
1832
|
mailer:
|
|
1832
1833
|
confirmation_instructions:
|
|
1833
1834
|
action: Bekräfta mitt konto
|
|
@@ -1887,8 +1888,8 @@ sv:
|
|
|
1887
1888
|
confirm_new_password: Bekräfta nytt lösenord
|
|
1888
1889
|
new_password: Nytt lösenord
|
|
1889
1890
|
old_password_help: För att bekräfta ändringarna av ditt konto, vänligen ange ditt nuvarande lösenord.
|
|
1890
|
-
password_help: "Minst %{minimum_characters} tecken, får inte vara för vanligt (
|
|
1891
|
-
password_help_admin: "Minst %{minimum_characters} tecken, får inte vara för vanligt (
|
|
1891
|
+
password_help: "Minst %{minimum_characters} tecken. Måste innehålla minst 5 olika tecken, får inte vara för vanligt (t.ex. 123456) och måste skilja sig från ditt namn, användarnamn, e-post och webbplatsens namn."
|
|
1892
|
+
password_help_admin: "Minst %{minimum_characters} tecken. Måste innehålla minst 5 olika tecken, får inte vara för vanligt (t.ex. 123456) och måste skilja sig från ditt namn, användarnamn, e-post, webbplatsens namn och dina tidigare lösenord."
|
|
1892
1893
|
title: Ändra lösenord
|
|
1893
1894
|
new:
|
|
1894
1895
|
forgot_your_password: Glömt ditt lösenord?
|
|
@@ -2133,7 +2134,7 @@ sv:
|
|
|
2133
2134
|
confirm_title_close_ephemeral_session: Innan du lämnar sidan…
|
|
2134
2135
|
log_in: Logga in
|
|
2135
2136
|
main_menu: Huvudmeny
|
|
2136
|
-
mobile_account_greeting: Hej
|
|
2137
|
+
mobile_account_greeting: Hej %{user_name}
|
|
2137
2138
|
user_menu: Användarmeny
|
|
2138
2139
|
impersonation_warning:
|
|
2139
2140
|
close_session: Stäng session
|
data/config/locales/tr-TR.yml
CHANGED
|
@@ -16,6 +16,8 @@ tr:
|
|
|
16
16
|
phone: Telefon
|
|
17
17
|
report:
|
|
18
18
|
details: Ek Yorumlar
|
|
19
|
+
taxonomy:
|
|
20
|
+
name: Sınıf Adı
|
|
19
21
|
user:
|
|
20
22
|
about: Hakkında
|
|
21
23
|
email: E-posta adresiniz
|
|
@@ -131,6 +133,8 @@ tr:
|
|
|
131
133
|
create: "%{user_name} , %{resource_name} statik sayfayı oluşturdu"
|
|
132
134
|
delete: "%{user_name}, %{resource_name} statik sayfayı sildi"
|
|
133
135
|
update: "%{user_name}, %{resource_name} statik sayfayı güncelledi"
|
|
136
|
+
taxonomy:
|
|
137
|
+
delete_with_parent: "%{user_name}, %{parent_taxonomy} sınıflaması içindeki %{resource_name} sınıfını sildi"
|
|
134
138
|
user:
|
|
135
139
|
block: "%{user_name}, %{resource_name} kullanıcısını engelledi"
|
|
136
140
|
invite: "%{user_name} katılımcıyı %{resource_name} rolüyle davet etti: %{role}"
|
|
@@ -227,6 +231,7 @@ tr:
|
|
|
227
231
|
postal_code: Posta kodu
|
|
228
232
|
name: Örnek yetkilendirme
|
|
229
233
|
dummy_authorization_workflow:
|
|
234
|
+
explanation: Sahte yetkilendirme iş akışı
|
|
230
235
|
name: Sahte yetkilendirme iş akışı
|
|
231
236
|
errors:
|
|
232
237
|
duplicate_authorization: Bir katılımcı zaten aynı verilerle yetkilendirildi. Bir yönetici, bilgilerinizi doğrulamak için sizinle iletişime geçecektir.
|
|
@@ -595,6 +600,8 @@ tr:
|
|
|
595
600
|
not_found: 'Veritabanında kapsam bulunamadı (ID: %{id})'
|
|
596
601
|
scope_type_presenter:
|
|
597
602
|
not_found: 'Veritabanında kapsam tipi bulunamadı (ID: %{id})'
|
|
603
|
+
taxonomy_presenter:
|
|
604
|
+
not_found: 'Sınıflandırma veritabanında bulunamadı (ID: %{id})'
|
|
598
605
|
managed_users:
|
|
599
606
|
expired_session: Mevcut kimliğe bürünme oturumunun süresi doldu.
|
|
600
607
|
map:
|
|
@@ -690,6 +697,13 @@ tr:
|
|
|
690
697
|
update:
|
|
691
698
|
error: Bildirim ayarlarınız güncellenirken bir hata oluştu.
|
|
692
699
|
success: Bildirim ayarlarınız başarıyla güncellendi.
|
|
700
|
+
onboarding_action_message:
|
|
701
|
+
click_link: Tıklayınız
|
|
702
|
+
cta_html: <a href="%{path}">%{link_text}</a> %{resource_name} içindeki %{action} işlemini gerçekleştirmek için <strong>%{resource_title}</strong>
|
|
703
|
+
expired_authorization_active_title: Yetkinizin süresi doldu.
|
|
704
|
+
incomplete_authorization_active_title: Gerekli tüm bilgiler girilmediğinden doğrulama işleminiz tamamlanmadı.
|
|
705
|
+
pending_authorization_active_message: Bu işlemi gerçekleştirmek için lütfen formu doldurun.
|
|
706
|
+
pending_authorization_active_title: Kimliğinizi doğrulamamız gerekiyor.
|
|
693
707
|
open_data:
|
|
694
708
|
not_available_yet: Açık Veri dosyaları henüz mevcut değil, lütfen birkaç dakika içinde tekrar deneyin.
|
|
695
709
|
pad_iframe:
|
|
@@ -876,8 +890,6 @@ tr:
|
|
|
876
890
|
submit_button: Davet gönder
|
|
877
891
|
no_invitations_remaining: Kalan davet yok
|
|
878
892
|
send_instructions: Davet e-postası %{email}gönderildi.
|
|
879
|
-
updated: Şifreniz başarıyla ayarlandı. Şimdi oturum açtınız.
|
|
880
|
-
updated_not_active: Şifreniz başarıyla ayarlandı.
|
|
881
893
|
mailer:
|
|
882
894
|
confirmation_instructions:
|
|
883
895
|
action: Hesabımı onayla
|
|
@@ -938,13 +950,13 @@ tr:
|
|
|
938
950
|
sessions:
|
|
939
951
|
already_signed_out: Başarıyla Çıkış Yapıldı
|
|
940
952
|
new:
|
|
941
|
-
log_in:
|
|
953
|
+
log_in: Giriş Yapın
|
|
942
954
|
signed_out:
|
|
943
955
|
shared:
|
|
944
956
|
links:
|
|
945
957
|
back: Geri
|
|
946
958
|
forgot_your_password: Parolanızı mı unuttunuz?
|
|
947
|
-
log_in:
|
|
959
|
+
log_in: Giriş Yapın
|
|
948
960
|
log_in_with_provider: '%{provider} ile giriş yapın'
|
|
949
961
|
minimum_password_length:
|
|
950
962
|
one: "(En az%{count} karakter)"
|
|
@@ -991,7 +1003,7 @@ tr:
|
|
|
991
1003
|
footer:
|
|
992
1004
|
cc_by_license: Kar Amaçsız Lisanslama (Creative Commons License)
|
|
993
1005
|
decidim_logo: Decidim Logo
|
|
994
|
-
log_in:
|
|
1006
|
+
log_in: Giriş Yapın
|
|
995
1007
|
made_with_open_source: Web sitesi <a target="_blank" href="https://github.com/decidim/decidim">ücretsiz yazılımla yapılmıştır</a>.
|
|
996
1008
|
terms_of_service: Hizmet Kullanım Koşulları
|
|
997
1009
|
header:
|
data/config/locales/zh-CN.yml
CHANGED
data/config/locales/zh-TW.yml
CHANGED
|
@@ -1167,8 +1167,6 @@ zh-TW:
|
|
|
1167
1167
|
submit_button: 發送一個邀請
|
|
1168
1168
|
no_invitations_remaining: 沒有待處理的邀請
|
|
1169
1169
|
send_instructions: 已向 %{email} 發送了一封邀請郵件。
|
|
1170
|
-
updated: 您的密碼已成功設定。您現在已登入。
|
|
1171
|
-
updated_not_active: 您的密碼已成功設定。
|
|
1172
1170
|
mailer:
|
|
1173
1171
|
confirmation_instructions:
|
|
1174
1172
|
action: 確認我的帳戶
|
|
@@ -1306,7 +1304,7 @@ zh-TW:
|
|
|
1306
1304
|
description: 說明
|
|
1307
1305
|
name: 名稱
|
|
1308
1306
|
service: 服務
|
|
1309
|
-
type:
|
|
1307
|
+
type: 種類
|
|
1310
1308
|
items:
|
|
1311
1309
|
_session_id:
|
|
1312
1310
|
description: 允許網站在使用者在網頁之間移動時記住使用者。
|
|
@@ -34,8 +34,8 @@ module Decidim
|
|
|
34
34
|
# Group 6: Variation key for representations
|
|
35
35
|
/(?<variation_part>[\w.=-]+)
|
|
36
36
|
)?
|
|
37
|
-
# Group 7: Filename
|
|
38
|
-
/([
|
|
37
|
+
# Group 7: Filename (supports apostrophes inside names but not as HTML quote delimiters)
|
|
38
|
+
/((?:[^\s/"<>']|'(?=[^\s/"<>']))+)
|
|
39
39
|
}x
|
|
40
40
|
|
|
41
41
|
def rewrite
|
|
@@ -55,7 +55,7 @@ module Decidim
|
|
|
55
55
|
blob =
|
|
56
56
|
if type_part == "disk"
|
|
57
57
|
# Disk service URL
|
|
58
|
-
decoded = ActiveStorage.verifier.verified(key_part, purpose: :blob_key)
|
|
58
|
+
decoded = ActiveStorage.verifier.verified(key_part, purpose: :blob_key)&.with_indifferent_access
|
|
59
59
|
ActiveStorage::Blob.find_by(key: decoded[:key]) if decoded
|
|
60
60
|
else
|
|
61
61
|
# Representation or blob
|