decidim-decidim_awesome 0.12.3 → 0.12.4
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/CHANGELOG.md +13 -1
- data/README.md +1 -1
- data/app/commands/concerns/decidim/decidim_awesome/admin/needs_constraint_helpers.rb +39 -5
- data/app/commands/decidim/decidim_awesome/admin/create_authorization_group.rb +42 -0
- data/app/commands/decidim/decidim_awesome/admin/create_custom_redirect.rb +10 -14
- data/app/commands/decidim/decidim_awesome/admin/create_menu_hack.rb +9 -8
- data/app/commands/decidim/decidim_awesome/admin/create_proposal_custom_field.rb +3 -8
- data/app/commands/decidim/decidim_awesome/admin/create_scoped_admin.rb +4 -8
- data/app/commands/decidim/decidim_awesome/admin/create_scoped_style.rb +3 -7
- data/app/commands/decidim/decidim_awesome/admin/destroy_authorization_group.rb +37 -0
- data/app/commands/decidim/decidim_awesome/admin/destroy_custom_redirect.rb +10 -9
- data/app/commands/decidim/decidim_awesome/admin/destroy_menu_hack.rb +8 -7
- data/app/commands/decidim/decidim_awesome/admin/destroy_proposal_custom_field.rb +7 -13
- data/app/commands/decidim/decidim_awesome/admin/destroy_scoped_admin.rb +7 -10
- data/app/commands/decidim/decidim_awesome/admin/destroy_scoped_style.rb +6 -11
- data/app/commands/decidim/decidim_awesome/admin/update_config.rb +12 -1
- data/app/commands/decidim/decidim_awesome/admin/update_custom_redirect.rb +11 -11
- data/app/commands/decidim/decidim_awesome/admin/update_menu_hack.rb +10 -8
- data/app/controllers/concerns/decidim/decidim_awesome/enforce_access_authorizations.rb +49 -0
- data/app/controllers/concerns/decidim/decidim_awesome/needs_hashcash.rb +7 -5
- data/app/controllers/decidim/decidim_awesome/admin/constraints_controller.rb +2 -0
- data/app/controllers/decidim/decidim_awesome/admin/force_authorizations_controller.rb +44 -0
- data/app/controllers/decidim/decidim_awesome/required_authorizations_controller.rb +51 -13
- data/app/forms/concerns/decidim/decidim_awesome/proposals/admin/proposal_form_customizations.rb +59 -0
- data/app/forms/concerns/decidim/decidim_awesome/proposals/proposal_form_customizations.rb +28 -28
- data/app/forms/concerns/decidim/decidim_awesome/proposals/proposal_form_customizations_base.rb +36 -0
- data/app/forms/decidim/decidim_awesome/admin/authorization_group_form.rb +66 -0
- data/app/forms/decidim/decidim_awesome/admin/config_form.rb +12 -26
- data/app/forms/decidim/decidim_awesome/admin/constraint_form.rb +2 -0
- data/app/helpers/concerns/decidim/decidim_awesome/amendments_helper_override.rb +2 -1
- data/app/helpers/decidim/decidim_awesome/admin/config_constraints_helpers.rb +20 -17
- data/app/overrides/decidim/assemblies/admin/assemblies/_form/add_visibility_callout.html.erb.deface +3 -0
- data/app/overrides/decidim/conferences/admin/conferences/_form/add_visibility_callout.html.erb.deface +3 -0
- data/app/overrides/decidim/participatory_processes/admin/participatory_process_groups/_form/add_visibility_callout.html.erb.deface +3 -0
- data/app/overrides/decidim/participatory_processes/admin/participatory_processes/_form/add_visibility_callout.html.erb.deface +3 -0
- data/app/overrides/decidim/shared/_login_modal/add_hashcash.html.erb.deface +3 -0
- data/app/packs/src/decidim/decidim_awesome/admin/auto_edit.js +15 -0
- data/app/packs/src/decidim/decidim_awesome/awesome_admin.js +0 -1
- data/app/packs/stylesheets/decidim/decidim_awesome/admin/codemirror.scss +6 -1
- data/app/packs/stylesheets/decidim/decidim_awesome/admin/constraints.scss +5 -0
- data/app/packs/stylesheets/decidim/decidim_awesome/admin/custom_fields.scss +1 -2
- data/app/queries/decidim/decidim_awesome/space_constraint_finder.rb +43 -0
- data/app/serializers/concerns/decidim/decidim_awesome/proposals/proposal_serializer_methods.rb +3 -2
- data/app/services/decidim/decidim_awesome/access_authorization_service.rb +79 -0
- data/app/types/concerns/decidim/decidim_awesome/add_proposal_type_custom_fields.rb +2 -1
- data/app/views/decidim/decidim_awesome/admin/config/_authorization_options_form.html.erb +19 -0
- data/app/views/decidim/decidim_awesome/admin/config/_form_verifications.html.erb +71 -9
- data/app/views/decidim/decidim_awesome/admin/constraints/_form.html.erb +5 -4
- data/app/views/decidim/decidim_awesome/admin/shared/_visibility_notice.html.erb +8 -0
- data/app/views/decidim/decidim_awesome/hashcash/_hidden_field.html.erb +0 -1
- data/app/views/decidim/decidim_awesome/required_authorizations/index.html.erb +14 -4
- data/config/i18n-tasks.yml +1 -0
- data/config/locales/ca.yml +31 -7
- data/config/locales/cs.yml +32 -7
- data/config/locales/de.yml +31 -7
- data/config/locales/en.yml +36 -12
- data/config/locales/es.yml +32 -7
- data/config/locales/eu.yml +3 -8
- data/config/locales/fr.yml +3 -8
- data/config/locales/ja.yml +70 -7
- data/config/locales/sv.yml +49 -0
- data/lib/decidim/decidim_awesome/admin_engine.rb +1 -0
- data/lib/decidim/decidim_awesome/{authorizator.rb → authorizer.rb} +1 -1
- data/lib/decidim/decidim_awesome/awesome.rb +5 -17
- data/lib/decidim/decidim_awesome/awesome_helpers.rb +14 -5
- data/lib/decidim/decidim_awesome/checksums.yml +11 -0
- data/lib/decidim/decidim_awesome/config.rb +18 -7
- data/lib/decidim/decidim_awesome/context_analyzers/request_analyzer.rb +1 -1
- data/lib/decidim/decidim_awesome/engine.rb +3 -1
- data/lib/decidim/decidim_awesome/menu.rb +1 -1
- data/lib/decidim/decidim_awesome/middleware/current_config.rb +5 -10
- data/lib/decidim/decidim_awesome/test/initializer.rb +1 -1
- data/lib/decidim/decidim_awesome/test/shared_examples/proposal_form_examples.rb +191 -0
- data/lib/decidim/decidim_awesome/test/shared_examples/summary_examples.rb +7 -3
- data/lib/decidim/decidim_awesome/version.rb +1 -1
- data/package.json +4 -4
- metadata +20 -5
- data/app/controllers/concerns/decidim/decidim_awesome/check_login_authorizations.rb +0 -60
- data/app/packs/src/decidim/decidim_awesome/admin/verification_selects.js +0 -21
data/config/locales/cs.yml
CHANGED
@@ -9,10 +9,9 @@ cs:
|
|
9
9
|
allow_images_in_editors: Povolit obrázky v HTML editoru
|
10
10
|
allow_images_in_proposals: Povolit obrázky v editoru návrhů
|
11
11
|
allow_videos_in_editors: Povolit videa v HTML editoru
|
12
|
+
authorization_options_form: Možnosti autorizace
|
12
13
|
auto_save_forms: Automaticky ukládat formuláře v místním úložišti
|
13
|
-
|
14
|
-
force_authorization_help_text: Text nápovědy pro autorizační stránku
|
15
|
-
force_authorization_with_any_method: Povolit přístup, pokud je udělen některou z autorizací (ve výchozím nastavení jsou vyžadovány vše)
|
14
|
+
force_authorizations: Autorizační skupina %{id}
|
16
15
|
hashcash_login: Povolit ochranu Hashcash bota pro existující uživatele (přihlášení)
|
17
16
|
hashcash_login_bits: Počet bitů pro hashcash algoritmus (přihlášení)
|
18
17
|
hashcash_signup: Povolit ochranu Hashcash bota pro nové uživatele (registrace)
|
@@ -42,6 +41,7 @@ cs:
|
|
42
41
|
validate_title_min_length: Minimální počet znaků pro tělo zprávy
|
43
42
|
validate_title_start_with_caps: Vynutit začít tělo textu velkým písmenem
|
44
43
|
constraint:
|
44
|
+
application_context: Pouze pro
|
45
45
|
component_id: nebo konkrétně v
|
46
46
|
component_manifest: Pouze v komponentách typu
|
47
47
|
participatory_space_manifest: Použít na participační prostory typu
|
@@ -213,7 +213,10 @@ cs:
|
|
213
213
|
index:
|
214
214
|
admin_head_tags: Úžasné tagy zahrnuté v hlavičce administrace aplikace
|
215
215
|
decidim-admin: Z modulu Admin
|
216
|
+
decidim-assemblies: Z modulu Shromáždění
|
217
|
+
decidim-conferences: Z Konferenční modulu
|
216
218
|
decidim-core: Z hlavního Core modulu
|
219
|
+
decidim-participatory_processes: Z modulu participačních procesů
|
217
220
|
decidim-proposals: Z modulu Návrhy
|
218
221
|
decidim_version: Decidim verze %{version}
|
219
222
|
errors:
|
@@ -228,6 +231,7 @@ cs:
|
|
228
231
|
Můžete zahájit proces nyní a bude probíhat na pozadí.
|
229
232
|
start_image_migrations: "\U0001F449 Zahájit proces migrace"
|
230
233
|
config:
|
234
|
+
anonymous: Nepřihlášení uživatelé
|
231
235
|
caution: 'POZNÁMKA: Tato funkce silně mění některé výchozí chování, které by mohlo vést k neočekávaným výsledkům. Používejte ji s opatrností!'
|
232
236
|
constraints:
|
233
237
|
add_condition: Přidat případ
|
@@ -236,6 +240,9 @@ cs:
|
|
236
240
|
delete: Smazat
|
237
241
|
edit: Upravit
|
238
242
|
title: 'Platí pouze v těchto případech:'
|
243
|
+
create_force_authorization:
|
244
|
+
error: Chyba při vytváření nové autorizační skupiny! %{error}
|
245
|
+
success: Autorizační skupina %{key} byla úspěšně vytvořena
|
239
246
|
create_proposal_custom_field:
|
240
247
|
error: Chyba při vytváření nového pole "vlastní pole"! %{error}
|
241
248
|
success: '"vlastní pole" %{key} úspěšně vytvořeno'
|
@@ -245,6 +252,9 @@ cs:
|
|
245
252
|
create_scoped_style:
|
246
253
|
error: Chyba při vytváření nového CSS boxu! %{error}
|
247
254
|
success: CSS box %{key} úspěšně vytvořen
|
255
|
+
destroy_force_authorization:
|
256
|
+
error: Chyba při odstraňování autorizační skupiny! %{error}
|
257
|
+
success: Autorizační skupina %{key} byla úspěšně odstraněna
|
248
258
|
destroy_proposal_custom_field:
|
249
259
|
error: Chyba při odebírání "vlastního pole"! %{error}
|
250
260
|
success: '"vlastní pole" %{key} bylo úspěšně odebráno'
|
@@ -254,6 +264,7 @@ cs:
|
|
254
264
|
destroy_scoped_style:
|
255
265
|
error: Chyba při odstraňování CSS boxu! %{error}
|
256
266
|
success: CSS box %{key} byl úspěšně odstraněn
|
267
|
+
force_authorizations: Autorizační skupiny
|
257
268
|
form:
|
258
269
|
additional_proposal_sortings:
|
259
270
|
enable_all: Povolit všechny další možnosti řazení
|
@@ -263,13 +274,13 @@ cs:
|
|
263
274
|
errors:
|
264
275
|
incorrect_css: 'CSS v poli #%{key} je neplatné'
|
265
276
|
incorrect_json: 'Definice JSON v poli #%{key} je neplatná'
|
277
|
+
force_authorization_help_text: Text nápovědy pro autorizační stránku
|
266
278
|
help:
|
267
279
|
allow_images_in_editors: Toto přidá ikonu pro nahrávání obrázků ve všech WYSIWYG editorech
|
268
280
|
allow_images_in_proposals: Toto umožní nahrávat obrázky do editoru návrhů, které jsou k dispozici každému uživateli
|
269
281
|
allow_videos_in_editors: Toto přidá ikonu video odkazu ve všech WYSIWYG editorech
|
270
282
|
auto_save_forms: Toto bude používat místní úložiště pro automatické ukládání dat zavedených uživateli do průzkumů a jiných formulářů během vyplňování. Data budou obnovena v budoucí návštěvě stejného prohlížeče v případě, že formulář nebude odeslán. Pokud je formulář odeslán, data budou odstraněna. Pokud uživatelé odstraní svá data z místního úložiště, data nebudou obnovena.
|
271
283
|
drag_and_drop_supported: Při nahrávání obrázků je podporováno vložení přetažením. Obrázky budou nahrány na server a vloženy jako externí zdroje (nepoužívá base64 inline kódování).
|
272
|
-
force_authorization_after_login: 'Pokud je povoleno, uživatelé budou po přihlášení nebo registraci přesměrováni na autorizační stránku, pokud nejsou uděleny některé z zadaných autorizací. To je užitečné, pokud chcete donutit uživatele k ověření pomocí specifické autorizace, než se budou moci vůbec přihlásit (např.: zabránit spamu).'
|
273
284
|
force_authorization_help_text: Přidejte vlastní text, který vysvětlí proč je potřeba autorizace. Také se ujistěte, že přidáte kontaktní metodu pro případ, že uživatelé potřebují pomoc.
|
274
285
|
hashcash_i18n_key: 'Text, který je zobrazen uživatelům v tlačítkách pro přihlášení / registraci pomocí klíče i18n: %{key}'
|
275
286
|
hashcash_login: |
|
@@ -306,12 +317,21 @@ cs:
|
|
306
317
|
validate_title_max_marks_together: 'Omezit počet otazníků a vykřičníků, které lze psát dohromada. Např: Pokud je 2, pak ''!!!'' nebude v textu povoleno'
|
307
318
|
validate_title_min_length: Název je vždy povinný a toto číslo nemůže být nulové
|
308
319
|
verifications_html: |
|
309
|
-
Zde můžete
|
310
|
-
|
311
|
-
Také berte na vědomí, že tato nastavení jsou aplikována na všechny uživatele. Administrátoři však budou mít vždy přístup k administraci.
|
320
|
+
Zde můžete nastavit další omezení přístupu do participačních prostor nebo součástí, které budou nutit uživatele k ověření před přístupem k určitým místům (např.: aby se zabránilo spamu).<br>
|
321
|
+
Omezení platí pro všechny uživatele, ale administrátoři budou mít vždy přístup do /admin panelu.
|
312
322
|
validators:
|
313
323
|
body: Ověření vstupu uživatele pro pole "tělo"
|
314
324
|
title: Ověření uživatelem pro pole "Název"
|
325
|
+
form_force_authorizations:
|
326
|
+
delete: Smazat
|
327
|
+
force_authorizations_html: |
|
328
|
+
Definujte ověřovací skupiny. Každá skupina může vyžadovat, aby byli uživatelé ověřeni
|
329
|
+
jednou nebo více metodami přístupu k určitým oblastem platformy.
|
330
|
+
help: Můžete definovat skupiny autorizačních metod a omezit přístup na základě nich.
|
331
|
+
new: Přidat novou autorizační skupinu
|
332
|
+
remove: Odstranit tuto "autorizační skupinu"
|
333
|
+
sure_to_remove: Opravdu chcete odstranit tuto autorizační skupinu?
|
334
|
+
title: 'Omezit přístup s:'
|
315
335
|
form_proposal_custom_fields:
|
316
336
|
delete: Smazat
|
317
337
|
new: Přidat nové pole "vlastní pole"
|
@@ -358,6 +378,7 @@ cs:
|
|
358
378
|
update:
|
359
379
|
error: Chyba při aktualizaci konfigurace! %{error}
|
360
380
|
success: Konfigurace byla úspěšně aktualizována
|
381
|
+
user_logged_in: Přihlášení uživatelé
|
361
382
|
constraints:
|
362
383
|
create:
|
363
384
|
error: Chyba při vytváření případu stavu
|
@@ -539,6 +560,9 @@ cs:
|
|
539
560
|
scoped_styles:
|
540
561
|
menu:
|
541
562
|
title: Veřejný frontend
|
563
|
+
visibility:
|
564
|
+
info_html: Další omezení přístupu můžete spravovat pomocí ověření s %{awesome_link}.
|
565
|
+
restricted_html: Tento prostor používá další omezení přístupu s %{awesome_link}.
|
542
566
|
admin_log:
|
543
567
|
component:
|
544
568
|
destroy_private_data: "%{user_name} zničil %{count} položky soukromých dat pro %{resource_name} v %{space_name}"
|
@@ -612,6 +636,7 @@ cs:
|
|
612
636
|
proposal_private_custom_fields_disclosure: Tyto informace nebudou publikovány
|
613
637
|
required_authorizations:
|
614
638
|
index:
|
639
|
+
authorization_options_invalid: Bohužel, i když máte tuto autorizaci, údaje použité k vašemu ověření v tomto kontextu neplatí.
|
615
640
|
cancel: Udělám to za chvíli, %{link}.
|
616
641
|
granted_title: Udělená ověření
|
617
642
|
logout: dovolte mi odhlásit se
|
data/config/locales/de.yml
CHANGED
@@ -9,10 +9,9 @@ de:
|
|
9
9
|
allow_images_in_editors: Bilder im HTML-Editor erlauben
|
10
10
|
allow_images_in_proposals: Bilder im Vorschlags-Editor erlauben
|
11
11
|
allow_videos_in_editors: Videos im HTML-Editor erlauben
|
12
|
+
authorization_options_form: Autorisierungsoptionen
|
12
13
|
auto_save_forms: Formulare automatisch lokal speichern
|
13
|
-
|
14
|
-
force_authorization_help_text: Hilfetext für die Autorisierungsseite
|
15
|
-
force_authorization_with_any_method: Erlaube Zugriff, wenn eine der Genehmigungen erteilt wird (standardmäßig sind alle erforderlich)
|
14
|
+
force_authorizations: Autorisierungsgruppe %{id}
|
16
15
|
hashcash_login: Den Hashcash Bot-Schutz für bestehende Benutzende aktivieren (Anmeldung)
|
17
16
|
hashcash_login_bits: Anzahl der Bits für den Hashcash Algorithmus (Anmeldung)
|
18
17
|
hashcash_signup: Den Hashcash Bot-Schutz für neue Benutzende aktivieren (Registrierung)
|
@@ -42,6 +41,7 @@ de:
|
|
42
41
|
validate_title_min_length: Minimale zwingend erforderliche Anzahl Zeichen im Titel
|
43
42
|
validate_title_start_with_caps: Titel muss zwingend mit einem Großbuchstaben beginnen
|
44
43
|
constraint:
|
44
|
+
application_context: Nur für
|
45
45
|
component_id: oder spezifisch in
|
46
46
|
component_manifest: Nur in Komponenten vom Typ
|
47
47
|
participatory_space_manifest: Anwenden auf partizipative Bereiche vom Typ
|
@@ -213,7 +213,10 @@ de:
|
|
213
213
|
index:
|
214
214
|
admin_head_tags: Angezeigte Awesome Tags im Admin Application Header
|
215
215
|
decidim-admin: decidim-admin
|
216
|
+
decidim-assemblies: Vom Gremien-Modul
|
217
|
+
decidim-conferences: Von Konferenz-Modul
|
216
218
|
decidim-core: Vom Kernmodul
|
219
|
+
decidim-participatory_processes: Vom Beteiligungsprozess-Bereich
|
217
220
|
decidim-proposals: Von der Vorschlags-Komponente
|
218
221
|
decidim_version: Decidim Version %{version}
|
219
222
|
errors:
|
@@ -228,6 +231,7 @@ de:
|
|
228
231
|
Sie können den Prozess jetzt starten und er wird im Hintergrund ausgeführt.
|
229
232
|
start_image_migrations: "\U0001F449 Starten Sie den Migrationsprozess jetzt"
|
230
233
|
config:
|
234
|
+
anonymous: Nicht eingeloggte Nutzende
|
231
235
|
caution: 'HINWEIS: Mit dieser Funktion werden einige Standardverhaltensweisen stark verändert, was zu unerwarteten Ergebnissen führen kann. Verwenden Sie sie mit Vorsicht!'
|
232
236
|
constraints:
|
233
237
|
add_condition: Einschränkung hinzufügen
|
@@ -236,6 +240,9 @@ de:
|
|
236
240
|
delete: Löschen
|
237
241
|
edit: Bearbeiten
|
238
242
|
title: 'Einschränkungen'
|
243
|
+
create_force_authorization:
|
244
|
+
error: Fehler beim Erstellen einer neuen Autorisierungsgruppe! %{error}
|
245
|
+
success: Autorisierungsgruppe %{key} erfolgreich erstellt
|
239
246
|
create_proposal_custom_field:
|
240
247
|
error: Beim Erstellen eines neuen Eingabefeldes ist ein Fehler aufgetreten! %{error}
|
241
248
|
success: 'Eingabefeld %{key} erfolgreich erstellt!'
|
@@ -245,6 +252,9 @@ de:
|
|
245
252
|
create_scoped_style:
|
246
253
|
error: Fehler beim Erstellen einer neuen CSS-Box! %{error}
|
247
254
|
success: CSS-Box %{key} erfolgreich erstellt
|
255
|
+
destroy_force_authorization:
|
256
|
+
error: Fehler beim Entfernen der Autorisierungsgruppe! %{error}
|
257
|
+
success: Autorisierungsgruppe %{key} erfolgreich entfernt
|
248
258
|
destroy_proposal_custom_field:
|
249
259
|
error: Das Eingabefeld konnte aufgrund eines Fehlers nicht entfernt werden! %{error}
|
250
260
|
success: 'Das Eingabefeld %{key} wurde erfolgreich entfernt.'
|
@@ -254,6 +264,7 @@ de:
|
|
254
264
|
destroy_scoped_style:
|
255
265
|
error: Fehler beim Entfernen der CSS-Box! %{error}
|
256
266
|
success: CSS-Box %{key} erfolgreich entfernt
|
267
|
+
force_authorizations: Autorisierungsgruppen
|
257
268
|
form:
|
258
269
|
additional_proposal_sortings:
|
259
270
|
enable_all: Alle zusätzlichen Sortieroptionen aktiviert
|
@@ -263,13 +274,13 @@ de:
|
|
263
274
|
errors:
|
264
275
|
incorrect_css: 'CSS in Box #%{key} ist ungültig'
|
265
276
|
incorrect_json: 'JSON-Definition in Box #%{key} ist ungültig'
|
277
|
+
force_authorization_help_text: Hilfetext für die Autorisierungsseite
|
266
278
|
help:
|
267
279
|
allow_images_in_editors: Dies fügt ein Bild-Upload-Symbol in allen WYSIWYG-Editoren hinzu
|
268
280
|
allow_images_in_proposals: Bilder in Vorschlägen erlauben
|
269
281
|
allow_videos_in_editors: Dies fügt ein Video-Upload-Symbol in allen WYSIWYG-Editoren hinzu
|
270
282
|
auto_save_forms: Formulare automatisch speichern
|
271
283
|
drag_and_drop_supported: Drag and Drop unterstützen
|
272
|
-
force_authorization_after_login: 'Wenn aktiviert, werden Benutzer nach Login oder Registrierung auf die Autorisierungsseite weitergeleitet, wenn einige der angegebenen Autorisierungen nicht gewährt werden. Dies ist nützlich, wenn Sie Benutzer mit einer bestimmten Berechtigung verifizieren wollen, bevor sie sich überhaupt einloggen können (z. B. um Spam zu verhindern).'
|
273
284
|
force_authorization_help_text: Fügen Sie einen benutzerdefinierten Text hinzu, um zu erklären, warum eine Autorisierung erforderlich ist. Stellen Sie auch sicher, dass Sie eine Kontaktmethode hinzufügen, falls Benutzer Hilfe benötigen.
|
274
285
|
hashcash_i18n_key: 'Sie können den Text, der den Benutzenden in den Anmelde-Buttons angezeigt wird, mit folgendem i18n-Key anpassen: %{key}'
|
275
286
|
hashcash_login: |
|
@@ -306,12 +317,20 @@ de:
|
|
306
317
|
validate_title_max_marks_together: 'Begrenzt die Anzahl der Frage- und Ausrufezeichen, die zusammen geschrieben werden können. Zum Beispiel: Der Wert 2 führt dazu, dass ''!!!'' im Text nicht erlaubt ist'
|
307
318
|
validate_title_min_length: Der Titel ist immer obligatorisch und diese Zahl kann nicht Null sein
|
308
319
|
verifications_html: |
|
309
|
-
Hier können Sie
|
310
|
-
|
311
|
-
Beachten Sie auch, dass diese Einstellungen auf alle Benutzer angewendet werden. Administratoren haben jedoch immer Zugriff auf das Admin-Backend.
|
320
|
+
Hier können Sie zusätzliche Zugriffsbeschränkungen für Partizipationsbereiche oder Komponenten vornehmen, die Nutzende vor dem Zugriff auf bestimmte Standorte auffordert, sich zu verifizieren (z.B. um Spam zu verhindern).<br>
|
321
|
+
Beschränkungen gelten für alle Nutzenden, aber Admins haben immer Zugriff auf das /admin Panel.
|
312
322
|
validators:
|
313
323
|
body: Eingabevalidierungen für das Feld "Textkörper"
|
314
324
|
title: Eingabevalidierungen für das Feld "Titel"
|
325
|
+
form_force_authorizations:
|
326
|
+
delete: Löschen
|
327
|
+
force_authorizations_html: |
|
328
|
+
Verifizierungsgruppen definieren. Jede Gruppe kann Nutzenden eine oder mehrere Verifizierungsarten für bestimmte Bereiche der Plattform vorschreiben.
|
329
|
+
help: Sie können Gruppen von Autorisierungsmethoden definieren und den darauf basierenden Zugriff einschränken.
|
330
|
+
new: Eine neue Autorisierungsgruppe hinzufügen
|
331
|
+
remove: Diese "Autorisierungsgruppe" entfernen
|
332
|
+
sure_to_remove: Sind Sie sicher, dass Sie diese Autorisierungsgruppe löschen möchten?
|
333
|
+
title: 'Zugriff beschränken mit:'
|
315
334
|
form_proposal_custom_fields:
|
316
335
|
delete: Löschen
|
317
336
|
new: Neues Eingabefeld
|
@@ -358,6 +377,7 @@ de:
|
|
358
377
|
update:
|
359
378
|
error: Fehler beim Aktualisieren der Konfiguration! %{error}
|
360
379
|
success: Konfiguration erfolgreich aktualisiert
|
380
|
+
user_logged_in: Angemeldete Nutzende
|
361
381
|
constraints:
|
362
382
|
create:
|
363
383
|
error: Es gab einen Fehler beim Erstellen der Einschränkung
|
@@ -534,6 +554,9 @@ de:
|
|
534
554
|
scoped_styles:
|
535
555
|
menu:
|
536
556
|
title: Öffentliches Frontend
|
557
|
+
visibility:
|
558
|
+
info_html: Sie können zusätzliche Zugriffsbeschränkungen mit %{awesome_link} verwalten.
|
559
|
+
restricted_html: Dieser Bereich verwendet zusätzliche Zugriffsbeschränkungen mit %{awesome_link}.
|
537
560
|
admin_log:
|
538
561
|
component:
|
539
562
|
destroy_private_data: "%{user_name} hat %{count} private Daten für %{resource_name} in %{space_name} gelöscht"
|
@@ -599,6 +622,7 @@ de:
|
|
599
622
|
proposal_private_custom_fields_disclosure: Diese Informationen werden nicht veröffentlicht
|
600
623
|
required_authorizations:
|
601
624
|
index:
|
625
|
+
authorization_options_invalid: Obwohl Sie diese Genehmigung besitzen, sind die zur Überprüfung verwendeten Daten in diesem Zusammenhang leider nicht gültig.
|
602
626
|
cancel: Ich werde das in einem anderen Moment tun, %{link}.
|
603
627
|
granted_title: Gewährte Verifizierungen
|
604
628
|
logout: abmelden lassen
|
data/config/locales/en.yml
CHANGED
@@ -10,11 +10,9 @@ en:
|
|
10
10
|
allow_images_in_editors: Allow images in the HTML editor
|
11
11
|
allow_images_in_proposals: Allow images in the proposals editor
|
12
12
|
allow_videos_in_editors: Allow videos in the HTML editor
|
13
|
+
authorization_options_form: Authorization options
|
13
14
|
auto_save_forms: Auto save forms in local storage
|
14
|
-
|
15
|
-
force_authorization_help_text: Help text for the authorization page
|
16
|
-
force_authorization_with_any_method: Allow access if any of the authorizations
|
17
|
-
is granted (by default, all are required)
|
15
|
+
force_authorizations: Authorization group %{id}
|
18
16
|
hashcash_login: Enable the Hashcash bot protection for existing users (login)
|
19
17
|
hashcash_login_bits: Number of bits for the Hashcash algorithm (login)
|
20
18
|
hashcash_signup: Enable the Hashcash bot protection for new users (sign up)
|
@@ -52,6 +50,7 @@ en:
|
|
52
50
|
validate_title_min_length: Minimum required characters for the title
|
53
51
|
validate_title_start_with_caps: Force the title to start with a capital letter
|
54
52
|
constraint:
|
53
|
+
application_context: Only for
|
55
54
|
component_id: or specifically in
|
56
55
|
component_manifest: Only in components of type
|
57
56
|
participatory_space_manifest: Apply to participatory spaces of type
|
@@ -251,7 +250,10 @@ en:
|
|
251
250
|
index:
|
252
251
|
admin_head_tags: Awesome tags included in the admin application header
|
253
252
|
decidim-admin: From Admin module
|
253
|
+
decidim-assemblies: From Assemblies module
|
254
|
+
decidim-conferences: From Conferences module
|
254
255
|
decidim-core: From Core module
|
256
|
+
decidim-participatory_processes: From Participatory Processes module
|
255
257
|
decidim-proposals: From Proposals module
|
256
258
|
decidim_version: Decidim version %{version}
|
257
259
|
errors:
|
@@ -268,6 +270,7 @@ en:
|
|
268
270
|
You can start the process now and it will be performed in the background.
|
269
271
|
start_image_migrations: "👉 Start the migration process now"
|
270
272
|
config:
|
273
|
+
anonymous: Non-logged users
|
271
274
|
caution: 'NOTE: This feature heavily modifies some default behaviors that
|
272
275
|
might lead to unexpected results. Use it with caution!'
|
273
276
|
constraints:
|
@@ -278,6 +281,9 @@ en:
|
|
278
281
|
delete: Delete
|
279
282
|
edit: Edit
|
280
283
|
title: 'Applicable only in these cases:'
|
284
|
+
create_force_authorization:
|
285
|
+
error: Error creating a new authorization group! %{error}
|
286
|
+
success: Authorization group %{key} created successfully
|
281
287
|
create_proposal_custom_field:
|
282
288
|
error: Error creating a new "custom field" box! %{error}
|
283
289
|
success: '"custom field" box %{key} created successfully'
|
@@ -287,6 +293,9 @@ en:
|
|
287
293
|
create_scoped_style:
|
288
294
|
error: Error creating a new CSS box! %{error}
|
289
295
|
success: CSS box %{key} created successfully
|
296
|
+
destroy_force_authorization:
|
297
|
+
error: Error removing authorization group! %{error}
|
298
|
+
success: Authorization group %{key} removed successfully
|
290
299
|
destroy_proposal_custom_field:
|
291
300
|
error: Error removing "custom field" box! %{error}
|
292
301
|
success: '"custom field" box %{key} removed successfully'
|
@@ -296,6 +305,7 @@ en:
|
|
296
305
|
destroy_scoped_style:
|
297
306
|
error: Error removing CSS box! %{error}
|
298
307
|
success: CSS box %{key} removed successfully
|
308
|
+
force_authorizations: Authorization groups
|
299
309
|
form:
|
300
310
|
additional_proposal_sortings:
|
301
311
|
enable_all: Enable all additional sorting options
|
@@ -307,6 +317,7 @@ en:
|
|
307
317
|
errors:
|
308
318
|
incorrect_css: 'CSS in box #%{key} is invalid'
|
309
319
|
incorrect_json: 'JSON definition in box #%{key} is invalid'
|
320
|
+
force_authorization_help_text: Help text for the authorization page
|
310
321
|
help:
|
311
322
|
allow_images_in_editors: This will add an image uploader icon in all
|
312
323
|
the WYSIWYG editors
|
@@ -324,11 +335,6 @@ en:
|
|
324
335
|
drag_and_drop_supported: When uploading images, Drag & Drop is supported.
|
325
336
|
Images will be uploaded to the server and inserted as external resources
|
326
337
|
(it doesn't use base64 inline encoding).
|
327
|
-
force_authorization_after_login: 'If enabled, users will be redirected
|
328
|
-
to the authorization page after login or registration if some of the
|
329
|
-
specified authorizations are not granted. This is useful if you want
|
330
|
-
to force users to be verified with a specific authorization before
|
331
|
-
they can login at all (ie: to prevent spam).'
|
332
338
|
force_authorization_help_text: Add a custom text to explain why authorization
|
333
339
|
is required. Also make sure you add a contact method in case users
|
334
340
|
need help.
|
@@ -410,12 +416,22 @@ en:
|
|
410
416
|
validate_title_min_length: Title is always mandatory and this number
|
411
417
|
cannot be zero
|
412
418
|
verifications_html: |
|
413
|
-
Here you can
|
414
|
-
|
415
|
-
Also note that these settings are applied to all users. Admins will always have access to the admin backend though.
|
419
|
+
Here you can put additional access restrictions to participatory spaces or components that will force users to be verified before accessing certain locations (ie: to prevent spam).<br>
|
420
|
+
Restrictions apply to all users but administrators will always have access to the /admin panel.
|
416
421
|
validators:
|
417
422
|
body: User input validations for the "body" field
|
418
423
|
title: User input validations for the "title" field
|
424
|
+
form_force_authorizations:
|
425
|
+
delete: Delete
|
426
|
+
force_authorizations_html: |
|
427
|
+
Define verification groups. Each group can require users to be verified
|
428
|
+
by one or more methods to access specific areas of the platform.
|
429
|
+
help: You can define groups of authorization methods and restrict access
|
430
|
+
based on them.
|
431
|
+
new: Add a new authorization group
|
432
|
+
remove: Remove this "authorization group"
|
433
|
+
sure_to_remove: Are you sure you want to destroy this authorization group?
|
434
|
+
title: 'Restrict access with:'
|
419
435
|
form_proposal_custom_fields:
|
420
436
|
delete: Delete
|
421
437
|
new: Add a new "custom fields" box
|
@@ -463,6 +479,7 @@ en:
|
|
463
479
|
update:
|
464
480
|
error: Error updating configuration! %{error}
|
465
481
|
success: Configuration updated successfully
|
482
|
+
user_logged_in: Logged in users
|
466
483
|
constraints:
|
467
484
|
create:
|
468
485
|
error: Error creating condition case
|
@@ -652,6 +669,11 @@ en:
|
|
652
669
|
scoped_styles:
|
653
670
|
menu:
|
654
671
|
title: Public frontend
|
672
|
+
visibility:
|
673
|
+
info_html: You can manage additional access restrictions using verifications
|
674
|
+
with %{awesome_link}.
|
675
|
+
restricted_html: This space is using additional access restrictions with
|
676
|
+
%{awesome_link}.
|
655
677
|
admin_log:
|
656
678
|
component:
|
657
679
|
destroy_private_data: "%{user_name} destroyed %{count} items of private
|
@@ -737,6 +759,8 @@ en:
|
|
737
759
|
proposal_private_custom_fields_disclosure: This information won't be published
|
738
760
|
required_authorizations:
|
739
761
|
index:
|
762
|
+
authorization_options_invalid: Unfortunately, although you have this authorization,
|
763
|
+
the data used to verify you is not valid in this context.
|
740
764
|
cancel: I'll do this in another moment, %{link}.
|
741
765
|
granted_title: Granted verifications
|
742
766
|
logout: let me logout
|
data/config/locales/es.yml
CHANGED
@@ -9,10 +9,9 @@ es:
|
|
9
9
|
allow_images_in_editors: Permitir imágenes en el editor HTML
|
10
10
|
allow_images_in_proposals: Permitir imágenes en el editor de propuestas
|
11
11
|
allow_videos_in_editors: Permitir vídeos en el editor HTML
|
12
|
+
authorization_options_form: Opciones de autorización
|
12
13
|
auto_save_forms: Guardar automáticamente los formularios en el almacenamiento local
|
13
|
-
|
14
|
-
force_authorization_help_text: Texto de ayuda para la página de autorización
|
15
|
-
force_authorization_with_any_method: Permitir el acceso si se concede alguna de las autorizaciones (por defecto, todas son necesarias)
|
14
|
+
force_authorizations: Grupo de autorización %{id}
|
16
15
|
hashcash_login: Habilitar la protección del bot Hashcash para los usuarios existentes (login)
|
17
16
|
hashcash_login_bits: Número de bits para el algoritmo Hashcash (login)
|
18
17
|
hashcash_signup: Habilitar la protección del bot Hashcash para nuevos usuarios (registro)
|
@@ -42,6 +41,7 @@ es:
|
|
42
41
|
validate_title_min_length: Mínimo de caracteres requeridos para el título
|
43
42
|
validate_title_start_with_caps: Forzar al título a comenzar con una letra mayúscula
|
44
43
|
constraint:
|
44
|
+
application_context: Solo para
|
45
45
|
component_id: o específicamente en
|
46
46
|
component_manifest: Solo en componentes de tipo
|
47
47
|
participatory_space_manifest: Aplicar en los espacios participativos de tipo
|
@@ -213,7 +213,10 @@ es:
|
|
213
213
|
index:
|
214
214
|
admin_head_tags: Etiquetas Awesome incluidas en el encabezado de la aplicación de administración
|
215
215
|
decidim-admin: Del módulo Admin
|
216
|
+
decidim-assemblies: Del módulo Assemblies
|
217
|
+
decidim-conferences: Del módulo Conferences
|
216
218
|
decidim-core: Del módulo Core
|
219
|
+
decidim-participatory_processes: Del módulo Participatory Processes
|
217
220
|
decidim-proposals: Del módulo Propuestas
|
218
221
|
decidim_version: Versión de Decidim %{version}
|
219
222
|
errors:
|
@@ -228,6 +231,7 @@ es:
|
|
228
231
|
Puedes iniciar el proceso ahora y se realizará en segundo plano.
|
229
232
|
start_image_migrations: "\U0001F449 Iniciar el proceso de migración ahora"
|
230
233
|
config:
|
234
|
+
anonymous: Usuarios no identificados
|
231
235
|
caution: 'NOTA: Esta función modifica en gran medida algunos comportamientos por defecto que pueden llevar a resultados inesperados. ¡Utilícelo con precaución!'
|
232
236
|
constraints:
|
233
237
|
add_condition: Añadir restricción
|
@@ -236,6 +240,9 @@ es:
|
|
236
240
|
delete: Eliminar
|
237
241
|
edit: Editar
|
238
242
|
title: 'Se aplica solo en estos casos:'
|
243
|
+
create_force_authorization:
|
244
|
+
error: '¡Error al crear un nuevo grupo de autorización! %{error}'
|
245
|
+
success: Grupo de autorización %{key} creado correctamente
|
239
246
|
create_proposal_custom_field:
|
240
247
|
error: '¡Error al crear una nueva caja de "campo personalizado"! %{error}'
|
241
248
|
success: 'La caja "campo personalizado" %{key} se ha creado correctamente'
|
@@ -245,6 +252,9 @@ es:
|
|
245
252
|
create_scoped_style:
|
246
253
|
error: '¡Error al crear una nueva caja CSS! %{error}'
|
247
254
|
success: Caja CSS %{key} creada correctamente
|
255
|
+
destroy_force_authorization:
|
256
|
+
error: '¡Error al eliminar el grupo de autorización! %{error}'
|
257
|
+
success: Grupo de autorización %{key} eliminado correctamente
|
248
258
|
destroy_proposal_custom_field:
|
249
259
|
error: '¡Error al eliminar la caja "campo personalizado"! %{error}'
|
250
260
|
success: 'La caja "campo personalizado" %{key} se ha eliminado correctamente'
|
@@ -254,6 +264,7 @@ es:
|
|
254
264
|
destroy_scoped_style:
|
255
265
|
error: '¡Error al eliminar la caja CSS! %{error}'
|
256
266
|
success: Caja CSS %{key} eliminada correctamente
|
267
|
+
force_authorizations: Grupos de autorizaciones
|
257
268
|
form:
|
258
269
|
additional_proposal_sortings:
|
259
270
|
enable_all: Habilitar todas las opciones de ordenación adicionales
|
@@ -263,13 +274,13 @@ es:
|
|
263
274
|
errors:
|
264
275
|
incorrect_css: 'El CSS de la caja #%{key} no es válido'
|
265
276
|
incorrect_json: 'La definición JSON en la caja #%{key} no es válida'
|
277
|
+
force_authorization_help_text: Texto de ayuda para la página de autorización
|
266
278
|
help:
|
267
279
|
allow_images_in_editors: Esto añadirá un icono para subir imágenes en el editor HTML
|
268
280
|
allow_images_in_proposals: Esto permitirá subir imágenes en el editor de propuestas, disponibles para cualquier usuaria
|
269
281
|
allow_videos_in_editors: Esto añadirá un icono para enlazar videos en el editor HTML
|
270
282
|
auto_save_forms: Esto usará el almacenamiento local del navegador para guardar automáticamente los datos introducidos por las usuarias en las encuestas y otros formularios mientras los rellenen. Si no se ha mandado el formulario, los datos se restaurarán en la siguiente visita con el mismo navegador. Los datos se eliminarán una vez se envíe el formulario. Si las usuarias eliminan sus datos del navegador, estos tampoco se restaurarán.
|
271
283
|
drag_and_drop_supported: Cuando se suban imágenes, se puede hacer a través del método "arrastrar & soltar". Las imágenes se subirán en el servidor y se insertarán como recursos externos (no se utiliza codificación en línea base64).
|
272
|
-
force_authorization_after_login: 'Si está habilitado, las usuarias serán redireccionados a la página de autorización después del inicio de sesión o registro si algunas de las autorizaciones especificadas no son concedidas. Esto es útil si desea forzar a las usuarias a que se verifiquen a través de una autorización específica antes de que puedan iniciar sesión en cualquier momento (por ejemplo: para prevenir spam).'
|
273
284
|
force_authorization_help_text: Añade un texto personalizado para explicar por qué es necesaria la autorización. Asegúrate también de añadir un modo de contacto en caso de que las usuarias necesiten ayuda.
|
274
285
|
hashcash_i18n_key: 'Puedes personalizar el texto que se muestra a los usuarios en los botones de inicio de sesión / registro de envío con la clave de i18n: %{key}'
|
275
286
|
hashcash_login: |
|
@@ -306,12 +317,21 @@ es:
|
|
306
317
|
validate_title_max_marks_together: 'Limitar el número de símbolos de preguntas y exclamaciones que se pueden escribir juntos. Es decir, si es 2, entonces ''!!!'' no estará permitido en el texto'
|
307
318
|
validate_title_min_length: El título siempre es obligatorio y este número no puede ser cero
|
308
319
|
verifications_html: |
|
309
|
-
|
310
|
-
|
311
|
-
Ten en cuenta también, que estos ajustes se aplican a todas las usuarias. Las administradoras siempre tendrán acceso al tablero de administración.
|
320
|
+
Puedes poner restricciones de acceso adicionales a los espacios participativos o componentes que obligarán a los usuarios a ser verificados antes de acceder a ciertas ubicaciones (por ejemplo: para prevenir spam).<br>
|
321
|
+
Restricciones se aplican a todos los usuarios, pero los administradores siempre tendrán acceso al panel /admin.
|
312
322
|
validators:
|
313
323
|
body: Validaciones de entrada de usuario para el campo "cuerpo"
|
314
324
|
title: Validaciones de entrada de usuario para el campo "título"
|
325
|
+
form_force_authorizations:
|
326
|
+
delete: Eliminar
|
327
|
+
force_authorizations_html: |
|
328
|
+
Define grupos de verificación. Cada grupo puede requerir que los usuarios sean verificados
|
329
|
+
por uno o más métodos para acceder a áreas específicas de la plataforma.
|
330
|
+
help: Puedes definir grupos de métodos de autorización y restringir el acceso basado en ellos.
|
331
|
+
new: Añadir nuevo grupo de autorización
|
332
|
+
remove: Eliminar este grupo de autorización
|
333
|
+
sure_to_remove: '¿Estás segura de que quieres eliminar este grupo de autorización?'
|
334
|
+
title: 'Restringir el acceso con:'
|
315
335
|
form_proposal_custom_fields:
|
316
336
|
delete: Eliminar
|
317
337
|
new: Añadir una nueva caja de "campos personalizados"
|
@@ -358,6 +378,7 @@ es:
|
|
358
378
|
update:
|
359
379
|
error: '¡Error actualizando la configuración! %{error}'
|
360
380
|
success: Configuración actualizada correctamente
|
381
|
+
user_logged_in: Usuarios con la sesión iniciada
|
361
382
|
constraints:
|
362
383
|
create:
|
363
384
|
error: Error creando una nueva restricción
|
@@ -539,6 +560,9 @@ es:
|
|
539
560
|
scoped_styles:
|
540
561
|
menu:
|
541
562
|
title: Interfaz pública
|
563
|
+
visibility:
|
564
|
+
info_html: Puedes administrar restricciones de acceso adicionales usando verificaciones con %{awesome_link}.
|
565
|
+
restricted_html: Este espacio está utilizando restricciones de acceso adicionales con %{awesome_link}.
|
542
566
|
admin_log:
|
543
567
|
component:
|
544
568
|
destroy_private_data: "%{user_name} ha destruido %{count} elementos de datos privados para %{resource_name} en %{space_name}"
|
@@ -612,6 +636,7 @@ es:
|
|
612
636
|
proposal_private_custom_fields_disclosure: Esta información no será publicada
|
613
637
|
required_authorizations:
|
614
638
|
index:
|
639
|
+
authorization_options_invalid: Desafortunadamente, aunque tiene esta autorización, los datos utilizados para verificarte que no son válidos en este contexto.
|
615
640
|
cancel: Haré esto en otro momento, %{link}.
|
616
641
|
granted_title: Verificaciones concedidas
|
617
642
|
logout: déjame cerrar la sesión
|
data/config/locales/eu.yml
CHANGED
@@ -7,9 +7,6 @@ eu:
|
|
7
7
|
allow_images_in_proposals: Irudiak proposamenen editorean baimendu
|
8
8
|
allow_videos_in_editors: Bideoak HTML editorean baimendu
|
9
9
|
auto_save_forms: Inprimakiak automatikoki gordetzea tokiko biltegian
|
10
|
-
force_authorization_after_login: Saioa hasi edo erregistratu ondoren baimena behartu
|
11
|
-
force_authorization_help_text: Baimen orrirako laguntza-testua
|
12
|
-
force_authorization_with_any_method: Sarbidea baimendu edozein baimen emanez gero (berez, guztiak beharrezkoak dira)
|
13
10
|
intergram_auto_no_response: Parte-hartzaileak bere lehen mezua bidali eta minutu bat igaro ondoren, erantzunik jaso ez bada, bidalitako mezua
|
14
11
|
intergram_auto_response: Parte-hartzaileak bere lehen mezua bidali eta berehala bidalitako mezua
|
15
12
|
intergram_chat_id: Txat IDa
|
@@ -256,13 +253,13 @@ eu:
|
|
256
253
|
errors:
|
257
254
|
incorrect_css: 'CSS #%{key} koadroan baliogabea da'
|
258
255
|
incorrect_json: 'JSON #%{key} koadroan definizio baliogabea'
|
256
|
+
force_authorization_help_text: Baimen orrirako laguntza-testua
|
259
257
|
help:
|
260
258
|
allow_images_in_editors: Ikono irudi kargatzailea WYSIWYG editore guztietan gehituko da
|
261
259
|
allow_images_in_proposals: Proposamen editorean irudiak igotzea baimendu du edozein parte-hartzailek. Irudiak lotura gisa aurkeztuko dira proposamen publikoaren ikuspegian.
|
262
260
|
allow_videos_in_editors: Ikono bideo esteka WYSIWYG editore guztietan gehituko da
|
263
261
|
auto_save_forms: LocalStorage erabiliko du parte-hartzaileek inkestetan eta beste formularioetan sartzen duten datuak automatikoki gordetzeko betetzen ari diren bitartean. Bisita batean berreskuratuko da, baina soilik formala bidali ez bada. Bidaltzen bada, datuak ezabatuko dira.
|
264
262
|
drag_and_drop_supported: Irudiak igotzean, Drag & Drop onartzen da. Irudiak zerbitzarira igoko dira eta kanpoko baliabide gisa sartuko dira (ez du base64 inline kodetzea erabiltzen).
|
265
|
-
force_authorization_after_login: 'Gaituta badago, parte-hartzaileak autentifikazio orrira birbideratuko dira saioa hastean edo erregistratzean, zehaztutako baimen batzuk ematen ez badira.'
|
266
263
|
force_authorization_help_text: Testu pertsonalizatua gehitu azaltzeko zergatik den beharrezkoa baimena. Gehitu laguntza eskatzeko kontaktu-metodo bat.
|
267
264
|
intergram_about: Intergram-ek Telegram mezularia erabiltzen du behealdean txertatutako zuzeneko txat laguntza widget-a kudeatzeko.
|
268
265
|
intergram_config: '<a href="https://web.telegram.org/#/im?p=@IntergramBot">@Intergram bot</a> zure taldean gonbidatu edo zuzenean harekin txata hasi.'
|
@@ -289,13 +286,11 @@ eu:
|
|
289
286
|
validate_title_max_caps_percent: Zerok ez du letra larririk onartuko, 100ek dena letra larriz idaztera behartuko dute.
|
290
287
|
validate_title_max_marks_together: 'Mugatu galdera eta oihu marka guztiak batera idatz daitezkeenak. Bi badira, ez da onartuko testuan.'
|
291
288
|
validate_title_min_length: Titulua beti da derrigorrezkoa eta zenbaki hau ezin da zero izan.
|
292
|
-
verifications_html: |
|
293
|
-
Hemen txio batzuk egin daitezke egiaztatze prozesurako.<br>
|
294
|
-
<b>OHARRA:</b> Jakin ezazu konfigurazio hau aldatzeak erabiltzaile batzuk plataformara sartzea eragotz dezakeela.<br><br>
|
295
|
-
Kontuan izan konfigurazio hau erabiltzaile guztiei aplikatzen zaiela. Administratuek beti izango dute sarbidea admin backend-era.
|
296
289
|
validators:
|
297
290
|
body: Parte-hartzailearen sarreraren balidazioak "body" eremurako
|
298
291
|
title: Parte-hartzailearen sarreraren balidazioak "title" eremurako
|
292
|
+
form_force_authorizations:
|
293
|
+
delete: Ezabatu
|
299
294
|
form_proposal_custom_fields:
|
300
295
|
delete: Ezabatu
|
301
296
|
new: Gehitu "custom fields" koadro berria
|
data/config/locales/fr.yml
CHANGED
@@ -7,9 +7,6 @@ fr:
|
|
7
7
|
allow_images_in_proposals: Autoriser les images dans l'éditeur de propositions
|
8
8
|
allow_videos_in_editors: Autoriser les vidéos dans l'éditeur HTML
|
9
9
|
auto_save_forms: Sauvegarde automatique des formulaires dans le stockage local du navigateur
|
10
|
-
force_authorization_after_login: Forcer la vérification après la connexion/inscription
|
11
|
-
force_authorization_help_text: Texte d'aide sur la page d'autorisation
|
12
|
-
force_authorization_with_any_method: Permettre l'accès si l'une des autorisations est accordée (par défaut, toutes sont requises)
|
13
10
|
intergram_auto_no_response: Un message qui est envoyé une minute après que l'utilisateur envoie son premier message et qu'aucune réponse n'a été reçue
|
14
11
|
intergram_auto_response: Un message qui est envoyé immédiatement après que l'utilisateur envoie son premier message
|
15
12
|
intergram_chat_id: ID de la conversation
|
@@ -256,13 +253,13 @@ fr:
|
|
256
253
|
errors:
|
257
254
|
incorrect_css: 'CSS dans la boîte #%{key} est invalide'
|
258
255
|
incorrect_json: 'La définition JSON dans la boite #%{key} n''est pas valide'
|
256
|
+
force_authorization_help_text: Texte d'aide sur la page d'autorisation
|
259
257
|
help:
|
260
258
|
allow_images_in_editors: Ceci ajoutera une icône de téléchargement d'images dans tous les éditeurs WYSIWYG
|
261
259
|
allow_images_in_proposals: Cela permettra de télécharger des images dans l'éditeur de propositions, disponible pour n'importe quel utilisateur
|
262
260
|
allow_videos_in_editors: Ceci ajoutera une icône de lien vidéo dans tous les éditeurs WYSIWYG
|
263
261
|
auto_save_forms: Ceci utilisera LocalStorage ( cache navigateur) pour enregistrer automatiquement les données introduites par les utilisateurs dans les enquêtes et autres formulaires pendant qu'ils le remplissent. Les données seront restaurées lors d'une prochaine visite avec le même navigateur au cas où le formulaire ne serait pas soumis. Si le formulaire est soumis, les données seront supprimées. Si les utilisateurs suppriment leurs données LocalStorage ne seront pas non plus restaurées.
|
264
262
|
drag_and_drop_supported: Lorsque vous ajoutez des images, le glisser-déposer est pris en charge. Les images seront envoyées sur le serveur et insérées en tant que ressources externes (il n'utilise pas l'encodage en base64).
|
265
|
-
force_authorization_after_login: 'Si cette option est activée, les utilisateurs seront redirigés vers la page d''autorisation après la connexion ou l''inscription si certaines des autorisations spécifiées ne sont pas autorisées. Ceci est utile si vous voulez forcer les utilisateurs à être vérifiés avec une autorisation spécifique avant qu''ils ne puissent se connecter du tout (c''est à dire pour prévenir le spam).'
|
266
263
|
force_authorization_help_text: Ajoutez un texte personnalisé pour expliquer pourquoi une autorisation est nécessaire. Assurez-vous également d'ajouter une méthode de contact au cas où les utilisateurs auraient besoin d'aide.
|
267
264
|
intergram_about: Intergram utilise la messagerie Telegram pour gérer un widget de chat en direct intégré dans le bas de la page.
|
268
265
|
intergram_config: 'Invitez le bot <a href="https://web.telegram.org/#/im?p=@IntergramBot">@Intergram</a> dans votre groupe ou commencez une conversation avec lui directement. <a href="https://github.com/idoco/intergram#embed-intergram-in-your-website-with-these-2-simple-steps">+ info</a>'
|
@@ -289,13 +286,11 @@ fr:
|
|
289
286
|
validate_title_max_caps_percent: Zéro n'autorisera aucune lettre majuscule, 100 forcera à tout écrire en majuscule
|
290
287
|
validate_title_max_marks_together: 'Limiter le nombre de points d''interrogation et d''exclamation qui peuvent être écrits ensemble. Par exemple : si c''est 2, alors ''!!!'' ne sera pas autorisé dans le texte'
|
291
288
|
validate_title_min_length: Le titre est toujours obligatoire et ce nombre ne peut être égal à zéro
|
292
|
-
verifications_html: |
|
293
|
-
Vous pouvez ici apporter quelques améliorations au processus de vérification.<br>
|
294
|
-
<b>NOTE :</b> Sachez que modifier ces paramètres peut empêcher certains utilisateurs d'accéder à la plateforme. Utilisez-le avec précaution !<br><br>
|
295
|
-
Notez aussi que ces paramètres sont appliqués à tous les utilisateurs. Les administrateurs auront cependant toujours accès à l'administration.
|
296
289
|
validators:
|
297
290
|
body: Validations d'entrée de l'utilisateur pour le champ "body"
|
298
291
|
title: Validations d'entrée de l'utilisateur pour le champ "body"
|
292
|
+
form_force_authorizations:
|
293
|
+
delete: Supprimer
|
299
294
|
form_proposal_custom_fields:
|
300
295
|
delete: Supprimer
|
301
296
|
new: Ajouter une nouvelle boîte de champs personnalisés
|