decidim-admin 0.26.5 → 0.27.0.rc1
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/admin/attachments_privacy_warning/show.erb +3 -0
- data/app/cells/decidim/admin/attachments_privacy_warning_cell.rb +19 -0
- data/app/commands/decidim/admin/block_user.rb +1 -1
- data/app/commands/decidim/admin/close_session_managed_user.rb +1 -1
- data/app/commands/decidim/admin/create_area.rb +1 -1
- data/app/commands/decidim/admin/create_area_type.rb +6 -3
- data/app/commands/decidim/admin/create_attachment.rb +14 -6
- data/app/commands/decidim/admin/create_attachment_collection.rb +13 -4
- data/app/commands/decidim/admin/create_category.rb +6 -4
- data/app/commands/decidim/admin/create_component.rb +1 -1
- data/app/commands/decidim/admin/create_import.rb +4 -5
- data/app/commands/decidim/admin/create_import_example.rb +1 -1
- data/app/commands/decidim/admin/create_newsletter.rb +1 -1
- data/app/commands/decidim/admin/create_participatory_space_private_user.rb +1 -1
- data/app/commands/decidim/admin/create_scope.rb +1 -1
- data/app/commands/decidim/admin/create_scope_type.rb +6 -3
- data/app/commands/decidim/admin/create_static_page.rb +1 -1
- data/app/commands/decidim/admin/create_static_page_topic.rb +1 -1
- data/app/commands/decidim/admin/deliver_newsletter.rb +6 -6
- data/app/commands/decidim/admin/destroy_area.rb +1 -1
- data/app/commands/decidim/admin/destroy_category.rb +6 -3
- data/app/commands/decidim/admin/destroy_component.rb +1 -1
- data/app/commands/decidim/admin/destroy_newsletter.rb +1 -1
- data/app/commands/decidim/admin/destroy_participatory_space_private_user.rb +1 -1
- data/app/commands/decidim/admin/destroy_scope.rb +1 -1
- data/app/commands/decidim/admin/destroy_share_token.rb +1 -1
- data/app/commands/decidim/admin/destroy_static_page.rb +1 -1
- data/app/commands/decidim/admin/destroy_static_page_topic.rb +1 -1
- data/app/commands/decidim/admin/hide_resource.rb +2 -2
- data/app/commands/decidim/admin/impersonate_user.rb +1 -1
- data/app/commands/decidim/admin/invite_admin.rb +1 -1
- data/app/commands/decidim/admin/officialize_user.rb +1 -1
- data/app/commands/decidim/admin/process_participatory_space_private_user_import_csv.rb +7 -3
- data/app/commands/decidim/admin/process_user_group_verification_csv.rb +8 -4
- data/app/commands/decidim/admin/promote_managed_user.rb +1 -1
- data/app/commands/decidim/admin/publish_component.rb +1 -1
- data/app/commands/decidim/admin/reject_user_group.rb +1 -1
- data/app/commands/decidim/admin/remove_admin.rb +1 -1
- data/app/commands/decidim/admin/reorder_content_blocks.rb +1 -1
- data/app/commands/decidim/admin/transfer_user.rb +1 -1
- data/app/commands/decidim/admin/unblock_user.rb +2 -2
- data/app/commands/decidim/admin/unhide_resource.rb +1 -1
- data/app/commands/decidim/admin/unofficialize_user.rb +1 -1
- data/app/commands/decidim/admin/unpublish_component.rb +1 -1
- data/app/commands/decidim/admin/unreport_resource.rb +1 -1
- data/app/commands/decidim/admin/unreport_user.rb +1 -1
- data/app/commands/decidim/admin/update_area.rb +1 -1
- data/app/commands/decidim/admin/update_area_type.rb +8 -3
- data/app/commands/decidim/admin/update_attachment.rb +4 -3
- data/app/commands/decidim/admin/update_attachment_collection.rb +8 -3
- data/app/commands/decidim/admin/update_category.rb +9 -5
- data/app/commands/decidim/admin/update_component.rb +8 -5
- data/app/commands/decidim/admin/update_component_permissions.rb +9 -6
- data/app/commands/decidim/admin/update_content_block.rb +1 -1
- data/app/commands/decidim/admin/update_external_domain_whitelist.rb +6 -3
- data/app/commands/decidim/admin/update_help_sections.rb +17 -3
- data/app/commands/decidim/admin/update_newsletter.rb +1 -1
- data/app/commands/decidim/admin/update_organization.rb +1 -1
- data/app/commands/decidim/admin/update_organization_appearance.rb +1 -1
- data/app/commands/decidim/admin/update_organization_tos_version.rb +1 -1
- data/app/commands/decidim/admin/update_resource_permissions.rb +2 -2
- data/app/commands/decidim/admin/update_scope.rb +1 -1
- data/app/commands/decidim/admin/update_scope_type.rb +8 -3
- data/app/commands/decidim/admin/update_static_page.rb +1 -1
- data/app/commands/decidim/admin/update_static_page_topic.rb +1 -1
- data/app/commands/decidim/admin/update_user_groups.rb +1 -1
- data/app/commands/decidim/admin/verify_user_group.rb +1 -1
- data/app/controllers/concerns/decidim/admin/filterable.rb +1 -1
- data/app/controllers/concerns/decidim/admin/participatory_space_export.rb +3 -1
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- data/app/controllers/decidim/admin/area_types_controller.rb +6 -3
- data/app/controllers/decidim/admin/block_user_controller.rb +3 -3
- data/app/controllers/decidim/admin/categories_controller.rb +3 -3
- data/app/controllers/decidim/admin/component_permissions_controller.rb +1 -1
- data/app/controllers/decidim/admin/components/base_controller.rb +1 -0
- data/app/controllers/decidim/admin/components_controller.rb +1 -1
- data/app/controllers/decidim/admin/concerns/has_attachment_collections.rb +6 -3
- data/app/controllers/decidim/admin/concerns/has_attachments.rb +6 -3
- data/app/controllers/decidim/admin/concerns/has_private_users_csv_import.rb +7 -0
- data/app/controllers/decidim/admin/dashboard_controller.rb +4 -3
- data/app/controllers/decidim/admin/exports_controller.rb +4 -1
- data/app/controllers/decidim/admin/help_sections_controller.rb +1 -1
- data/app/controllers/decidim/admin/metrics_controller.rb +2 -1
- data/app/controllers/decidim/admin/moderations_controller.rb +9 -7
- data/app/controllers/decidim/admin/newsletter_templates_controller.rb +1 -1
- data/app/controllers/decidim/admin/newsletters_controller.rb +1 -1
- data/app/controllers/decidim/admin/organization_controller.rb +3 -4
- data/app/controllers/decidim/admin/organization_external_domain_whitelist_controller.rb +1 -1
- data/app/controllers/decidim/admin/reminders_controller.rb +61 -0
- data/app/controllers/decidim/admin/resource_permissions_controller.rb +3 -3
- data/app/controllers/decidim/admin/scope_types_controller.rb +6 -3
- data/app/controllers/decidim/admin/static_pages_controller.rb +1 -7
- data/app/forms/decidim/admin/block_user_form.rb +2 -2
- data/app/forms/decidim/admin/category_form.rb +1 -2
- data/app/forms/decidim/admin/component_form.rb +16 -7
- data/app/forms/decidim/admin/import_example_form.rb +1 -5
- data/app/forms/decidim/admin/import_form.rb +7 -10
- data/app/forms/decidim/admin/managed_user_promotion_form.rb +1 -1
- data/app/forms/decidim/admin/participatory_space_private_user_csv_import_form.rb +7 -4
- data/app/forms/decidim/admin/permission_form.rb +9 -8
- data/app/forms/decidim/admin/permissions_form.rb +1 -10
- data/app/forms/decidim/admin/user_group_csv_verification_form.rb +2 -2
- data/app/helpers/decidim/admin/bulk_actions_helper.rb +6 -5
- data/app/helpers/decidim/admin/moderations/reports_helper.rb +11 -2
- data/app/helpers/decidim/admin/reminders_helper.rb +12 -0
- data/app/helpers/decidim/admin/settings_helper.rb +11 -57
- data/app/models/decidim/admin/fake_newsletter.rb +0 -20
- data/app/packs/entrypoints/decidim_admin.js +3 -6
- data/app/packs/src/decidim/admin/admin_autocomplete.js +82 -0
- data/app/packs/src/decidim/admin/application.js +0 -16
- data/app/packs/src/decidim/admin/choose_language.js +9 -11
- data/app/packs/src/decidim/admin/dynamic_fields.component.js +0 -1
- data/app/packs/stylesheets/decidim/admin/_decidim.scss +0 -1
- data/app/packs/stylesheets/decidim/admin/modules/_autocomplete.scss +5 -0
- data/app/packs/stylesheets/decidim/admin/modules/_forms.scss +0 -6
- data/app/packs/stylesheets/decidim/admin/modules/_import_result.scss +10 -0
- data/app/packs/stylesheets/decidim/admin/modules/_modules.scss +3 -0
- data/app/packs/stylesheets/decidim/admin/modules/_upload_modal.scss +42 -0
- data/app/permissions/decidim/admin/permissions.rb +3 -32
- data/app/presenters/decidim/admin/dashboard_metric_charts_presenter.rb +3 -1
- data/app/queries/decidim/admin/active_users_counter.rb +1 -1
- data/app/queries/decidim/admin/newsletter_recipients.rb +2 -2
- data/app/queries/decidim/admin/user_filter.rb +1 -1
- data/app/queries/decidim/admin/user_groups_evaluation.rb +1 -1
- data/app/views/decidim/admin/attachments/index.html.erb +1 -0
- data/app/views/decidim/admin/categories/_form.html.erb +0 -4
- data/app/views/decidim/admin/categories/show.html.erb +1 -2
- data/app/views/decidim/admin/dashboard/show.html.erb +1 -1
- data/app/views/decidim/admin/imports/new.html.erb +1 -1
- data/app/views/decidim/admin/moderated_users/index.html.erb +1 -1
- data/app/views/decidim/admin/moderations/index.html.erb +4 -8
- data/app/views/decidim/admin/moderations/reports/index.html.erb +1 -5
- data/app/views/decidim/admin/organization_appearance/form/_images.html.erb +5 -4
- 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 +20 -1
- data/app/views/decidim/admin/reminders/new.html.erb +21 -0
- data/app/views/decidim/admin/resource_permissions/edit.html.erb +1 -1
- data/app/views/decidim/admin/shared/_gallery.html.erb +6 -1
- data/app/views/decidim/admin/shared/_js-callout.html.erb +6 -0
- data/app/views/decidim/admin/users_statistics/_users_count.html.erb +2 -2
- data/app/views/layouts/decidim/admin/_application.html.erb +2 -0
- data/config/locales/am-ET.yml +1 -0
- data/config/locales/ar.yml +28 -21
- data/config/locales/bg.yml +1 -0
- data/config/locales/ca.yml +27 -21
- data/config/locales/cs.yml +41 -33
- data/config/locales/da.yml +1 -0
- data/config/locales/de.yml +23 -18
- data/config/locales/el.yml +2 -5
- data/config/locales/en.yml +22 -17
- data/config/locales/eo.yml +1 -0
- data/config/locales/es-MX.yml +25 -19
- data/config/locales/es-PY.yml +25 -19
- data/config/locales/es.yml +27 -21
- data/config/locales/et.yml +1 -0
- data/config/locales/eu.yml +12 -35
- data/config/locales/fi-plain.yml +26 -20
- data/config/locales/fi.yml +28 -22
- data/config/locales/fr-CA.yml +25 -19
- data/config/locales/fr.yml +39 -33
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/gl.yml +17 -4
- data/config/locales/hr.yml +1 -0
- data/config/locales/hu.yml +16 -188
- data/config/locales/id-ID.yml +2 -7
- data/config/locales/is-IS.yml +3 -8
- data/config/locales/it.yml +8 -6
- data/config/locales/ja.yml +23 -18
- data/config/locales/ko.yml +1 -0
- data/config/locales/lb.yml +2 -5
- data/config/locales/lt.yml +13 -141
- data/config/locales/lv.yml +2 -4
- data/config/locales/mt.yml +1 -0
- data/config/locales/nl.yml +4 -67
- data/config/locales/no.yml +13 -10
- data/config/locales/om-ET.yml +1 -0
- data/config/locales/pl.yml +21 -6
- data/config/locales/pt-BR.yml +4 -7
- data/config/locales/pt.yml +2 -5
- data/config/locales/ro-RO.yml +12 -27
- data/config/locales/ru.yml +2 -7
- data/config/locales/si-LK.yml +1 -0
- data/config/locales/sk.yml +2 -4
- data/config/locales/sl.yml +1 -0
- data/config/locales/so-SO.yml +1 -0
- data/config/locales/sr-CS.yml +1 -10
- data/config/locales/sv.yml +24 -18
- data/config/locales/sw-KE.yml +1 -0
- data/config/locales/ti-ER.yml +1 -0
- data/config/locales/tr-TR.yml +2 -5
- data/config/locales/uk.yml +2 -6
- data/config/locales/val-ES.yml +1 -0
- data/config/locales/vi.yml +1 -0
- data/config/locales/zh-CN.yml +2 -4
- data/config/locales/zh-TW.yml +1 -0
- data/lib/decidim/admin/engine.rb +1 -12
- data/lib/decidim/admin/import/importer.rb +9 -7
- data/lib/decidim/admin/import/readers/json.rb +1 -1
- data/lib/decidim/admin/test/commands/create_attachment_collection_examples.rb +15 -2
- data/lib/decidim/admin/test/commands/create_category_examples.rb +16 -6
- data/lib/decidim/admin/test/commands/destroy_category_examples.rb +29 -1
- data/lib/decidim/admin/test/commands/update_attachment_collection_examples.rb +15 -2
- data/lib/decidim/admin/test/commands/update_category_examples.rb +16 -6
- data/lib/decidim/admin/test/filters_participatory_space_user_roles_examples.rb +4 -4
- data/lib/decidim/admin/test/filters_participatory_space_users_examples.rb +4 -4
- data/lib/decidim/admin/test/forms/category_form_examples.rb +1 -21
- data/lib/decidim/admin/test/manage_attachments_examples.rb +9 -2
- data/lib/decidim/admin/test/manage_categories_examples.rb +0 -10
- data/lib/decidim/admin/test/manage_component_permissions_examples.rb +0 -2
- data/lib/decidim/admin/test/manage_moderations_examples.rb +27 -79
- data/lib/decidim/admin/version.rb +1 -1
- metadata +22 -19
- data/app/packs/src/decidim/admin/autocomplete.component.js +0 -146
- data/app/packs/src/decidim/admin/autocomplete.component.test.js +0 -19
- data/app/packs/stylesheets/decidim/admin/components/_autocomplete_select.component.scss +0 -19
- data/config/locales/gn-PY.yml +0 -1
- data/config/locales/ka-GE.yml +0 -1
- data/config/locales/lo-LA.yml +0 -1
- data/config/locales/oc-FR.yml +0 -1
data/config/locales/nl.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
nl:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -45,7 +46,7 @@ nl:
|
|
|
45
46
|
enable_omnipresent_banner: Toon permanente header
|
|
46
47
|
enable_participatory_space_filters: Schakel filters in voor de participatieve ruimte
|
|
47
48
|
facebook_handler: Facebook naam
|
|
48
|
-
favicon:
|
|
49
|
+
favicon: Pictogram
|
|
49
50
|
force_authentication: Verplicht aanmelden
|
|
50
51
|
force_users_to_authenticate_before_access_organization: Verplicht gebruikers om zich aan te melden voor toegang tot de organisatie
|
|
51
52
|
from: E-mailadres afzender
|
|
@@ -63,9 +64,6 @@ nl:
|
|
|
63
64
|
host: Host
|
|
64
65
|
instagram_handler: Instagram gebruikersnaam
|
|
65
66
|
logo: Logo
|
|
66
|
-
machine_translation_display_priority: Voorrang weergave machinevertaling
|
|
67
|
-
machine_translation_display_priority_original: Oorspronkelijke tekst eerst
|
|
68
|
-
machine_translation_display_priority_translation: Vertaalde tekst eerst
|
|
69
67
|
name: Naam
|
|
70
68
|
official_img_footer: Officieel logo voettekst
|
|
71
69
|
official_img_header: Officieel logo header
|
|
@@ -103,8 +101,6 @@ nl:
|
|
|
103
101
|
name: Naam
|
|
104
102
|
organization: Organisatie
|
|
105
103
|
plural: Meervoud
|
|
106
|
-
settings:
|
|
107
|
-
scope_id: Scope
|
|
108
104
|
static_page:
|
|
109
105
|
allow_public_access: Toegang zonder authenticatie toestaan
|
|
110
106
|
changed_notably: Er zijn merkbare veranderingen geweest.
|
|
@@ -123,10 +119,6 @@ nl:
|
|
|
123
119
|
file: Bestand
|
|
124
120
|
errors:
|
|
125
121
|
models:
|
|
126
|
-
newsletter:
|
|
127
|
-
attributes:
|
|
128
|
-
base:
|
|
129
|
-
at_least_one_space: Selecteer minstens één participatieve ruimte
|
|
130
122
|
organization:
|
|
131
123
|
attributes:
|
|
132
124
|
official_img_footer:
|
|
@@ -175,15 +167,13 @@ nl:
|
|
|
175
167
|
per_page: Per pagina
|
|
176
168
|
permissions: Permissies
|
|
177
169
|
reject: Weigeren
|
|
178
|
-
share: Deel
|
|
179
|
-
user:
|
|
180
|
-
new: Nieuwe gebruiker
|
|
181
170
|
verify: Verifiëren
|
|
182
171
|
admin_terms_of_use:
|
|
183
172
|
accept:
|
|
184
173
|
error: Er is een fout opgetreden bij het accepteren van de admin gebruiksvoorwaarden.
|
|
185
174
|
success: Geweldig! Je hebt de admin gebruiksvoorwaarden geaccepteerd.
|
|
186
175
|
actions:
|
|
176
|
+
accept: Ik ga akkoord met de volgende voorwaarden
|
|
187
177
|
are_you_sure: Weet je zeker dat je de Admin gebruiksvoorwaarden wil resetten?
|
|
188
178
|
refuse: Weiger de admin gebruiksvoorwaarden
|
|
189
179
|
title: Ga akkoord met de gebruiksvoorwaarden
|
|
@@ -324,24 +314,10 @@ nl:
|
|
|
324
314
|
error: Er is een fout opgetreden bij het bijwerken van dit onderdeel.
|
|
325
315
|
success: Het onderdeel is met succes bijgewerkt.
|
|
326
316
|
conflicts:
|
|
327
|
-
attempts: Pogingen
|
|
328
|
-
'false': 'Nee'
|
|
329
|
-
managed_user_name: Beheerde gebruiker
|
|
330
|
-
solved: Opgelost
|
|
331
317
|
title: Controle conflicten
|
|
332
|
-
transfer:
|
|
333
|
-
email: E-mail
|
|
334
|
-
error: Er is een probleem opgetreden bij het overbrengen van de huidige deelnemer naar een beheerde deelnemer.
|
|
335
|
-
name: Naam
|
|
336
|
-
reason: Reden
|
|
337
|
-
success: De overdracht is met succes voltooid.
|
|
338
|
-
title: Overdracht
|
|
339
|
-
'true': 'Ja'
|
|
340
|
-
user_name: Gebruiker
|
|
341
318
|
dashboard:
|
|
342
319
|
show:
|
|
343
320
|
view_more_logs: Bekijk meer logs
|
|
344
|
-
welcome: Welkom bij het Decidim Admin Panel.
|
|
345
321
|
domain_whitelist:
|
|
346
322
|
form:
|
|
347
323
|
domain_too_short: Domein te kort
|
|
@@ -529,10 +505,8 @@ nl:
|
|
|
529
505
|
help_sections: Helpsecties
|
|
530
506
|
homepage: Startpagina
|
|
531
507
|
impersonations: Zich voordoen als
|
|
532
|
-
moderation: Algemene moderatie
|
|
533
508
|
newsletters: Nieuwsbrieven
|
|
534
509
|
participants: Deelnemers
|
|
535
|
-
reported_users: Gerapporteerde gebruikers
|
|
536
510
|
scope_types: Scope types
|
|
537
511
|
scopes: Scopes
|
|
538
512
|
settings: Instellingen
|
|
@@ -588,14 +562,6 @@ nl:
|
|
|
588
562
|
fields:
|
|
589
563
|
name: Naam
|
|
590
564
|
plural: Meervoud
|
|
591
|
-
share_token:
|
|
592
|
-
fields:
|
|
593
|
-
created_at: Aangemaakt op
|
|
594
|
-
expires_at: Vervalt op
|
|
595
|
-
last_used_at: Laatste keer gebruikt
|
|
596
|
-
times_used: Aantal keren gebruikt
|
|
597
|
-
token: Token
|
|
598
|
-
user: Aangemaakt door
|
|
599
565
|
static_page:
|
|
600
566
|
fields:
|
|
601
567
|
created_at: Aangemaakt op
|
|
@@ -621,25 +587,8 @@ nl:
|
|
|
621
587
|
state: Staat
|
|
622
588
|
users_count: Aantal deelnemers
|
|
623
589
|
moderated_users:
|
|
624
|
-
index:
|
|
625
|
-
actions:
|
|
626
|
-
block: Gebruiker blokkeren
|
|
627
|
-
title: Acties
|
|
628
|
-
unblock: Deblokkeer gebruiker
|
|
629
|
-
unreport: Niet langer rapporteren
|
|
630
|
-
name: Naam
|
|
631
|
-
nickname: Bijnaam
|
|
632
|
-
reason: Reden
|
|
633
|
-
reports: Aantal rapporteringen
|
|
634
|
-
title: Gerapporteerde gebruikers weergeven
|
|
635
|
-
report:
|
|
636
|
-
reasons:
|
|
637
|
-
does_not_belong: Hoort niet bij
|
|
638
|
-
offensive: Beledigend
|
|
639
|
-
spam: Spam
|
|
640
590
|
tabs:
|
|
641
591
|
blocked: Geblokkeerd
|
|
642
|
-
unblocked: Niet geblokkeerd
|
|
643
592
|
moderations:
|
|
644
593
|
index:
|
|
645
594
|
title: Moderaties
|
|
@@ -746,7 +695,6 @@ nl:
|
|
|
746
695
|
officialize: "Valideren\n"
|
|
747
696
|
officialized: Gevalideerd
|
|
748
697
|
reofficialize: Hervalideren
|
|
749
|
-
reports: Rapporten
|
|
750
698
|
show_email: Toon e-mailadres
|
|
751
699
|
status: status
|
|
752
700
|
unblock: Deblokkeer gebruiker
|
|
@@ -834,7 +782,6 @@ nl:
|
|
|
834
782
|
invalid: Er is een fout opgetreden bij het lezen van het CSV-bestand.
|
|
835
783
|
success: Het CSV-bestand is succesvol geüploaded. We sturen een uitnodigingsmail naar de deelnemers. Dit kan even duren.
|
|
836
784
|
new:
|
|
837
|
-
explanation: 'Upload het CSV-bestand zonder headers. Het moet uit twee kolommen bestaan, met het e-mailadres in de eerste kolom en de naam in de laatste kolom van de gebruikers die je wil toevoegen aan de participatieve ruimte (e-mail, naam). Vermijd tekens als `<>?%&^*#@()[]=+:;"{}\|` in de namen.'
|
|
838
785
|
title: Upload het CSV-bestand
|
|
839
786
|
upload: Upload
|
|
840
787
|
resource_permissions:
|
|
@@ -885,11 +832,6 @@ nl:
|
|
|
885
832
|
share: Deel
|
|
886
833
|
destroy:
|
|
887
834
|
error: Er is een fout opgetreden bij het vernietigen van de token.
|
|
888
|
-
success: Token met succes verwijderd.
|
|
889
|
-
share_tokens:
|
|
890
|
-
empty: Er zijn geen actieve tokens
|
|
891
|
-
help: Deze tokens worden gebruikt om deze niet-gepubliceerde bron openbaar te delen met alle gebruikers. Ze worden verborgen wanneer de bron is gepubliceerd. Klik op het pictogram “delen” van het token om de deelbare URL te bezoeken.
|
|
892
|
-
title: Tokens delen
|
|
893
835
|
shared:
|
|
894
836
|
gallery:
|
|
895
837
|
add_images: Afbeeldingen toevoegen
|
|
@@ -947,14 +889,12 @@ nl:
|
|
|
947
889
|
impersonatable_users: Beheersbare deelnemers
|
|
948
890
|
impersonations: Beheer van deelnemers
|
|
949
891
|
metrics: Cijfers
|
|
950
|
-
panel: Admin
|
|
951
892
|
participants: Deelnemers
|
|
952
893
|
scope_types: Scope types
|
|
953
894
|
scopes: Scopes
|
|
954
895
|
static_pages: Pagina's
|
|
955
896
|
statistics: Activiteit
|
|
956
897
|
user_groups: groepen
|
|
957
|
-
users: Deelnemers
|
|
958
898
|
user_group:
|
|
959
899
|
csv_verify:
|
|
960
900
|
invalid: Er is een fout opgetreden bij het lezen van het CSV-bestand.
|
|
@@ -990,7 +930,6 @@ nl:
|
|
|
990
930
|
role: Rol
|
|
991
931
|
new:
|
|
992
932
|
create: Nodig uit
|
|
993
|
-
title: Nodig deelnemer uit als beheerder
|
|
994
933
|
users_statistics:
|
|
995
934
|
users_count:
|
|
996
935
|
admins: Admins
|
|
@@ -1007,7 +946,6 @@ nl:
|
|
|
1007
946
|
metrics:
|
|
1008
947
|
blocked_users:
|
|
1009
948
|
object: geblokkeerde gebruikers
|
|
1010
|
-
title: Geblokkeerde gebruikers
|
|
1011
949
|
reported_users:
|
|
1012
950
|
object: gerapporteerde gebruikers
|
|
1013
951
|
title: Gerapporteerde gebruikers
|
|
@@ -1041,10 +979,9 @@ nl:
|
|
|
1041
979
|
hidden_at: Verborgen op
|
|
1042
980
|
participatory_space: Participatieve ruimte
|
|
1043
981
|
report_count: Aantal
|
|
1044
|
-
reportable_id: ID
|
|
1045
982
|
reportable_type: Type
|
|
1046
983
|
reported_content_url: Gerapporteerde inhouds-URL
|
|
1047
|
-
reports:
|
|
984
|
+
reports: Meldingen
|
|
1048
985
|
visit_url: Bezoek URL
|
|
1049
986
|
report:
|
|
1050
987
|
fields:
|
data/config/locales/no.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
"no":
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -123,10 +124,6 @@
|
|
|
123
124
|
file: Fil
|
|
124
125
|
errors:
|
|
125
126
|
models:
|
|
126
|
-
newsletter:
|
|
127
|
-
attributes:
|
|
128
|
-
base:
|
|
129
|
-
at_least_one_space: Velg minst et rom
|
|
130
127
|
organization:
|
|
131
128
|
attributes:
|
|
132
129
|
official_img_footer:
|
|
@@ -176,14 +173,13 @@
|
|
|
176
173
|
permissions: Tillatelser
|
|
177
174
|
reject: Avvis
|
|
178
175
|
share: Del
|
|
179
|
-
user:
|
|
180
|
-
new: Ny bruker
|
|
181
176
|
verify: Verifiser
|
|
182
177
|
admin_terms_of_use:
|
|
183
178
|
accept:
|
|
184
179
|
error: Det oppstod et problem med å godkjenne administrator vilkårene.
|
|
185
180
|
success: Flott! Du har godtatt administratorenes vilkår for bruk.
|
|
186
181
|
actions:
|
|
182
|
+
accept: Jeg godtar følgende vilkår
|
|
187
183
|
are_you_sure: Er du sikker på at du vil avslå administratorvilkårene for bruk?
|
|
188
184
|
refuse: Avslå administratorvilkårene
|
|
189
185
|
title: Godta vilkårene for bruk
|
|
@@ -259,6 +255,8 @@
|
|
|
259
255
|
update:
|
|
260
256
|
error: Det oppsto et problem med å oppdatere dette vedlegget.
|
|
261
257
|
success: Vedlegg ble oppdatert.
|
|
258
|
+
attachments_privacy_warning:
|
|
259
|
+
message: Vær forsiktig når du arbeider med vedlegg i et privat rom. Alle deltakere kan dele dette dokumentet med andre.
|
|
262
260
|
autocomplete:
|
|
263
261
|
no_results: Ingen resultat funnet
|
|
264
262
|
search_prompt: Skriv minst tre tegn for å søke
|
|
@@ -341,7 +339,6 @@
|
|
|
341
339
|
dashboard:
|
|
342
340
|
show:
|
|
343
341
|
view_more_logs: Vis flere logger
|
|
344
|
-
welcome: Velkommen til Decidim administrator Panel.
|
|
345
342
|
domain_whitelist:
|
|
346
343
|
form:
|
|
347
344
|
domain_too_short: Domene er for kort
|
|
@@ -837,6 +834,14 @@
|
|
|
837
834
|
explanation: 'Last opp din CSV-fil. Det må være to kolonner uten overskrifter, e-post i den første kolonnen og navn i den siste kolonnen (e-post, navn) til brukerne du vil legge til i det deltakende rommet. Unngå å bruke ugyldige tegn som `<>?%&^*#@()[]=+:;"{}\″` med brukernavn.'
|
|
838
835
|
title: Last opp din CSV fil
|
|
839
836
|
upload: Last opp
|
|
837
|
+
reminders:
|
|
838
|
+
create:
|
|
839
|
+
error: Det oppsto et problem med å opprette påminnelser.
|
|
840
|
+
success:
|
|
841
|
+
one: "%{count} bruker vil bli påminnet."
|
|
842
|
+
other: "%{count} brukere vil bli påminnet."
|
|
843
|
+
new:
|
|
844
|
+
submit: Send
|
|
840
845
|
resource_permissions:
|
|
841
846
|
edit:
|
|
842
847
|
submit: Send inn
|
|
@@ -894,6 +899,7 @@
|
|
|
894
899
|
gallery:
|
|
895
900
|
add_images: Legg til bilder
|
|
896
901
|
delete_image: Slett bilde
|
|
902
|
+
edit_images: Rediger bilder
|
|
897
903
|
gallery_legend: Legg til et bildegalleri (valgfritt)
|
|
898
904
|
static_page_topics:
|
|
899
905
|
create:
|
|
@@ -954,7 +960,6 @@
|
|
|
954
960
|
static_pages: Sider
|
|
955
961
|
statistics: Aktivitet
|
|
956
962
|
user_groups: Grupper
|
|
957
|
-
users: Deltakere
|
|
958
963
|
user_group:
|
|
959
964
|
csv_verify:
|
|
960
965
|
invalid: Det oppstod et problem med å lese CSV-filen.
|
|
@@ -990,7 +995,6 @@
|
|
|
990
995
|
role: Rolle
|
|
991
996
|
new:
|
|
992
997
|
create: Inviter
|
|
993
|
-
title: Inviter deltaker som administrator
|
|
994
998
|
users_statistics:
|
|
995
999
|
users_count:
|
|
996
1000
|
admins: Adminer
|
|
@@ -1041,7 +1045,6 @@
|
|
|
1041
1045
|
hidden_at: Skjult på
|
|
1042
1046
|
participatory_space: Deltakerrom
|
|
1043
1047
|
report_count: Antall
|
|
1044
|
-
reportable_id: ID
|
|
1045
1048
|
reportable_type: Type
|
|
1046
1049
|
reported_content_url: Rapportert innholds URL
|
|
1047
1050
|
reports: Rapporter
|
data/config/locales/om-ET.yml
CHANGED
data/config/locales/pl.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
pl:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -184,6 +185,7 @@ pl:
|
|
|
184
185
|
error: Wystąpił błąd podczas akceptowania warunków użytkowania dla administratorów.
|
|
185
186
|
success: Świetnie! Zaakceptowano warunki użytkowania dla administratorów.
|
|
186
187
|
actions:
|
|
188
|
+
accept: Zgadzam się z warunkami użytkowania
|
|
187
189
|
are_you_sure: Czy na pewno nie wyrażasz zgody na warunki użytkowania dla administratorów?
|
|
188
190
|
refuse: Nie akceptuję warunków dla administratorów
|
|
189
191
|
title: Akceptuję warunki użytkowania
|
|
@@ -340,7 +342,7 @@ pl:
|
|
|
340
342
|
dashboard:
|
|
341
343
|
show:
|
|
342
344
|
view_more_logs: Zobacz więcej logów
|
|
343
|
-
welcome: Witamy w
|
|
345
|
+
welcome: Witamy w Panelu Administracyjnym.
|
|
344
346
|
domain_whitelist:
|
|
345
347
|
form:
|
|
346
348
|
domain_too_short: Domena jest zbyt krótka
|
|
@@ -611,7 +613,7 @@ pl:
|
|
|
611
613
|
fields:
|
|
612
614
|
created_at: Data utworzenia
|
|
613
615
|
email: E-mail
|
|
614
|
-
last_sign_in_at:
|
|
616
|
+
last_sign_in_at: Ostatni dzień rejestracji
|
|
615
617
|
name: Imię
|
|
616
618
|
role: Rola
|
|
617
619
|
roles:
|
|
@@ -841,9 +843,22 @@ pl:
|
|
|
841
843
|
invalid: Wystąpił błąd podczas odczytu pliku CSV.
|
|
842
844
|
success: Plik CSV został pomyślnie wgrany, wysyłamy e-mail z zaproszeniem do uczestników. To może zająć chwilę.
|
|
843
845
|
new:
|
|
846
|
+
destroy:
|
|
847
|
+
button: Usuń wszystkich prywatnych uczestników
|
|
848
|
+
title: Usuń prywatnych uczestników
|
|
844
849
|
explanation: 'Prześlij swój plik CSV. Plik musi składać się z dwóch kolumn: w pierwszej kolumnie adresy e-mail, w drugiej kolumnie imiona (adres e-mail, imię) użytkowników, których chcesz dodać do przestrzeni partycypacyjnej; bez nagłówków. Unikaj używania niepoprawnych znaków takich jak `<>?%&^*#@()[]=+:;"{}\|` w imieniu użytkownika.'
|
|
845
850
|
title: Prześlij swój plik CSV
|
|
846
851
|
upload: Prześlij
|
|
852
|
+
reminders:
|
|
853
|
+
create:
|
|
854
|
+
error: Wystąpił błąd podczas tworzenia przypomnień.
|
|
855
|
+
success:
|
|
856
|
+
one: "%{count} użytkownik otrzyma przypomnienie."
|
|
857
|
+
few: "%{count} użytkowników otrzyma przypomnienie."
|
|
858
|
+
many: "%{count} użytkowników otrzyma przypomnienie."
|
|
859
|
+
other: "%{count} użytkowników otrzyma przypomnienie."
|
|
860
|
+
new:
|
|
861
|
+
submit: Wyślij
|
|
847
862
|
resource_permissions:
|
|
848
863
|
edit:
|
|
849
864
|
submit: Zatwierdź
|
|
@@ -901,6 +916,7 @@ pl:
|
|
|
901
916
|
gallery:
|
|
902
917
|
add_images: Dodaj obrazy
|
|
903
918
|
delete_image: Usuń obraz
|
|
919
|
+
edit_images: Edytuj obrazy
|
|
904
920
|
gallery_legend: Dodaj galerię obrazów (opcjonalnie)
|
|
905
921
|
static_page_topics:
|
|
906
922
|
create:
|
|
@@ -930,7 +946,7 @@ pl:
|
|
|
930
946
|
title: Edytuj stronę
|
|
931
947
|
update: Aktualizuj
|
|
932
948
|
form:
|
|
933
|
-
none:
|
|
949
|
+
none: Żadna
|
|
934
950
|
slug_help: 'Wpisz tutaj tylko to, co ma znaleźć się na końcu po znaku „/”, a nie pełny adres URL. Można użyć liter, cyfr i myślników. Musi zaczynać się od litery. Przykład: %{url}'
|
|
935
951
|
index:
|
|
936
952
|
last_notable_change: Ostatnia istotna zmiana
|
|
@@ -961,7 +977,7 @@ pl:
|
|
|
961
977
|
static_pages: Strony
|
|
962
978
|
statistics: Aktywność
|
|
963
979
|
user_groups: Grupy użytkowników
|
|
964
|
-
users:
|
|
980
|
+
users: Administratorzy
|
|
965
981
|
user_group:
|
|
966
982
|
csv_verify:
|
|
967
983
|
invalid: Wystąpił błąd podczas odczytu pliku CSV.
|
|
@@ -997,7 +1013,7 @@ pl:
|
|
|
997
1013
|
role: Rola
|
|
998
1014
|
new:
|
|
999
1015
|
create: Zaproś
|
|
1000
|
-
title: Zaproś
|
|
1016
|
+
title: Zaproś nowego administratora
|
|
1001
1017
|
users_statistics:
|
|
1002
1018
|
users_count:
|
|
1003
1019
|
admins: Administratorzy
|
|
@@ -1045,7 +1061,6 @@ pl:
|
|
|
1045
1061
|
moderation:
|
|
1046
1062
|
fields:
|
|
1047
1063
|
created_at: Data utworzenia
|
|
1048
|
-
deleted_resource: Usunięty zasób
|
|
1049
1064
|
hidden_at: Ukryto
|
|
1050
1065
|
participatory_space: Przestrzeń partycypacyjna
|
|
1051
1066
|
report_count: Liczba
|
data/config/locales/pt-BR.yml
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
---
|
|
2
|
+
pt:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
4
5
|
area:
|
|
@@ -170,14 +171,13 @@ pt-BR:
|
|
|
170
171
|
permissions: Permissões
|
|
171
172
|
reject: Negar
|
|
172
173
|
share: Compartilhar
|
|
173
|
-
user:
|
|
174
|
-
new: Novo usuário
|
|
175
174
|
verify: Verificar
|
|
176
175
|
admin_terms_of_use:
|
|
177
176
|
accept:
|
|
178
177
|
error: Ocorreu um erro ao aceitar os termos de uso do administrador.
|
|
179
178
|
success: Ótimo! Você aceitou os termos de uso do administrador.
|
|
180
179
|
actions:
|
|
180
|
+
accept: Concordo com os seguintes termos
|
|
181
181
|
refuse: Recusar os termos do admin
|
|
182
182
|
title: Concorde com os termos e condições de uso
|
|
183
183
|
required_review:
|
|
@@ -330,7 +330,6 @@ pt-BR:
|
|
|
330
330
|
dashboard:
|
|
331
331
|
show:
|
|
332
332
|
view_more_logs: Ver mais registros
|
|
333
|
-
welcome: Bem-vindo ao Decidim Admin Panel.
|
|
334
333
|
domain_whitelist:
|
|
335
334
|
form:
|
|
336
335
|
domain_too_short: Domínio muito curto
|
|
@@ -898,7 +897,6 @@ pt-BR:
|
|
|
898
897
|
static_pages: Páginas
|
|
899
898
|
statistics: Atividade
|
|
900
899
|
user_groups: Grupos de usuários
|
|
901
|
-
users: Participantes
|
|
902
900
|
user_group:
|
|
903
901
|
csv_verify:
|
|
904
902
|
invalid: Ocorreu um erro ao ler o arquivo CSV.
|
|
@@ -934,7 +932,6 @@ pt-BR:
|
|
|
934
932
|
role: Cargo
|
|
935
933
|
new:
|
|
936
934
|
create: Convite
|
|
937
|
-
title: Convide o usuário como administrador
|
|
938
935
|
users_statistics:
|
|
939
936
|
users_count:
|
|
940
937
|
admins: Admins
|
|
@@ -997,7 +994,7 @@ pt-BR:
|
|
|
997
994
|
decidim:
|
|
998
995
|
admin:
|
|
999
996
|
global_moderations:
|
|
1000
|
-
title:
|
|
997
|
+
title: Moderações globais
|
|
1001
998
|
newsletters:
|
|
1002
999
|
title: Boletins informativos
|
|
1003
1000
|
settings:
|
data/config/locales/pt.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
pt:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -171,14 +172,13 @@ pt:
|
|
|
171
172
|
permissions: Permissões
|
|
172
173
|
reject: Rejeitar
|
|
173
174
|
share: Partilhar
|
|
174
|
-
user:
|
|
175
|
-
new: Novo utilizador
|
|
176
175
|
verify: Verificar
|
|
177
176
|
admin_terms_of_use:
|
|
178
177
|
accept:
|
|
179
178
|
error: Ocorreu um erro ao aceitar os termos de utilização de administrador.
|
|
180
179
|
success: Excelente! Aceitou os termos de utilização de administrador.
|
|
181
180
|
actions:
|
|
181
|
+
accept: Concordo com os seguintes termos
|
|
182
182
|
are_you_sure: Tem a certeza que quer rejeitar os termos de utilização de administrador?
|
|
183
183
|
refuse: Recusar os termos de administrador
|
|
184
184
|
title: Concordar com os termos e condições de utilização
|
|
@@ -336,7 +336,6 @@ pt:
|
|
|
336
336
|
dashboard:
|
|
337
337
|
show:
|
|
338
338
|
view_more_logs: Ver mais registos
|
|
339
|
-
welcome: Bem-vindo ao Painel de Administração de Decidim.
|
|
340
339
|
domain_whitelist:
|
|
341
340
|
form:
|
|
342
341
|
domain_too_short: Domínio demasiado curto
|
|
@@ -913,7 +912,6 @@ pt:
|
|
|
913
912
|
static_pages: Páginas
|
|
914
913
|
statistics: Atividade
|
|
915
914
|
user_groups: Grupos
|
|
916
|
-
users: Participantes
|
|
917
915
|
user_group:
|
|
918
916
|
csv_verify:
|
|
919
917
|
invalid: Ocorreu um problema ao ler o ficheiro CSV.
|
|
@@ -949,7 +947,6 @@ pt:
|
|
|
949
947
|
role: Função
|
|
950
948
|
new:
|
|
951
949
|
create: Convidar
|
|
952
|
-
title: Convidar o(a) participante como administrador(a)
|
|
953
950
|
users_statistics:
|
|
954
951
|
users_count:
|
|
955
952
|
admins: Administradores
|
data/config/locales/ro-RO.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
ro:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -14,24 +15,17 @@ ro:
|
|
|
14
15
|
description: Descriere
|
|
15
16
|
file: Fişier
|
|
16
17
|
title: Numele fișierului sau al imaginii atașate
|
|
17
|
-
weight: Poziție
|
|
18
18
|
attachment_collection:
|
|
19
19
|
description: Descriere
|
|
20
20
|
name: Nume
|
|
21
|
-
weight: Poziție
|
|
22
21
|
category:
|
|
23
22
|
description: Descriere
|
|
24
23
|
name: Nume
|
|
25
24
|
parent_id: Categoria mamă
|
|
26
|
-
weight: Poziție
|
|
27
25
|
component:
|
|
28
26
|
name: Nume
|
|
29
27
|
published_at: Publicat în
|
|
30
|
-
weight:
|
|
31
|
-
external_domain:
|
|
32
|
-
value: Valoare
|
|
33
|
-
help_section:
|
|
34
|
-
content: Conținut
|
|
28
|
+
weight: Ordinea în poziționare
|
|
35
29
|
id: ID
|
|
36
30
|
import:
|
|
37
31
|
user_group_id: Creează importuri ca
|
|
@@ -99,9 +93,6 @@ ro:
|
|
|
99
93
|
welcome_notification_body: Conținutul notificării de bun venit
|
|
100
94
|
welcome_notification_subject: Subiectul notificării de bun venit
|
|
101
95
|
youtube_handler: Responsabil YouTube
|
|
102
|
-
participatory_space_private_user:
|
|
103
|
-
email: E-mail
|
|
104
|
-
name: Nume
|
|
105
96
|
scope:
|
|
106
97
|
code: Cod
|
|
107
98
|
name: Nume
|
|
@@ -123,21 +114,16 @@ ro:
|
|
|
123
114
|
show_in_footer: Afișează în subsol
|
|
124
115
|
slug: URL slug
|
|
125
116
|
title: Titlu
|
|
126
|
-
|
|
127
|
-
weight: Poziție
|
|
117
|
+
weight: Ordinea în poziționare
|
|
128
118
|
static_page_topic:
|
|
129
119
|
description: Descriere
|
|
130
120
|
show_in_footer: Afișează în subsol
|
|
131
121
|
title: Titlu
|
|
132
|
-
weight:
|
|
122
|
+
weight: Ordinea în poziționare
|
|
133
123
|
user_group_csv_verification:
|
|
134
124
|
file: Fişier
|
|
135
125
|
errors:
|
|
136
126
|
models:
|
|
137
|
-
newsletter:
|
|
138
|
-
attributes:
|
|
139
|
-
base:
|
|
140
|
-
at_least_one_space: Selectează cel puțin un spațiu participativ
|
|
141
127
|
organization:
|
|
142
128
|
attributes:
|
|
143
129
|
official_img_footer:
|
|
@@ -187,15 +173,13 @@ ro:
|
|
|
187
173
|
permissions: Drepturi
|
|
188
174
|
reject: Respinge
|
|
189
175
|
share: Distribuie
|
|
190
|
-
user:
|
|
191
|
-
new: Utilizator nou
|
|
192
176
|
verify: Verifică
|
|
193
177
|
admin_terms_of_use:
|
|
194
178
|
accept:
|
|
195
179
|
error: A apărut o eroare la acceptarea termenilor de utilizare ai administratorului.
|
|
196
180
|
success: Super! Ai acceptat termenii de utilizare ai administratorului.
|
|
197
181
|
actions:
|
|
198
|
-
accept: Sunt de acord cu
|
|
182
|
+
accept: Sunt de acord cu următorii termeni
|
|
199
183
|
are_you_sure: Sigur dorești să refuzi termenii de utilizare ai adiminstratorului?
|
|
200
184
|
refuse: Refuz termenii
|
|
201
185
|
title: Acceptă termenii și condițiile de utilizare
|
|
@@ -271,6 +255,8 @@ ro:
|
|
|
271
255
|
update:
|
|
272
256
|
error: A apărut o eroare la actualizarea acestui atașament.
|
|
273
257
|
success: Atașamentul a fost actualizat cu succes.
|
|
258
|
+
attachments_privacy_warning:
|
|
259
|
+
message: Fiți precaut atunci când lucrați cu atașamente într-un spațiu privat. Orice participant poate distribui acest document altora.
|
|
274
260
|
autocomplete:
|
|
275
261
|
no_results: Nu a fost găsit niciun rezultat
|
|
276
262
|
search_prompt: Tastați cel puțin trei caractere pentru a căuta
|
|
@@ -353,7 +339,7 @@ ro:
|
|
|
353
339
|
dashboard:
|
|
354
340
|
show:
|
|
355
341
|
view_more_logs: Afișează mai multe înregistrări
|
|
356
|
-
welcome: Bine ați venit în Panoul de administrare
|
|
342
|
+
welcome: Bine ați venit în Panoul de administrare.
|
|
357
343
|
domain_whitelist:
|
|
358
344
|
form:
|
|
359
345
|
domain_too_short: Domeniul e prea scurt
|
|
@@ -853,6 +839,9 @@ ro:
|
|
|
853
839
|
explanation: 'Încărcă fişierul tău CSV. Trebuie să aibă două coloane cu e-mail în prima coloană a fișierului și numele în ultima coloană (e-mail, numele) pentru utilizatorii pe care doriţi să îi adăugaţi în spaţiul participativ, fără antet. Evită folosirea caracterelor invalide, cum ar fi `<>?%&^*#@()[]=+:;"{}\<unk> ` în numele utilizatorului.'
|
|
854
840
|
title: Încarcă fișierul tău CSV
|
|
855
841
|
upload: Încarcă
|
|
842
|
+
reminders:
|
|
843
|
+
new:
|
|
844
|
+
submit: Trimite
|
|
856
845
|
resource_permissions:
|
|
857
846
|
edit:
|
|
858
847
|
submit: Trimite
|
|
@@ -970,7 +959,6 @@ ro:
|
|
|
970
959
|
static_pages: Pagini
|
|
971
960
|
statistics: Activitate
|
|
972
961
|
user_groups: Grupuri
|
|
973
|
-
users: Participanți
|
|
974
962
|
user_group:
|
|
975
963
|
csv_verify:
|
|
976
964
|
invalid: A apărut o problemă la citirea fișierului CSV.
|
|
@@ -1006,7 +994,6 @@ ro:
|
|
|
1006
994
|
role: Rol
|
|
1007
995
|
new:
|
|
1008
996
|
create: Invită
|
|
1009
|
-
title: Invită participantul ca administrator
|
|
1010
997
|
users_statistics:
|
|
1011
998
|
users_count:
|
|
1012
999
|
admins: Administratori
|
|
@@ -1054,11 +1041,9 @@ ro:
|
|
|
1054
1041
|
moderation:
|
|
1055
1042
|
fields:
|
|
1056
1043
|
created_at: Data creării
|
|
1057
|
-
deleted_resource: Resursă ștersă
|
|
1058
1044
|
hidden_at: Ascuns la
|
|
1059
1045
|
participatory_space: Spațiu participativ
|
|
1060
1046
|
report_count: Număr
|
|
1061
|
-
reportable_id: ID
|
|
1062
1047
|
reportable_type: Tip
|
|
1063
1048
|
reported_content_url: URL-ul conținutului raportat
|
|
1064
1049
|
reports: Rapoarte
|
|
@@ -1075,7 +1060,7 @@ ro:
|
|
|
1075
1060
|
decidim:
|
|
1076
1061
|
admin:
|
|
1077
1062
|
global_moderations:
|
|
1078
|
-
title:
|
|
1063
|
+
title: Moderare globală
|
|
1079
1064
|
newsletters:
|
|
1080
1065
|
title: Buletine informative
|
|
1081
1066
|
settings:
|
data/config/locales/ru.yml
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
---
|
|
1
2
|
ru:
|
|
2
3
|
activemodel:
|
|
3
4
|
attributes:
|
|
@@ -249,7 +250,6 @@ ru:
|
|
|
249
250
|
dashboard:
|
|
250
251
|
show:
|
|
251
252
|
view_more_logs: Просмотреть другие журналы
|
|
252
|
-
welcome: Добро пожаловать в админ-панель Десидим!
|
|
253
253
|
exports:
|
|
254
254
|
export_as: "%{name} как %{export_format}"
|
|
255
255
|
notice: Идет сохранение в виде файла. Вы получите электронное письмо, когда оно будет завершено.
|
|
@@ -501,9 +501,6 @@ ru:
|
|
|
501
501
|
edit:
|
|
502
502
|
active_content_blocks: Блоки действующего содержимого
|
|
503
503
|
inactive_content_blocks: Блоки недействующего содержимого
|
|
504
|
-
organization_homepage_content_blocks:
|
|
505
|
-
edit:
|
|
506
|
-
update: Обновить
|
|
507
504
|
participatory_space_private_users:
|
|
508
505
|
create:
|
|
509
506
|
error: При попытке добавить частного участника в это пространство соучастия произошла ошибка.
|
|
@@ -578,7 +575,6 @@ ru:
|
|
|
578
575
|
scopes: Охваты
|
|
579
576
|
static_pages: Страницы
|
|
580
577
|
user_groups: Группы участников
|
|
581
|
-
users: Участники
|
|
582
578
|
user_group:
|
|
583
579
|
reject:
|
|
584
580
|
invalid: При отказе от этой группы участников произошла ошибка.
|
|
@@ -609,7 +605,6 @@ ru:
|
|
|
609
605
|
role: Роль
|
|
610
606
|
new:
|
|
611
607
|
create: Пригласить
|
|
612
|
-
title: Пригласить участника в качестве администратора
|
|
613
608
|
users_statistics:
|
|
614
609
|
users_count:
|
|
615
610
|
admins: Администраторы
|
|
@@ -637,10 +632,10 @@ ru:
|
|
|
637
632
|
models:
|
|
638
633
|
moderation:
|
|
639
634
|
fields:
|
|
640
|
-
created_at: Дата создания
|
|
641
635
|
hidden_at: 'Скрыто:'
|
|
642
636
|
report_count: Количество
|
|
643
637
|
reported_content_url: Веб-адрес обжалованного содержимого
|
|
638
|
+
reports: Жалобы
|
|
644
639
|
visit_url: Посетите веб-адрес
|
|
645
640
|
errors:
|
|
646
641
|
messages:
|
data/config/locales/si-LK.yml
CHANGED