decidim-admin 0.26.5 → 0.26.7
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-admin might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/commands/decidim/admin/publish_component.rb +1 -1
- data/app/packs/src/decidim/admin/draggable-list.js +1 -1
- data/app/packs/stylesheets/decidim/admin/extra/_quill.scss +7 -0
- data/app/permissions/decidim/admin/permissions.rb +14 -1
- data/app/views/decidim/admin/officializations/index.html.erb +14 -10
- data/app/views/decidim/admin/static_pages/_form.html.erb +1 -1
- data/config/locales/ar.yml +10 -5
- data/config/locales/ca.yml +6 -6
- data/config/locales/cs.yml +2 -2
- data/config/locales/de.yml +3 -5
- data/config/locales/el.yml +0 -5
- data/config/locales/en.yml +2 -2
- data/config/locales/es-MX.yml +4 -4
- data/config/locales/es-PY.yml +4 -4
- data/config/locales/es.yml +5 -5
- data/config/locales/eu.yml +3 -9
- data/config/locales/fa-IR.yml +1 -0
- data/config/locales/fi-plain.yml +2 -2
- data/config/locales/fi.yml +4 -4
- data/config/locales/fr-CA.yml +3 -3
- data/config/locales/fr.yml +3 -3
- data/config/locales/gl.yml +0 -5
- data/config/locales/hu.yml +36 -22
- data/config/locales/id-ID.yml +0 -2
- data/config/locales/is-IS.yml +0 -2
- data/config/locales/it.yml +0 -5
- data/config/locales/ja.yml +9 -9
- data/config/locales/kaa.yml +1 -0
- data/config/locales/lb.yml +0 -5
- data/config/locales/lt.yml +0 -5
- data/config/locales/lv.yml +0 -4
- data/config/locales/nl.yml +0 -5
- data/config/locales/no.yml +0 -5
- data/config/locales/pl.yml +0 -5
- data/config/locales/pt-BR.yml +0 -5
- data/config/locales/pt.yml +0 -5
- data/config/locales/ro-RO.yml +10 -10
- data/config/locales/ru.yml +0 -2
- data/config/locales/sk.yml +0 -4
- data/config/locales/sr-CS.yml +0 -4
- data/config/locales/sv.yml +0 -6
- data/config/locales/tr-TR.yml +0 -5
- data/config/locales/uk.yml +0 -2
- data/config/locales/zh-CN.yml +0 -4
- data/config/locales/zh-TW.yml +1075 -0
- data/lib/decidim/admin/version.rb +1 -1
- metadata +10 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9d10899e9c95c132fe275efe626ba406c9ff091236048fb5f41d0286a32fdab0
|
4
|
+
data.tar.gz: b8ca0d051c4cd3860b4d44a9a47c6d1025ddb4cbc86aa0629826e4b10c91b256
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 327d80ce55828c1869071bde249b40eaaa079ecd4df8a89e9032e821338956150bca5de3a84b22a3b986132e3f972a9bdd1f82ae6b3f64c46a89a6cdd1b902b4
|
7
|
+
data.tar.gz: 45e8569f02f96450c6cafb872d83e5a44c2824c0ddc3b0cf777d2f06fe8b7d1b3470b4c9dc1b5e61dcdf092fec9aa28e93d055ac29e4fd22c0a7768eefd64e3e
|
@@ -39,10 +39,10 @@ module Decidim
|
|
39
39
|
allow! if templates_action?
|
40
40
|
allow! if organization_action?
|
41
41
|
allow! if user_action?
|
42
|
+
allow! if admin_user_action?
|
42
43
|
|
43
44
|
allow! if permission_action.subject == :category
|
44
45
|
allow! if permission_action.subject == :component
|
45
|
-
allow! if permission_action.subject == :admin_user
|
46
46
|
allow! if permission_action.subject == :attachment
|
47
47
|
allow! if permission_action.subject == :editor_image
|
48
48
|
allow! if permission_action.subject == :attachment_collection
|
@@ -200,6 +200,19 @@ module Decidim
|
|
200
200
|
end
|
201
201
|
end
|
202
202
|
|
203
|
+
def admin_user_action?
|
204
|
+
return unless permission_action.subject == :admin_user
|
205
|
+
|
206
|
+
target_user = context.fetch(:user, nil)
|
207
|
+
|
208
|
+
case permission_action.action
|
209
|
+
when :destroy, :block
|
210
|
+
target_user != user
|
211
|
+
else
|
212
|
+
true
|
213
|
+
end
|
214
|
+
end
|
215
|
+
|
203
216
|
def organization
|
204
217
|
@organization ||= context.fetch(:organization, nil) || context.fetch(:current_organization, nil)
|
205
218
|
end
|
@@ -33,7 +33,7 @@
|
|
33
33
|
<td><%= user.report_count %></td>
|
34
34
|
|
35
35
|
<td class="table-list__actions">
|
36
|
-
<% if allowed_to?(:block, :admin_user) %>
|
36
|
+
<% if allowed_to?(:block, :admin_user, user: user) %>
|
37
37
|
<% if user.blocked? %>
|
38
38
|
<%= icon_link_to "ban", user_block_path(user_id: user.id), t(".unblock"), class: "action-icon action-icon--disabled", method: :delete %>
|
39
39
|
<% else %>
|
@@ -43,15 +43,19 @@
|
|
43
43
|
<% if allowed_to? :show_email, :user, user: user %>
|
44
44
|
<%= icon_link_to "envelope-open", show_email_officialization_path(user_id: user.id), t(".show_email"), class: "action-icon action-icon--show-email", data: { full_name: user.name, toggle: "show-email-modal" } %>
|
45
45
|
<% end %>
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
46
|
+
<% unless user.blocked? %>
|
47
|
+
<% unless current_user == user %>
|
48
|
+
<%= icon_link_to "envelope-closed", current_or_new_conversation_path_with(user), t("decidim.contact"), class:"action-icon--new" %>
|
49
|
+
<% end %>
|
50
|
+
<% if user.officialized? %>
|
51
|
+
<%= icon "circle-check", class: "action-icon action-icon--disabled", role: "img", aria_label: t(".officialize") %>
|
52
|
+
<%= icon_link_to "pencil", new_officialization_path(user_id: user.id), t(".reofficialize"), class: "action-icon--new" %>
|
53
|
+
<%= icon_link_to "circle-x", officialization_path(user.id), t(".unofficialize"), method: :delete, class: "action-icon--reject" %>
|
54
|
+
<% else %>
|
55
|
+
<%= icon_link_to "circle-check", new_officialization_path(user_id: user.id), t(".officialize"), class: "action-icon--verify" %>
|
56
|
+
<%= icon "pencil", class: "action-icon action-icon--disabled", role: "img", aria_label: t(".reofficialize") %>
|
57
|
+
<%= icon "circle-x", class: "action-icon action-icon--disabled", role: "img", aria_label: t(".unofficialize") %>
|
58
|
+
<% end %>
|
55
59
|
<% end %>
|
56
60
|
</td>
|
57
61
|
</tr>
|
data/config/locales/ar.yml
CHANGED
@@ -94,6 +94,9 @@ ar:
|
|
94
94
|
welcome_notification_body: محتوى إشعار الترحيب
|
95
95
|
welcome_notification_subject: موضوع إشعار الترحيب
|
96
96
|
youtube_handler: مُعرّف حساب يوتيوب
|
97
|
+
participatory_space_private_user:
|
98
|
+
email: البريد الإلكتروني
|
99
|
+
name: الإسم
|
97
100
|
scope:
|
98
101
|
code: الشفرة
|
99
102
|
name: الاسم
|
@@ -166,10 +169,8 @@ ar:
|
|
166
169
|
accept:
|
167
170
|
success: رائع! لقد قمت بالموافقة على شروط الإستخدام للمدير.
|
168
171
|
actions:
|
169
|
-
|
172
|
+
accept: أوافق على هذه الشروط
|
170
173
|
title: وافق على شروط وأحكام الإستخدام
|
171
|
-
required_review:
|
172
|
-
cta: راجِعها الآن.
|
173
174
|
title: شروط الاستخدام الخاصة بالمدير
|
174
175
|
area_types:
|
175
176
|
create:
|
@@ -585,8 +586,6 @@ ar:
|
|
585
586
|
tabs:
|
586
587
|
blocked: محظور
|
587
588
|
moderations:
|
588
|
-
index:
|
589
|
-
title: الإشراف
|
590
589
|
report:
|
591
590
|
reasons:
|
592
591
|
does_not_belong: لا ينتمي
|
@@ -602,6 +601,7 @@ ar:
|
|
602
601
|
newsletter_templates:
|
603
602
|
index:
|
604
603
|
preview_template: معاينة
|
604
|
+
title: نماذج النشرة الإخبارية
|
605
605
|
newsletters:
|
606
606
|
create:
|
607
607
|
error: كانت هناك مشكلة في إنشاء هذه الرسالة الإخبارية.
|
@@ -793,8 +793,13 @@ ar:
|
|
793
793
|
update:
|
794
794
|
error: حدثت مشكلة أثناء تحديث هذا النطاق.
|
795
795
|
success: تم تحديث المجال بنجاح
|
796
|
+
share_tokens:
|
797
|
+
actions:
|
798
|
+
destroy: حذف
|
799
|
+
share: مشاركة
|
796
800
|
shared:
|
797
801
|
gallery:
|
802
|
+
add_images: إضافة صور
|
798
803
|
delete_image: احذف الصورة
|
799
804
|
static_page_topics:
|
800
805
|
create:
|
data/config/locales/ca.yml
CHANGED
@@ -195,14 +195,14 @@ ca:
|
|
195
195
|
error: S'ha produït un error en acceptar els Termes i Condicions dell panell d'administració.
|
196
196
|
success: Genial! Has acceptat els Termes i Condicions del panell d'administració.
|
197
197
|
actions:
|
198
|
-
accept: Estic d'acord amb
|
198
|
+
accept: Estic d'acord amb les condicions
|
199
199
|
are_you_sure: Segur que vols rebutjar els termes i condicions del panell d'administració?
|
200
|
-
refuse: Rebutjar
|
200
|
+
refuse: Rebutjar les condicions del servei d'administració
|
201
201
|
title: Accepto els Termes i Condicions d'Administració
|
202
202
|
required_review:
|
203
203
|
alert: 'Requerit: Revisa els nostres Termes i Condicions del panell d''administració'
|
204
204
|
callout: Si us plau dedica un moment a revisar l'actualització dels nostres termes i condicions del panell d'administració. En cas contrari, no podràs utilitzar la plataforma.
|
205
|
-
cta:
|
205
|
+
cta: Revisar-les ara.
|
206
206
|
title: Termes i Condicions del panell d'administració
|
207
207
|
area_types:
|
208
208
|
create:
|
@@ -643,7 +643,7 @@ ca:
|
|
643
643
|
nickname: Àlies
|
644
644
|
reason: Raó
|
645
645
|
reports: Número de denúncies
|
646
|
-
title:
|
646
|
+
title: Participants reportades
|
647
647
|
report:
|
648
648
|
reasons:
|
649
649
|
does_not_belong: No pertany
|
@@ -654,7 +654,7 @@ ca:
|
|
654
654
|
unblocked: No bloquejat
|
655
655
|
moderations:
|
656
656
|
index:
|
657
|
-
title:
|
657
|
+
title: Contingut reportat
|
658
658
|
report:
|
659
659
|
reasons:
|
660
660
|
does_not_belong: No pertany
|
@@ -840,7 +840,7 @@ ca:
|
|
840
840
|
title: Participant de l'espai participatiu privat
|
841
841
|
new:
|
842
842
|
create: Crear
|
843
|
-
title: Nova participant de l'espai
|
843
|
+
title: Nova participant de l'espai privat.
|
844
844
|
participatory_space_private_users_csv_imports:
|
845
845
|
create:
|
846
846
|
invalid: S'ha produït un error en llegir el fitxer CSV.
|
data/config/locales/cs.yml
CHANGED
@@ -651,7 +651,7 @@ cs:
|
|
651
651
|
nickname: Přezdívka
|
652
652
|
reason: Důvod
|
653
653
|
reports: Počet zpráv
|
654
|
-
title:
|
654
|
+
title: Nahlášení účastníci
|
655
655
|
report:
|
656
656
|
reasons:
|
657
657
|
does_not_belong: Nepatří
|
@@ -662,7 +662,7 @@ cs:
|
|
662
662
|
unblocked: Neblokováno
|
663
663
|
moderations:
|
664
664
|
index:
|
665
|
-
title:
|
665
|
+
title: Nahlášený obsah
|
666
666
|
report:
|
667
667
|
reasons:
|
668
668
|
does_not_belong: Nepatří
|
data/config/locales/de.yml
CHANGED
@@ -195,13 +195,14 @@ de:
|
|
195
195
|
error: Beim Akzeptieren der Nutzungsbedingungen ist ein Fehler aufgetreten.
|
196
196
|
success: Super! Sie haben die Admin-Nutzungsbedingungen akzeptiert.
|
197
197
|
actions:
|
198
|
+
accept: Ich stimme diesen Bedingungen zu
|
198
199
|
are_you_sure: Sind Sie sicher, dass Sie die Admin-Nutzungsbedingungen ablehnen möchten?
|
199
|
-
refuse:
|
200
|
+
refuse: Admin-Nutzungsbedingungen ablehnen
|
200
201
|
title: Den Admin-Nutzungsbedingungen zustimmen
|
201
202
|
required_review:
|
202
203
|
alert: 'Erforderlich: Überprüfen Sie unsere Admin-Nutzungsbedingungen'
|
203
204
|
callout: Bitte nehmen Sie sich einen Moment Zeit, um die Admin-Nutzungsbedingungen zu lesen. Ansonsten können Sie die Plattform nicht verwalten.
|
204
|
-
cta:
|
205
|
+
cta: Jetzt überprüfen.
|
205
206
|
title: Admin-Nutzungsbedingungen
|
206
207
|
area_types:
|
207
208
|
create:
|
@@ -642,7 +643,6 @@ de:
|
|
642
643
|
nickname: Spitzname
|
643
644
|
reason: Grund
|
644
645
|
reports: Anzahl Meldungen
|
645
|
-
title: Liste der gemeldeten Benutzer
|
646
646
|
report:
|
647
647
|
reasons:
|
648
648
|
does_not_belong: Gehört nicht zu
|
@@ -652,8 +652,6 @@ de:
|
|
652
652
|
blocked: Blockiert
|
653
653
|
unblocked: Nicht blockiert
|
654
654
|
moderations:
|
655
|
-
index:
|
656
|
-
title: Moderationen
|
657
655
|
report:
|
658
656
|
reasons:
|
659
657
|
does_not_belong: Gehört nicht
|
data/config/locales/el.yml
CHANGED
@@ -180,12 +180,10 @@ el:
|
|
180
180
|
success: Εξαιρετικά! Αποδεχτήκατε τους όρους χρήσης διαχειριστή.
|
181
181
|
actions:
|
182
182
|
are_you_sure: Είστε σίγουρος ότι θέλετε να αρνηθείτε τους όρους χρήσης του διαχειριστή;
|
183
|
-
refuse: Απόρριψη των όρων διαχειριστή
|
184
183
|
title: Αποδοχή των όρων και των προϋποθέσεων χρήσης
|
185
184
|
required_review:
|
186
185
|
alert: 'Απαιτείται: Διαβάστε τους όρους χρήσης διαχειριστή'
|
187
186
|
callout: Παρακαλούμε αφιερώστε λίγο χρόνο για να διαβάσετε τους Όρους χρήσης του διαχειριστή. Διαφορετικά δεν θα μπορείτε να διαχειριστείτε την πλατφόρμα.
|
188
|
-
cta: Διαβάστε τους τώρα.
|
189
187
|
title: Όροι χρήσης διαχειριστή
|
190
188
|
area_types:
|
191
189
|
create:
|
@@ -582,7 +580,6 @@ el:
|
|
582
580
|
nickname: Ψευδώνυμο
|
583
581
|
reason: Αιτία
|
584
582
|
reports: Πλήθος αναφορών
|
585
|
-
title: Λίστα αναφερόμενων χρηστών
|
586
583
|
report:
|
587
584
|
reasons:
|
588
585
|
does_not_belong: Δεν ανήκει
|
@@ -592,8 +589,6 @@ el:
|
|
592
589
|
blocked: Αποκλεισμένος
|
593
590
|
unblocked: Δεν έχει μπλοκαριστεί
|
594
591
|
moderations:
|
595
|
-
index:
|
596
|
-
title: Εποπτεύσεις
|
597
592
|
report:
|
598
593
|
reasons:
|
599
594
|
does_not_belong: Δεν ανήκει
|
data/config/locales/en.yml
CHANGED
@@ -644,7 +644,7 @@ en:
|
|
644
644
|
nickname: Nickname
|
645
645
|
reason: Reason
|
646
646
|
reports: Reports count
|
647
|
-
title:
|
647
|
+
title: Reported participants
|
648
648
|
report:
|
649
649
|
reasons:
|
650
650
|
does_not_belong: Does not belong
|
@@ -655,7 +655,7 @@ en:
|
|
655
655
|
unblocked: Not Blocked
|
656
656
|
moderations:
|
657
657
|
index:
|
658
|
-
title:
|
658
|
+
title: Reported content
|
659
659
|
report:
|
660
660
|
reasons:
|
661
661
|
does_not_belong: Does not belong
|
data/config/locales/es-MX.yml
CHANGED
@@ -197,12 +197,12 @@ es-MX:
|
|
197
197
|
actions:
|
198
198
|
accept: Estoy de acuerdo con los términos
|
199
199
|
are_you_sure: '¿Seguro que deseas rechazar los términos de uso para administradoras?'
|
200
|
-
refuse: Rechazar los
|
200
|
+
refuse: Rechazar los términos del servicio de administración
|
201
201
|
title: Acepto los Términos y Condiciones de Administración
|
202
202
|
required_review:
|
203
203
|
alert: 'Requerido: revisa nuestros Términos y Condiciones de Administración'
|
204
204
|
callout: Por favor dedica un momento a familiarizarte con los términos de uso para administradoras. En caso contrario, no podrás administrar la plataforma.
|
205
|
-
cta:
|
205
|
+
cta: Revisarlos ahora.
|
206
206
|
title: Términos y Condiciones de Administración
|
207
207
|
area_types:
|
208
208
|
create:
|
@@ -643,7 +643,7 @@ es-MX:
|
|
643
643
|
nickname: Alias
|
644
644
|
reason: Motivo
|
645
645
|
reports: Cantidad de veces reportado
|
646
|
-
title:
|
646
|
+
title: Participantes reportadas
|
647
647
|
report:
|
648
648
|
reasons:
|
649
649
|
does_not_belong: No pertenece
|
@@ -654,7 +654,7 @@ es-MX:
|
|
654
654
|
unblocked: No bloqueado
|
655
655
|
moderations:
|
656
656
|
index:
|
657
|
-
title:
|
657
|
+
title: Contenido reportado
|
658
658
|
report:
|
659
659
|
reasons:
|
660
660
|
does_not_belong: No pertenece
|
data/config/locales/es-PY.yml
CHANGED
@@ -197,12 +197,12 @@ es-PY:
|
|
197
197
|
actions:
|
198
198
|
accept: Estoy de acuerdo con los términos
|
199
199
|
are_you_sure: '¿Seguro que deseas rechazar los términos de uso para administradoras?'
|
200
|
-
refuse: Rechazar los
|
200
|
+
refuse: Rechazar los términos del servicio de administración
|
201
201
|
title: Acepto los Términos y Condiciones de Administración
|
202
202
|
required_review:
|
203
203
|
alert: 'Requerido: revisa nuestros Términos y Condiciones de Administración'
|
204
204
|
callout: Por favor dedica un momento a familiarizarte con los términos de uso para administradoras. En caso contrario, no podrás administrar la plataforma.
|
205
|
-
cta:
|
205
|
+
cta: Revisarlos ahora.
|
206
206
|
title: Términos y Condiciones de Administración
|
207
207
|
area_types:
|
208
208
|
create:
|
@@ -643,7 +643,7 @@ es-PY:
|
|
643
643
|
nickname: Alias
|
644
644
|
reason: Motivo
|
645
645
|
reports: Cantidad de veces reportado
|
646
|
-
title:
|
646
|
+
title: Participantes reportadas
|
647
647
|
report:
|
648
648
|
reasons:
|
649
649
|
does_not_belong: No pertenece
|
@@ -654,7 +654,7 @@ es-PY:
|
|
654
654
|
unblocked: No bloqueado
|
655
655
|
moderations:
|
656
656
|
index:
|
657
|
-
title:
|
657
|
+
title: Contenido reportado
|
658
658
|
report:
|
659
659
|
reasons:
|
660
660
|
does_not_belong: No pertenece
|
data/config/locales/es.yml
CHANGED
@@ -197,12 +197,12 @@ es:
|
|
197
197
|
actions:
|
198
198
|
accept: Estoy de acuerdo con los términos
|
199
199
|
are_you_sure: '¿Seguro que deseas rechazar los términos de uso para administradoras?'
|
200
|
-
refuse: Rechazar los
|
200
|
+
refuse: Rechazar los términos del servicio de administración
|
201
201
|
title: Acepto los Términos y Condiciones de Administración
|
202
202
|
required_review:
|
203
203
|
alert: 'Requerido: revisa nuestros Términos y Condiciones de Administración'
|
204
204
|
callout: Por favor dedica un momento a familiarizarte con los términos de uso para administradoras. En caso contrario, no podrás administrar la plataforma.
|
205
|
-
cta:
|
205
|
+
cta: Revisarlos ahora.
|
206
206
|
title: Términos y Condiciones de Administración
|
207
207
|
area_types:
|
208
208
|
create:
|
@@ -643,7 +643,7 @@ es:
|
|
643
643
|
nickname: Alias
|
644
644
|
reason: Motivo
|
645
645
|
reports: Cantidad de veces reportado
|
646
|
-
title:
|
646
|
+
title: Participantes reportadas
|
647
647
|
report:
|
648
648
|
reasons:
|
649
649
|
does_not_belong: No pertenece
|
@@ -654,7 +654,7 @@ es:
|
|
654
654
|
unblocked: No bloqueado
|
655
655
|
moderations:
|
656
656
|
index:
|
657
|
-
title:
|
657
|
+
title: Contenido reportado
|
658
658
|
report:
|
659
659
|
reasons:
|
660
660
|
does_not_belong: No pertenece
|
@@ -840,7 +840,7 @@ es:
|
|
840
840
|
title: Participante de espacio de participación privado
|
841
841
|
new:
|
842
842
|
create: Crear
|
843
|
-
title: Nueva participante
|
843
|
+
title: Nueva participante del espacio privado.
|
844
844
|
participatory_space_private_users_csv_imports:
|
845
845
|
create:
|
846
846
|
invalid: Se produjo un error al leer el archivo CSV.
|
data/config/locales/eu.yml
CHANGED
@@ -42,7 +42,7 @@ eu:
|
|
42
42
|
admin_terms_of_use_body: Administratzailearen erabilera-terminoetarako testu-atala
|
43
43
|
alert_color: Alerta
|
44
44
|
available_authorizations: Baimen erabilgarriak
|
45
|
-
badges_enabled:
|
45
|
+
badges_enabled: Intsigniak gaitu
|
46
46
|
comments_max_length: Iruzkinen gehieneko luzera (utzi 0 defektuz konfigurazioa mantendu nahi baduzu)
|
47
47
|
cta_button_path: Deitu ekintza botoiaren bideora
|
48
48
|
cta_button_text: Deitu ekintza botoiaren testura
|
@@ -195,14 +195,11 @@ eu:
|
|
195
195
|
error: Errorea gertatu da Administrazioaren Gaiak eta Baldintzak onartzean.
|
196
196
|
success: Ederto! Onartu dituzu Administrazioaren Gaiak eta Baldintzak.
|
197
197
|
actions:
|
198
|
-
accept: Ados nago
|
199
198
|
are_you_sure: Ziur zaude ez dituzula onartu nahi administratzaileentzako erabilera-irizpideak?
|
200
|
-
refuse: Ez onartu Administrazio-irizpideak eta baldintzak
|
201
199
|
title: Onartzen ditut Administrazio-irizpideak eta baldintzak
|
202
200
|
required_review:
|
203
201
|
alert: 'Eskatuta: berrikusi gure Administrazio-irizpideak eta baldintzak'
|
204
202
|
callout: Mesedez, hartu tarte bat administratzaileentzako erabilera-irizpideak erabiltzeko. Bestela, ezin izango duzu plataforma administratu.
|
205
|
-
cta: Berrikusi orain.
|
206
203
|
title: Administrazioaren Irizpideak eta Baldintzak
|
207
204
|
area_types:
|
208
205
|
create:
|
@@ -418,7 +415,7 @@ eu:
|
|
418
415
|
'true': Ez da argitaratu
|
419
416
|
scope_id_eq:
|
420
417
|
label: Esparrua
|
421
|
-
search_label:
|
418
|
+
search_label: Bilatu
|
422
419
|
search_placeholder:
|
423
420
|
name_or_nickname_or_email_cont: Bilatu %{collection} helbide elektroniko, izen edo ezizenaren arabera.
|
424
421
|
reported_id_string_or_reported_content_cont: Bilatu %{collection} eduki edo Id erreportablearen arabera.
|
@@ -457,7 +454,7 @@ eu:
|
|
457
454
|
needs_authorization_warning: Gutxienez baimen gaitu bat behar duzu erakunde honendako.
|
458
455
|
not_managed: Ez da kudeatzen
|
459
456
|
promote: Sustatu
|
460
|
-
search:
|
457
|
+
search: Bilatu
|
461
458
|
status: Egoera
|
462
459
|
view_logs: Ikusi erregistroak
|
463
460
|
impersonations:
|
@@ -628,7 +625,6 @@ eu:
|
|
628
625
|
nickname: Ezizena
|
629
626
|
reason: Arrazoia
|
630
627
|
reports: Salaketa kopurua
|
631
|
-
title: Informatutako erabiltzaileen zerrenda
|
632
628
|
report:
|
633
629
|
reasons:
|
634
630
|
does_not_belong: Ez da bidezkoa
|
@@ -638,8 +634,6 @@ eu:
|
|
638
634
|
blocked: Blokeatuta
|
639
635
|
unblocked: Ez blokeatuta
|
640
636
|
moderations:
|
641
|
-
index:
|
642
|
-
title: ' Salaketak'
|
643
637
|
report:
|
644
638
|
reasons:
|
645
639
|
does_not_belong: Ez du zer ikusirik
|
@@ -0,0 +1 @@
|
|
1
|
+
fa:
|
data/config/locales/fi-plain.yml
CHANGED
@@ -643,7 +643,7 @@ fi-pl:
|
|
643
643
|
nickname: Nimimerkki
|
644
644
|
reason: Syy
|
645
645
|
reports: Ilmoitusten määrä
|
646
|
-
title:
|
646
|
+
title: Ilmoitetut osallistujat
|
647
647
|
report:
|
648
648
|
reasons:
|
649
649
|
does_not_belong: Ei kuulu
|
@@ -654,7 +654,7 @@ fi-pl:
|
|
654
654
|
unblocked: Ei estetty
|
655
655
|
moderations:
|
656
656
|
index:
|
657
|
-
title:
|
657
|
+
title: Ilmoitettu sisältö
|
658
658
|
report:
|
659
659
|
reasons:
|
660
660
|
does_not_belong: Ei kuulu
|
data/config/locales/fi.yml
CHANGED
@@ -40,7 +40,7 @@ fi:
|
|
40
40
|
subject: Otsikko
|
41
41
|
organization:
|
42
42
|
admin_terms_of_use_body: Hallintakäyttäjien käyttöehtojen sisältöteksti
|
43
|
-
alert_color:
|
43
|
+
alert_color: Virhe
|
44
44
|
available_authorizations: Käytettävissä olevat tunnistautumistavat
|
45
45
|
badges_enabled: Ota kunniamerkit käyttöön
|
46
46
|
comments_max_length: Kommenttien maksimipituus (jätä arvoksi 0 käyttääksesi oletusarvoa)
|
@@ -643,7 +643,7 @@ fi:
|
|
643
643
|
nickname: Nimimerkki
|
644
644
|
reason: Syy
|
645
645
|
reports: Ilmoitusten määrä
|
646
|
-
title:
|
646
|
+
title: Ilmoitetut osallistujat
|
647
647
|
report:
|
648
648
|
reasons:
|
649
649
|
does_not_belong: Ei kuulu
|
@@ -654,7 +654,7 @@ fi:
|
|
654
654
|
unblocked: Ei estetty
|
655
655
|
moderations:
|
656
656
|
index:
|
657
|
-
title:
|
657
|
+
title: Ilmoitettu sisältö
|
658
658
|
report:
|
659
659
|
reasons:
|
660
660
|
does_not_belong: Ei kuulu
|
@@ -995,7 +995,7 @@ fi:
|
|
995
995
|
success: Käyttäjän kutsuminen onnistui.
|
996
996
|
destroy:
|
997
997
|
error: Hallintakäyttäjän poisto epäonnistui.
|
998
|
-
success: Käyttäjä ei ole enää
|
998
|
+
success: Käyttäjä ei ole enää hallintakäyttäjä.
|
999
999
|
form:
|
1000
1000
|
email: Sähköposti
|
1001
1001
|
name: Nimi
|
data/config/locales/fr-CA.yml
CHANGED
@@ -202,7 +202,7 @@ fr-CA:
|
|
202
202
|
required_review:
|
203
203
|
alert: 'Obligatoire: Consultez nos conditions d''utilisation administrateur'
|
204
204
|
callout: Veuillez prendre un moment pour consulter les conditions d'utilisation de l'administration. Sinon, vous ne pourrez pas gérer la plateforme.
|
205
|
-
cta:
|
205
|
+
cta: Consultez les maintenant.
|
206
206
|
title: Conditions d'utilisation administrateur
|
207
207
|
area_types:
|
208
208
|
create:
|
@@ -643,7 +643,7 @@ fr-CA:
|
|
643
643
|
nickname: Pseudonyme
|
644
644
|
reason: Raison du signalement
|
645
645
|
reports: Nombre de signalements
|
646
|
-
title:
|
646
|
+
title: Participants signalés
|
647
647
|
report:
|
648
648
|
reasons:
|
649
649
|
does_not_belong: N'appartient pas
|
@@ -654,7 +654,7 @@ fr-CA:
|
|
654
654
|
unblocked: Non bloqué
|
655
655
|
moderations:
|
656
656
|
index:
|
657
|
-
title:
|
657
|
+
title: Contenu signalé
|
658
658
|
report:
|
659
659
|
reasons:
|
660
660
|
does_not_belong: N'appartient pas
|
data/config/locales/fr.yml
CHANGED
@@ -643,7 +643,7 @@ fr:
|
|
643
643
|
nickname: Pseudonyme
|
644
644
|
reason: Raison du signalement
|
645
645
|
reports: Nombre de signalements
|
646
|
-
title:
|
646
|
+
title: Participants signalés
|
647
647
|
report:
|
648
648
|
reasons:
|
649
649
|
does_not_belong: N'appartient pas
|
@@ -654,7 +654,7 @@ fr:
|
|
654
654
|
unblocked: Non bloqué
|
655
655
|
moderations:
|
656
656
|
index:
|
657
|
-
title:
|
657
|
+
title: Contenu signalé
|
658
658
|
report:
|
659
659
|
reasons:
|
660
660
|
does_not_belong: N'appartient pas
|
@@ -820,7 +820,7 @@ fr:
|
|
820
820
|
up: Monter
|
821
821
|
form:
|
822
822
|
add: Ajouter à la liste blanche
|
823
|
-
title: Liste
|
823
|
+
title: Liste des domaines externes autorisés
|
824
824
|
organization_homepage:
|
825
825
|
edit:
|
826
826
|
active_content_blocks: Blocs de contenu actif
|
data/config/locales/gl.yml
CHANGED
@@ -179,11 +179,9 @@ gl:
|
|
179
179
|
error: Produciuse un erro ao aceptar os termos de uso do panel de administración.
|
180
180
|
success: Xenial! Aceptaches os termos de uso do panel de administración.
|
181
181
|
actions:
|
182
|
-
refuse: Rexeitar os termos de uso
|
183
182
|
title: Concordo cos termos e condicións de uso
|
184
183
|
required_review:
|
185
184
|
alert: 'Requirido: Revisa os nosos termos de uso do panel de administración'
|
186
|
-
cta: Revísaos agora.
|
187
185
|
title: Termos de uso do panel de administración
|
188
186
|
area_types:
|
189
187
|
create:
|
@@ -617,7 +615,6 @@ gl:
|
|
617
615
|
nickname: Alcume
|
618
616
|
reason: Motivo
|
619
617
|
reports: Número de denuncias
|
620
|
-
title: Listando os usuarios reportados
|
621
618
|
report:
|
622
619
|
reasons:
|
623
620
|
does_not_belong: Non pertence
|
@@ -627,8 +624,6 @@ gl:
|
|
627
624
|
blocked: Bloqueados
|
628
625
|
unblocked: Sen bloquear
|
629
626
|
moderations:
|
630
|
-
index:
|
631
|
-
title: Moderacións
|
632
627
|
report:
|
633
628
|
reasons:
|
634
629
|
does_not_belong: Non pertence
|