decidim-system 0.28.6 → 0.29.0.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +3 -3
- data/app/cells/decidim/system/system_checks/show.erb +13 -0
- data/app/cells/decidim/system/system_checks_cell.rb +48 -0
- data/app/commands/decidim/system/create_default_content_blocks.rb +0 -3
- data/app/commands/decidim/system/{populate_help.rb → create_default_help_pages.rb} +14 -7
- data/app/commands/decidim/system/create_default_pages.rb +0 -1
- data/app/commands/decidim/system/{register_organization.rb → create_organization.rb} +5 -7
- data/app/controllers/decidim/system/application_controller.rb +0 -1
- data/app/controllers/decidim/system/dashboard_controller.rb +2 -0
- data/app/controllers/decidim/system/organizations_controller.rb +2 -1
- data/app/forms/decidim/system/base_organization_form.rb +127 -0
- data/app/forms/decidim/system/register_organization_form.rb +23 -3
- data/app/forms/decidim/system/update_organization_form.rb +18 -103
- data/app/models/decidim/system/admin.rb +2 -2
- data/app/packs/stylesheets/decidim/system/application.scss +57 -0
- data/app/views/decidim/system/dashboard/show.html.erb +4 -0
- data/app/views/decidim/system/oauth_applications/_form.html.erb +1 -1
- data/app/views/decidim/system/oauth_applications/index.html.erb +3 -3
- data/app/views/decidim/system/organizations/edit.html.erb +4 -2
- data/app/views/decidim/system/shared/_admins_list.html.erb +2 -2
- data/app/views/decidim/system/shared/_organizations_list.html.erb +3 -3
- data/app/views/layouts/decidim/system/_js_configuration.html.erb +1 -1
- data/app/views/layouts/decidim/system/login.html.erb +1 -1
- data/config/locales/ar.yml +0 -1
- data/config/locales/bg.yml +9 -3
- data/config/locales/ca.yml +12 -3
- data/config/locales/cs.yml +5 -8
- data/config/locales/de.yml +10 -3
- data/config/locales/el.yml +0 -2
- data/config/locales/en.yml +12 -3
- data/config/locales/es-MX.yml +16 -7
- data/config/locales/es-PY.yml +16 -7
- data/config/locales/es.yml +16 -7
- data/config/locales/eu.yml +31 -22
- data/config/locales/fi-plain.yml +16 -7
- data/config/locales/fi.yml +17 -8
- data/config/locales/fr-CA.yml +12 -3
- data/config/locales/fr.yml +12 -3
- data/config/locales/gl.yml +0 -1
- data/config/locales/hu.yml +0 -2
- data/config/locales/id-ID.yml +0 -1
- data/config/locales/it.yml +0 -5
- data/config/locales/ja.yml +12 -3
- data/config/locales/lt.yml +0 -2
- data/config/locales/lv.yml +0 -1
- data/config/locales/nl.yml +0 -1
- data/config/locales/no.yml +0 -1
- data/config/locales/pl.yml +11 -2
- data/config/locales/pt-BR.yml +0 -11
- data/config/locales/pt.yml +0 -1
- data/config/locales/ro-RO.yml +0 -1
- data/config/locales/ru.yml +0 -1
- data/config/locales/sk.yml +0 -1
- data/config/locales/sv.yml +13 -75
- data/config/locales/tr-TR.yml +0 -1
- data/config/locales/zh-CN.yml +0 -1
- data/config/locales/zh-TW.yml +0 -2
- data/db/seeds.rb +1 -1
- data/decidim-system.gemspec +2 -2
- data/lib/decidim/system/engine.rb +4 -0
- data/lib/decidim/system/version.rb +1 -1
- data/lib/tasks/decidim_system.rake +1 -1
- metadata +16 -16
- data/config/locales/bn-BD.yml +0 -1
- data/config/locales/bs-BA.yml +0 -44
- data/config/locales/ca-IT.yml +0 -278
@@ -13,14 +13,14 @@
|
|
13
13
|
<th><%= t("models.oauth_application.fields.name", scope: "decidim.system") %></th>
|
14
14
|
<th><%= t("models.oauth_application.fields.organization_name", scope: "decidim.system") %></th>
|
15
15
|
<th><%= t("models.oauth_application.fields.created_at", scope: "decidim.system") %></th>
|
16
|
-
<th
|
16
|
+
<th><%= t("actions.title", scope: "decidim.system") %></th>
|
17
17
|
</tr>
|
18
18
|
</thead>
|
19
19
|
<tbody>
|
20
20
|
<% @oauth_applications.each do |oauth_application| %>
|
21
21
|
<tr>
|
22
22
|
<td>
|
23
|
-
<%= image_tag oauth_application.attached_uploader(:organization_logo).
|
23
|
+
<%= image_tag oauth_application.attached_uploader(:organization_logo).path, class: "max-w-md" %>
|
24
24
|
</td>
|
25
25
|
<td>
|
26
26
|
<%= link_to oauth_application.name, oauth_application %><br>
|
@@ -31,7 +31,7 @@
|
|
31
31
|
<td>
|
32
32
|
<%= l oauth_application.created_at, format: :short %>
|
33
33
|
</td>
|
34
|
-
<td
|
34
|
+
<td>
|
35
35
|
<%= link_to t("actions.edit", scope: "decidim.system"), [:edit, oauth_application] %>
|
36
36
|
<%= link_to t("actions.destroy", scope: "decidim.system"), oauth_application, method: :delete, data: { confirm: t(".confirm_delete") } %>
|
37
37
|
</td>
|
@@ -4,9 +4,11 @@
|
|
4
4
|
<h1 class="h1"><%= t ".title" %></h1>
|
5
5
|
<% end %>
|
6
6
|
|
7
|
-
<%= decidim_form_for(@form) do |f| %>
|
7
|
+
<%= decidim_form_for(@form, url: organization_path(@organization)) do |f| %>
|
8
8
|
<div class="form__wrapper">
|
9
|
-
|
9
|
+
<div>
|
10
|
+
<%= f.translated :text_field, :name, autofocus: true %>
|
11
|
+
</div>
|
10
12
|
|
11
13
|
<%= f.text_field :host %>
|
12
14
|
|
@@ -3,7 +3,7 @@
|
|
3
3
|
<tr>
|
4
4
|
<th><%= t("models.admin.fields.email", scope: "decidim.system") %></th>
|
5
5
|
<th><%= t("models.admin.fields.created_at", scope: "decidim.system") %></th>
|
6
|
-
<th
|
6
|
+
<th><%= t("actions.title", scope: "decidim.system") %></th>
|
7
7
|
</tr>
|
8
8
|
</thead>
|
9
9
|
<tbody>
|
@@ -15,7 +15,7 @@
|
|
15
15
|
<td>
|
16
16
|
<%= l admin.created_at, format: :short %>
|
17
17
|
</td>
|
18
|
-
<td
|
18
|
+
<td>
|
19
19
|
<%= link_to t("actions.edit", scope: "decidim.system"), edit_admin_path(admin) %>
|
20
20
|
<% unless current_admin?(admin) %>
|
21
21
|
<%= link_to t("actions.destroy", scope: "decidim.system"), admin, method: :delete, data: { confirm: t("actions.confirm_destroy", scope: "decidim.system") } %>
|
@@ -3,20 +3,20 @@
|
|
3
3
|
<tr>
|
4
4
|
<th><%= t("models.organization.fields.name", scope: "decidim.system") %></th>
|
5
5
|
<th><%= t("models.organization.fields.created_at", scope: "decidim.system") %></th>
|
6
|
-
<th
|
6
|
+
<th><%= t("actions.title", scope: "decidim.system") %></th>
|
7
7
|
</tr>
|
8
8
|
</thead>
|
9
9
|
<tbody>
|
10
10
|
<% organizations.each do |organization| %>
|
11
11
|
<tr>
|
12
12
|
<td>
|
13
|
-
<%= link_to organization
|
13
|
+
<%= link_to organization_name(organization), edit_organization_path(organization) %><br>
|
14
14
|
<%= organization.host %>
|
15
15
|
</td>
|
16
16
|
<td>
|
17
17
|
<%= l organization.created_at, format: :short %>
|
18
18
|
</td>
|
19
|
-
<td
|
19
|
+
<td>
|
20
20
|
<% if organization.users.first&.invitation_pending? %>
|
21
21
|
<%= link_to t(".resend_invitation"),
|
22
22
|
resend_invitation_organization_path(organization),
|
data/config/locales/ar.yml
CHANGED
@@ -166,7 +166,6 @@ ar:
|
|
166
166
|
success: تم تحديث المنظمة بنجاح.
|
167
167
|
users_registration_mode:
|
168
168
|
disabled: يمكن فقط الوصول باستخدام الحسابات الخارجية
|
169
|
-
enabled: السماح للمشاركين بالتسجيل والدخول
|
170
169
|
shared:
|
171
170
|
notices:
|
172
171
|
no_organization_warning_html: يجب عليك إنشاء منظمة للبدء. تأكد من قراءة %{guide} قبل المتابعة.
|
data/config/locales/bg.yml
CHANGED
@@ -68,6 +68,7 @@ bg:
|
|
68
68
|
show:
|
69
69
|
admins: Администратори
|
70
70
|
current_organizations: Текущи организации
|
71
|
+
system_checks: Проверки на системата
|
71
72
|
default_pages:
|
72
73
|
placeholders:
|
73
74
|
content: Моля, добавете важно съдържание на статичната страница %{page} в администраторското табло.
|
@@ -88,7 +89,6 @@ bg:
|
|
88
89
|
did_not_receive_unlock_instructions?: Не сте получили инструкции за отключване?
|
89
90
|
forgot_your_password?: Забравили сте паролата си?
|
90
91
|
log_in: Вход
|
91
|
-
sign_up: Регистрация
|
92
92
|
menu:
|
93
93
|
admins: Администратори
|
94
94
|
dashboard: Табло за управление
|
@@ -260,8 +260,6 @@ bg:
|
|
260
260
|
success: Организацията беше актуализирана успешно.
|
261
261
|
users_registration_mode:
|
262
262
|
disabled: Достъпът е възможен само с външни профили
|
263
|
-
enabled: Разрешете на участниците да се регистрират и да влизат в профилите си
|
264
|
-
existing: Не разрешавайте на участниците да се регистрират, но разрешете на съществуващите участници да влизат в профилите си
|
265
263
|
shared:
|
266
264
|
notices:
|
267
265
|
no_organization_warning_html: Трябва да създадете организация, за да започнете. Уверете се, че сте прочели %{guide}, преди да продължите.
|
@@ -269,6 +267,14 @@ bg:
|
|
269
267
|
organizations_list:
|
270
268
|
confirm_resend_invitation: Сигурни ли сте, че искате да изпратите отново тази покана?
|
271
269
|
resend_invitation: Изпратете отново покана
|
270
|
+
system_checks:
|
271
|
+
active_job_queue:
|
272
|
+
decidim_documentation: Документация на Civil Power
|
273
|
+
error: Опашката ActiveJob не е конфигурирана. Това не е препоръчителна настройка за производство. Прочетете повече на %{error_extra}.
|
274
|
+
success: Опашката ActiveJob е конфигурирана правилно.
|
275
|
+
secret_key:
|
276
|
+
error: 'Тайният ключ не е дефиниран правилно. Моля, запазете в променливата на средата SECRET_KEY_BASE и рестартирайте сървъра: %{error_extra}'
|
277
|
+
success: Тайният ключ е конфигуриран правилно.
|
272
278
|
titles:
|
273
279
|
dashboard: Табло за управление
|
274
280
|
decidim: Civil Power
|
data/config/locales/ca.yml
CHANGED
@@ -68,6 +68,7 @@ ca:
|
|
68
68
|
show:
|
69
69
|
admins: Administradores
|
70
70
|
current_organizations: Organitzacions actuals
|
71
|
+
system_checks: Comprovació del sistema
|
71
72
|
default_pages:
|
72
73
|
placeholders:
|
73
74
|
content: Si us plau, afegeix contingut significatiu a la pàgina estàtica de %{page} dins el panell d'administració.
|
@@ -88,7 +89,7 @@ ca:
|
|
88
89
|
did_not_receive_unlock_instructions?: No has rebut les instruccions de desbloqueig?
|
89
90
|
forgot_your_password?: Has oblidat la teva contrasenya?
|
90
91
|
log_in: Iniciar sessió
|
91
|
-
sign_up:
|
92
|
+
sign_up: Crea un compte
|
92
93
|
menu:
|
93
94
|
admins: Administradores
|
94
95
|
dashboard: Tauler d'administració
|
@@ -259,8 +260,8 @@ ca:
|
|
259
260
|
success: L'organització s'ha actualitzat correctament.
|
260
261
|
users_registration_mode:
|
261
262
|
disabled: Només es port accedir amb comptes externs
|
262
|
-
enabled: Permetre a les participants
|
263
|
-
existing: No permetre
|
263
|
+
enabled: Permetre a les participants crear un compte i iniciar sessió
|
264
|
+
existing: No permetre a les participants crear un compte, però permetre iniciar sessió a les participants existents
|
264
265
|
shared:
|
265
266
|
notices:
|
266
267
|
no_organization_warning_html: Has de crear una organització per començar. Assegura't de llegir %{guide} abans de continuar.
|
@@ -268,6 +269,14 @@ ca:
|
|
268
269
|
organizations_list:
|
269
270
|
confirm_resend_invitation: Segur que vols reenviar la invitació?
|
270
271
|
resend_invitation: Reenviar la invitació
|
272
|
+
system_checks:
|
273
|
+
active_job_queue:
|
274
|
+
decidim_documentation: Documentació sobre Decidim
|
275
|
+
error: La cua d'ActiveJob no està configurada. Aquesta no és una configuració recomanable per l'entorn de producció. Llegir més a %{error_extra}.
|
276
|
+
success: La cua d'ActiveJob està configurada correctament.
|
277
|
+
secret_key:
|
278
|
+
error: 'La clau secreta no està definida correctament. Si us plau, guarda-la a la variable d''entorn: SECRET_KEY_BASE, i reinicia el servidor: llegir més a %{error_extra}.'
|
279
|
+
success: La clau secreta està configurada correctament.
|
271
280
|
titles:
|
272
281
|
dashboard: Tauler de control
|
273
282
|
decidim: Decidim
|
data/config/locales/cs.yml
CHANGED
@@ -32,10 +32,6 @@ cs:
|
|
32
32
|
attributes:
|
33
33
|
redirect_uri:
|
34
34
|
must_be_ssl: URI přesměrování musí být SSL URI
|
35
|
-
organization:
|
36
|
-
attributes:
|
37
|
-
password:
|
38
|
-
secret_key: Abyste mohli toto pole uložit, musíte definovat proměnnou prostředí SECRET_KEY_BASE.
|
39
35
|
decidim:
|
40
36
|
system:
|
41
37
|
actions:
|
@@ -68,6 +64,7 @@ cs:
|
|
68
64
|
show:
|
69
65
|
admins: Administrátoři
|
70
66
|
current_organizations: Aktuální organizace
|
67
|
+
system_checks: Kontroly systému
|
71
68
|
default_pages:
|
72
69
|
placeholders:
|
73
70
|
content: Přidejte smysluplný obsah na statickou stránku %{page} na ovládacím panelu administrátora.
|
@@ -88,7 +85,7 @@ cs:
|
|
88
85
|
did_not_receive_unlock_instructions?: Neobdrželi jste instrukce pro odemknutí?
|
89
86
|
forgot_your_password?: Zapomněli jste heslo?
|
90
87
|
log_in: Přihlásit se
|
91
|
-
sign_up:
|
88
|
+
sign_up: Vytvořit účet
|
92
89
|
menu:
|
93
90
|
admins: Správci
|
94
91
|
dashboard: Ovládací panel
|
@@ -143,7 +140,6 @@ cs:
|
|
143
140
|
show: Zobrazit pokročilá nastavení
|
144
141
|
create:
|
145
142
|
error: Při vytváření nové organizace došlo k chybě.
|
146
|
-
error_invitation: Při vytváření nové organizace došlo k chybě. Zkontrolujte jméno správce organizace.
|
147
143
|
success_html: |
|
148
144
|
<p>
|
149
145
|
Organizace byla úspěšně vytvořena.
|
@@ -260,8 +256,6 @@ cs:
|
|
260
256
|
success: Organizace byla úspěšně aktualizována.
|
261
257
|
users_registration_mode:
|
262
258
|
disabled: Přístup lze provádět pouze s externími účty
|
263
|
-
enabled: Umožnit uživatelům registraci a přihlášení
|
264
|
-
existing: Neumožnit účastníkům registraci, ale umožnit stávajícím účastníkům přihlášení
|
265
259
|
shared:
|
266
260
|
notices:
|
267
261
|
no_organization_warning_html: Abyste mohli začít, musíte vytvořit organizaci. Před pokračováním se ujistěte, že jste si přečetli %{guide}.
|
@@ -269,6 +263,9 @@ cs:
|
|
269
263
|
organizations_list:
|
270
264
|
confirm_resend_invitation: Opravdu chcete znovu odeslat pozvánku?
|
271
265
|
resend_invitation: Znovu odeslat pozvánku
|
266
|
+
system_checks:
|
267
|
+
active_job_queue:
|
268
|
+
decidim_documentation: Dokumentace Decidim
|
272
269
|
titles:
|
273
270
|
dashboard: Ovládací panel
|
274
271
|
decidim: Decidim
|
data/config/locales/de.yml
CHANGED
@@ -68,6 +68,7 @@ de:
|
|
68
68
|
show:
|
69
69
|
admins: Admins
|
70
70
|
current_organizations: Aktuelle Organisationen
|
71
|
+
system_checks: System-Prüfung
|
71
72
|
default_pages:
|
72
73
|
placeholders:
|
73
74
|
content: Fügen Sie der statischen Seite %{page} im Admin-Dashboard sinnvollen Inhalt hinzu.
|
@@ -88,7 +89,7 @@ de:
|
|
88
89
|
did_not_receive_unlock_instructions?: Anweisungen zum Entsperren nicht erhalten?
|
89
90
|
forgot_your_password?: Haben Sie Ihr Passwort vergessen?
|
90
91
|
log_in: Anmelden
|
91
|
-
sign_up:
|
92
|
+
sign_up: Konto erstellen
|
92
93
|
menu:
|
93
94
|
admins: Admins
|
94
95
|
dashboard: Instrumententafel
|
@@ -252,8 +253,6 @@ de:
|
|
252
253
|
success: Die Organisation wurde erfolgreich aktualisiert.
|
253
254
|
users_registration_mode:
|
254
255
|
disabled: Der Zugriff kann nur mit externen Konten erfolgen
|
255
|
-
enabled: Benutzern erlauben, sich zu registrieren und sich anzumelden
|
256
|
-
existing: Teilnehmende können sich nicht neu registrieren, bestehende teilnehmende sich aber weiterhin anmelden
|
257
256
|
shared:
|
258
257
|
notices:
|
259
258
|
no_organization_warning_html: Sie müssen eine Organisation erstellen, um zu beginnen. Stellen Sie sicher, dass Sie %{guide} lesen, bevor Sie fortfahren.
|
@@ -261,6 +260,14 @@ de:
|
|
261
260
|
organizations_list:
|
262
261
|
confirm_resend_invitation: Sind Sie sicher, das Sie die Einladung erneut senden möchten?
|
263
262
|
resend_invitation: Einladung erneut senden
|
263
|
+
system_checks:
|
264
|
+
active_job_queue:
|
265
|
+
decidim_documentation: Decidim-Dokumentation
|
266
|
+
error: Die ActiveJob-Warteschlange ist nicht konfiguriert. Dies ist kein empfohlenes Setup für die Produktion. Lesen Sie mehr unter %{error_extra}.
|
267
|
+
success: Die ActiveJob-Warteschlange ist korrekt konfiguriert.
|
268
|
+
secret_key:
|
269
|
+
error: 'Der geheime Schlüssel ist nicht korrekt definiert. Bitte speichern Sie ihn in der SECRET_KEY_BASE Umgebungsvariable und starten Sie den Server neu: %{error_extra}'
|
270
|
+
success: Der geheime Schlüssel ist korrekt konfiguriert.
|
264
271
|
titles:
|
265
272
|
dashboard: Instrumententafel
|
266
273
|
decidim: Decidim
|
data/config/locales/el.yml
CHANGED
@@ -174,8 +174,6 @@ el:
|
|
174
174
|
success: Ο οργανισμός ενημερώθηκε με επιτυχία.
|
175
175
|
users_registration_mode:
|
176
176
|
disabled: Η πρόσβαση μπορεί να γίνει μόνο με εξωτερικούς λογαριασμούς
|
177
|
-
enabled: Να επιτρέπεται στους συμμετέχοντες η εγγραφή και η σύνδεση
|
178
|
-
existing: Μην επιτρέπετε στους συμμετέχοντες να εγγραφούν, αλλά επιτρέψτε στους υπάρχοντες συμμετέχοντες να συνδεθούν
|
179
177
|
shared:
|
180
178
|
notices:
|
181
179
|
no_organization_warning_html: Πρέπει να δημιουργήσετε έναν οργανισμό για να ξεκινήσετε. Βεβαιωθείτε ότι έχετε διαβάσει τον οδηγό %{guide} προτού συνεχίσετε.
|
data/config/locales/en.yml
CHANGED
@@ -68,6 +68,7 @@ en:
|
|
68
68
|
show:
|
69
69
|
admins: Admins
|
70
70
|
current_organizations: Current organizations
|
71
|
+
system_checks: System checks
|
71
72
|
default_pages:
|
72
73
|
placeholders:
|
73
74
|
content: Please add meaningful content to the %{page} static page on the admin dashboard.
|
@@ -88,7 +89,7 @@ en:
|
|
88
89
|
did_not_receive_unlock_instructions?: Did not receive unlock instructions?
|
89
90
|
forgot_your_password?: Forgot your password?
|
90
91
|
log_in: Log in
|
91
|
-
sign_up:
|
92
|
+
sign_up: Create an account
|
92
93
|
menu:
|
93
94
|
admins: Admins
|
94
95
|
dashboard: Dashboard
|
@@ -260,8 +261,8 @@ en:
|
|
260
261
|
success: Organization successfully updated.
|
261
262
|
users_registration_mode:
|
262
263
|
disabled: Access only can be done with external accounts
|
263
|
-
enabled: Allow participants to
|
264
|
-
existing: Do not allow participants to
|
264
|
+
enabled: Allow participants to create an account and log in
|
265
|
+
existing: Do not allow participants to create an account, but allow existing participants to log in
|
265
266
|
shared:
|
266
267
|
notices:
|
267
268
|
no_organization_warning_html: You must create an organization to get started. Make sure you read %{guide} before proceeding.
|
@@ -269,6 +270,14 @@ en:
|
|
269
270
|
organizations_list:
|
270
271
|
confirm_resend_invitation: Are you sure you want to resend the invitation?
|
271
272
|
resend_invitation: Resend invitation
|
273
|
+
system_checks:
|
274
|
+
active_job_queue:
|
275
|
+
decidim_documentation: Decidim Documentation
|
276
|
+
error: The ActiveJob queue is not configured. This is not a recommended setup for production. Read more at %{error_extra}.
|
277
|
+
success: The ActiveJob queue is configured correctly.
|
278
|
+
secret_key:
|
279
|
+
error: 'The secret key is not defined correctly. Please save to the SECRET_KEY_BASE environment variable and restart the server: %{error_extra}'
|
280
|
+
success: The secret key is configured correctly.
|
272
281
|
titles:
|
273
282
|
dashboard: Dashboard
|
274
283
|
decidim: Decidim
|
data/config/locales/es-MX.yml
CHANGED
@@ -68,6 +68,7 @@ es-MX:
|
|
68
68
|
show:
|
69
69
|
admins: Administradoras
|
70
70
|
current_organizations: Organizaciones actuales
|
71
|
+
system_checks: Comprobación del sistema
|
71
72
|
default_pages:
|
72
73
|
placeholders:
|
73
74
|
content: Agrega contenido significativo a la página estática de %{page} en el panel de admin.
|
@@ -88,7 +89,7 @@ es-MX:
|
|
88
89
|
did_not_receive_unlock_instructions?: '¿No has recibido las instrucciones de desbloqueo?'
|
89
90
|
forgot_your_password?: '¿Olvidaste tu contraseña?'
|
90
91
|
log_in: Iniciar sesión
|
91
|
-
sign_up:
|
92
|
+
sign_up: Crea una cuenta
|
92
93
|
menu:
|
93
94
|
admins: Administradores
|
94
95
|
dashboard: Panel de control
|
@@ -149,12 +150,12 @@ es-MX:
|
|
149
150
|
Organización creada correctamente.
|
150
151
|
</p>
|
151
152
|
<ol>
|
152
|
-
<li>Es posible que
|
153
|
+
<li>Es posible que necesite actualizar el código de tu aplicación, en cuanto a permitir peticiones a %{host}, necesitas añadir lo siguiente a tu configuración de entorno
|
153
154
|
(p.e <code>config/environment/production.rb</code>) o tu <code>config/application.rb</code>:
|
154
155
|
<p>config.hosts << "%{host}" </p>
|
155
156
|
</li>
|
156
157
|
<li>
|
157
|
-
|
158
|
+
Hecho esto, tendrías que poder acceder a tu plataforma a través de <a href="http://%{host}">http://%{host}</a>
|
158
159
|
</li>
|
159
160
|
<li>
|
160
161
|
Te hemos enviado un correo electrónico a <b>%{email}</b> que necesitas confirmar.
|
@@ -168,7 +169,7 @@ es-MX:
|
|
168
169
|
default_src: SRC por defecto
|
169
170
|
default_src_hint: |
|
170
171
|
Default-src es la convención predeterminada para todo el contenido externo, como JavaScript, imágenes, CSS, fuentes, llamadas asincrónicas, marcos y archivos multimedia HTML5.
|
171
|
-
Decidim añade automáticamente el valor "'self' 'unsafe-inline'", pero, si quieres, puedes añadir otros valores. Deja el valor en blanco si no
|
172
|
+
Decidim añade automáticamente el valor "'self' 'unsafe-inline'", pero, si quieres, puedes añadir otros valores. Deja el valor en blanco si no sabe lo que significa.
|
172
173
|
font_src: Direcciones de fuentes (font-src)
|
173
174
|
font_src_hint: |
|
174
175
|
La directiva font-src restringe las URL que se pueden cargar con @font-face.
|
@@ -197,7 +198,7 @@ es-MX:
|
|
197
198
|
confirm_resend_invitation: '¿Seguro que quieres reenviar la invitación?'
|
198
199
|
resend_invitation: Reenviar invitación
|
199
200
|
secondary_hosts_hint: Introduce cada uno de ellos en una nueva línea
|
200
|
-
title: Editar la
|
201
|
+
title: Editar la organizacion
|
201
202
|
file_upload_settings:
|
202
203
|
content_types:
|
203
204
|
admin_hint: Estos tipos MIME están permitidos para subirse desde el panel de administración. Las personas administradoras deben ser conscientes de los riesgos al subir algunos formatos de documentos, por lo que cabe esperar que sean más cautelosas con las subidas de archivos.
|
@@ -260,8 +261,8 @@ es-MX:
|
|
260
261
|
success: Organización actualizada correctamente.
|
261
262
|
users_registration_mode:
|
262
263
|
disabled: Solo se puede acceder desde cuentas externas
|
263
|
-
enabled: Permitir a
|
264
|
-
existing: No permitir
|
264
|
+
enabled: Permitir a las participantes crear una cuenta e iniciar sesión
|
265
|
+
existing: No permitir a las participantes crear una cuenta, pero permitir que las participantes existentes inicien sesión
|
265
266
|
shared:
|
266
267
|
notices:
|
267
268
|
no_organization_warning_html: Debes crear una organización para comenzar. Asegúrate de leer %{guide} antes de continuar.
|
@@ -269,6 +270,14 @@ es-MX:
|
|
269
270
|
organizations_list:
|
270
271
|
confirm_resend_invitation: '¿Seguro que quieres reenviar la invitación?'
|
271
272
|
resend_invitation: Reenviar la invitación
|
273
|
+
system_checks:
|
274
|
+
active_job_queue:
|
275
|
+
decidim_documentation: Documentación sobre Decidim
|
276
|
+
error: La cola de ActiveJob no está configurada. Esta no es una configuración recomendada para el entrono de producción. Leer más en %{error_extra}.
|
277
|
+
success: La cola de ActiveJob está configurada correctamente.
|
278
|
+
secret_key:
|
279
|
+
error: 'La clave secreta no está definida correctamente. Por favor, guárdala en la variable de entorno: SECRET_KEY_BASE, y reinicie el servidor: leer más en %{error_extra}.'
|
280
|
+
success: La clave secreta está configurada correctamente.
|
272
281
|
titles:
|
273
282
|
dashboard: Panel de control
|
274
283
|
decidim: Decidim
|
data/config/locales/es-PY.yml
CHANGED
@@ -68,6 +68,7 @@ es-PY:
|
|
68
68
|
show:
|
69
69
|
admins: Administradoras
|
70
70
|
current_organizations: Organizaciones actuales
|
71
|
+
system_checks: Comprobación del sistema
|
71
72
|
default_pages:
|
72
73
|
placeholders:
|
73
74
|
content: Agrega contenido significativo a la página estática de %{page} en el panel de admin.
|
@@ -88,7 +89,7 @@ es-PY:
|
|
88
89
|
did_not_receive_unlock_instructions?: '¿No has recibido las instrucciones de desbloqueo?'
|
89
90
|
forgot_your_password?: '¿Olvidaste tu contraseña?'
|
90
91
|
log_in: Iniciar sesión
|
91
|
-
sign_up:
|
92
|
+
sign_up: Crea una cuenta
|
92
93
|
menu:
|
93
94
|
admins: Administradores
|
94
95
|
dashboard: Panel de control
|
@@ -149,12 +150,12 @@ es-PY:
|
|
149
150
|
Organización creada correctamente.
|
150
151
|
</p>
|
151
152
|
<ol>
|
152
|
-
<li>Es posible que
|
153
|
+
<li>Es posible que necesite actualizar el código de tu aplicación, en cuanto a permitir peticiones a %{host}, necesitas añadir lo siguiente a tu configuración de entorno
|
153
154
|
(p.e <code>config/environment/production.rb</code>) o tu <code>config/application.rb</code>:
|
154
155
|
<p>config.hosts << "%{host}" </p>
|
155
156
|
</li>
|
156
157
|
<li>
|
157
|
-
|
158
|
+
Hecho esto, tendrías que poder acceder a tu plataforma a través de <a href="http://%{host}">http://%{host}</a>
|
158
159
|
</li>
|
159
160
|
<li>
|
160
161
|
Te hemos enviado un correo electrónico a <b>%{email}</b> que necesitas confirmar.
|
@@ -168,7 +169,7 @@ es-PY:
|
|
168
169
|
default_src: SRC por defecto
|
169
170
|
default_src_hint: |
|
170
171
|
Default-src es la convención predeterminada para todo el contenido externo, como JavaScript, imágenes, CSS, fuentes, llamadas asincrónicas, marcos y archivos multimedia HTML5.
|
171
|
-
Decidim añade automáticamente el valor "'self' 'unsafe-inline'", pero, si quieres, puedes añadir otros valores. Deja el valor en blanco si no
|
172
|
+
Decidim añade automáticamente el valor "'self' 'unsafe-inline'", pero, si quieres, puedes añadir otros valores. Deja el valor en blanco si no sabe lo que significa.
|
172
173
|
font_src: Direcciones de fuentes (font-src)
|
173
174
|
font_src_hint: |
|
174
175
|
La directiva font-src restringe las URL que se pueden cargar con @font-face.
|
@@ -197,7 +198,7 @@ es-PY:
|
|
197
198
|
confirm_resend_invitation: '¿Seguro que quieres reenviar la invitación?'
|
198
199
|
resend_invitation: Reenviar invitación
|
199
200
|
secondary_hosts_hint: Introduce cada uno de ellos en una nueva línea
|
200
|
-
title: Editar la
|
201
|
+
title: Editar la organizacion
|
201
202
|
file_upload_settings:
|
202
203
|
content_types:
|
203
204
|
admin_hint: Estos tipos MIME están permitidos para subirse desde el panel de administración. Las personas administradoras deben ser conscientes de los riesgos al subir algunos formatos de documentos, por lo que cabe esperar que sean más cautelosas con las subidas de archivos.
|
@@ -260,8 +261,8 @@ es-PY:
|
|
260
261
|
success: Organización actualizada correctamente.
|
261
262
|
users_registration_mode:
|
262
263
|
disabled: El acceso solo se puede hacer con cuentas externas.
|
263
|
-
enabled: Permitir a
|
264
|
-
existing: No permitir
|
264
|
+
enabled: Permitir a las participantes crear una cuenta e iniciar sesión
|
265
|
+
existing: No permitir a las participantes crear una cuenta, pero permitir que las participantes existentes inicien sesión
|
265
266
|
shared:
|
266
267
|
notices:
|
267
268
|
no_organization_warning_html: Debes crear una organización para comenzar. Asegúrate de leer %{guide} antes de continuar.
|
@@ -269,6 +270,14 @@ es-PY:
|
|
269
270
|
organizations_list:
|
270
271
|
confirm_resend_invitation: '¿Seguro que quieres reenviar la invitación?'
|
271
272
|
resend_invitation: Reenviar la invitación
|
273
|
+
system_checks:
|
274
|
+
active_job_queue:
|
275
|
+
decidim_documentation: Documentación sobre Decidim
|
276
|
+
error: La cola de ActiveJob no está configurada. Esta no es una configuración recomendada para el entrono de producción. Leer más en %{error_extra}.
|
277
|
+
success: La cola de ActiveJob está configurada correctamente.
|
278
|
+
secret_key:
|
279
|
+
error: 'La clave secreta no está definida correctamente. Por favor, guárdala en la variable de entorno: SECRET_KEY_BASE, y reinicie el servidor: leer más en %{error_extra}.'
|
280
|
+
success: La clave secreta está configurada correctamente.
|
272
281
|
titles:
|
273
282
|
dashboard: Panel de control
|
274
283
|
decidim: Decidim
|
data/config/locales/es.yml
CHANGED
@@ -68,6 +68,7 @@ es:
|
|
68
68
|
show:
|
69
69
|
admins: Administradoras
|
70
70
|
current_organizations: Organizaciones actuales
|
71
|
+
system_checks: Comprobación del sistema
|
71
72
|
default_pages:
|
72
73
|
placeholders:
|
73
74
|
content: Por favor, agrega contenido significativo a la página estática de %{page} en el panel de administración.
|
@@ -88,7 +89,7 @@ es:
|
|
88
89
|
did_not_receive_unlock_instructions?: '¿No has recibido las instrucciones de desbloqueo?'
|
89
90
|
forgot_your_password?: '¿Olvidaste tu contraseña?'
|
90
91
|
log_in: Iniciar sesión
|
91
|
-
sign_up:
|
92
|
+
sign_up: Crea una cuenta
|
92
93
|
menu:
|
93
94
|
admins: Administradoras
|
94
95
|
dashboard: Panel de administración
|
@@ -149,12 +150,12 @@ es:
|
|
149
150
|
Organización creada correctamente.
|
150
151
|
</p>
|
151
152
|
<ol>
|
152
|
-
<li>Es posible que
|
153
|
+
<li>Es posible que necesite actualizar el código de tu aplicación, en cuanto a permitir peticiones a %{host}, necesitas añadir lo siguiente a tu configuración de entorno
|
153
154
|
(p.e <code>config/environment/production.rb</code>) o tu <code>config/application.rb</code>:
|
154
155
|
<p>config.hosts << "%{host}" </p>
|
155
156
|
</li>
|
156
157
|
<li>
|
157
|
-
|
158
|
+
Hecho esto, tendrías que poder acceder a tu plataforma a través de <a href="http://%{host}">http://%{host}</a>
|
158
159
|
</li>
|
159
160
|
<li>
|
160
161
|
Te hemos enviado un correo electrónico a <b>%{email}</b> que necesitas confirmar.
|
@@ -168,7 +169,7 @@ es:
|
|
168
169
|
default_src: SRC por defecto
|
169
170
|
default_src_hint: |
|
170
171
|
Default-src es la convención predeterminada para todo el contenido externo, como JavaScript, imágenes, CSS, fuentes, llamadas asincrónicas, marcos y archivos multimedia HTML5.
|
171
|
-
Decidim añade automáticamente el valor "'self' 'unsafe-inline'", pero, si quieres, puedes añadir otros valores. Deja el valor en blanco si no
|
172
|
+
Decidim añade automáticamente el valor "'self' 'unsafe-inline'", pero, si quieres, puedes añadir otros valores. Deja el valor en blanco si no sabe lo que significa.
|
172
173
|
font_src: Direcciones de fuentes (font-src)
|
173
174
|
font_src_hint: |
|
174
175
|
La directiva font-src restringe las URL que se pueden cargar con @font-face.
|
@@ -197,7 +198,7 @@ es:
|
|
197
198
|
confirm_resend_invitation: '¿Seguro que quieres reenviar la invitación?'
|
198
199
|
resend_invitation: Reenviar invitación
|
199
200
|
secondary_hosts_hint: Introduce cada uno de ellos en una nueva línea
|
200
|
-
title: Editar la
|
201
|
+
title: Editar la organizacion
|
201
202
|
file_upload_settings:
|
202
203
|
content_types:
|
203
204
|
admin_hint: Estos tipos MIME están permitidos para subirse desde el panel de administración. Las personas administradoras deben ser conscientes de los riesgos al subir algunos formatos de documentos, por lo que cabe esperar que sean más cautelosas con las subidas de archivos.
|
@@ -260,8 +261,8 @@ es:
|
|
260
261
|
success: Organización actualizada correctamente.
|
261
262
|
users_registration_mode:
|
262
263
|
disabled: Solo se puede acceder desde cuentas externas
|
263
|
-
enabled: Permitir a las participantes
|
264
|
-
existing: No permitir
|
264
|
+
enabled: Permitir a las participantes crear una cuenta e iniciar sesión
|
265
|
+
existing: No permitir a las participantes crear una cuenta, pero permitir que las participantes existentes inicien sesión
|
265
266
|
shared:
|
266
267
|
notices:
|
267
268
|
no_organization_warning_html: Debes crear una organización para comenzar. Asegúrate de leer %{guide} antes de continuar.
|
@@ -269,6 +270,14 @@ es:
|
|
269
270
|
organizations_list:
|
270
271
|
confirm_resend_invitation: '¿Seguro que quieres reenviar la invitación?'
|
271
272
|
resend_invitation: Reenviar la invitación
|
273
|
+
system_checks:
|
274
|
+
active_job_queue:
|
275
|
+
decidim_documentation: Documentación sobre Decidim
|
276
|
+
error: La cola de ActiveJob no está configurada. Esta no es una configuración recomendada para el entrono de producción. Leer más en %{error_extra}.
|
277
|
+
success: La cola de ActiveJob está configurada correctamente.
|
278
|
+
secret_key:
|
279
|
+
error: 'La clave secreta no está definida correctamente. Por favor, guárdala en la variable de entorno: SECRET_KEY_BASE, y reinicie el servidor: leer más en %{error_extra}.'
|
280
|
+
success: La clave secreta está configurada correctamente.
|
272
281
|
titles:
|
273
282
|
dashboard: Panel de administración
|
274
283
|
decidim: Decidim
|