decidim-admin 0.28.1 → 0.29.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/cells/decidim/admin/content_block_cell.rb +0 -1
- data/app/cells/decidim/admin/results_per_page/show.erb +2 -2
- data/app/cells/decidim/admin/results_per_page_cell.rb +0 -2
- data/app/commands/decidim/admin/create_area.rb +4 -32
- data/app/commands/decidim/admin/create_area_type.rb +4 -33
- data/app/commands/decidim/admin/create_attachment.rb +5 -4
- data/app/commands/decidim/admin/create_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/create_category.rb +4 -37
- data/app/commands/decidim/admin/create_component.rb +7 -40
- data/app/commands/decidim/admin/create_newsletter.rb +11 -29
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +3 -3
- data/app/commands/decidim/admin/create_scope.rb +15 -32
- data/app/commands/decidim/admin/create_scope_type.rb +3 -32
- data/app/commands/decidim/admin/create_static_page.rb +6 -47
- data/app/commands/decidim/admin/create_static_page_topic.rb +4 -26
- data/app/commands/decidim/admin/deliver_newsletter.rb +4 -5
- data/app/commands/decidim/admin/destroy_area.rb +2 -25
- data/app/commands/decidim/admin/destroy_category.rb +4 -29
- data/app/commands/decidim/admin/destroy_component.rb +5 -42
- data/app/commands/decidim/admin/destroy_newsletter.rb +2 -30
- data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +5 -32
- data/app/commands/decidim/admin/destroy_scope.rb +6 -33
- data/app/commands/decidim/admin/officialize_user.rb +1 -1
- data/app/commands/decidim/admin/participatory_space/create_admin.rb +4 -4
- data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +5 -4
- data/app/commands/decidim/admin/promote_managed_user.rb +4 -5
- data/app/commands/decidim/admin/unofficialize_user.rb +1 -1
- data/app/commands/decidim/admin/update_area.rb +2 -41
- data/app/commands/decidim/admin/update_area_type.rb +2 -42
- data/app/commands/decidim/admin/update_attachment.rb +10 -7
- data/app/commands/decidim/admin/update_attachment_collection.rb +3 -3
- data/app/commands/decidim/admin/update_category.rb +2 -45
- data/app/commands/decidim/admin/update_component.rb +4 -5
- data/app/commands/decidim/admin/update_component_permissions.rb +3 -3
- data/app/commands/decidim/admin/{update_external_domain_whitelist.rb → update_external_domain_allowlist.rb} +6 -5
- data/app/commands/decidim/admin/update_help_sections.rb +6 -3
- data/app/commands/decidim/admin/update_newsletter.rb +8 -8
- data/app/commands/decidim/admin/update_organization.rb +9 -53
- data/app/commands/decidim/admin/update_organization_appearance.rb +10 -81
- data/app/commands/decidim/admin/update_scope.rb +7 -40
- data/app/commands/decidim/admin/update_scope_type.rb +2 -42
- data/app/commands/decidim/admin/update_static_page.rb +5 -46
- data/app/commands/decidim/admin/update_static_page_topic.rb +2 -43
- data/app/constraints/decidim/admin/organization_dashboard_constraint.rb +1 -1
- data/app/controllers/concerns/decidim/admin/content_blocks/landing_page.rb +2 -2
- data/app/controllers/concerns/decidim/admin/filterable.rb +78 -3
- data/app/controllers/concerns/decidim/admin/global_moderation_context.rb +1 -1
- data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +0 -7
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- data/app/controllers/decidim/admin/area_types_controller.rb +8 -9
- data/app/controllers/decidim/admin/areas_controller.rb +1 -1
- data/app/controllers/decidim/admin/authorization_workflows_controller.rb +3 -1
- data/app/controllers/decidim/admin/categories_controller.rb +2 -2
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components_controller.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_attachments.rb +2 -2
- data/app/controllers/decidim/admin/concerns/has_private_users.rb +1 -1
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +1 -1
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/managed_users/promotions_controller.rb +1 -1
- data/app/controllers/decidim/admin/moderations/reports_controller.rb +4 -4
- data/app/controllers/decidim/admin/moderations_controller.rb +7 -7
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +5 -5
- data/app/controllers/decidim/admin/organization_appearance_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +8 -5
- data/app/controllers/decidim/admin/{organization_external_domain_whitelist_controller.rb → organization_external_domain_allowlist_controller.rb} +7 -7
- data/app/controllers/decidim/admin/scope_types_controller.rb +7 -8
- data/app/controllers/decidim/admin/scopes_controller.rb +1 -1
- data/app/controllers/decidim/admin/share_tokens_controller.rb +1 -1
- data/app/controllers/decidim/admin/static_page_topics_controller.rb +2 -2
- data/app/controllers/decidim/admin/static_pages_controller.rb +2 -2
- data/app/forms/decidim/admin/attachment_form.rb +7 -1
- data/app/forms/decidim/admin/organization_appearance_form.rb +0 -3
- data/app/forms/decidim/admin/{organization_external_domain_whitelist_form.rb → organization_external_domain_allowlist_form.rb} +3 -3
- data/app/forms/decidim/admin/organization_form.rb +2 -2
- data/app/forms/decidim/admin/static_page_form.rb +0 -1
- data/app/helpers/decidim/admin/filterable_helper.rb +19 -3
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +3 -1
- data/app/helpers/decidim/admin/newsletters_helper.rb +3 -3
- data/app/jobs/decidim/admin/import_participatory_space_private_user_csv_job.rb +2 -2
- data/app/packs/entrypoints/decidim_admin.js +4 -1
- data/app/packs/src/decidim/admin/application.js +25 -16
- data/app/packs/src/decidim/admin/choose_language.js +2 -0
- data/app/packs/src/decidim/admin/css_preview.js +39 -0
- data/app/packs/src/decidim/admin/dynamic_fields.component.js +2 -1
- data/app/packs/src/decidim/admin/form.js +18 -1
- data/app/packs/src/decidim/admin/participatory_space_search.js +1 -1
- data/app/packs/src/decidim/admin/proposal_infinite_edit.js +2 -2
- data/app/packs/src/decidim/admin/sync_radio_buttons.js +27 -0
- data/app/packs/src/decidim/admin/text_copy.js +19 -0
- data/app/packs/stylesheets/decidim/admin/_cards.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_datepicker.scss +62 -0
- data/app/packs/stylesheets/decidim/admin/_item_edit.scss +1 -1
- data/app/packs/stylesheets/decidim/admin/_item_show.scss +8 -0
- data/app/packs/stylesheets/decidim/admin/_proposal_status.scss +5 -0
- data/app/packs/stylesheets/decidim/admin/application.scss +2 -0
- data/app/permissions/decidim/admin/permissions.rb +2 -2
- data/app/queries/decidim/admin/user_filter.rb +4 -4
- data/app/queries/decidim/admin/user_groups_evaluation.rb +1 -1
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -1
- data/app/views/decidim/admin/attachments/_form.html.erb +21 -2
- data/app/views/decidim/admin/attachments/index.html.erb +2 -2
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +26 -8
- data/app/views/decidim/admin/categories/index.html.erb +2 -2
- data/app/views/decidim/admin/components/_form.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/_pending_moderations.html.erb +1 -1
- data/app/views/decidim/admin/dashboard/show.html.erb +1 -1
- data/app/views/decidim/admin/exports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +3 -3
- data/app/views/decidim/admin/imports/_dropdown.html.erb +1 -1
- data/app/views/decidim/admin/imports/new.html.erb +2 -2
- data/app/views/decidim/admin/logs/_filters.html.erb +3 -3
- data/app/views/decidim/admin/managed_users/promotions/new.html.erb +1 -1
- data/app/views/decidim/admin/moderated_users/index.html.erb +2 -2
- data/app/views/decidim/admin/moderations/index.html.erb +5 -5
- data/app/views/decidim/admin/moderations/reports/index.html.erb +6 -6
- data/app/views/decidim/admin/moderations/reports/show.html.erb +4 -4
- data/app/views/decidim/admin/newsletter_templates/index.html.erb +2 -2
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +7 -7
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -1
- data/app/views/decidim/admin/newsletters/select_recipients_to_deliver.html.erb +3 -3
- data/app/views/decidim/admin/newsletters/show.html.erb +1 -1
- data/app/views/decidim/admin/organization/_form.html.erb +3 -3
- data/app/views/decidim/admin/organization_appearance/form/_colors.html.erb +0 -3
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +5 -5
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_external_domain.html.erb +4 -4
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/_form.html.erb +2 -2
- data/app/views/decidim/admin/{organization_external_domain_whitelist → organization_external_domain_allowlist}/edit.html.erb +2 -2
- data/app/views/decidim/admin/participatory_space_private_users/index.html.erb +1 -1
- data/app/views/decidim/admin/participatory_space_private_users_csv_imports/new.html.erb +1 -1
- data/app/views/decidim/admin/share_tokens/_share_tokens.html.erb +1 -1
- data/app/views/decidim/admin/shared/_adjacent_navigation.html.erb +30 -0
- data/app/views/decidim/admin/shared/_admin_confirm_modal.html.erb +7 -7
- data/app/views/decidim/admin/shared/_filters.html.erb +1 -1
- data/app/views/decidim/admin/shared/_gallery.html.erb +1 -1
- data/app/views/decidim/admin/shared/_js-callout.html.erb +2 -2
- data/app/views/decidim/admin/shared/landing_page/_content_blocks.html.erb +2 -2
- data/app/views/decidim/admin/static_page_topics/index.html.erb +1 -1
- data/app/views/decidim/admin/static_pages/_form.html.erb +0 -4
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_admin_timeout_modal.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +4 -4
- data/app/views/layouts/decidim/admin/_callouts_full.html.erb +1 -1
- data/app/views/layouts/decidim/admin/_js_configuration.html.erb +3 -1
- data/app/views/layouts/decidim/admin/_sidebar_menu.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_title_bar_responsive.html.erb +2 -2
- data/config/locales/ar.yml +1 -7
- data/config/locales/bg.yml +1013 -11
- data/config/locales/ca.yml +18 -11
- data/config/locales/cs.yml +17 -10
- data/config/locales/de.yml +25 -18
- data/config/locales/el.yml +1 -12
- data/config/locales/en.yml +18 -11
- data/config/locales/es-MX.yml +25 -18
- data/config/locales/es-PY.yml +25 -18
- data/config/locales/es.yml +34 -27
- data/config/locales/eu.yml +18 -11
- data/config/locales/fi-plain.yml +16 -9
- data/config/locales/fi.yml +16 -9
- data/config/locales/fr-CA.yml +16 -9
- data/config/locales/fr.yml +15 -8
- data/config/locales/ga-IE.yml +1 -3
- data/config/locales/gl.yml +1 -5
- data/config/locales/hu.yml +10 -10
- data/config/locales/id-ID.yml +1 -3
- data/config/locales/is-IS.yml +1 -3
- data/config/locales/it.yml +2 -8
- data/config/locales/ja.yml +18 -11
- data/config/locales/kaa.yml +0 -3
- data/config/locales/ko.yml +0 -6
- data/config/locales/lb.yml +1 -8
- data/config/locales/lt.yml +2 -13
- data/config/locales/lv.yml +1 -3
- data/config/locales/nl.yml +1 -8
- data/config/locales/no.yml +1 -8
- data/config/locales/pl.yml +17 -9
- data/config/locales/pt-BR.yml +9 -10
- data/config/locales/pt.yml +1 -8
- data/config/locales/ro-RO.yml +1 -12
- data/config/locales/ru.yml +1 -3
- data/config/locales/sk.yml +1 -3
- data/config/locales/sl.yml +1 -0
- data/config/locales/sq-AL.yml +410 -0
- data/config/locales/sr-CS.yml +1 -3
- data/config/locales/sv.yml +1 -8
- data/config/locales/th-TH.yml +98 -0
- data/config/locales/tr-TR.yml +1 -5
- data/config/locales/uk.yml +1 -3
- data/config/locales/zh-CN.yml +1 -3
- data/config/locales/zh-TW.yml +2 -12
- data/config/routes.rb +1 -1
- data/decidim-admin.gemspec +1 -1
- data/lib/decidim/admin/import/creator.rb +1 -1
- data/lib/decidim/admin/import/importer_factory.rb +2 -2
- data/lib/decidim/admin/menu.rb +4 -4
- data/lib/decidim/admin/test/admin_participatory_space_access_examples.rb +27 -0
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/create_category_examples.rb +4 -2
- data/lib/decidim/admin/test/commands/update_attachment_collection_examples.rb +3 -2
- data/lib/decidim/admin/test/commands/update_category_examples.rb +3 -2
- data/lib/decidim/admin/test/filterable_examples.rb +5 -3
- data/lib/decidim/admin/test/filters_participatory_space_user_roles_examples.rb +5 -5
- data/lib/decidim/admin/test/invite_participatory_space_admins_shared_examples.rb +180 -0
- data/lib/decidim/admin/test/invite_participatory_space_collaborators_shared_examples.rb +67 -0
- data/lib/decidim/admin/test/invite_participatory_space_moderators_shared_examples.rb +77 -0
- data/lib/decidim/admin/test/invite_participatory_space_users_shared_context.rb +33 -0
- data/lib/decidim/admin/test/manage_attachment_collections_examples.rb +24 -23
- data/lib/decidim/admin/test/manage_attachments_examples.rb +51 -15
- data/lib/decidim/admin/test/manage_categories_examples.rb +24 -21
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +5 -5
- data/lib/decidim/admin/test/manage_hide_content_examples.rb +8 -4
- data/lib/decidim/admin/test/manage_moderations_examples.rb +21 -21
- data/lib/decidim/admin/test/manage_paginated_collection_examples.rb +3 -3
- data/lib/decidim/admin/test/manage_participatory_space_publications_examples.rb +2 -2
- data/lib/decidim/admin/test.rb +1 -0
- data/lib/decidim/admin/version.rb +1 -1
- metadata +32 -27
- data/app/commands/decidim/admin/destroy_share_token.rb +0 -46
- data/app/commands/decidim/admin/destroy_static_page.rb +0 -40
- data/app/commands/decidim/admin/destroy_static_page_topic.rb +0 -40
- data/app/mailers/decidim/admin/application_mailer.rb +0 -12
- data/app/views/layouts/decidim/admin/login.html.erb +0 -19
- /data/app/packs/src/decidim/admin/{external_domain_whitelist.js → external_domain_allowlist.js} +0 -0
data/config/locales/it.yml
CHANGED
@@ -151,6 +151,7 @@ it:
|
|
151
151
|
export: Esporta tutto
|
152
152
|
export-selection: Esporta selezione
|
153
153
|
import: Importazione
|
154
|
+
manage: Gestisci
|
154
155
|
newsletter:
|
155
156
|
new: Nuova newsletter
|
156
157
|
participatory_space_private_user:
|
@@ -291,7 +292,6 @@ it:
|
|
291
292
|
title: Verifica dei conflitti
|
292
293
|
transfer:
|
293
294
|
email: Email
|
294
|
-
error: Si è verificato un problema nel trasferimento dell'utente corrente a partecipante gestito.
|
295
295
|
name: Nome
|
296
296
|
reason: Motivazione
|
297
297
|
success: Il trasferimento è stato completato con successo.
|
@@ -358,7 +358,6 @@ it:
|
|
358
358
|
name_or_nickname_or_email_cont: Cerca %{collection} per email, nome o pseudonimo.
|
359
359
|
reported_id_string_or_reported_content_cont: Cerca %{collection} per id o contenuto segnalabile.
|
360
360
|
title_cont: Cerca %{collection} per titolo.
|
361
|
-
user_name_or_user_email_cont: Cerca %{collection} per nome o email.
|
362
361
|
state_eq:
|
363
362
|
label: Stato
|
364
363
|
values:
|
@@ -432,6 +431,7 @@ it:
|
|
432
431
|
appearance: Aspetto
|
433
432
|
area_types: Tipi di ambito territoriale
|
434
433
|
areas: Ambiti territoriali
|
434
|
+
components: Componenti
|
435
435
|
configuration: Configurazione
|
436
436
|
help_sections: Sezioni di Aiuto
|
437
437
|
homepage: Homepage
|
@@ -682,12 +682,6 @@ it:
|
|
682
682
|
layout_appearance_title: Modifica aspetto del layout
|
683
683
|
preview: Anteprima
|
684
684
|
omnipresent_banner_appearance_title: Modifica banner onnipresente
|
685
|
-
organization_external_domain_whitelist:
|
686
|
-
edit:
|
687
|
-
update: Aggiorna
|
688
|
-
form:
|
689
|
-
add: Aggiungi alla whitelist
|
690
|
-
title: Whitelist di domini esterni
|
691
685
|
participatory_space_private_users:
|
692
686
|
create:
|
693
687
|
error: Si è verificato un errore durante l'aggiunta di un utente privato per questo spazio partecipativo.
|
data/config/locales/ja.yml
CHANGED
@@ -188,6 +188,7 @@ ja:
|
|
188
188
|
export: 全てエクスポート
|
189
189
|
export-selection: 選択したものをエクスポート
|
190
190
|
import: インポート
|
191
|
+
manage: 管理
|
191
192
|
newsletter:
|
192
193
|
new: 新しいニュースレター
|
193
194
|
participatory_space_private_user:
|
@@ -355,7 +356,7 @@ ja:
|
|
355
356
|
title: 確認の競合
|
356
357
|
transfer:
|
357
358
|
email: Eメールアドレス
|
358
|
-
error:
|
359
|
+
error: 現在の参加者を管理対象の参加者に移行する際に問題が発生しました。
|
359
360
|
name: 名前
|
360
361
|
reason: 理由
|
361
362
|
success: 現在の移転が正常に完了しました。
|
@@ -378,19 +379,19 @@ ja:
|
|
378
379
|
update: 更新
|
379
380
|
dashboard:
|
380
381
|
pending_moderations:
|
381
|
-
|
382
|
+
announcement:
|
382
383
|
other: 保留中のモデレーションが%{count} 件あります
|
383
384
|
goto_moderation: グローバルモデレーションへ移動
|
384
385
|
title: 保留中のモデレーション
|
385
386
|
show:
|
386
387
|
dropdown: ドロップダウン
|
387
388
|
view_more_logs: もっとログを見る
|
388
|
-
|
389
|
+
domain_allowlist:
|
389
390
|
form:
|
390
391
|
domain_too_short: ドメインが短すぎます
|
391
392
|
update:
|
392
|
-
error:
|
393
|
-
success:
|
393
|
+
error: 許可された外部ドメインのリストを更新できませんでした
|
394
|
+
success: 許可された外部ドメインのリストを更新しました。
|
394
395
|
exports:
|
395
396
|
export_as: "%{name} を %{export_format} 形式で取得"
|
396
397
|
formats:
|
@@ -449,6 +450,7 @@ ja:
|
|
449
450
|
values:
|
450
451
|
'false': 公開済み
|
451
452
|
'true': 未公開
|
453
|
+
remove_all: すべて削除
|
452
454
|
scope_id_eq:
|
453
455
|
label: スコープ
|
454
456
|
search_label: 検索
|
@@ -457,7 +459,6 @@ ja:
|
|
457
459
|
report_count_eq: 報告数
|
458
460
|
reported_id_string_or_reported_content_cont: 報告可能なIDまたはコンテンツで %{collection} を検索します。
|
459
461
|
title_cont: '%{collection} をタイトルで検索します。'
|
460
|
-
user_name_or_user_email_cont: '%{collection} を名前またはメールアドレスで検索します。'
|
461
462
|
user_name_or_user_nickname_or_user_email_cont: '%{collection} をメール、表示名、アカウントIDで検索します。'
|
462
463
|
state_eq:
|
463
464
|
label: 都道府県:
|
@@ -566,9 +567,10 @@ ja:
|
|
566
567
|
appearance: 外観
|
567
568
|
area_types: エリア種別
|
568
569
|
areas: エリア
|
570
|
+
components: コンポーネント
|
569
571
|
configuration: 設定
|
570
572
|
content: 報告されたコンテンツ
|
571
|
-
|
573
|
+
external_domain_allowlist: 許可された外部ドメイン
|
572
574
|
help_sections: ヘルプセクション
|
573
575
|
homepage: ホームページ
|
574
576
|
impersonations: なりすまし
|
@@ -853,7 +855,7 @@ ja:
|
|
853
855
|
layout_appearance_title: レイアウトを編集
|
854
856
|
preview: プレビュー
|
855
857
|
omnipresent_banner_appearance_title: Omnipresentバナーを編集
|
856
|
-
|
858
|
+
organization_external_domain_allowlist:
|
857
859
|
edit:
|
858
860
|
update: 更新
|
859
861
|
external_domain:
|
@@ -862,8 +864,8 @@ ja:
|
|
862
864
|
remove: 削除
|
863
865
|
up: 上へ
|
864
866
|
form:
|
865
|
-
add:
|
866
|
-
title:
|
867
|
+
add: 許可されたリストに追加
|
868
|
+
title: 許可された外部ドメインのリスト
|
867
869
|
participatory_space_private_users:
|
868
870
|
create:
|
869
871
|
error: この参加型スペースにプライベート参加者を追加する際に問題が発生しました。
|
@@ -958,6 +960,11 @@ ja:
|
|
958
960
|
help: これらのトークンは、公開されていないリソースをすべてのユーザーに公開するために使用されます。 リソースが公開されると、それらは非表示になります。共有可能なURLにアクセスするにはトークンの共有アイコンをクリックしてください。
|
959
961
|
title: トークンを共有
|
960
962
|
shared:
|
963
|
+
adjacent_navigation:
|
964
|
+
next: 次へ
|
965
|
+
next_title: 次のアイテム
|
966
|
+
previous: 前へ
|
967
|
+
previous_title: 前のアイテム
|
961
968
|
gallery:
|
962
969
|
add_images: 画像を追加
|
963
970
|
edit_images: 画像を編集
|
@@ -1010,7 +1017,7 @@ ja:
|
|
1010
1017
|
areas: エリア
|
1011
1018
|
authorization_workflows: 確認方法
|
1012
1019
|
dashboard: ダッシュボード
|
1013
|
-
edit_external_domains:
|
1020
|
+
edit_external_domains: 許可された外部ドメインのリスト
|
1014
1021
|
edit_landing_page: ページ内容
|
1015
1022
|
edit_organization_appearance: ホームページの外観を編集
|
1016
1023
|
impersonatable_users: 管理可能な参加者
|
data/config/locales/kaa.yml
CHANGED
data/config/locales/ko.yml
CHANGED
@@ -303,7 +303,6 @@ ko:
|
|
303
303
|
title: 인증 충돌 발생
|
304
304
|
transfer:
|
305
305
|
email: 이메일
|
306
|
-
error: 현재 참여자를 관리된 참여자로 옮기는 중 문제가 발생했습니다.
|
307
306
|
name: 이름
|
308
307
|
reason: 이유
|
309
308
|
success: 현재 전송이 성공적으로 완료되었습니다.
|
@@ -609,11 +608,6 @@ ko:
|
|
609
608
|
images:
|
610
609
|
layout_appearance_title: 레이아웃 모양 편집
|
611
610
|
preview: 미리보기
|
612
|
-
organization_external_domain_whitelist:
|
613
|
-
edit:
|
614
|
-
update: 업데이트
|
615
|
-
form:
|
616
|
-
add: 화이트 리스트에 추가
|
617
611
|
participatory_space_private_users:
|
618
612
|
new:
|
619
613
|
create: 생성
|
data/config/locales/lb.yml
CHANGED
@@ -151,6 +151,7 @@ lb:
|
|
151
151
|
export: Alles exportéieren
|
152
152
|
export-selection: Export Auswiel
|
153
153
|
import: Importieren
|
154
|
+
manage: Verwalten
|
154
155
|
newsletter:
|
155
156
|
new: Neuer Newsletter
|
156
157
|
participatory_space_private_user:
|
@@ -291,7 +292,6 @@ lb:
|
|
291
292
|
title: "Überprüfungskonflikte\n\n"
|
292
293
|
transfer:
|
293
294
|
email: E-Mail
|
294
|
-
error: Es gab ein Problem bei der Übertragung des aktuellen Teilnehmers zu den verwalteten Teilnehmern.
|
295
295
|
name: Name
|
296
296
|
reason: Grund
|
297
297
|
success: Übertragung erfolgreich.
|
@@ -358,7 +358,6 @@ lb:
|
|
358
358
|
name_or_nickname_or_email_cont: Suche in %{collection} nach E-Mail, Name oder Benutzername.
|
359
359
|
reported_id_string_or_reported_content_cont: Suche %{collection} nach meldbarer Id oder Inhalt.
|
360
360
|
title_cont: In %{collection} nach Titel suchen.
|
361
|
-
user_name_or_user_email_cont: In %{collection} nach Name oder E-Mail suchen.
|
362
361
|
state_eq:
|
363
362
|
label: Bundesland
|
364
363
|
values:
|
@@ -679,12 +678,6 @@ lb:
|
|
679
678
|
layout_appearance_title: Layout-Layout bearbeiten
|
680
679
|
preview: Vorschau
|
681
680
|
omnipresent_banner_appearance_title: Bearbeiten Sie das allgegenwärtige Banner
|
682
|
-
organization_external_domain_whitelist:
|
683
|
-
edit:
|
684
|
-
update: Aktualisieren
|
685
|
-
form:
|
686
|
-
add: Zur Whitelist hinzufügen
|
687
|
-
title: Whitelist für externe Domains
|
688
681
|
participatory_space_private_users:
|
689
682
|
create:
|
690
683
|
error: Beim Hinzufügen eines privaten Benutzers für diesen partizipativen Bereich ist ein Fehler aufgetreten.
|
data/config/locales/lt.yml
CHANGED
@@ -183,6 +183,7 @@ lt:
|
|
183
183
|
export: Eksportuoti viską
|
184
184
|
export-selection: Eksportuoti pasirinktą
|
185
185
|
import: Importuoti
|
186
|
+
manage: Valdyti
|
186
187
|
newsletter:
|
187
188
|
new: Naujas naujienlaiškis
|
188
189
|
participatory_space_private_user:
|
@@ -349,7 +350,6 @@ lt:
|
|
349
350
|
title: Patikros konfliktai
|
350
351
|
transfer:
|
351
352
|
email: El. paštas
|
352
|
-
error: Iškilo problema perkeliant dabartinį dalyvį į tvarkomą dalyvį.
|
353
353
|
name: Vardas
|
354
354
|
reason: Priežastis
|
355
355
|
success: Perkėlimas sėkmingai baigtas.
|
@@ -362,10 +362,6 @@ lt:
|
|
362
362
|
title: Laukiantys Moderavimai
|
363
363
|
show:
|
364
364
|
view_more_logs: Peržiūrėti daugiau ataskaitų
|
365
|
-
domain_whitelist:
|
366
|
-
update:
|
367
|
-
error: Nepavyko atnaujinti domenų baltąjo sąrašo.
|
368
|
-
success: Domenų baltasis sąrašas atnaujintas sėkmingai.
|
369
365
|
exports:
|
370
366
|
export_as: "%{name} kaip %{export_format}"
|
371
367
|
formats:
|
@@ -432,7 +428,6 @@ lt:
|
|
432
428
|
report_count_eq: Raportuoti skaičių
|
433
429
|
reported_id_string_or_reported_content_cont: Ieškoti %{collection} pagal ID arba turinį.
|
434
430
|
title_cont: Ieškoti %{collection} pagal pavadinimą.
|
435
|
-
user_name_or_user_email_cont: Ieškoti %{collection} pagal vardą ar el. paštą.
|
436
431
|
user_name_or_user_nickname_or_user_email_cont: Ieškoti %{collection} pagal el. pašto adresą, vardą arba naudotojo vardą.
|
437
432
|
state_eq:
|
438
433
|
label: Būsena
|
@@ -553,6 +548,7 @@ lt:
|
|
553
548
|
appearance: Išvaizda
|
554
549
|
area_types: Erdvės tipas
|
555
550
|
areas: Erdvės
|
551
|
+
components: Komponentai
|
556
552
|
configuration: Konfigūracija
|
557
553
|
content: Turinys, apie kurį pranešta
|
558
554
|
help_sections: Pagalbos skyrius
|
@@ -831,12 +827,6 @@ lt:
|
|
831
827
|
layout_appearance_title: Redaguoti išdėstymą
|
832
828
|
preview: Peržiūra
|
833
829
|
omnipresent_banner_appearance_title: Keisti visur naudojamą reklamjuostę
|
834
|
-
organization_external_domain_whitelist:
|
835
|
-
edit:
|
836
|
-
update: Atnaujinti
|
837
|
-
form:
|
838
|
-
add: Pridėti prie baltojo sąrašo
|
839
|
-
title: Išorinių domenų baltasis sąrašas
|
840
830
|
participatory_space_private_users:
|
841
831
|
create:
|
842
832
|
error: Pridedant privatų dalyvį į šia dalyvaujamają erdvę kilo problema.
|
@@ -981,7 +971,6 @@ lt:
|
|
981
971
|
areas: Aplinkos
|
982
972
|
authorization_workflows: Verifikacijos metodai
|
983
973
|
dashboard: Švieslentė
|
984
|
-
edit_external_domains: Išorinių domenų baltasis sąrašas
|
985
974
|
edit_landing_page: Puslapio turinys
|
986
975
|
edit_organization_appearance: Keisti pagrindinio puslapio išvaizdą
|
987
976
|
impersonatable_users: Dalyviai, kurių duomenis galima tvarkyti
|
data/config/locales/lv.yml
CHANGED
@@ -116,6 +116,7 @@ lv:
|
|
116
116
|
actions:
|
117
117
|
add: Pievienot
|
118
118
|
browse: Pārlūkot
|
119
|
+
manage: Pārvaldīt
|
119
120
|
per_page: Lapā
|
120
121
|
permissions: Atļaujas
|
121
122
|
reject: Noraidīt
|
@@ -511,9 +512,6 @@ lv:
|
|
511
512
|
layout_appearance_title: Rediģēt izkārtojuma izskatu
|
512
513
|
preview: Priekšskatīt
|
513
514
|
omnipresent_banner_appearance_title: Rediģēt visuresošo reklāmkarogu
|
514
|
-
organization_external_domain_whitelist:
|
515
|
-
edit:
|
516
|
-
update: Atjaunināt
|
517
515
|
participatory_space_private_users:
|
518
516
|
create:
|
519
517
|
error: Pievienojot privāto dalībnieku šai līdzdalības telpai, radās problēma.
|
data/config/locales/nl.yml
CHANGED
@@ -151,6 +151,7 @@ nl:
|
|
151
151
|
export: Alles exporteren
|
152
152
|
export-selection: Selectie exporteren
|
153
153
|
import: Importeren
|
154
|
+
manage: Beheer
|
154
155
|
newsletter:
|
155
156
|
new: Nieuwe nieuwsbrief
|
156
157
|
participatory_space_private_user:
|
@@ -295,7 +296,6 @@ nl:
|
|
295
296
|
title: Controle conflicten
|
296
297
|
transfer:
|
297
298
|
email: E-mail
|
298
|
-
error: Er is een probleem opgetreden bij het overbrengen van de huidige deelnemer naar een beheerde deelnemer.
|
299
299
|
name: Naam
|
300
300
|
reason: Reden
|
301
301
|
success: De overdracht is met succes voltooid.
|
@@ -370,7 +370,6 @@ nl:
|
|
370
370
|
report_count_eq: Aantal rapporteringen
|
371
371
|
reported_id_string_or_reported_content_cont: Zoek %{collection} op rapporteerbaar id of op inhoud.
|
372
372
|
title_cont: Zoek %{collection} op titel.
|
373
|
-
user_name_or_user_email_cont: '%{collection} doorzoeken op Id of titel.'
|
374
373
|
user_name_or_user_nickname_or_user_email_cont: Doorzoek %{collection} op e-mail, naam of bijnaam.
|
375
374
|
state_eq:
|
376
375
|
label: Provincie
|
@@ -728,12 +727,6 @@ nl:
|
|
728
727
|
layout_appearance_title: Weergave van de lay-out bewerken
|
729
728
|
preview: Voorvertoning
|
730
729
|
omnipresent_banner_appearance_title: Bewerk de permanente banner
|
731
|
-
organization_external_domain_whitelist:
|
732
|
-
edit:
|
733
|
-
update: Bijwerken
|
734
|
-
form:
|
735
|
-
add: Toevoegen aan whitelist
|
736
|
-
title: Externe domein whitelist
|
737
730
|
participatory_space_private_users:
|
738
731
|
create:
|
739
732
|
error: Er is een probleem opgetreden bij het toevoegen van een privédeelnemer aan deze deelruimte.
|
data/config/locales/no.yml
CHANGED
@@ -151,6 +151,7 @@
|
|
151
151
|
export: Eksporter alt
|
152
152
|
export-selection: Eksporter valg
|
153
153
|
import: Importer
|
154
|
+
manage: Administrer
|
154
155
|
newsletter:
|
155
156
|
new: Nytt nyhetsbrev
|
156
157
|
participatory_space_private_user:
|
@@ -295,7 +296,6 @@
|
|
295
296
|
title: Verifiseringskonflikter
|
296
297
|
transfer:
|
297
298
|
email: E-post
|
298
|
-
error: Det oppstod et problem med overføring av gjeldende deltaker til håndtert deltaker.
|
299
299
|
name: Navn
|
300
300
|
reason: Årsak
|
301
301
|
success: Overføringen er gjennomført.
|
@@ -382,7 +382,6 @@
|
|
382
382
|
report_count_eq: Antall rapporter
|
383
383
|
reported_id_string_or_reported_content_cont: Søk %{collection} av rapporterbar id eller innhold.
|
384
384
|
title_cont: Søk %{collection} etter tittel.
|
385
|
-
user_name_or_user_email_cont: Søk %{collection} etter navn eller e-post.
|
386
385
|
user_name_or_user_nickname_or_user_email_cont: Søk %{collection} via e-post, navn eller kallenavn.
|
387
386
|
state_eq:
|
388
387
|
label: Tilstand
|
@@ -732,12 +731,6 @@
|
|
732
731
|
layout_appearance_title: Rediger layout utseende
|
733
732
|
preview: Forhåndsvis
|
734
733
|
omnipresent_banner_appearance_title: Endre enerådende banner
|
735
|
-
organization_external_domain_whitelist:
|
736
|
-
edit:
|
737
|
-
update: Oppdater
|
738
|
-
form:
|
739
|
-
add: Legg til i hviteliste
|
740
|
-
title: Hviteliste for eksterne domener
|
741
734
|
participatory_space_private_users:
|
742
735
|
create:
|
743
736
|
error: Det oppstod et problem med å legge til en privat deltaker for dette deltakerområdet.
|
data/config/locales/pl.yml
CHANGED
@@ -188,6 +188,7 @@ pl:
|
|
188
188
|
export: Eksportuj wszystko
|
189
189
|
export-selection: Eksportuj wybrane
|
190
190
|
import: Importuj
|
191
|
+
manage: Zarządzanie
|
191
192
|
newsletter:
|
192
193
|
new: Nowy newsletter
|
193
194
|
participatory_space_private_user:
|
@@ -288,6 +289,7 @@ pl:
|
|
288
289
|
block_user:
|
289
290
|
new:
|
290
291
|
action: Zablokuj konto i wyślij uzasadnienie
|
292
|
+
already_reported_html: Kontynuując tę akcję, ukryjesz również wszystkie treści uczestników.
|
291
293
|
description: Blokowanie użytkownika sprawi, że jego konto nie będzie użyteczne. Możesz podać w uzasadnieniu wszelkie wytyczne dotyczące sposobu odblokowania użytkownika.
|
292
294
|
justification: Uzasadnienie
|
293
295
|
title: Zablokuj użytkownika %{name}
|
@@ -382,12 +384,12 @@ pl:
|
|
382
384
|
show:
|
383
385
|
dropdown: Lista rozwijana
|
384
386
|
view_more_logs: Zobacz więcej logów
|
385
|
-
|
387
|
+
domain_allowlist:
|
386
388
|
form:
|
387
389
|
domain_too_short: Domena jest za krótka
|
388
390
|
update:
|
389
|
-
error: Nie udało się zaktualizować
|
390
|
-
success:
|
391
|
+
error: Nie udało się zaktualizować listy dozwolonych domen zewnętrznych
|
392
|
+
success: Lista dozwolonych domen zewnętrznych została pomyślnie zaktualizowana.
|
391
393
|
exports:
|
392
394
|
export_as: "%{name} jako %{export_format}"
|
393
395
|
formats:
|
@@ -446,6 +448,7 @@ pl:
|
|
446
448
|
values:
|
447
449
|
'false': Opublikowany
|
448
450
|
'true': Nieopublikowany
|
451
|
+
remove_all: Usuń wszystkie
|
449
452
|
scope_id_eq:
|
450
453
|
label: Zakres
|
451
454
|
search_label: Szukaj
|
@@ -454,7 +457,6 @@ pl:
|
|
454
457
|
report_count_eq: Licznik raportów
|
455
458
|
reported_id_string_or_reported_content_cont: Przeszukaj %{collection} według identyfikatora lub treści zgłoszenia.
|
456
459
|
title_cont: Przeszukaj %{collection} według tytułu.
|
457
|
-
user_name_or_user_email_cont: Przeszukaj %{collection} według nazwy lub e-maila.
|
458
460
|
user_name_or_user_nickname_or_user_email_cont: Szukaj %{collection} według adresu e-mail, nazwy lub pseudonimu.
|
459
461
|
state_eq:
|
460
462
|
label: Stan
|
@@ -575,9 +577,10 @@ pl:
|
|
575
577
|
appearance: Wygląd
|
576
578
|
area_types: Typy kategorii
|
577
579
|
areas: Kategorie
|
580
|
+
components: Komponenty
|
578
581
|
configuration: Konfiguracja
|
579
582
|
content: Zgłoszona zawartość
|
580
|
-
|
583
|
+
external_domain_allowlist: Dozwolone domeny zewnętrzne
|
581
584
|
help_sections: Sekcje pomocy
|
582
585
|
homepage: Strona główna
|
583
586
|
impersonations: Podszywanie się pod inne osoby
|
@@ -862,7 +865,7 @@ pl:
|
|
862
865
|
layout_appearance_title: Edytuj wygląd layoutu
|
863
866
|
preview: Podgląd
|
864
867
|
omnipresent_banner_appearance_title: Edytuj stały baner
|
865
|
-
|
868
|
+
organization_external_domain_allowlist:
|
866
869
|
edit:
|
867
870
|
update: Aktualizuj
|
868
871
|
external_domain:
|
@@ -871,8 +874,8 @@ pl:
|
|
871
874
|
remove: Usuń
|
872
875
|
up: Do góry
|
873
876
|
form:
|
874
|
-
add: Dodaj do
|
875
|
-
title:
|
877
|
+
add: Dodaj do listy dozwolonych
|
878
|
+
title: Dozwolone domeny zewnętrzne
|
876
879
|
participatory_space_private_users:
|
877
880
|
create:
|
878
881
|
error: Wystąpił błąd podczas dodawania użytkownika prywatnego do tej przestrzeni partycypacyjnej.
|
@@ -970,6 +973,11 @@ pl:
|
|
970
973
|
help: Te tokeny są używane do publicznego udostępniania nieopublikowanego zasobu każdemu użytkownikowi. Zostaną one ukryte, gdy zasób zostanie opublikowany. Kliknij na ikonę udostępniania tokenu aby odwiedzić udostępniany adres URL.
|
971
974
|
title: Udostępnij tokeny
|
972
975
|
shared:
|
976
|
+
adjacent_navigation:
|
977
|
+
next: Następny
|
978
|
+
next_title: Następny element
|
979
|
+
previous: Poprzedni
|
980
|
+
previous_title: Poprzedni element
|
973
981
|
gallery:
|
974
982
|
add_images: Dodaj obrazy
|
975
983
|
edit_images: Edytuj obrazy
|
@@ -1022,7 +1030,7 @@ pl:
|
|
1022
1030
|
areas: Kategorie
|
1023
1031
|
authorization_workflows: Metody weryfikacji
|
1024
1032
|
dashboard: Panel
|
1025
|
-
edit_external_domains:
|
1033
|
+
edit_external_domains: Dozwolone domeny zewnętrzne
|
1026
1034
|
edit_landing_page: Zawartość strony
|
1027
1035
|
edit_organization_appearance: Edytuj wygląd strony głównej
|
1028
1036
|
impersonatable_users: Zarządzaj użytkownikami
|
data/config/locales/pt-BR.yml
CHANGED
@@ -188,6 +188,7 @@ pt-BR:
|
|
188
188
|
export: Exportar tudo
|
189
189
|
export-selection: Exportar selecionado
|
190
190
|
import: Importar
|
191
|
+
manage: Gerenciar
|
191
192
|
newsletter:
|
192
193
|
new: Novo Boletim Informativo
|
193
194
|
participatory_space_private_user:
|
@@ -354,7 +355,6 @@ pt-BR:
|
|
354
355
|
title: Conflitos de verificação
|
355
356
|
transfer:
|
356
357
|
email: E-mail
|
357
|
-
error: Houve um erro ao transferir o usuário atual para o usuário gerenciado.
|
358
358
|
name: Nome
|
359
359
|
reason: Motivo
|
360
360
|
success: A transferência atual foi concluída com sucesso.
|
@@ -382,12 +382,12 @@ pt-BR:
|
|
382
382
|
show:
|
383
383
|
dropdown: Dropdown
|
384
384
|
view_more_logs: Ver mais registros
|
385
|
-
|
385
|
+
domain_allowlist:
|
386
386
|
form:
|
387
387
|
domain_too_short: Domínio muito curto
|
388
388
|
update:
|
389
|
-
error: Falha ao atualizar
|
390
|
-
success:
|
389
|
+
error: Falha ao atualizar lista de domínios externos permitidos
|
390
|
+
success: Lista do domínio externo permitido atualizada com sucesso.
|
391
391
|
exports:
|
392
392
|
export_as: "%{name} como %{export_format}"
|
393
393
|
formats:
|
@@ -454,7 +454,6 @@ pt-BR:
|
|
454
454
|
report_count_eq: Número de denúncias
|
455
455
|
reported_id_string_or_reported_content_cont: Pesquisar %{collection} por id ou conteúdo reportável.
|
456
456
|
title_cont: Pesquisar %{collection} por título.
|
457
|
-
user_name_or_user_email_cont: Pesquise %{collection} por nome ou e-mail.
|
458
457
|
user_name_or_user_nickname_or_user_email_cont: Pesquise %{collection} por e-mail, nome ou apelido.
|
459
458
|
state_eq:
|
460
459
|
label: Estado
|
@@ -566,7 +565,7 @@ pt-BR:
|
|
566
565
|
areas: Áreas
|
567
566
|
configuration: Configuração
|
568
567
|
content: Conteúdo relatado
|
569
|
-
|
568
|
+
external_domain_allowlist: Domínios externos permitidos
|
570
569
|
help_sections: Seções de ajuda
|
571
570
|
homepage: Pagina inicial
|
572
571
|
impersonations: Imitações
|
@@ -851,7 +850,7 @@ pt-BR:
|
|
851
850
|
layout_appearance_title: Editar aparência do layout
|
852
851
|
preview: Pré-visualização
|
853
852
|
omnipresent_banner_appearance_title: Editar banner onipresente
|
854
|
-
|
853
|
+
organization_external_domain_allowlist:
|
855
854
|
edit:
|
856
855
|
update: Atualizar
|
857
856
|
external_domain:
|
@@ -860,8 +859,8 @@ pt-BR:
|
|
860
859
|
remove: Remover
|
861
860
|
up: Acima
|
862
861
|
form:
|
863
|
-
add: Adicionar
|
864
|
-
title: Lista
|
862
|
+
add: Adicionar na lista de permitidos
|
863
|
+
title: Lista de domínios externos permitidos
|
865
864
|
participatory_space_private_users:
|
866
865
|
create:
|
867
866
|
error: Ocorreu um erro ao adicionar um usuário privado para este espaço participativo.
|
@@ -1009,7 +1008,7 @@ pt-BR:
|
|
1009
1008
|
areas: Áreas
|
1010
1009
|
authorization_workflows: Métodos de verificação
|
1011
1010
|
dashboard: painel de controle
|
1012
|
-
edit_external_domains: Lista
|
1011
|
+
edit_external_domains: Lista de domínios externos permitidos
|
1013
1012
|
edit_landing_page: Conteúdos da página
|
1014
1013
|
edit_organization_appearance: Editar aparência da página inicial
|
1015
1014
|
impersonatable_users: Usuários gerenciáveis
|
data/config/locales/pt.yml
CHANGED
@@ -151,6 +151,7 @@ pt:
|
|
151
151
|
export: Exportar tudo
|
152
152
|
export-selection: Exportar selecção
|
153
153
|
import: Importar
|
154
|
+
manage: Gerir
|
154
155
|
newsletter:
|
155
156
|
new: Novo boletim informativo
|
156
157
|
participatory_space_private_user:
|
@@ -291,7 +292,6 @@ pt:
|
|
291
292
|
title: Conflitos de verificação
|
292
293
|
transfer:
|
293
294
|
email: e-Mail
|
294
|
-
error: Houve um problema ao transferir o utilizador actual para utilizador gerido.
|
295
295
|
name: Nome
|
296
296
|
reason: Motivo
|
297
297
|
success: A transferência actual foi completada com êxito.
|
@@ -358,7 +358,6 @@ pt:
|
|
358
358
|
name_or_nickname_or_email_cont: Pesquisar %{collection} por e-mail, nome ou alcunha.
|
359
359
|
reported_id_string_or_reported_content_cont: Pesquisar %{coleção} por identificador de denúncia ou conteúdo.
|
360
360
|
title_cont: Pesquisar %{collection} por título.
|
361
|
-
user_name_or_user_email_cont: Pesquisar %{coleção} por nome ou e-mail.
|
362
361
|
state_eq:
|
363
362
|
label: Estado
|
364
363
|
values:
|
@@ -681,12 +680,6 @@ pt:
|
|
681
680
|
layout_appearance_title: Editar aparência do layout
|
682
681
|
preview: Pré-visualização
|
683
682
|
omnipresent_banner_appearance_title: Editar faixa omnipresente
|
684
|
-
organization_external_domain_whitelist:
|
685
|
-
edit:
|
686
|
-
update: Atualizar
|
687
|
-
form:
|
688
|
-
add: Adicionar à lista branca
|
689
|
-
title: Lista branca de domínio externo
|
690
683
|
participatory_space_private_users:
|
691
684
|
create:
|
692
685
|
error: Ocorreu um problema ao adicionar um participante privado neste espaço participativo.
|
data/config/locales/ro-RO.yml
CHANGED
@@ -182,6 +182,7 @@ ro:
|
|
182
182
|
export: Exportă tot
|
183
183
|
export-selection: Exportă selecția
|
184
184
|
import: Importă
|
185
|
+
manage: Gestionează
|
185
186
|
newsletter:
|
186
187
|
new: Buletin informativ nou
|
187
188
|
participatory_space_private_user:
|
@@ -346,7 +347,6 @@ ro:
|
|
346
347
|
title: Conflicte de verificare
|
347
348
|
transfer:
|
348
349
|
email: E-mail
|
349
|
-
error: A apărut o problemă la transferul participantului curent drept participant gestionat.
|
350
350
|
name: Nume
|
351
351
|
reason: Motiv
|
352
352
|
success: Transferul curent a fost finalizat cu succes.
|
@@ -359,10 +359,6 @@ ro:
|
|
359
359
|
title: Moderări în așteptare
|
360
360
|
show:
|
361
361
|
view_more_logs: Afișează mai multe înregistrări
|
362
|
-
domain_whitelist:
|
363
|
-
update:
|
364
|
-
error: Actualizarea domeniilor permise a eșuat.
|
365
|
-
success: Lista domeniilor permise actualizată cu succes.
|
366
362
|
exports:
|
367
363
|
export_as: "%{name} drept %{export_format}"
|
368
364
|
formats:
|
@@ -429,7 +425,6 @@ ro:
|
|
429
425
|
report_count_eq: Număr de raportări
|
430
426
|
reported_id_string_or_reported_content_cont: Caută %{collection} după id sau conținut.
|
431
427
|
title_cont: Caută %{collection} după titlu.
|
432
|
-
user_name_or_user_email_cont: Caută %{collection} după nume sau e-mail.
|
433
428
|
user_name_or_user_nickname_or_user_email_cont: Caută %{collection} după e-mail, nume sau pseudonim.
|
434
429
|
state_eq:
|
435
430
|
label: Stadiu
|
@@ -815,12 +810,6 @@ ro:
|
|
815
810
|
layout_appearance_title: Editează aspectul aranjării în pagină
|
816
811
|
preview: Previzualizează
|
817
812
|
omnipresent_banner_appearance_title: Editează banner-ul omniprezent
|
818
|
-
organization_external_domain_whitelist:
|
819
|
-
edit:
|
820
|
-
update: Actualizează
|
821
|
-
form:
|
822
|
-
add: Adaugă la lista albă
|
823
|
-
title: Lista albă pentru domenii externe
|
824
813
|
participatory_space_private_users:
|
825
814
|
create:
|
826
815
|
error: A apărut o problemă la adăugarea unui participant privat pentru acest spațiu participativ.
|
data/config/locales/ru.yml
CHANGED
@@ -116,6 +116,7 @@ ru:
|
|
116
116
|
actions:
|
117
117
|
add: Добавить
|
118
118
|
browse: Просмотреть
|
119
|
+
manage: Управлять
|
119
120
|
permissions: Права
|
120
121
|
reject: Отклонить
|
121
122
|
verify: Подтвердить личность
|
@@ -464,9 +465,6 @@ ru:
|
|
464
465
|
images:
|
465
466
|
layout_appearance_title: Редактировать внешний вид макета
|
466
467
|
omnipresent_banner_appearance_title: Редактировать вездесущий баннер
|
467
|
-
organization_external_domain_whitelist:
|
468
|
-
edit:
|
469
|
-
update: Обновить
|
470
468
|
participatory_space_private_users:
|
471
469
|
create:
|
472
470
|
error: При попытке добавить частного участника в это пространство соучастия произошла ошибка.
|
data/config/locales/sk.yml
CHANGED
@@ -118,6 +118,7 @@ sk:
|
|
118
118
|
actions:
|
119
119
|
add: Pridať
|
120
120
|
browse: Prechádzať
|
121
|
+
manage: Správa
|
121
122
|
per_page: Na stranu
|
122
123
|
permissions: Práva
|
123
124
|
reject: Odmietnuť
|
@@ -514,9 +515,6 @@ sk:
|
|
514
515
|
images:
|
515
516
|
layout_appearance_title: Upraviť vzhľad
|
516
517
|
omnipresent_banner_appearance_title: Upraviť všadeprítomný banner
|
517
|
-
organization_external_domain_whitelist:
|
518
|
-
edit:
|
519
|
-
update: Aktualizovať
|
520
518
|
participatory_space_private_users:
|
521
519
|
create:
|
522
520
|
error: Pri pridávaní súkromného používateľa pre tento participačný priestor došlo k chybe.
|