decidim-core 0.32.0.rc2 → 0.32.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/cells/decidim/amendable/amend_button_card/show.erb +2 -2
- data/app/cells/decidim/author_cell.rb +0 -4
- data/app/cells/decidim/card_metadata_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/cta_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_content_banner_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/highlighted_participatory_spaces_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/participatory_space_hero_settings_form/show.erb +1 -1
- data/app/cells/decidim/content_blocks/static_page/section_settings_form/show.erb +3 -1
- data/app/cells/decidim/content_blocks/static_page/summary_settings_form/show.erb +3 -1
- data/app/cells/decidim/content_blocks/static_page/two_pane_section_settings_form/show.erb +4 -2
- data/app/cells/decidim/resource_types_filter/show.erb +2 -2
- data/app/commands/decidim/destroy_account.rb +12 -1
- data/app/commands/decidim/multiple_attachments_methods.rb +28 -27
- data/app/controllers/concerns/decidim/devise_controllers.rb +9 -0
- data/app/events/decidim/amendable/amendment_base_event.rb +7 -1
- data/app/jobs/decidim/process_inactive_participant_job.rb +0 -7
- data/app/mailers/decidim/delete_user_mailer.rb +14 -0
- data/app/mailers/decidim/participants_account_mailer.rb +0 -16
- data/app/models/decidim/moderation.rb +1 -1
- data/app/models/decidim/participatory_space/member.rb +1 -1
- data/app/models/decidim/user_base_entity.rb +17 -2
- data/app/models/decidim/user_moderation.rb +1 -1
- data/app/packs/src/decidim/controllers/breadcrumb_truncate/breadcrumb_truncate.test.js +230 -0
- data/app/packs/src/decidim/controllers/breadcrumb_truncate/controller.js +172 -0
- data/app/packs/src/decidim/controllers/form_validator/form_validator.js +6 -6
- data/app/packs/src/decidim/controllers/form_validator/form_validator.test.js +23 -1
- data/app/packs/src/decidim/controllers/main_menu/controller.js +33 -0
- data/app/packs/src/decidim/controllers/main_menu/main_menu.test.js +77 -0
- data/app/packs/src/decidim/controllers/mention/controller.js +296 -140
- data/app/packs/src/decidim/controllers/mention/input_mentions.test.js +120 -457
- data/app/packs/src/decidim/controllers/multiple_mentions/controller.js +68 -32
- data/app/packs/src/decidim/controllers/multiple_mentions/input_multiple_mentions.test.js +30 -23
- data/app/packs/src/decidim/direct_uploads/upload_field.js +4 -4
- data/app/packs/src/decidim/direct_uploads/upload_modal.js +11 -7
- data/app/packs/src/decidim/editor/common/suggestion.js +3 -1
- data/app/packs/src/decidim/editor/extensions/indent/index.js +9 -0
- data/app/packs/src/decidim/geocoding/reverse_geocoding.js +15 -5
- data/app/packs/src/decidim/geocoding/reverse_geocoding.test.js +197 -0
- data/app/packs/src/decidim/index.js +4 -3
- data/app/packs/src/decidim/sw/sw.js +1 -1
- data/app/packs/src/decidim/utilities/text.js +6 -6
- data/app/packs/stylesheets/decidim/_conversations.scss +14 -0
- data/app/packs/stylesheets/decidim/_dropdown.scss +1 -1
- data/app/packs/stylesheets/decidim/_editor_suggestions.scss +49 -0
- data/app/packs/stylesheets/decidim/_floating_help.scss +1 -1
- data/app/packs/stylesheets/decidim/_header.scss +41 -8
- data/app/packs/stylesheets/decidim/_tom_select.scss +23 -0
- data/app/packs/stylesheets/decidim/application.scss +2 -0
- data/app/packs/stylesheets/decidim/editor.scss +2 -33
- data/app/packs/stylesheets/decidim/geocoding_addons.scss +10 -2
- data/app/presenters/decidim/menu_item_presenter.rb +9 -3
- data/app/presenters/decidim/stats_presenter.rb +1 -1
- data/app/uploaders/decidim/image_uploader.rb +1 -1
- data/app/views/decidim/delete_user_mailer/delete.html.erb +6 -0
- data/app/views/decidim/gamification/badges/index.html.erb +1 -1
- data/app/views/decidim/homepage/show.html.erb +1 -1
- data/app/views/decidim/last_activities/index.html.erb +1 -1
- data/app/views/decidim/messaging/conversations/_error_modal.html.erb +11 -19
- data/app/views/decidim/messaging/conversations/error.js.erb +12 -7
- data/app/views/decidim/newsletters/unsubscribe.html.erb +1 -1
- data/app/views/decidim/offline/show.html.erb +1 -1
- data/app/views/decidim/pages/index.html.erb +1 -1
- data/app/views/decidim/profiles/show.html.erb +1 -1
- data/app/views/decidim/shared/_resource_actions.html.erb +4 -4
- data/app/views/decidim/user_activities/index.html.erb +1 -1
- data/app/views/layouts/decidim/_wrapper.html.erb +2 -2
- data/app/views/layouts/decidim/header/_menu.html.erb +1 -1
- data/app/views/layouts/decidim/header/_menu_breadcrumb_desktop.html.erb +31 -4
- data/app/views/layouts/decidim/header/_menu_breadcrumb_mobile.html.erb +18 -13
- data/app/views/layouts/decidim/shared/_layout_center.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_item.html.erb +1 -1
- data/app/views/layouts/decidim/shared/_layout_two_col.html.erb +1 -1
- data/config/initializers/decidim_locale_aware_named_route_helper.rb +16 -0
- data/config/locales/ar.yml +0 -25
- data/config/locales/bg.yml +0 -25
- data/config/locales/ca-IT.yml +46 -35
- data/config/locales/ca.yml +46 -35
- data/config/locales/cs.yml +12 -34
- data/config/locales/de.yml +5 -46
- data/config/locales/el.yml +0 -22
- data/config/locales/en.yml +45 -34
- data/config/locales/es-MX.yml +45 -34
- data/config/locales/es-PY.yml +45 -34
- data/config/locales/es.yml +45 -34
- data/config/locales/eu.yml +85 -74
- data/config/locales/fi-plain.yml +46 -34
- data/config/locales/fi.yml +46 -34
- data/config/locales/fr-CA.yml +24 -30
- data/config/locales/fr.yml +24 -30
- data/config/locales/gl.yml +0 -22
- data/config/locales/hu.yml +0 -22
- data/config/locales/id-ID.yml +0 -21
- data/config/locales/is-IS.yml +0 -6
- data/config/locales/it.yml +1 -20
- data/config/locales/ja.yml +55 -44
- data/config/locales/lb.yml +0 -23
- data/config/locales/lt.yml +0 -24
- data/config/locales/lv.yml +0 -21
- data/config/locales/nl.yml +0 -23
- data/config/locales/no.yml +0 -23
- data/config/locales/pl.yml +2 -27
- data/config/locales/pt-BR.yml +2 -40
- data/config/locales/pt.yml +0 -23
- data/config/locales/ro-RO.yml +1 -32
- data/config/locales/ru.yml +0 -8
- data/config/locales/sk.yml +1 -43
- data/config/locales/sv.yml +6 -40
- data/config/locales/tr-TR.yml +0 -24
- data/config/locales/uk.yml +0 -6
- data/config/locales/zh-CN.yml +0 -21
- data/config/locales/zh-TW.yml +0 -24
- data/decidim-core.gemspec +1 -1
- data/lib/decidim/api/functions/user_entity_list.rb +2 -0
- data/lib/decidim/attachment_attributes.rb +58 -9
- data/lib/decidim/command.rb +1 -1
- data/lib/decidim/content_renderers/base_renderer.rb +112 -0
- data/lib/decidim/content_renderers/blob_renderer.rb +4 -7
- data/lib/decidim/content_renderers/mention_resource_renderer.rb +10 -6
- data/lib/decidim/content_renderers/resource_renderer.rb +16 -7
- data/lib/decidim/content_renderers/user_renderer.rb +11 -9
- data/lib/decidim/core/content_blocks/registry_manager.rb +4 -4
- data/lib/decidim/core/engine.rb +8 -0
- data/lib/decidim/core/test/factories.rb +3 -0
- data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +10 -10
- data/lib/decidim/core/test/shared_examples/amendable/amendment_event_examples.rb +2 -2
- data/lib/decidim/core/test/shared_examples/amendable/amendment_promoted_event_examples.rb +3 -3
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +6 -6
- data/lib/decidim/core/test/shared_examples/has_space_in_mcell_examples.rb +2 -1
- data/lib/decidim/core/test/shared_examples/resource_liked_event_examples.rb +3 -3
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/map/autocomplete.rb +4 -3
- data/lib/decidim/searchable.rb +5 -0
- data/lib/decidim/view_model.rb +1 -1
- data/lib/tasks/decidim_mailers_tasks.rake +31 -9
- metadata +13 -9
- data/app/commands/decidim/gallery_methods.rb +0 -107
- data/app/packs/src/decidim/vendor/tribute.js +0 -1890
- data/app/packs/stylesheets/decidim/_tribute.scss +0 -36
- data/app/views/decidim/participants_account_mailer/removal_notification.html.erb +0 -11
data/config/locales/ja.yml
CHANGED
|
@@ -408,8 +408,8 @@ ja:
|
|
|
408
408
|
success: 修正を撤回しました。
|
|
409
409
|
wizard_step_form:
|
|
410
410
|
steps:
|
|
411
|
-
'1':
|
|
412
|
-
'2':
|
|
411
|
+
'1': 修正内容を作成する
|
|
412
|
+
'2': 修正内容を公開
|
|
413
413
|
anonymous_user: 匿名です
|
|
414
414
|
application:
|
|
415
415
|
document:
|
|
@@ -539,7 +539,7 @@ ja:
|
|
|
539
539
|
global:
|
|
540
540
|
amendments_enabled: 修正を有効にする
|
|
541
541
|
comments_enabled: コメントを有効にする
|
|
542
|
-
comments_max_length:
|
|
542
|
+
comments_max_length: 各コメントの最大文字数
|
|
543
543
|
define_taxonomy_filters: この設定を使用する前に、参加型スペースのフィルターをいくつか定義してください。
|
|
544
544
|
dummy_global_attribute1: ダミーステータス1
|
|
545
545
|
dummy_global_attribute2: ダミーステータス2
|
|
@@ -857,13 +857,13 @@ ja:
|
|
|
857
857
|
affected_user:
|
|
858
858
|
email_intro: '%{amendable_title}の修正が承認されました。このページから確認できます:'
|
|
859
859
|
email_outro: あなたは %{amendable_title} の作成者であるため、この通知を受け取りました。
|
|
860
|
-
email_subject: '%{amendable_title}
|
|
861
|
-
notification_title: <a href="%{emendation_author_path}">%{
|
|
860
|
+
email_subject: '%{amendable_title} に対する %{emendation_author_name} からの修正内容を承認しました'
|
|
861
|
+
notification_title: <a href="%{emendation_author_path}">%{emendation_author_name}</a> によって作成された<a href="%{emendation_path}">修正案</a>が、<a href="%{amendable_path}">%{amendable_title}</a> に対して承認されました。
|
|
862
862
|
follower:
|
|
863
863
|
email_intro: '%{amendable_title}の修正が承認されました。このページから確認できます:'
|
|
864
|
-
email_outro: '%{amendable_title}
|
|
865
|
-
email_subject: '%{amendable_title}
|
|
866
|
-
notification_title: <a href="%{emendation_author_path}">%{
|
|
864
|
+
email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
|
|
865
|
+
email_subject: '%{amendable_title} に対する %{emendation_author_name} からの修正内容を承認しました'
|
|
866
|
+
notification_title: <a href="%{emendation_author_path}">%{emendation_author_name}</a> が作成した <a href="%{emendation_path}">修正内容</a> が <a href="%{amendable_path}">%{amendable_title}</a> に採用されました。
|
|
867
867
|
amendment_created:
|
|
868
868
|
affected_user:
|
|
869
869
|
email_intro: '%{amendable_title}の新しい修正が作成されました。このページから確認できます:'
|
|
@@ -872,36 +872,36 @@ ja:
|
|
|
872
872
|
notification_title: <a href="%{amendable_path}">%{amendable_title}</a> の新しい修正が作成されました。
|
|
873
873
|
follower:
|
|
874
874
|
email_intro: '%{amendable_title}の新しい修正が作成されました。このページから確認できます:'
|
|
875
|
-
email_outro: '%{amendable_title}
|
|
875
|
+
email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
|
|
876
876
|
email_subject: '%{amendable_title} の新しい修正'
|
|
877
877
|
notification_title: <a href="%{amendable_path}">%{amendable_title}</a> の新しい修正が作成されました。
|
|
878
878
|
amendment_promoted:
|
|
879
879
|
affected_user:
|
|
880
880
|
email_intro: '%{amendable_title} の修正が却下されました。新しい %{amendable_type}として公開されました。このページから見ることができます:'
|
|
881
881
|
email_outro: あなたは %{amendable_title} の作成者であるため、この通知を受け取りました。
|
|
882
|
-
email_subject: '%{
|
|
883
|
-
notification_title: <a href="%{amendable_path}">%{amendable_title}</a
|
|
882
|
+
email_subject: '%{emendation_author_name}による修正が新しい%{amendable_type}として公開されました'
|
|
883
|
+
notification_title: <a href="%{amendable_path}">%{amendable_title}</a>に対する<a href="%{emendation_path}">却下された修正案</a>が、<a href="%{emendation_author_path}">%{emendation_author_name}</a>によって新しい%{amendable_type}として公開されました。
|
|
884
884
|
follower:
|
|
885
885
|
email_intro: '%{amendable_title} の修正が却下されました。新しい %{amendable_type}として公開されました。このページから見ることができます:'
|
|
886
|
-
email_outro: '%{amendable_title}
|
|
887
|
-
email_subject: '%{
|
|
888
|
-
notification_title: <a href="%{amendable_path}">%{amendable_title}</a
|
|
886
|
+
email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
|
|
887
|
+
email_subject: '%{emendation_author_name} による修正が新しい %{amendable_type} として公開されました'
|
|
888
|
+
notification_title: <a href="%{amendable_path}">%{amendable_title}</a>に対する<a href="%{emendation_path}">却下された修正案</a>が、<a href="%{emendation_author_path}">%{emendation_author_name}</a>によって新しい%{amendable_type}として公開されました。
|
|
889
889
|
amendment_rejected:
|
|
890
890
|
affected_user:
|
|
891
891
|
email_intro: '%{amendable_title}の修正が拒否されました。このページから確認できます:'
|
|
892
892
|
email_outro: あなたは %{amendable_title} の作成者であるため、この通知を受け取りました。
|
|
893
|
-
email_subject: '%{amendable_title}
|
|
894
|
-
notification_title: <a href="%{
|
|
893
|
+
email_subject: '%{amendable_title}に対する修正案が %{emendation_author_name} によって却下されました'
|
|
894
|
+
notification_title: <a href="%{emendation_author_path}">%{emendation_author_name}</a> が作成した<a href="%{emendation_path}">修正案</a>が、<a href="%{amendable_path}">%{amendable_title}</a> に対して承認されました。
|
|
895
895
|
follower:
|
|
896
896
|
email_intro: '%{amendable_title}の修正が拒否されました。このページから確認できます:'
|
|
897
|
-
email_outro: '%{amendable_title}
|
|
898
|
-
email_subject: '%{amendable_title}
|
|
899
|
-
notification_title: <a href="%{
|
|
897
|
+
email_outro: '%{amendable_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
|
|
898
|
+
email_subject: '%{amendable_title}に対する修正案が %{emendation_author_name} によって却下されました'
|
|
899
|
+
notification_title: <a href="%{emendation_author_path}">%{emendation_author_name}</a> が作成した<a href="%{emendation_path}">修正案</a>が、<a href="%{amendable_path}">%{amendable_title}</a> に対して承認されました。
|
|
900
900
|
emendation_promoted:
|
|
901
901
|
follower:
|
|
902
902
|
email_intro: '%{amendable_title}に対する修正案が公開されました。このページから確認できます:'
|
|
903
903
|
email_outro: あなたは %{amendable_title}の作者であるため、この通知を受け取りました。
|
|
904
|
-
email_subject: '%{
|
|
904
|
+
email_subject: '%{emendation_author_name}による修正案が新しい%{amendable_type}として公開されました'
|
|
905
905
|
attachments:
|
|
906
906
|
attachment_created:
|
|
907
907
|
email_intro: '%{resource_title}に新しいドキュメントが追加されました。このページから見ることができます:'
|
|
@@ -911,13 +911,13 @@ ja:
|
|
|
911
911
|
components:
|
|
912
912
|
component_published:
|
|
913
913
|
email_intro: '%{resource_title} コンポーネントが %{participatory_space_title}でアクティブになりました。このページから見ることができます:'
|
|
914
|
-
email_outro: '%{participatory_space_title}
|
|
914
|
+
email_outro: '%{participatory_space_title}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
|
|
915
915
|
email_subject: '%{participatory_space_title} への更新'
|
|
916
916
|
notification_title: '%{resource_title} コンポーネントが <a href="%{resource_path}">%{participatory_space_title}</a> のためにアクティブになりました'
|
|
917
917
|
email_event:
|
|
918
918
|
email_greeting: こんにちは、 %{user_name} さん。
|
|
919
919
|
email_intro: '"%{resource_title}" の更新がありました。このページから見ることができます:'
|
|
920
|
-
email_outro: '「%{resource_title}
|
|
920
|
+
email_outro: '「%{resource_title}」をフォローしているため、この通知を受け取りました。上記のリンクからアンフォローすることができます。'
|
|
921
921
|
email_subject: '%{resource_title} への更新'
|
|
922
922
|
gamification:
|
|
923
923
|
badge_earned:
|
|
@@ -944,8 +944,8 @@ ja:
|
|
|
944
944
|
email_subject: '%{resource_type} は表示されなくなりました'
|
|
945
945
|
notification_title: |-
|
|
946
946
|
あなたの%{resource_type}は表示されなくなりました。<br>
|
|
947
|
-
これは、あなたが返信した提案、ミーティング、討論、またはコメントがモデレーションされたためです。
|
|
948
|
-
元の投稿が再び表示可能になった場合、あなたのコメントも自動的に復元されます。
|
|
947
|
+
これは、あなたが返信した提案、ミーティング、討論、またはコメントがモデレーションされたためです。
|
|
948
|
+
元の投稿が再び表示可能になった場合、あなたのコメントも自動的に復元されます。
|
|
949
949
|
<i>%{resource_content}</i>
|
|
950
950
|
resource_hidden:
|
|
951
951
|
email_intro: '%{report_reasons} として報告されたため、管理者が %{resource_type} を削除しました。'
|
|
@@ -955,24 +955,24 @@ ja:
|
|
|
955
955
|
%{resource_type} として報告されたため、管理者が %{report_reasons} を削除しました。</br>
|
|
956
956
|
<i>%{resource_content}</i>
|
|
957
957
|
resource_liked:
|
|
958
|
-
email_intro: 'あなたがフォローしている%{liker_name}
|
|
959
|
-
email_outro: '%{
|
|
960
|
-
email_subject: "%{
|
|
961
|
-
notification_title: <a href="%{resource_path}">%{resource_title}</a> %{resource_type}
|
|
958
|
+
email_intro: 'あなたがフォローしている%{liker_name} が「%{resource_title}」をいいねしました。興味深いかもしれないので、ぜひチェックしてご参加ください:'
|
|
959
|
+
email_outro: '%{liker_name} をフォローしているため、この通知が届きました。上記のリンクから通知の受信を停止できます。'
|
|
960
|
+
email_subject: "%{liker_name} が新しいいいねを行いました"
|
|
961
|
+
notification_title: <a href="%{resource_path}">%{resource_title}</a> %{resource_type} を <a href="%{liker_path}">%{liker_name} </a>さんがいいねしました。
|
|
962
962
|
resources:
|
|
963
963
|
soft_deleted:
|
|
964
964
|
notification_title: 管理者があなたの "%{resource_type}" " "%{resource_title}" を削除しました。
|
|
965
965
|
users:
|
|
966
966
|
profile_updated:
|
|
967
|
-
email_intro:
|
|
968
|
-
email_outro: '%{
|
|
969
|
-
email_subject: "%{
|
|
970
|
-
notification_title:
|
|
967
|
+
email_intro: あなたがフォローしている %{name} さんの <a href="%{resource_url}">プロフィールページ</a>が更新されました。
|
|
968
|
+
email_outro: '%{name}をフォローしているため、この通知を受け取りました。上記のリンクから通知の受信を停止することができます。'
|
|
969
|
+
email_subject: "%{name} はプロフィールを更新しました"
|
|
970
|
+
notification_title: あなたがフォローしている %{name} さんの <a href="%{resource_path}">プロフィールページ</a>が更新されました。
|
|
971
971
|
user_officialized:
|
|
972
|
-
email_intro: 参加者 %{name}
|
|
972
|
+
email_intro: 参加者 %{name} が公式化されました。
|
|
973
973
|
email_outro: あなたは組織の管理者であるため、この通知を受け取りました。
|
|
974
974
|
email_subject: "%{name} が公式化されました"
|
|
975
|
-
notification_title: 参加者 %{name}
|
|
975
|
+
notification_title: 参加者 %{name} が公式化されました。
|
|
976
976
|
export_mailer:
|
|
977
977
|
download_your_data_export:
|
|
978
978
|
click_button_html: 次のリンクをクリックしてデータをダウンロードしてください。<br/>ファイルは %{date} までダウンロードできます。
|
|
@@ -1146,6 +1146,12 @@ ja:
|
|
|
1146
1146
|
update_permissions_with_space: "%{user_name} が %{space_name} の %{resource_name} の権限を更新しました"
|
|
1147
1147
|
update_with_space: "%{user_name} さんが %{resource_name} で %{space_name} を更新しました"
|
|
1148
1148
|
value_types:
|
|
1149
|
+
access_mode_presenter:
|
|
1150
|
+
access_modes:
|
|
1151
|
+
open: 参加可能
|
|
1152
|
+
restricted: メンバー限定
|
|
1153
|
+
transparent: 閲覧可能
|
|
1154
|
+
not_found: アクセスモード %{id} が見つかりません
|
|
1149
1155
|
area_presenter:
|
|
1150
1156
|
not_found: 'エリアがデータベース上に見つかりませんでした (ID: %{id})'
|
|
1151
1157
|
area_type_presenter:
|
|
@@ -1193,7 +1199,6 @@ ja:
|
|
|
1193
1199
|
create:
|
|
1194
1200
|
error: 会話が開始されませんでした。後ほど改めてお試しください。
|
|
1195
1201
|
error_modal:
|
|
1196
|
-
close: ウィンドウを閉じる
|
|
1197
1202
|
correct_errors: エラーを修正して、再度お試しください
|
|
1198
1203
|
intro: 'あなたのメッセージには次のエラーがありました:'
|
|
1199
1204
|
ok: OK
|
|
@@ -1319,6 +1324,7 @@ ja:
|
|
|
1319
1324
|
own_activity: 誰かが私の提案にコメントしたり、私に言及したりした時など、自分自身の活動
|
|
1320
1325
|
push_notifications: プッシュ通知
|
|
1321
1326
|
push_notifications_reminder: プラットフォームから通知を受け取るには、まずブラウザの設定で通知を許可する必要があります。
|
|
1327
|
+
push_notifications_unsupported_browser: お使いのブラウザはサポートされていません。
|
|
1322
1328
|
receive_notifications_about: 受け取りたい通知
|
|
1323
1329
|
update_notifications_settings: 変更を保存
|
|
1324
1330
|
update:
|
|
@@ -1377,7 +1383,7 @@ ja:
|
|
|
1377
1383
|
is_root: このタクソノミーが親を持たない場合は True
|
|
1378
1384
|
name: このタクソノミーの名前
|
|
1379
1385
|
parent_id: このタクソノミーの親の固有ID(もしあれば)
|
|
1380
|
-
part_of:
|
|
1386
|
+
part_of: この分類が他の分類の一部であるかどうかを検出するために使用されます
|
|
1381
1387
|
taxonomizations_count: このタクソノミーを使用するリソースの数
|
|
1382
1388
|
updated_at: このタクソノミーの最終更新日時
|
|
1383
1389
|
weight: このタクソノミーが表示される順序
|
|
@@ -1493,7 +1499,7 @@ ja:
|
|
|
1493
1499
|
participants_account_mailer:
|
|
1494
1500
|
inactivity_notification:
|
|
1495
1501
|
body_html: |
|
|
1496
|
-
<p>記録によると、あなたは<strong>%{date_account_creation}</strong>に%{organization_name}のアカウントを作成しましたが、<strong>%{date_last_connection}</strong>以降は利用されていないようです。</p> <p>プライバシー保護のため、このアカウントは<strong>%{days}日後</strong>に自動削除される予定です。</p>
|
|
1502
|
+
<p>記録によると、あなたは<strong>%{date_account_creation}</strong>に%{organization_name}のアカウントを作成しましたが、<strong>%{date_last_connection}</strong>以降は利用されていないようです。</p> <p>プライバシー保護のため、このアカウントは<strong>%{days}日後</strong>に自動削除される予定です。</p>
|
|
1497
1503
|
<p>%{organization_name}のアカウントを保持したい場合は、それまでに%{login_url}にアクセスするだけでアカウントは維持されます。</p>
|
|
1498
1504
|
greetings_html: |
|
|
1499
1505
|
よろしくお願いいたします。<br>
|
|
@@ -1502,16 +1508,18 @@ ja:
|
|
|
1502
1508
|
log_in: ログイン
|
|
1503
1509
|
never_logged_in: ログインしたことがない
|
|
1504
1510
|
subject: 非アクティブなアカウントの警告
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
hello: こんにちは %{username} さん、
|
|
1511
|
-
subject: 非アクティブなアカウントが削除されました
|
|
1511
|
+
participatory_space:
|
|
1512
|
+
pages:
|
|
1513
|
+
user_profile:
|
|
1514
|
+
member_of:
|
|
1515
|
+
member_of: 所属グループ
|
|
1512
1516
|
participatory_space_members:
|
|
1513
1517
|
index:
|
|
1514
1518
|
members: メンバー
|
|
1519
|
+
participatory_spaces:
|
|
1520
|
+
show:
|
|
1521
|
+
restricted_space: これは制限されたスペースです。メンバーと管理者のみがアクセスできます。
|
|
1522
|
+
transparent_space: これは閲覧可能スペースです。誰でもコンテンツを閲覧できますが、メンバーと管理者のみ参加できます。
|
|
1515
1523
|
passwords:
|
|
1516
1524
|
update:
|
|
1517
1525
|
error: パスワードの更新中に問題が発生しました。
|
|
@@ -1801,6 +1809,7 @@ ja:
|
|
|
1801
1809
|
nickname_help: ニックネームは %{organization} です。英文字、数字、'-' および '_' のみ使用できます。
|
|
1802
1810
|
submit_button: 保存
|
|
1803
1811
|
subtitle: 招待を受け入れる場合は、アカウントIDとパスワードを設定してください。
|
|
1812
|
+
subtitle_no_password: 招待を受け入れる場合は、ニックネームを設定してください。
|
|
1804
1813
|
invitation_removed: 招待が削除されました。
|
|
1805
1814
|
invitation_token_invalid: 指定された招待トークンは無効です!
|
|
1806
1815
|
new:
|
|
@@ -1808,6 +1817,8 @@ ja:
|
|
|
1808
1817
|
submit_button: 招待状を送信
|
|
1809
1818
|
no_invitations_remaining: 招待状は残っていません
|
|
1810
1819
|
send_instructions: '%{email} に招待メールが送信されました。'
|
|
1820
|
+
updated: 招待が承認されました。サインインしています。
|
|
1821
|
+
updated_not_active: 招待が承認されました。
|
|
1811
1822
|
mailer:
|
|
1812
1823
|
confirmation_instructions:
|
|
1813
1824
|
action: アカウントを確認する
|
data/config/locales/lb.yml
CHANGED
|
@@ -198,9 +198,6 @@ lb:
|
|
|
198
198
|
update_draft:
|
|
199
199
|
error: Et gouf e Problem beim Aktualiséieren vum Ännerungsvirschlag.
|
|
200
200
|
success: Ännerungsvirschlag gouf aktualiséiert.
|
|
201
|
-
wizard_step_form:
|
|
202
|
-
steps:
|
|
203
|
-
'1': Erstell deng Ännerung
|
|
204
201
|
anonymous_user: Anonym
|
|
205
202
|
application:
|
|
206
203
|
document:
|
|
@@ -300,7 +297,6 @@ lb:
|
|
|
300
297
|
global:
|
|
301
298
|
amendments_enabled: Ännerungen aktivéiert
|
|
302
299
|
comments_enabled: Kommentarer aktiv
|
|
303
|
-
comments_max_length: Maximal Längt vun de Kommentären
|
|
304
300
|
dummy_global_attribute1: Dummy Attribut 1
|
|
305
301
|
dummy_global_attribute2: Dummy Attribut 2
|
|
306
302
|
dummy_global_translatable_text: Dummy Text ze iwwersetzen
|
|
@@ -403,13 +399,9 @@ lb:
|
|
|
403
399
|
affected_user:
|
|
404
400
|
email_intro: 'Eng Ännerung gouf %{amendable_title} akzeptéiert. Du kanns dat op dëser Säit gesinn:'
|
|
405
401
|
email_outro: Du hues dës Noriicht kritt well s'du en Auteur vum%{amendable_title} bass.
|
|
406
|
-
email_subject: Akzeptéiert Ännerung %{amendable_title} vum %{emendation_author_nickname}
|
|
407
|
-
notification_title: D' <a href="%{emendation_path}">Ännerung</a> erstallt vun <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf ugeholl.
|
|
408
402
|
follower:
|
|
409
403
|
email_intro: 'Eng Ännerung gouf %{amendable_title} akzeptéiert. Du kanns dat op dëser Säit gesinn:'
|
|
410
404
|
email_outro: Du hues dës Noriicht kritt, well s'du dem %{amendable_title} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
|
|
411
|
-
email_subject: Akzeptéiert Ännerung fir %{amendable_title} vum %{emendation_author_nickname}
|
|
412
|
-
notification_title: D' <a href="%{emendation_path}">Ännerung</a> erstallt vun <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf ugeholl.
|
|
413
405
|
amendment_created:
|
|
414
406
|
affected_user:
|
|
415
407
|
email_intro: 'Eng Ännerung fir %{amendable_title} gouf erstallt. Du kanns dat op dëser Säit gesinn:'
|
|
@@ -425,24 +417,16 @@ lb:
|
|
|
425
417
|
affected_user:
|
|
426
418
|
email_intro: 'Eng refuséiert Ännerung am %{amendable_title} gouf als eng nei ënner %{amendable_type} verëffentlecht. Du kanns dat op dëser Säit gesinn:'
|
|
427
419
|
email_outro: Du hues dës Noriicht kritt well s'du en Auteur vum %{amendable_title} bass.
|
|
428
|
-
email_subject: Eng Ännerung vun %{emendation_author_nickname} gouf als nei /n %{amendable_type} verëffentlecht
|
|
429
|
-
notification_title: D' <a href="%{emendation_path}">refuséiert Ännerung </a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf als nei verëffentlecht %{amendable_type} duerch <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
430
420
|
follower:
|
|
431
421
|
email_intro: 'Eng refuséiert Ännerung am %{amendable_title} gouf als eng nei ënner %{amendable_type} verëffentlecht. Du kanns dat op dëser Säit gesinn:'
|
|
432
422
|
email_outro: Du hues dës Noriicht kritt, well s'du dem %{amendable_title} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
|
|
433
|
-
email_subject: Eng Ännerung vun %{emendation_author_nickname} gouf als nei /n %{amendable_type} verëffentlecht
|
|
434
|
-
notification_title: D' <a href="%{emendation_path}">refuséiert Ännerung </a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf als nei verëffentlecht %{amendable_type} duerch <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
435
423
|
amendment_rejected:
|
|
436
424
|
affected_user:
|
|
437
425
|
email_intro: 'Eng Ännerung fir %{amendable_title} gouf refuséiert. Du kanns dat op dëser Säit gesinn:'
|
|
438
426
|
email_outro: Du hues dës Noriicht kritt well s'du en Auteur vum%{amendable_title} bass.
|
|
439
|
-
email_subject: Refuséiert Ännerung fir %{amendable_title} vum %{emendation_author_nickname}
|
|
440
|
-
notification_title: D' <a href="%{emendation_path}">Ännerung</a> erstallt vun <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf refuséiert.
|
|
441
427
|
follower:
|
|
442
428
|
email_intro: 'Eng Ännerung fir %{amendable_title} gouf refuséiert. Du kanns dat op dëser Säit gesinn:'
|
|
443
429
|
email_outro: Du hues dës Noriicht kritt, well s'du dem %{amendable_title} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
|
|
444
|
-
email_subject: Refuséiert Ännerung fir %{amendable_title} vum %{emendation_author_nickname}
|
|
445
|
-
notification_title: D' <a href="%{emendation_path}">Ännerung</a> erstallt vun <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> fir <a href="%{amendable_path}">%{amendable_title}</a> gouf refuséiert.
|
|
446
430
|
attachments:
|
|
447
431
|
attachment_created:
|
|
448
432
|
email_intro: 'En neit Dokument fir %{resource_title} gouf dru gehaange. Du kanns dat op dëser Säit gesinn:'
|
|
@@ -472,12 +456,6 @@ lb:
|
|
|
472
456
|
email_subject: Deng %{resource_type} gouf geläscht
|
|
473
457
|
notification_title: |-
|
|
474
458
|
En Admin huet däin %{resource_type} geläscht, well en als %{report_reasons}.</br><i>%{resource_content}</i> gemellt gouf
|
|
475
|
-
users:
|
|
476
|
-
profile_updated:
|
|
477
|
-
email_intro: D' <a href="%{resource_url}">Profil-Säit</a> vum </a>%{name} (%{nickname}), där s'du nogees, gouf aktualiséiert.
|
|
478
|
-
email_outro: Du hues dës Noriicht kritt, well s'du dem %{nickname} nogees. Falls du esou Noriichten net méi wëlls kréien, géi op den Link uewen.
|
|
479
|
-
email_subject: "%{nickname} huet säin Profil aktualiséiert"
|
|
480
|
-
notification_title: D' <a href="%{resource_path}">Profil-Säit</a> vum </a>%{name} (%{nickname}), där s'du nogees, gouf aktualiséiert.
|
|
481
459
|
export_mailer:
|
|
482
460
|
download_your_data_export:
|
|
483
461
|
download: Eroflueden
|
|
@@ -608,7 +586,6 @@ lb:
|
|
|
608
586
|
modal_title: Nei Konversatioun
|
|
609
587
|
no_results: Keen Resultat
|
|
610
588
|
error_modal:
|
|
611
|
-
close: Dialog zou maachen
|
|
612
589
|
correct_errors: Korrigéier w. e. g. dëse Feeler a probéier op en Neits.
|
|
613
590
|
intro: 'Bei denger Noriicht ass dësen Feeler opgetrueden:'
|
|
614
591
|
ok: OK
|
data/config/locales/lt.yml
CHANGED
|
@@ -347,9 +347,6 @@ lt:
|
|
|
347
347
|
success: Pataisos juodraštis sėkmingai atnaujintas.
|
|
348
348
|
withdraw:
|
|
349
349
|
success: Pataisa sėkmingai atsiimta.
|
|
350
|
-
wizard_step_form:
|
|
351
|
-
steps:
|
|
352
|
-
'1': Sukurkite savo pataisą
|
|
353
350
|
anonymous_user: Anonimas
|
|
354
351
|
application:
|
|
355
352
|
document:
|
|
@@ -471,7 +468,6 @@ lt:
|
|
|
471
468
|
global:
|
|
472
469
|
amendments_enabled: Pataisos leidžiamos
|
|
473
470
|
comments_enabled: Komentarai leidžiami
|
|
474
|
-
comments_max_length: Komentarų maksimalus ilgis
|
|
475
471
|
dummy_global_attribute1: Fiktyvus atributas 1
|
|
476
472
|
dummy_global_attribute2: Fiktyvus atributas 2
|
|
477
473
|
dummy_global_translatable_text: Testinis verčiamas tekstas
|
|
@@ -639,13 +635,9 @@ lt:
|
|
|
639
635
|
affected_user:
|
|
640
636
|
email_intro: 'Pataisa %{amendable_title} buvo priimta. Galite tai pamatyti:'
|
|
641
637
|
email_outro: Šį pranešimą gavote dėl to, kad esate %{amendable_title} autorius(-ė).
|
|
642
|
-
email_subject: '%{amendable_title} pataisa priimta iš %{emendation_author_nickname}'
|
|
643
|
-
notification_title: <a href="%{emendation_path}"><a href="%{emendation_path}">Pataisa</a> sukurta <a href="%{emendation_author_path}"><a href="%{emendation_author_path}">%{emendation_author_nickname}</a> buvo priimta <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
644
638
|
follower:
|
|
645
639
|
email_intro: 'Pataisa %{amendable_title} buvo priimta. Galite tai pamatyti:'
|
|
646
640
|
email_outro: Šį pranešimą gavote dėl to, kad sekate %{amendable_title}. Jeigu nebenorite gauti pranešimų, spustelėkite aukščiau esančią nuorodą.
|
|
647
|
-
email_subject: '%{amendable_title} pataisa priimta iš %{emendation_author_nickname}'
|
|
648
|
-
notification_title: <a href="%{emendation_path}"><a href="%{emendation_path}">Pataisa</a> sukurta <a href="%{emendation_author_path}"><a href="%{emendation_author_path}">%{emendation_author_nickname}</a> buvo priimta <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
649
641
|
amendment_created:
|
|
650
642
|
affected_user:
|
|
651
643
|
email_intro: 'Nauja pataisa buvo sukurta %{amendable_title}. Galite ją pamatyti šiame puslapyje:'
|
|
@@ -661,24 +653,16 @@ lt:
|
|
|
661
653
|
affected_user:
|
|
662
654
|
email_intro: 'Atmesta pataisa %{amendable_title} buvo paskelbta kaip nauja %{amendable_type}. Galite tai pamatyti šiame puslapyje:'
|
|
663
655
|
email_outro: Šį pranešimą gavote dėl to, kad esate %{amendable_title} autorius(-ė).
|
|
664
|
-
email_subject: '%{emendation_author_nickname} parengtas pakeitimas paskelbtas kaip naujas %{amendable_type}'
|
|
665
|
-
notification_title: <a href="%{emendation_path}">Atmesta pataisa</a>dėl<a href="%{amendable_path}">%{amendable_title} buvo publikuota kaip nauja%{amendable_type}<a href="%{emendation_author_path}">%{emendation_author_nickname}.
|
|
666
656
|
follower:
|
|
667
657
|
email_intro: 'Atmesta pataisa %{amendable_title} buvo paskelbta kaip nauja %{amendable_type}. Galite tai pamatyti šiame puslapyje:'
|
|
668
658
|
email_outro: Šį pranešimą gavote dėl to, kad sekate %{amendable_title}. Jeigu nebenorite gauti pranešimų, spustelėkite aukščiau esančią nuorodą.
|
|
669
|
-
email_subject: '%{emendation_author_nickname} publikavo naują pataisą kaip %{amendable_type}'
|
|
670
|
-
notification_title: <a href="%{emendation_path}">Atmesta pataisa</a>dėl<a href="%{amendable_path}">%{amendable_title} buvo publikuota kaip nauja%{amendable_type}<a href="%{emendation_author_path}">%{emendation_author_nickname}.
|
|
671
659
|
amendment_rejected:
|
|
672
660
|
affected_user:
|
|
673
661
|
email_intro: 'Atmesta %{amendable_title} pataisa. Ją galite pamatyti šiame puslapyje:'
|
|
674
662
|
email_outro: Šį pranešimą gavote dėl to, kad esate %{amendable_title} autorius(-ė).
|
|
675
|
-
email_subject: Atmesta %{emendation_author_nickname} parengta %{amendable_title} pataisa
|
|
676
|
-
notification_title: <a href="%{emendation_path}">Pataisa</a>sukurta<a href="%{emendation_author_path}">%{emendation_author_nickname}</a>buvo atmesta dėl<a href="%{amendable_path}">%{amendable_title}</a>.
|
|
677
663
|
follower:
|
|
678
664
|
email_intro: 'Atmesta %{amendable_title} pataisa. Ją galite pamatyti šiame puslapyje:'
|
|
679
665
|
email_outro: Šį pranešimą gavote dėl to, kad sekate %{amendable_title}. Jeigu nebenorite gauti pranešimų, spustelėkite aukščiau esančią nuorodą.
|
|
680
|
-
email_subject: Atmesta %{emendation_author_nickname} parengta %{amendable_title} pataisa
|
|
681
|
-
notification_title: <a href="%{emendation_path}">Pataisa</a>sukurta<a href="%{emendation_author_path}">%{emendation_author_nickname}</a>buvo atmesta dėl<a href="%{amendable_path}">%{amendable_title}</a>.
|
|
682
666
|
attachments:
|
|
683
667
|
attachment_created:
|
|
684
668
|
email_intro: 'Prie %{resource_title} pridėtas naujas dokumentas. Jį galite pamatyti šiame puslapyje:'
|
|
@@ -717,16 +701,9 @@ lt:
|
|
|
717
701
|
</br>
|
|
718
702
|
<i>%{resource_content}</i>
|
|
719
703
|
users:
|
|
720
|
-
profile_updated:
|
|
721
|
-
email_intro: '%{name} (%{nickname}), profilio puslapis, <a href="%{resource_url}">, kurį sekate</a> buvo atnaujintas.'
|
|
722
|
-
email_outro: Šį pranešimą gavote dėl to, kad sekate %{nickname}. Jeigu nebenorite gauti pranešimų, spustelėkite ankstesnę nuorodą.
|
|
723
|
-
email_subject: "%{nickname} atnaujino savo profilį"
|
|
724
|
-
notification_title: '%{name} (%{nickname}) profilio puslapis, <a href="%{resource_path}">, kurį sekate</a> buvo atnaujintas.'
|
|
725
704
|
user_officialized:
|
|
726
|
-
email_intro: Dalyvis %{name} (%{nickname}) buvo oficializuotas.
|
|
727
705
|
email_outro: Šį pranešimą gavote dėl to, kad esate organizacijos administratorius.
|
|
728
706
|
email_subject: "%{name} buvo oficializuotas"
|
|
729
|
-
notification_title: Dalyvis %{name} (%{nickname}) buvo oficializuotas.
|
|
730
707
|
export_mailer:
|
|
731
708
|
download_your_data_export:
|
|
732
709
|
download: Atsisiųsti
|
|
@@ -916,7 +893,6 @@ lt:
|
|
|
916
893
|
create:
|
|
917
894
|
error: Pokalbis neprasidėjo. Bandykite dar kartą vėliau.
|
|
918
895
|
error_modal:
|
|
919
|
-
close: Uždaryti modalinį langą
|
|
920
896
|
correct_errors: Ištaisykite klaidas ir bandykite dar kartą.
|
|
921
897
|
intro: 'Jūsų pranešime aptiktos šios klaidos:'
|
|
922
898
|
ok: Gerai
|
data/config/locales/lv.yml
CHANGED
|
@@ -179,9 +179,6 @@ lv:
|
|
|
179
179
|
update_draft:
|
|
180
180
|
error: Grozījuma melnraksta atjaunināšanas laikā radās kļūda.
|
|
181
181
|
success: Grozījuma melnraksts ir veiksmīgi atjaunināts.
|
|
182
|
-
wizard_step_form:
|
|
183
|
-
steps:
|
|
184
|
-
'1': Izveidot savu grozījumu
|
|
185
182
|
anonymous_user: Anonīms
|
|
186
183
|
application:
|
|
187
184
|
document:
|
|
@@ -353,13 +350,9 @@ lv:
|
|
|
353
350
|
affected_user:
|
|
354
351
|
email_intro: '%{amendable_title} ir pieņemts grozījums. To var redzēt šajā lapā:'
|
|
355
352
|
email_outro: Jūs saņēmāt šo paziņojumu, jo esat %{amendable_title} autors.
|
|
356
|
-
email_subject: Pieņemts grozījums %{amendable_title} no %{emendation_author_nickname}
|
|
357
|
-
notification_title: <a href="%{emendation_path}"> Grozījums </a>, ko izveidoja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>, ir pieņemts <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
358
353
|
follower:
|
|
359
354
|
email_intro: '%{amendable_title} ir pieņemts grozījums. To var redzēt šajā lapā:'
|
|
360
355
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{amendable_title}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
|
361
|
-
email_subject: Pieņemts grozījums %{amendable_title} no %{emendation_author_nickname}
|
|
362
|
-
notification_title: <a href="%{emendation_path}"> Grozījums </a>, ko izveidoja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>, ir pieņemts <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
363
356
|
amendment_created:
|
|
364
357
|
affected_user:
|
|
365
358
|
email_intro: '%{amendable_title} ir izveidots jauns grozījums. To var redzēt šajā lapā.'
|
|
@@ -375,24 +368,16 @@ lv:
|
|
|
375
368
|
affected_user:
|
|
376
369
|
email_intro: 'Noraidītais %{amendable_title} grozījums ir publicēts kā jauns %{amendable_type}. To var redzēt šajā lapā:'
|
|
377
370
|
email_outro: Jūs saņēmāt šo paziņojumu, jo esat %{amendable_title} autors.
|
|
378
|
-
email_subject: '%{emendation_author_nickname} grozījums ir publicēts kā jauns %{amendable_type}'
|
|
379
|
-
notification_title: <a href="%{emendation_path}">noraidītais grozījums<a href="%{amendable_path}">%{amendable_title}</a> ir publicēts kā jauns %{amendable_type}, to publicēja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
380
371
|
follower:
|
|
381
372
|
email_intro: 'Noraidītais %{amendable_title} grozījums ir publicēts kā jauns %{amendable_type}. To var redzēt šajā lapā:'
|
|
382
373
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{amendable_title}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
|
383
|
-
email_subject: '%{emendation_author_nickname} grozījums ir publicēts kā jauns %{amendable_type}'
|
|
384
|
-
notification_title: <a href="%{emendation_path}">noraidītais grozījums<a href="%{amendable_path}">%{amendable_title}</a> ir publicēts kā jauns %{amendable_type}, to publicēja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
385
374
|
amendment_rejected:
|
|
386
375
|
affected_user:
|
|
387
376
|
email_intro: '%{amendable_title} ir noraidīts grozījums. To var redzēt šajā lapā:'
|
|
388
377
|
email_outro: Jūs saņēmāt šo paziņojumu, jo esat %{amendable_title} autors.
|
|
389
|
-
email_subject: Noraidīts grozījums %{amendable_title} no %{emendation_author_nickname}
|
|
390
|
-
notification_title: <a href="%{emendation_path}"> grozījums </a>, ko izveidoja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>, ir noraidīts <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
391
378
|
follower:
|
|
392
379
|
email_intro: '%{amendable_title} ir noraidīts grozījums. To var redzēt šajā lapā:'
|
|
393
380
|
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{amendable_title}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
|
394
|
-
email_subject: Noraidīts grozījums %{amendable_title} no %{emendation_author_nickname}
|
|
395
|
-
notification_title: <a href="%{emendation_path}"> grozījums </a>, ko izveidoja <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>, ir noraidīts <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
396
381
|
attachments:
|
|
397
382
|
attachment_created:
|
|
398
383
|
email_intro: '%{resource_title} ir pievienots jauns dokuments. Jūs to varat redzēt šajā lapā:'
|
|
@@ -415,12 +400,6 @@ lv:
|
|
|
415
400
|
email_outro: Jūs saņēmāt šo paziņojumu, jo veicāt darbību mūsu tīmekļvietnē.
|
|
416
401
|
level_up:
|
|
417
402
|
email_outro: Jūs saņēmāt šo paziņojumu, jo veicāt darbību mūsu tīmekļvietnē.
|
|
418
|
-
users:
|
|
419
|
-
profile_updated:
|
|
420
|
-
email_intro: '%{name} (%{nickname}) <a href="%{resource_url}">profila lapa</a>, kam jūs sekojat, ir atjaunināta.'
|
|
421
|
-
email_outro: Jūs saņēmāt šo paziņojumu, jo sekojat %{nickname}. Jūs varat atteikties no paziņojumu saņemšanas, sekojot iepriekšējai saitei.
|
|
422
|
-
email_subject: "%{nickname} atjaunināja savu profilu"
|
|
423
|
-
notification_title: '%{name} (%{nickname}) <a href="%{resource_path}">profila lapa</a>, kam jūs sekojat, ir atjaunināta.'
|
|
424
403
|
export_mailer:
|
|
425
404
|
download_your_data_export:
|
|
426
405
|
download: Lejupielādēt
|
data/config/locales/nl.yml
CHANGED
|
@@ -202,9 +202,6 @@ nl:
|
|
|
202
202
|
update_draft:
|
|
203
203
|
error: Er is een fout opgetreden bij het bijwerken van dit amendement.
|
|
204
204
|
success: Amendement ontwerp is succesvol bijgewerkt.
|
|
205
|
-
wizard_step_form:
|
|
206
|
-
steps:
|
|
207
|
-
'1': Maak uw amendement
|
|
208
205
|
anonymous_user: Anoniem
|
|
209
206
|
application:
|
|
210
207
|
document:
|
|
@@ -301,7 +298,6 @@ nl:
|
|
|
301
298
|
global:
|
|
302
299
|
amendments_enabled: Wijzigingen toegestaan
|
|
303
300
|
comments_enabled: Reacties ingeschakeld
|
|
304
|
-
comments_max_length: Commentaar maximale lengte
|
|
305
301
|
dummy_global_attribute1: Voorbeeld-kenmerk 1
|
|
306
302
|
dummy_global_attribute2: Voorbeeld-kenmerk 2
|
|
307
303
|
dummy_global_translatable_text: Vertaalbare tekst Dummy
|
|
@@ -406,13 +402,9 @@ nl:
|
|
|
406
402
|
affected_user:
|
|
407
403
|
email_intro: 'Een eervolle vermelding is geaccepteerd voor %{amendable_title}. Je kunt het vanaf deze pagina bekijken:'
|
|
408
404
|
email_outro: U hebt deze melding ontvangen omdat u een auteur bent van %{amendable_title}.
|
|
409
|
-
email_subject: Geaccepteerd amendement voor %{amendable_title} van %{emendation_author_nickname}
|
|
410
|
-
notification_title: De <a href="%{emendation_path}">amendement</a> door <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> is aanvaard voor <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
411
405
|
follower:
|
|
412
406
|
email_intro: 'Een eervolle vermelding is geaccepteerd voor %{amendable_title}. Je kunt het vanaf deze pagina bekijken:'
|
|
413
407
|
email_outro: U hebt deze melding ontvangen omdat u %{amendable_title} volgt. Je kunt de meldingen stoppen door de vorige link te volgen.
|
|
414
|
-
email_subject: Geaccepteerd amendement voor %{amendable_title} van %{emendation_author_nickname}
|
|
415
|
-
notification_title: De <a href="%{emendation_path}">amendement</a> door <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> is aanvaard voor <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
416
408
|
amendment_created:
|
|
417
409
|
affected_user:
|
|
418
410
|
email_intro: 'Er is een nieuwe eervolle vermelding gemaakt voor %{amendable_title}. Je kunt het vanaf deze pagina bekijken:'
|
|
@@ -428,24 +420,16 @@ nl:
|
|
|
428
420
|
affected_user:
|
|
429
421
|
email_intro: 'Een afgewezen amendement voor %{amendable_title} is als nieuw gepubliceerd %{amendable_type}. U kunt het vanaf deze pagina bekijken:'
|
|
430
422
|
email_outro: U hebt deze melding ontvangen omdat u een auteur bent van %{amendable_title}.
|
|
431
|
-
email_subject: Een amendement van %{emendation_author_nickname} is als nieuw gepubliceerd %{amendable_type}
|
|
432
|
-
notification_title: Een <a href="%{emendation_path}">afgewezen amendement</a> voor <a href="%{amendable_path}">%{amendable_title}</a> is gepubliceerd als een nieuwe %{amendable_type} bij <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
433
423
|
follower:
|
|
434
424
|
email_intro: 'Een amendement afgewezen voor %{amendable_title} is gepubliceerd als een nieuw %{amendable_type}. Je kunt het op deze pagina bekijken:'
|
|
435
425
|
email_outro: U heeft deze melding ontvangen omdat u %{amendable_title} volgt. Je kunt stoppen met het ontvangen van meldingen door de vorige link te volgen.
|
|
436
|
-
email_subject: Een amendement van %{emendation_author_nickname} is gepubliceerd als %{amendable_type}
|
|
437
|
-
notification_title: Een <a href="%{emendation_path}">afgewezen amendement</a> voor <a href="%{amendable_path}">%{amendable_title}</a> is gepubliceerd als een nieuwe %{amendable_type} bij <a href="%{emendation_author_path}">%{emendation_author_nickname}</a>.
|
|
438
426
|
amendment_rejected:
|
|
439
427
|
affected_user:
|
|
440
428
|
email_intro: 'Een amendement is afgewezen door %{amendable_title}. Je kunt het op deze pagina bekijken:'
|
|
441
429
|
email_outro: U heeft deze melding ontvangen omdat u een auteur bent van %{amendable_title}.
|
|
442
|
-
email_subject: Een amendement afgewezen voor %{amendable_title} van %{emendation_author_nickname}
|
|
443
|
-
notification_title: De <a href="%{emendation_path}">amendement</a> door <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> is afgekeurd door <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
444
430
|
follower:
|
|
445
431
|
email_intro: 'Een amendement is afgewezen voor %{amendable_title}. Je kunt het op deze pagina bekijken:'
|
|
446
432
|
email_outro: U heeft deze melding ontvangen omdat u %{amendable_title} volgt. U kunt stoppen met het ontvangen van meldingen via de vorige link.
|
|
447
|
-
email_subject: Een amendement afgewezen voor %{amendable_title} van %{emendation_author_nickname}
|
|
448
|
-
notification_title: De <a href="%{emendation_path}">amendement</a> door <a href="%{emendation_author_path}">%{emendation_author_nickname}</a> is afgekeurde <a href="%{amendable_path}">%{amendable_title}</a>.
|
|
449
433
|
attachments:
|
|
450
434
|
attachment_created:
|
|
451
435
|
email_intro: 'Een nieuw document we’d toegevoegd aan %{resource_title}. Je kan het via deze link bekijken:'
|
|
@@ -468,12 +452,6 @@ nl:
|
|
|
468
452
|
email_outro: U heeft deze melding ontvangen omdat u activiteiten op onze website heeft uitgevoerd.
|
|
469
453
|
level_up:
|
|
470
454
|
email_outro: U heeft deze melding ontvangen omdat u activiteiten op onze website heeft uitgevoerd.
|
|
471
|
-
users:
|
|
472
|
-
profile_updated:
|
|
473
|
-
email_intro: De <a href="%{resource_url}">profile page</a> of %{name} (%{nickname}), die je volgt, is bijgewerkt.
|
|
474
|
-
email_outro: Je hebt deze melding ontvangen omdat je %{nickname} volgt. Je kan de meldingen uitschakelen door te klikken op de vorige link.
|
|
475
|
-
email_subject: "%{nickname} heeft zijn/haar profiel bijgewerkt"
|
|
476
|
-
notification_title: De <a href="%{resource_path}">profile page</a> van %{name} (%{nickname}), die je volgt, is bijgewerkt.
|
|
477
455
|
export_mailer:
|
|
478
456
|
download_your_data_export:
|
|
479
457
|
download: Download
|
|
@@ -609,7 +587,6 @@ nl:
|
|
|
609
587
|
modal_title: Nieuwe conversatie
|
|
610
588
|
no_results: Geen resultaten gevonden
|
|
611
589
|
error_modal:
|
|
612
|
-
close: Sluit venster
|
|
613
590
|
correct_errors: Corrigeer de fouten en probeer opnieuw.
|
|
614
591
|
intro: 'Er waren de volgende fouten met je bericht:'
|
|
615
592
|
ok: OK
|