decidim-admin 0.26.7 → 0.26.8
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/commands/decidim/admin/block_user.rb +7 -2
- data/app/controllers/concerns/decidim/admin/needs_admin_tos_accepted.rb +42 -0
- data/app/controllers/decidim/admin/admin_terms_controller.rb +1 -1
- data/app/controllers/decidim/admin/application_controller.rb +1 -0
- data/app/controllers/decidim/admin/space_publications_controller.rb +63 -0
- data/app/controllers/decidim/admin/static_page_topics_controller.rb +1 -3
- data/app/views/decidim/admin/area_types/edit.html.erb +1 -0
- data/app/views/decidim/admin/area_types/index.html.erb +1 -0
- data/app/views/decidim/admin/area_types/new.html.erb +1 -0
- data/app/views/decidim/admin/areas/edit.html.erb +1 -0
- data/app/views/decidim/admin/areas/index.html.erb +1 -0
- data/app/views/decidim/admin/areas/new.html.erb +1 -0
- data/app/views/decidim/admin/attachment_collections/edit.html.erb +1 -0
- data/app/views/decidim/admin/attachment_collections/index.html.erb +1 -0
- data/app/views/decidim/admin/attachment_collections/new.html.erb +1 -0
- data/app/views/decidim/admin/attachments/edit.html.erb +1 -0
- data/app/views/decidim/admin/attachments/index.html.erb +1 -0
- data/app/views/decidim/admin/attachments/new.html.erb +1 -0
- data/app/views/decidim/admin/authorization_workflows/index.html.erb +1 -0
- data/app/views/decidim/admin/categories/edit.html.erb +1 -0
- data/app/views/decidim/admin/categories/index.html.erb +1 -0
- data/app/views/decidim/admin/categories/new.html.erb +1 -0
- data/app/views/decidim/admin/components/edit.html.erb +1 -0
- data/app/views/decidim/admin/components/index.html.erb +1 -0
- data/app/views/decidim/admin/components/new.html.erb +1 -1
- data/app/views/decidim/admin/conflicts/index.html.erb +1 -0
- data/app/views/decidim/admin/help_sections/show.erb +1 -0
- data/app/views/decidim/admin/impersonatable_users/index.html.erb +1 -0
- data/app/views/decidim/admin/impersonations/new.html.erb +1 -0
- data/app/views/decidim/admin/logs/index.html.erb +1 -0
- data/app/views/decidim/admin/moderated_users/index.html.erb +1 -0
- data/app/views/decidim/admin/moderations/index.html.erb +1 -0
- data/app/views/decidim/admin/newsletter_templates/index.html.erb +1 -0
- data/app/views/decidim/admin/newsletter_templates/show.html.erb +1 -0
- data/app/views/decidim/admin/newsletters/index.html.erb +1 -0
- data/app/views/decidim/admin/newsletters/new.html.erb +1 -0
- data/app/views/decidim/admin/newsletters/show.html.erb +1 -0
- data/app/views/decidim/admin/officializations/index.html.erb +1 -0
- data/app/views/decidim/admin/officializations/new.html.erb +1 -0
- data/app/views/decidim/admin/organization/edit.html.erb +1 -0
- data/app/views/decidim/admin/organization_appearance/edit.html.erb +1 -0
- data/app/views/decidim/admin/organization_external_domain_whitelist/edit.html.erb +1 -0
- data/app/views/decidim/admin/scope_types/edit.html.erb +1 -0
- data/app/views/decidim/admin/scope_types/index.html.erb +1 -0
- data/app/views/decidim/admin/scope_types/new.html.erb +1 -0
- data/app/views/decidim/admin/scopes/edit.html.erb +1 -0
- data/app/views/decidim/admin/scopes/index.html.erb +1 -0
- data/app/views/decidim/admin/scopes/new.html.erb +1 -0
- data/app/views/decidim/admin/shared/landing_page_content_blocks/edit.html.erb +1 -0
- data/app/views/decidim/admin/static_page_topics/edit.html.erb +1 -0
- data/app/views/decidim/admin/static_page_topics/new.html.erb +1 -0
- data/app/views/decidim/admin/static_pages/edit.html.erb +1 -0
- data/app/views/decidim/admin/static_pages/index.html.erb +1 -0
- data/app/views/decidim/admin/static_pages/new.html.erb +1 -0
- data/app/views/decidim/admin/user_groups/index.html.erb +1 -0
- data/app/views/decidim/admin/user_groups_csv_verifications/new.html.erb +1 -0
- data/app/views/decidim/admin/users/index.html.erb +1 -0
- data/app/views/decidim/admin/users/new.html.erb +1 -0
- data/app/views/layouts/decidim/admin/global_moderations.html.erb +1 -0
- data/config/environment.rb +1 -0
- data/config/locales/ca.yml +3 -0
- data/config/locales/cs.yml +3 -0
- data/config/locales/de.yml +8 -1
- data/config/locales/el.yml +62 -0
- data/config/locales/en.yml +4 -1
- data/config/locales/es-MX.yml +3 -0
- data/config/locales/es-PY.yml +3 -0
- data/config/locales/es.yml +3 -0
- data/config/locales/eu.yml +5 -4
- data/config/locales/fi-plain.yml +3 -0
- data/config/locales/fi.yml +4 -1
- data/config/locales/fr-CA.yml +3 -0
- data/config/locales/fr.yml +4 -1
- data/config/locales/hu.yml +1 -0
- data/config/locales/ja.yml +4 -1
- data/config/locales/kaa.yml +199 -0
- data/config/locales/pt-BR.yml +64 -0
- data/config/locales/tr-TR.yml +3 -0
- data/lib/decidim/admin/form_builder.rb +1 -2
- data/lib/decidim/admin/test/needs_admin_tos_accepted_examples.rb +9 -0
- data/lib/decidim/admin/test.rb +1 -0
- data/lib/decidim/admin/version.rb +1 -1
- metadata +12 -8
data/config/locales/el.yml
CHANGED
|
@@ -14,17 +14,24 @@ el:
|
|
|
14
14
|
description: Περιγραφή
|
|
15
15
|
file: Αρχείο
|
|
16
16
|
title: Συνημμένο ή όνομα εικόνας
|
|
17
|
+
weight: Θέση κατάταξης
|
|
17
18
|
attachment_collection:
|
|
18
19
|
description: Περιγραφή
|
|
19
20
|
name: Όνομα
|
|
21
|
+
weight: Θέση κατάταξης
|
|
20
22
|
category:
|
|
21
23
|
description: Περιγραφή
|
|
22
24
|
name: Όνομα
|
|
23
25
|
parent_id: Γονικό στοιχείο
|
|
26
|
+
weight: Θέση κατάταξης
|
|
24
27
|
component:
|
|
25
28
|
name: Όνομα
|
|
26
29
|
published_at: Δημοσιεύτηκε στις
|
|
27
30
|
weight: Θέση κατάταξης
|
|
31
|
+
external_domain:
|
|
32
|
+
value: Τιμή
|
|
33
|
+
help_section:
|
|
34
|
+
content: Περιεχόμενο
|
|
28
35
|
id: Αναγνωριστικό
|
|
29
36
|
import:
|
|
30
37
|
user_group_id: Δημιουργία εισαγωγών ως
|
|
@@ -92,6 +99,9 @@ el:
|
|
|
92
99
|
welcome_notification_body: Σώμα ειδοποίησης καλωσορίσματος
|
|
93
100
|
welcome_notification_subject: Θέμα ειδοποίησης καλωσορίσματος
|
|
94
101
|
youtube_handler: Πρόγραμμα χειρισμού YouTube
|
|
102
|
+
participatory_space_private_user:
|
|
103
|
+
email: Email
|
|
104
|
+
name: Όνομα
|
|
95
105
|
scope:
|
|
96
106
|
code: Κωδικός
|
|
97
107
|
name: Όνομα
|
|
@@ -113,6 +123,7 @@ el:
|
|
|
113
123
|
show_in_footer: Εμφάνιση στο υποσέλιδο
|
|
114
124
|
slug: Slug διεύθυνσης URL
|
|
115
125
|
title: Τίτλος
|
|
126
|
+
topic_id: Θέμα
|
|
116
127
|
weight: Θέση κατάταξης
|
|
117
128
|
static_page_topic:
|
|
118
129
|
description: Περιγραφή
|
|
@@ -179,11 +190,14 @@ el:
|
|
|
179
190
|
error: Υπήρξε ένα σφάλμα κατά την αποδοχή των όρων χρήσης διαχειριστή.
|
|
180
191
|
success: Εξαιρετικά! Αποδεχτήκατε τους όρους χρήσης διαχειριστή.
|
|
181
192
|
actions:
|
|
193
|
+
accept: Συμφωνώ με τους όρους
|
|
182
194
|
are_you_sure: Είστε σίγουρος ότι θέλετε να αρνηθείτε τους όρους χρήσης του διαχειριστή;
|
|
195
|
+
refuse: Απόρριψη των όρων διαχειριστή
|
|
183
196
|
title: Αποδοχή των όρων και των προϋποθέσεων χρήσης
|
|
184
197
|
required_review:
|
|
185
198
|
alert: 'Απαιτείται: Διαβάστε τους όρους χρήσης διαχειριστή'
|
|
186
199
|
callout: Παρακαλούμε αφιερώστε λίγο χρόνο για να διαβάσετε τους Όρους χρήσης του διαχειριστή. Διαφορετικά δεν θα μπορείτε να διαχειριστείτε την πλατφόρμα.
|
|
200
|
+
cta: Διαβάστε τους τώρα.
|
|
187
201
|
title: Όροι χρήσης διαχειριστή
|
|
188
202
|
area_types:
|
|
189
203
|
create:
|
|
@@ -363,6 +377,13 @@ el:
|
|
|
363
377
|
values:
|
|
364
378
|
'false': 'Όχι'
|
|
365
379
|
'true': 'Ναι'
|
|
380
|
+
moderated_users:
|
|
381
|
+
reports_reason_eq:
|
|
382
|
+
label: Λόγος αναφοράς
|
|
383
|
+
values:
|
|
384
|
+
does_not_belong: Δεν ανήκει
|
|
385
|
+
offensive: Επιθετικό
|
|
386
|
+
spam: Ανεπιθύμητο
|
|
366
387
|
moderations:
|
|
367
388
|
reportable_type_string_eq:
|
|
368
389
|
label: Τύπος
|
|
@@ -397,11 +418,18 @@ el:
|
|
|
397
418
|
search_label: Αναζήτηση
|
|
398
419
|
search_placeholder:
|
|
399
420
|
name_or_nickname_or_email_cont: Αναζήτηση συλλογής %{collection} με βάση το email, όνομα ή ψευδώνυμο.
|
|
421
|
+
report_count_eq: Αναφορά μετρητή eq
|
|
400
422
|
reported_id_string_or_reported_content_cont: Αναζήτηση %{collection} με αναγνωριστικό ή περιεχόμενο προς αναφορά.
|
|
401
423
|
title_cont: Αναζήτηση συλλογής %{collection} με βάση τον τίτλο.
|
|
402
424
|
user_name_or_user_email_cont: Αναζήτηση %{collection} με βάση το όνομα ή το email.
|
|
425
|
+
user_name_or_user_nickname_or_user_email_cont: Αναζήτηση %{collection} με email, όνομα ή ψευδώνυμο.
|
|
403
426
|
state_eq:
|
|
404
427
|
label: Κατάσταση
|
|
428
|
+
values:
|
|
429
|
+
all: Όλα
|
|
430
|
+
pending: Εκκρεμεί
|
|
431
|
+
rejected: Απορρίφθηκε
|
|
432
|
+
verified: Επαληθεύτηκε
|
|
405
433
|
forms:
|
|
406
434
|
file_help:
|
|
407
435
|
import:
|
|
@@ -447,10 +475,39 @@ el:
|
|
|
447
475
|
impersonate_existing_user: Διαχείριση συμμετέχοντα «%{name}»
|
|
448
476
|
impersonate_new_managed_user: Διαχείριση νέου συμμετέχοντα
|
|
449
477
|
imports:
|
|
478
|
+
and: και
|
|
479
|
+
data_errors:
|
|
480
|
+
duplicate_headers:
|
|
481
|
+
detail: Παρακαλώ ελέγξτε ότι το αρχείο περιέχει τις απαιτούμενες στήλες ή κεφαλίδες μόνο μία φορά.
|
|
482
|
+
message:
|
|
483
|
+
one: Διπλότυπη στήλη %{columns}.
|
|
484
|
+
other: Διπλότυπες στήλες %{columns}.
|
|
485
|
+
invalid_indexes:
|
|
486
|
+
lines:
|
|
487
|
+
detail: Παρακαλώ ελέγξτε ότι αυτές οι γραμμές έχουν μορφοποιηθεί σωστά και περιέχουν έγκυρες εγγραφές.
|
|
488
|
+
message:
|
|
489
|
+
one: Βρέθηκε ένα σφάλμα στο αρχείο εισαγωγής στη γραμμή %{indexes}.
|
|
490
|
+
other: Βρέθηκαν σφάλματα στο αρχείο εισαγωγής στις γραμμές %{indexes}.
|
|
491
|
+
records:
|
|
492
|
+
detail: Παρακαλώ ελέγξτε ότι αυτές οι γραμμές έχουν μορφοποιηθεί σωστά και περιέχουν έγκυρες εγγραφές.
|
|
493
|
+
message:
|
|
494
|
+
one: Βρέθηκε ένα σφάλμα στο αρχείο εισαγωγής για εγγραφές με αριθμούς παραγγελίας %{indexes}.
|
|
495
|
+
other: Βρέθηκαν σφάλματα στο αρχείο εισαγωγής για εγγραφές με αριθμούς παραγγελίας %{indexes}.
|
|
496
|
+
missing_headers:
|
|
497
|
+
detail: Παρακαλώ ελέγξτε ότι το αρχείο περιέχει τις απαιτούμενες στήλες.
|
|
498
|
+
message:
|
|
499
|
+
one: Λείπει στήλη %{columns}.
|
|
500
|
+
other: Λείπουν στήλες %{columns}.
|
|
450
501
|
error: Υπήρξε πρόβλημα κατά την εισαγωγή
|
|
451
502
|
new:
|
|
503
|
+
accepted_mime_types:
|
|
504
|
+
csv: CSV
|
|
505
|
+
json: JSON
|
|
506
|
+
xlsx: Excel (.xlsx)
|
|
452
507
|
actions:
|
|
453
508
|
back: Πίσω
|
|
509
|
+
download_example: Παράδειγμα λήψης
|
|
510
|
+
download_example_format: Παράδειγμα ως %{name}
|
|
454
511
|
file_legend: Προσθέστε ένα αρχείο εισαγωγής που θα αναλυθεί.
|
|
455
512
|
import: Εισαγωγή
|
|
456
513
|
notice: "%{number} %{resource_name} επιτυχώς εισαχθείσα"
|
|
@@ -580,6 +637,7 @@ el:
|
|
|
580
637
|
nickname: Ψευδώνυμο
|
|
581
638
|
reason: Αιτία
|
|
582
639
|
reports: Πλήθος αναφορών
|
|
640
|
+
title: Συμμετέχοντες που αναφέρθηκαν
|
|
583
641
|
report:
|
|
584
642
|
reasons:
|
|
585
643
|
does_not_belong: Δεν ανήκει
|
|
@@ -589,6 +647,8 @@ el:
|
|
|
589
647
|
blocked: Αποκλεισμένος
|
|
590
648
|
unblocked: Δεν έχει μπλοκαριστεί
|
|
591
649
|
moderations:
|
|
650
|
+
index:
|
|
651
|
+
title: Περιεχόμενο που αναφέρθηκε
|
|
592
652
|
report:
|
|
593
653
|
reasons:
|
|
594
654
|
does_not_belong: Δεν ανήκει
|
|
@@ -983,9 +1043,11 @@ el:
|
|
|
983
1043
|
moderation:
|
|
984
1044
|
fields:
|
|
985
1045
|
created_at: Ημερομηνία δημιουργίας
|
|
1046
|
+
deleted_resource: Διαγραμμένος πόρος
|
|
986
1047
|
hidden_at: Αποκρύφτηκε στις
|
|
987
1048
|
participatory_space: Συμμετοχικός χώρος
|
|
988
1049
|
report_count: Πλήθος
|
|
1050
|
+
reportable_id: ID
|
|
989
1051
|
reportable_type: Τύπος
|
|
990
1052
|
reported_content_url: Διεύθυνση URL περιεχομένου που έχει αναφερθεί
|
|
991
1053
|
reports: Αναφορές
|
data/config/locales/en.yml
CHANGED
|
@@ -871,7 +871,7 @@ en:
|
|
|
871
871
|
update: Update
|
|
872
872
|
new:
|
|
873
873
|
create: Create scope type
|
|
874
|
-
title: New scope
|
|
874
|
+
title: New scope type
|
|
875
875
|
update:
|
|
876
876
|
error: There was a problem updating this scope type.
|
|
877
877
|
success: Scope type updated successfully
|
|
@@ -957,9 +957,12 @@ en:
|
|
|
957
957
|
areas: Areas
|
|
958
958
|
authorization_workflows: Verification methods
|
|
959
959
|
dashboard: Dashboard
|
|
960
|
+
edit_external_domains: External domain whitelist
|
|
961
|
+
edit_organization_appearance: Edit homepage appearance
|
|
960
962
|
impersonatable_users: Manageable participants
|
|
961
963
|
impersonations: Participants management
|
|
962
964
|
metrics: Metrics
|
|
965
|
+
pages: Pages
|
|
963
966
|
panel: Admin
|
|
964
967
|
participants: Participants
|
|
965
968
|
scope_types: Scope types
|
data/config/locales/es-MX.yml
CHANGED
|
@@ -956,9 +956,12 @@ es-MX:
|
|
|
956
956
|
areas: Áreas
|
|
957
957
|
authorization_workflows: Métodos de verificación
|
|
958
958
|
dashboard: Panel de control
|
|
959
|
+
edit_external_domains: Listado de dominios externos permitidos
|
|
960
|
+
edit_organization_appearance: Editar apariencia de página de inicio
|
|
959
961
|
impersonatable_users: Usuarios manejables
|
|
960
962
|
impersonations: Gestion de usuarios
|
|
961
963
|
metrics: Métricas
|
|
964
|
+
pages: Páginas
|
|
962
965
|
panel: Administradora
|
|
963
966
|
participants: Usuarios
|
|
964
967
|
scope_types: Tipos de ámbito
|
data/config/locales/es-PY.yml
CHANGED
|
@@ -956,9 +956,12 @@ es-PY:
|
|
|
956
956
|
areas: Áreas
|
|
957
957
|
authorization_workflows: Métodos de verificación
|
|
958
958
|
dashboard: Panel de control
|
|
959
|
+
edit_external_domains: Listado de dominios externos permitidos
|
|
960
|
+
edit_organization_appearance: Editar apariencia de página de inicio
|
|
959
961
|
impersonatable_users: Usuarios manejables
|
|
960
962
|
impersonations: Gestion de usuarios
|
|
961
963
|
metrics: Métricas
|
|
964
|
+
pages: Páginas
|
|
962
965
|
panel: Administradora
|
|
963
966
|
participants: Usuarios
|
|
964
967
|
scope_types: Tipos de ámbito
|
data/config/locales/es.yml
CHANGED
|
@@ -956,9 +956,12 @@ es:
|
|
|
956
956
|
areas: Áreas
|
|
957
957
|
authorization_workflows: Métodos de verificación
|
|
958
958
|
dashboard: Panel de control
|
|
959
|
+
edit_external_domains: Listado de dominios externos permitidos
|
|
960
|
+
edit_organization_appearance: Editar apariencia de página de inicio
|
|
959
961
|
impersonatable_users: Participantes que se pueden gestionar
|
|
960
962
|
impersonations: Gestión de participantes
|
|
961
963
|
metrics: Métricas
|
|
964
|
+
pages: Páginas
|
|
962
965
|
panel: Administradora
|
|
963
966
|
participants: Participantes
|
|
964
967
|
scope_types: Tipos de ámbito
|
data/config/locales/eu.yml
CHANGED
|
@@ -69,7 +69,7 @@ eu:
|
|
|
69
69
|
highlighted_content_banner_title: Izenburua
|
|
70
70
|
host: Zerbitzaria
|
|
71
71
|
instagram_handler: Instagram kudeatzailea
|
|
72
|
-
logo:
|
|
72
|
+
logo: Logotipoa
|
|
73
73
|
machine_translation_display_priority: Itzulpen automatikoaren lehentasuna
|
|
74
74
|
machine_translation_display_priority_original: Lehen jatorrizko testua
|
|
75
75
|
machine_translation_display_priority_translation: Lehen itzulitako testua
|
|
@@ -79,7 +79,7 @@ eu:
|
|
|
79
79
|
official_url: Erakundearen URL ofiziala
|
|
80
80
|
omnipresent_banner_short_description: Deskribapen laburra
|
|
81
81
|
omnipresent_banner_title: Izenburua
|
|
82
|
-
omnipresent_banner_url: URL
|
|
82
|
+
omnipresent_banner_url: URL-a
|
|
83
83
|
organization_admin_email: Erakundearen administratzailearen mezu elektronikoa
|
|
84
84
|
organization_admin_name: Erakundearen administratzailearen izena
|
|
85
85
|
organization_locales: Tokiko erakundeak
|
|
@@ -162,7 +162,7 @@ eu:
|
|
|
162
162
|
organization_name: Erakundearen izena
|
|
163
163
|
organization_url: Erakundearen URLa
|
|
164
164
|
redirect_uri: Birbideratu URIa
|
|
165
|
-
site:
|
|
165
|
+
site: Webgunea
|
|
166
166
|
decidim:
|
|
167
167
|
admin:
|
|
168
168
|
actions:
|
|
@@ -384,6 +384,7 @@ eu:
|
|
|
384
384
|
label: Arrazoiaren berri eman
|
|
385
385
|
values:
|
|
386
386
|
offensive: Iraingarria
|
|
387
|
+
spam: Spam
|
|
387
388
|
moderations:
|
|
388
389
|
reportable_type_string_eq:
|
|
389
390
|
label: Mota
|
|
@@ -480,7 +481,7 @@ eu:
|
|
|
480
481
|
detail: Mesedez, egiaztatu fitxategiak behin bakarrik eskatzen diren zutabeak edo goiburuak dituela.
|
|
481
482
|
message:
|
|
482
483
|
one: Bikoiztu zutabeak %{columns}.
|
|
483
|
-
other: Bikoiztu %{columns}
|
|
484
|
+
other: Bikoiztu %{columns} zutabea.
|
|
484
485
|
invalid_indexes:
|
|
485
486
|
lines:
|
|
486
487
|
detail: "\nEgiaztatu erregistro horiek formatu zuzena dutela eta baliozko erregistroak dituztela."
|
data/config/locales/fi-plain.yml
CHANGED
|
@@ -956,9 +956,12 @@ fi-pl:
|
|
|
956
956
|
areas: Alueet
|
|
957
957
|
authorization_workflows: Vahvistusmenetelmät
|
|
958
958
|
dashboard: Hallintapaneeli
|
|
959
|
+
edit_external_domains: Sallittujen ulkoisten verkkotunnusten lista
|
|
960
|
+
edit_organization_appearance: Muokkaa kotisivun ulkoasua
|
|
959
961
|
impersonatable_users: Hallittavat käyttäjät
|
|
960
962
|
impersonations: Käyttäjien hallinta
|
|
961
963
|
metrics: Tilastomittarit
|
|
964
|
+
pages: Sivut
|
|
962
965
|
panel: Hallintakäyttäjä
|
|
963
966
|
participants: Käyttäjät
|
|
964
967
|
scope_types: Teematyypit
|
data/config/locales/fi.yml
CHANGED
|
@@ -870,7 +870,7 @@ fi:
|
|
|
870
870
|
update: Päivitä
|
|
871
871
|
new:
|
|
872
872
|
create: Luo teematyyppi
|
|
873
|
-
title: Uusi
|
|
873
|
+
title: Uusi teematyyppi
|
|
874
874
|
update:
|
|
875
875
|
error: Teematyyppin päivitys epäonnistui.
|
|
876
876
|
success: Teematyypin päivitys onnistui
|
|
@@ -956,9 +956,12 @@ fi:
|
|
|
956
956
|
areas: Alueet
|
|
957
957
|
authorization_workflows: Vahvistustavat
|
|
958
958
|
dashboard: Hallintapaneeli
|
|
959
|
+
edit_external_domains: Sallittujen ulkoisten verkkotunnusten lista
|
|
960
|
+
edit_organization_appearance: Muokkaa kotisivun ulkoasua
|
|
959
961
|
impersonatable_users: Hallittavat käyttäjät
|
|
960
962
|
impersonations: Käyttäjien hallinta
|
|
961
963
|
metrics: Tilastomittarit
|
|
964
|
+
pages: Sivut
|
|
962
965
|
panel: Hallintakäyttäjä
|
|
963
966
|
participants: Käyttäjät
|
|
964
967
|
scope_types: Teematyypit
|
data/config/locales/fr-CA.yml
CHANGED
|
@@ -956,9 +956,12 @@ fr-CA:
|
|
|
956
956
|
areas: Zones d'application
|
|
957
957
|
authorization_workflows: Méthodes de vérification
|
|
958
958
|
dashboard: Tableau de bord
|
|
959
|
+
edit_external_domains: Liste des domaines externes autorisés
|
|
960
|
+
edit_organization_appearance: Modifier l'apparence de la page d'accueil
|
|
959
961
|
impersonatable_users: Utilisateurs gérables
|
|
960
962
|
impersonations: Gestion des utilisateurs
|
|
961
963
|
metrics: Indicateurs
|
|
964
|
+
pages: Page(s)
|
|
962
965
|
panel: Administrateur
|
|
963
966
|
participants: Utilisateurs
|
|
964
967
|
scope_types: Types de secteur
|
data/config/locales/fr.yml
CHANGED
|
@@ -386,7 +386,7 @@ fr:
|
|
|
386
386
|
reports_reason_eq:
|
|
387
387
|
label: Raison du signalement
|
|
388
388
|
values:
|
|
389
|
-
does_not_belong:
|
|
389
|
+
does_not_belong: inapproprié
|
|
390
390
|
offensive: Offensant
|
|
391
391
|
spam: Spam
|
|
392
392
|
moderations:
|
|
@@ -956,9 +956,12 @@ fr:
|
|
|
956
956
|
areas: Périmètres d'assemblée
|
|
957
957
|
authorization_workflows: Méthodes de vérification
|
|
958
958
|
dashboard: Tableau de bord
|
|
959
|
+
edit_external_domains: Liste des domaines externes autorisés
|
|
960
|
+
edit_organization_appearance: Modifier l'apparence de la page d'accueil
|
|
959
961
|
impersonatable_users: Utilisateurs pouvant être représentés
|
|
960
962
|
impersonations: Gestion des utilisateurs
|
|
961
963
|
metrics: Indicateurs
|
|
964
|
+
pages: Page(s)
|
|
962
965
|
panel: Administrateur
|
|
963
966
|
participants: Utilisateurs
|
|
964
967
|
scope_types: Types de secteur
|
data/config/locales/hu.yml
CHANGED
data/config/locales/ja.yml
CHANGED
|
@@ -83,7 +83,7 @@ ja:
|
|
|
83
83
|
organization_admin_email: 組織管理者メールアドレス
|
|
84
84
|
organization_admin_name: 組織管理者名
|
|
85
85
|
organization_locales: 組織のロケール
|
|
86
|
-
primary_color:
|
|
86
|
+
primary_color: プライマリ
|
|
87
87
|
reference_prefix: 参照の接頭辞:
|
|
88
88
|
rich_text_editor_in_public_views: 参加者にリッチテキストエディタを有効にする
|
|
89
89
|
secondary_color: セカンダリ
|
|
@@ -952,9 +952,12 @@ ja:
|
|
|
952
952
|
areas: エリア
|
|
953
953
|
authorization_workflows: 確認方法
|
|
954
954
|
dashboard: ダッシュボード
|
|
955
|
+
edit_external_domains: 外部ドメインのホワイトリスト
|
|
956
|
+
edit_organization_appearance: ホームページの外観を編集
|
|
955
957
|
impersonatable_users: 管理可能な参加者
|
|
956
958
|
impersonations: 参加者管理
|
|
957
959
|
metrics: 指標
|
|
960
|
+
pages: ページ
|
|
958
961
|
panel: 管理者
|
|
959
962
|
participants: 参加者
|
|
960
963
|
scope_types: スコープ種別
|
data/config/locales/kaa.yml
CHANGED
|
@@ -1 +1,200 @@
|
|
|
1
1
|
kaa:
|
|
2
|
+
activemodel:
|
|
3
|
+
attributes:
|
|
4
|
+
area:
|
|
5
|
+
name: Ataması
|
|
6
|
+
area_type:
|
|
7
|
+
name: Ataması
|
|
8
|
+
attachment:
|
|
9
|
+
attachment_collection_id: Papka
|
|
10
|
+
file: Fayl
|
|
11
|
+
component:
|
|
12
|
+
name: Ataması
|
|
13
|
+
organization:
|
|
14
|
+
highlighted_content_banner_image: Súwret
|
|
15
|
+
name: Ataması
|
|
16
|
+
participatory_space_private_user:
|
|
17
|
+
email: Elektron pochta
|
|
18
|
+
user_group_csv_verification:
|
|
19
|
+
file: Fayl
|
|
20
|
+
activerecord:
|
|
21
|
+
attributes:
|
|
22
|
+
doorkeeper/application:
|
|
23
|
+
site: Veb-sayt
|
|
24
|
+
decidim:
|
|
25
|
+
admin:
|
|
26
|
+
actions:
|
|
27
|
+
add: Qosıw
|
|
28
|
+
browse: Kóriw
|
|
29
|
+
import: Importlaw
|
|
30
|
+
area_types:
|
|
31
|
+
edit:
|
|
32
|
+
update: Jańalaw
|
|
33
|
+
attachment_collections:
|
|
34
|
+
edit:
|
|
35
|
+
update: Jańalaw
|
|
36
|
+
new:
|
|
37
|
+
create: Jaratıw
|
|
38
|
+
title: Jańa papka
|
|
39
|
+
attachments:
|
|
40
|
+
edit:
|
|
41
|
+
update: Jańalaw
|
|
42
|
+
autocomplete:
|
|
43
|
+
no_results: Nátiyjeler tabılmadı
|
|
44
|
+
categories:
|
|
45
|
+
edit:
|
|
46
|
+
update: Jańalaw
|
|
47
|
+
index:
|
|
48
|
+
categories_title: Kategoriyalar
|
|
49
|
+
new:
|
|
50
|
+
create: Kategoriya jaratıw
|
|
51
|
+
title: Jańa kategoriya
|
|
52
|
+
update:
|
|
53
|
+
success: Kategoriya tabıslı jańalandı.
|
|
54
|
+
conflicts:
|
|
55
|
+
'false': 'Yaq'
|
|
56
|
+
transfer:
|
|
57
|
+
reason: Sebep
|
|
58
|
+
'true': 'Awa'
|
|
59
|
+
user_name: Paydalanıwshı
|
|
60
|
+
exports:
|
|
61
|
+
formats:
|
|
62
|
+
CSV: CSV
|
|
63
|
+
Excel: Excel
|
|
64
|
+
FormPDF: PDF
|
|
65
|
+
JSON: JSON
|
|
66
|
+
filters:
|
|
67
|
+
category_id_eq:
|
|
68
|
+
label: Kategoriya
|
|
69
|
+
filter_label: Filtr
|
|
70
|
+
invitation_accepted_at_present:
|
|
71
|
+
values:
|
|
72
|
+
'false': 'Yaq'
|
|
73
|
+
'true': 'Awa'
|
|
74
|
+
last_sign_in_at_present:
|
|
75
|
+
values:
|
|
76
|
+
'false': 'Yaq'
|
|
77
|
+
'true': 'Awa'
|
|
78
|
+
help_sections:
|
|
79
|
+
form:
|
|
80
|
+
save: Saqlaw
|
|
81
|
+
impersonatable_users:
|
|
82
|
+
index:
|
|
83
|
+
search: Izlew
|
|
84
|
+
status: Jaǵday
|
|
85
|
+
imports:
|
|
86
|
+
and: hám
|
|
87
|
+
new:
|
|
88
|
+
accepted_mime_types:
|
|
89
|
+
csv: CSV
|
|
90
|
+
json: JSON
|
|
91
|
+
xlsx: Excel (.xlsx)
|
|
92
|
+
actions:
|
|
93
|
+
back: Artqa
|
|
94
|
+
import: Importlaw
|
|
95
|
+
menu:
|
|
96
|
+
participants: Qatnasıwshılar
|
|
97
|
+
settings: Sazlawlar
|
|
98
|
+
static_pages: Betler
|
|
99
|
+
models:
|
|
100
|
+
area:
|
|
101
|
+
fields:
|
|
102
|
+
name: Ataması
|
|
103
|
+
area_type:
|
|
104
|
+
fields:
|
|
105
|
+
name: Ataması
|
|
106
|
+
attachment:
|
|
107
|
+
fields:
|
|
108
|
+
collection: Papka
|
|
109
|
+
user:
|
|
110
|
+
fields:
|
|
111
|
+
email: Elektron pochta
|
|
112
|
+
user_group:
|
|
113
|
+
fields:
|
|
114
|
+
phone: Telefon
|
|
115
|
+
moderated_users:
|
|
116
|
+
index:
|
|
117
|
+
actions:
|
|
118
|
+
title: Háreketler
|
|
119
|
+
reason: Sebep
|
|
120
|
+
moderations:
|
|
121
|
+
reports:
|
|
122
|
+
show:
|
|
123
|
+
report_reason: Sebep
|
|
124
|
+
newsletter_templates:
|
|
125
|
+
index:
|
|
126
|
+
preview_template: Aldınnan kóriw
|
|
127
|
+
newsletters:
|
|
128
|
+
index:
|
|
129
|
+
all_users: 'Barlıq paydalanıwshılar '
|
|
130
|
+
and: 'hám '
|
|
131
|
+
new:
|
|
132
|
+
save: Saqlaw
|
|
133
|
+
officializations:
|
|
134
|
+
show_email_modal:
|
|
135
|
+
email_address: Elektron mánzil
|
|
136
|
+
show: Kórsetiw
|
|
137
|
+
organization:
|
|
138
|
+
edit:
|
|
139
|
+
update: Jańalaw
|
|
140
|
+
form:
|
|
141
|
+
facebook: Facebook
|
|
142
|
+
github: GitHub
|
|
143
|
+
instagram: Instagram
|
|
144
|
+
twitter: Twitter
|
|
145
|
+
url: URL
|
|
146
|
+
youtube: YouTube
|
|
147
|
+
organization_appearance:
|
|
148
|
+
edit:
|
|
149
|
+
update: Jańalaw
|
|
150
|
+
form:
|
|
151
|
+
images:
|
|
152
|
+
preview: Aldınnan kóriw
|
|
153
|
+
organization_external_domain_whitelist:
|
|
154
|
+
edit:
|
|
155
|
+
update: Jańalaw
|
|
156
|
+
organization_homepage_content_blocks:
|
|
157
|
+
edit:
|
|
158
|
+
update: Jańalaw
|
|
159
|
+
participatory_space_private_users:
|
|
160
|
+
new:
|
|
161
|
+
create: Jaratıw
|
|
162
|
+
participatory_space_private_users_csv_imports:
|
|
163
|
+
new:
|
|
164
|
+
upload: Júklew
|
|
165
|
+
resource_permissions:
|
|
166
|
+
edit:
|
|
167
|
+
submit: Jiberiw
|
|
168
|
+
scope_types:
|
|
169
|
+
edit:
|
|
170
|
+
update: Jańalaw
|
|
171
|
+
scopes:
|
|
172
|
+
edit:
|
|
173
|
+
update: Jańalaw
|
|
174
|
+
share_tokens:
|
|
175
|
+
actions:
|
|
176
|
+
destroy: Óshiriw
|
|
177
|
+
share: Bólisiw
|
|
178
|
+
shared:
|
|
179
|
+
gallery:
|
|
180
|
+
add_images: Súwretlerdi qosıw
|
|
181
|
+
delete_image: Súwretti óshiriw
|
|
182
|
+
static_pages:
|
|
183
|
+
edit:
|
|
184
|
+
update: Jańalaw
|
|
185
|
+
titles:
|
|
186
|
+
users: Qatnasıwshılar
|
|
187
|
+
users_statistics:
|
|
188
|
+
users_count:
|
|
189
|
+
participants: Qatnasıwshılar
|
|
190
|
+
moderations:
|
|
191
|
+
models:
|
|
192
|
+
report:
|
|
193
|
+
fields:
|
|
194
|
+
locale: Til
|
|
195
|
+
reason: Sebep
|
|
196
|
+
layouts:
|
|
197
|
+
decidim:
|
|
198
|
+
admin:
|
|
199
|
+
settings:
|
|
200
|
+
title: Sazlawlar
|