decidim-system 0.21.0 → 0.22.0
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.
Potentially problematic release.
This version of decidim-system might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/javascripts/decidim/system/application.js.es6 +1 -0
- data/app/assets/stylesheets/decidim/system/_foundation_and_overrides.scss +1 -0
- data/app/assets/stylesheets/decidim/system/_sidebar.scss +0 -2
- data/app/commands/decidim/system/create_default_content_blocks.rb +1 -1
- data/app/controllers/decidim/system/organizations_controller.rb +7 -1
- data/app/forms/decidim/system/update_organization_form.rb +10 -0
- data/app/views/decidim/system/organizations/_omniauth_provider.html.erb +4 -0
- data/app/views/decidim/system/organizations/_smtp_settings.html.erb +5 -1
- data/app/views/layouts/decidim/system/_header.html.erb +1 -0
- data/app/views/layouts/decidim/system/_js_configuration.html.erb +9 -0
- data/app/views/layouts/decidim/system/application.html.erb +2 -0
- data/config/locales/bg-BG.yml +8 -0
- data/config/locales/ca.yml +11 -0
- data/config/locales/cs.yml +12 -1
- data/config/locales/da-DK.yml +1 -0
- data/config/locales/de.yml +26 -0
- data/config/locales/el.yml +100 -0
- data/config/locales/en.yml +11 -0
- data/config/locales/es-MX.yml +11 -0
- data/config/locales/es-PY.yml +11 -0
- data/config/locales/es.yml +11 -0
- data/config/locales/et-EE.yml +1 -0
- data/config/locales/fi-plain.yml +11 -0
- data/config/locales/fi.yml +11 -0
- data/config/locales/fr-CA.yml +101 -0
- data/config/locales/fr.yml +25 -0
- data/config/locales/ga-IE.yml +1 -0
- data/config/locales/hr-HR.yml +1 -0
- data/config/locales/hu.yml +4 -0
- data/config/locales/it.yml +12 -1
- data/config/locales/ja-JP.yml +101 -0
- data/config/locales/lt-LT.yml +1 -0
- data/config/locales/lv-LV.yml +101 -0
- data/config/locales/mt-MT.yml +1 -0
- data/config/locales/nl.yml +15 -0
- data/config/locales/no.yml +1 -1
- data/config/locales/pl.yml +29 -3
- data/config/locales/pt-BR.yml +1 -1
- data/config/locales/pt.yml +50 -24
- data/config/locales/ro-RO.yml +101 -0
- data/config/locales/sk-SK.yml +90 -0
- data/config/locales/sk.yml +95 -0
- data/config/locales/sl.yml +51 -0
- data/config/locales/sr-CS.yml +26 -0
- data/config/locales/sv.yml +25 -0
- data/lib/decidim/system/test/factories.rb +11 -0
- data/lib/decidim/system/version.rb +1 -1
- metadata +27 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8103f6222debfb3b86ee92339d04758f15ef9b6ec07f2961d7fb53ebf20af4f6
|
4
|
+
data.tar.gz: 8da892fcaa36e60f8f0fbaf11d60f181b3eb4a32b3b96105d036d5433a1f9cf6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 27534a161e2412f2df26801398bc42ab001c2ad15fc6d96b13f6700ffd77827d6edb8069b69f6d2352cd876ebcaa5e09d0f43ed914227a18b0a252a4df16370e
|
7
|
+
data.tar.gz: f76449afdcf89dd432ba104cb5b74cb8c227a6841f2826d29821da3b18ab4a147c60ab8806cf7fe2c97514c3f4b3eb16ade7cb2db0759d8e3417c83184204cfa
|
@@ -2,6 +2,7 @@
|
|
2
2
|
|
3
3
|
@import "settings";
|
4
4
|
@import "foundation";
|
5
|
+
@import "foundation-overrides/components/button-group";
|
5
6
|
|
6
7
|
// If you'd like to include motion-ui the foundation-rails gem comes prepackaged with it, uncomment the 3 @imports, if you are not using the gem you need to install the motion-ui sass package.
|
7
8
|
//
|
@@ -5,7 +5,7 @@ module Decidim
|
|
5
5
|
# Controller to manage Organizations (tenants).
|
6
6
|
#
|
7
7
|
class OrganizationsController < Decidim::System::ApplicationController
|
8
|
-
helper_method :current_organization
|
8
|
+
helper_method :current_organization, :provider_enabled?
|
9
9
|
helper Decidim::OmniauthHelper
|
10
10
|
|
11
11
|
def new
|
@@ -57,12 +57,18 @@ module Decidim
|
|
57
57
|
end
|
58
58
|
end
|
59
59
|
|
60
|
+
private
|
61
|
+
|
60
62
|
# The current organization for the request.
|
61
63
|
#
|
62
64
|
# Returns an Organization.
|
63
65
|
def current_organization
|
64
66
|
@organization
|
65
67
|
end
|
68
|
+
|
69
|
+
def provider_enabled?(provider)
|
70
|
+
Rails.application.secrets.dig(:omniauth, provider, :enabled)
|
71
|
+
end
|
66
72
|
end
|
67
73
|
end
|
68
74
|
end
|
@@ -20,6 +20,8 @@ module Decidim
|
|
20
20
|
attribute :users_registration_mode, String
|
21
21
|
jsonb_attribute :smtp_settings, [
|
22
22
|
[:from, String],
|
23
|
+
[:from_email, String],
|
24
|
+
[:from_label, String],
|
23
25
|
[:user_name, String],
|
24
26
|
[:encrypted_password, String],
|
25
27
|
[:address, String],
|
@@ -70,9 +72,17 @@ module Decidim
|
|
70
72
|
end
|
71
73
|
|
72
74
|
def encrypted_smtp_settings
|
75
|
+
smtp_settings["from"] = set_from
|
76
|
+
|
73
77
|
smtp_settings.merge(encrypted_password: Decidim::AttributeEncryptor.encrypt(@password))
|
74
78
|
end
|
75
79
|
|
80
|
+
def set_from
|
81
|
+
return smtp_settings["from_email"] if smtp_settings["from_label"].blank?
|
82
|
+
|
83
|
+
"#{smtp_settings["from_label"]} <#{smtp_settings["from_email"]}>"
|
84
|
+
end
|
85
|
+
|
76
86
|
def encrypted_omniauth_settings
|
77
87
|
Hash[omniauth_settings.map do |k, v|
|
78
88
|
[k, Decidim::OmniauthProvider.value_defined?(v) ? Decidim::AttributeEncryptor.encrypt(v) : v]
|
@@ -3,6 +3,10 @@
|
|
3
3
|
<div class="card">
|
4
4
|
<h5><%= provider_name(provider) %></h5>
|
5
5
|
|
6
|
+
<% if provider_enabled?(provider) %>
|
7
|
+
<p class="help-text"><%= t("enabled_by_default", scope: i18n_scope) %></p>
|
8
|
+
<% end %>
|
9
|
+
|
6
10
|
<div class="card-section">
|
7
11
|
<%= f.check_box(
|
8
12
|
"omniauth_settings_#{provider}_enabled",
|
@@ -2,7 +2,11 @@
|
|
2
2
|
<h4><%= t("decidim.system.models.organization.fields.smtp_settings") %></h4>
|
3
3
|
<%= f.fields_for :smtp_settings do %>
|
4
4
|
<div class="field">
|
5
|
-
<%= f.email_field :
|
5
|
+
<%= f.email_field :from_email, placeholder: t(".placeholder.from_email") %>
|
6
|
+
</div>
|
7
|
+
<div class="field">
|
8
|
+
<%= f.email_field :from_label, placeholder: t(".placeholder.from_label") %>
|
9
|
+
<p><%= t(".instructions.from_label") %></p>
|
6
10
|
</div>
|
7
11
|
<div class="field">
|
8
12
|
<%= f.text_field :user_name %>
|
@@ -1,4 +1,5 @@
|
|
1
1
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2
2
|
<%= csrf_meta_tags %>
|
3
3
|
<%= stylesheet_link_tag "decidim/system/application", media: "all" %>
|
4
|
+
<%= javascript_include_tag "decidim/confirm" %>
|
4
5
|
<%= javascript_include_tag "decidim/system/application" %>
|
data/config/locales/ca.yml
CHANGED
@@ -63,7 +63,12 @@ ca:
|
|
63
63
|
secondary_hosts_hint: Introdueix cada un d'ells en una nova línia
|
64
64
|
title: Nova organització
|
65
65
|
omniauth_settings:
|
66
|
+
decidim:
|
67
|
+
client_id: ID del client
|
68
|
+
client_secret: Secret del client
|
69
|
+
site_url: URL del lloc web
|
66
70
|
enabled: Habilitat
|
71
|
+
enabled_by_default: Aquest proveïdor està habilitat per defecte. Es pot editar però no es pot desactivar.
|
67
72
|
facebook:
|
68
73
|
app_id: App ID
|
69
74
|
app_secret: App secret
|
@@ -75,6 +80,12 @@ ca:
|
|
75
80
|
twitter:
|
76
81
|
api_key: Clau de l'API
|
77
82
|
api_secret: Clau secreta de l'API
|
83
|
+
smtp_settings:
|
84
|
+
instructions:
|
85
|
+
from_label: 'L''adreça electrònica d''enviament serà: "el-nom-de-la-vostra-organització <la-vostra-organització@el-vostre-proveidor.org>". Deixeu-ho en blanc per a usar el "des de" com a etiqueta'
|
86
|
+
placeholder:
|
87
|
+
from_email: la-vostra-organitzacio@el-vostre-proveidor.org
|
88
|
+
from_label: el-nom-de-la-vostra-organitzacio
|
78
89
|
update:
|
79
90
|
error: S'ha produït un error en actualitzar aquesta organització.
|
80
91
|
success: L'organització s'ha actualitzat correctament.
|
data/config/locales/cs.yml
CHANGED
@@ -45,7 +45,7 @@ cs:
|
|
45
45
|
actions:
|
46
46
|
save_and_invite: Vytvořit organizaci a pozvat administrátora
|
47
47
|
fields:
|
48
|
-
created_at: Vytvořeno
|
48
|
+
created_at: Vytvořeno v
|
49
49
|
name: název
|
50
50
|
omniauth_settings: Nastavení Omniauth
|
51
51
|
smtp_settings: SMTP nastavení
|
@@ -63,7 +63,12 @@ cs:
|
|
63
63
|
secondary_hosts_hint: Zadejte každý z nich do nového řádku
|
64
64
|
title: Nová organizace
|
65
65
|
omniauth_settings:
|
66
|
+
decidim:
|
67
|
+
client_id: Client ID
|
68
|
+
client_secret: Tajný klíč klienta
|
69
|
+
site_url: URL webu
|
66
70
|
enabled: Povoleno
|
71
|
+
enabled_by_default: Tento poskytovatel je ve výchozím nastavení povolen. Může být upraven, ale ne zakázán.
|
67
72
|
facebook:
|
68
73
|
app_id: ID aplikace
|
69
74
|
app_secret: Tajný klíč aplikace
|
@@ -75,6 +80,12 @@ cs:
|
|
75
80
|
twitter:
|
76
81
|
api_key: Klíč API
|
77
82
|
api_secret: API heslo
|
83
|
+
smtp_settings:
|
84
|
+
instructions:
|
85
|
+
from_label: 'Odesílatel e-mailu bude: "jméno-vaší-organizace <your-organization@your-provider.org>". Nechte prázdné pro použití štítku ''from_email'''
|
86
|
+
placeholder:
|
87
|
+
from_email: vaše-organizace@váš-poskytovatel-domény.org
|
88
|
+
from_label: jméno vaší organizace
|
78
89
|
update:
|
79
90
|
error: Při aktualizaci této organizace došlo k chybě.
|
80
91
|
success: Organizace byla úspěšně aktualizována.
|
@@ -0,0 +1 @@
|
|
1
|
+
da:
|
data/config/locales/de.yml
CHANGED
@@ -47,6 +47,8 @@ de:
|
|
47
47
|
fields:
|
48
48
|
created_at: Hergestellt in
|
49
49
|
name: Name
|
50
|
+
omniauth_settings: Omniauth-Einstellungen
|
51
|
+
smtp_settings: SMTP-Einstellungen
|
50
52
|
name: Organisation
|
51
53
|
organizations:
|
52
54
|
create:
|
@@ -60,6 +62,30 @@ de:
|
|
60
62
|
reference_prefix_hint: Das Referenzpräfix wird zur eindeutigen Identifizierung von Ressourcen in allen Organisationen verwendet
|
61
63
|
secondary_hosts_hint: Geben Sie jede von ihnen in einer neuen Zeile ein
|
62
64
|
title: Neue Organisation
|
65
|
+
omniauth_settings:
|
66
|
+
decidim:
|
67
|
+
client_id: Kunden-ID
|
68
|
+
client_secret: Kundengeheimnis
|
69
|
+
site_url: Website-URL
|
70
|
+
enabled: Aktiviert
|
71
|
+
enabled_by_default: Dieser Anbieter ist standardmäßig aktiviert. Er kann bearbeitet aber nicht deaktiviert werden.
|
72
|
+
facebook:
|
73
|
+
app_id: App-ID
|
74
|
+
app_secret: App-Geheimnis
|
75
|
+
google_oauth2:
|
76
|
+
client_id: Kunden-ID
|
77
|
+
client_secret: Kundengeheimnis
|
78
|
+
icon: Symbol
|
79
|
+
icon_path: Icon-Pfad
|
80
|
+
twitter:
|
81
|
+
api_key: API-Schlüssel
|
82
|
+
api_secret: API-Geheimnis
|
83
|
+
smtp_settings:
|
84
|
+
instructions:
|
85
|
+
from_label: 'Der Sender der E-Mail ist: „name-ihrer-organisation <ihrer-organisation@ihr-anbieter.org>". Lassen Sie das Feld leer, damit „von_email“ als Bezeichnung verwendet wird'
|
86
|
+
placeholder:
|
87
|
+
from_email: ihre-organisation@ihr-anbieter.org
|
88
|
+
from_label: name-ihrer-organisation
|
63
89
|
update:
|
64
90
|
error: Beim Aktualisieren dieser Organisation ist ein Fehler aufgetreten.
|
65
91
|
success: Die Organisation wurde erfolgreich aktualisiert.
|
data/config/locales/el.yml
CHANGED
@@ -1 +1,101 @@
|
|
1
1
|
el:
|
2
|
+
decidim:
|
3
|
+
system:
|
4
|
+
actions:
|
5
|
+
confirm_destroy: Είστε βέβαιοι ότι θέλετε να την διαγράψετε;
|
6
|
+
destroy: Διαγραφή
|
7
|
+
edit: Επεξεργασία
|
8
|
+
new: Νέα
|
9
|
+
save: Αποθήκευση
|
10
|
+
title: Ενέργειες
|
11
|
+
admins:
|
12
|
+
create:
|
13
|
+
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία ενός νέου διαχειριστή.
|
14
|
+
success: Ο διαχειριστής δημιουργήθηκε με επιτυχία
|
15
|
+
destroy:
|
16
|
+
success: Ο διαχειριστής διαγράφηκε με επιτυχία
|
17
|
+
edit:
|
18
|
+
title: Επεξεργασία διαχειριστή
|
19
|
+
update: Ενημέρωση
|
20
|
+
index:
|
21
|
+
title: Διαχειριστές
|
22
|
+
new:
|
23
|
+
create: Δημιουργία
|
24
|
+
title: Νέος διαχειριστής
|
25
|
+
update:
|
26
|
+
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του διαχειριστή.
|
27
|
+
success: Ο διαχειριστής ενημερώθηκε με επιτυχία
|
28
|
+
default_pages:
|
29
|
+
placeholders:
|
30
|
+
content: Προσθέστε ουσιαστικό περιεχόμενο στη στατική σελίδα %{page} στον πίνακα εργαλείων διαχειριστή.
|
31
|
+
title: Προεπιλεγμένος τίτλος για τη σελίδα %{page}
|
32
|
+
menu:
|
33
|
+
admins: Διαχειριστές
|
34
|
+
dashboard: Πίνακας εργαλείων
|
35
|
+
organizations: Οργανισμοί
|
36
|
+
models:
|
37
|
+
admin:
|
38
|
+
fields:
|
39
|
+
created_at: Δημιουργήθηκε στις
|
40
|
+
email: Email
|
41
|
+
name: Διαχειριστής
|
42
|
+
validations:
|
43
|
+
email_uniqueness: υπάρχει ήδη άλλος διαχειριστής με την ίδια διεύθυνση email
|
44
|
+
organization:
|
45
|
+
actions:
|
46
|
+
save_and_invite: Δημιουργία οργανισμού και πρόσκληση διαχειριστή
|
47
|
+
fields:
|
48
|
+
created_at: Δημιουργήθηκε στις
|
49
|
+
name: Όνομα
|
50
|
+
omniauth_settings: Ρυθμίσεις Omniauth
|
51
|
+
smtp_settings: Ρυθμίσεις SMTP
|
52
|
+
name: Οργανισμός
|
53
|
+
organizations:
|
54
|
+
create:
|
55
|
+
error: Υπήρξε ένα πρόβλημα κατά τη δημιουργία ενός νέου οργανισμού.
|
56
|
+
success: Ο οργανισμός δημιουργήθηκε με επιτυχία.
|
57
|
+
edit:
|
58
|
+
secondary_hosts_hint: Εισαγάγετε κάθε ένα από αυτά σε μια νέα γραμμή
|
59
|
+
index:
|
60
|
+
title: Οργανισμοί
|
61
|
+
new:
|
62
|
+
reference_prefix_hint: Το πρόθεμα αναφοράς χρησιμοποιείται για τον μοναδικό προσδιορισμό πόρων σε ολόκληρο τον οργανισμό
|
63
|
+
secondary_hosts_hint: Εισαγάγετε κάθε ένα από αυτά σε μια νέα γραμμή
|
64
|
+
title: Νέος οργανισμός
|
65
|
+
omniauth_settings:
|
66
|
+
decidim:
|
67
|
+
client_id: Αναγνωριστικό προγράμματος-πελάτη
|
68
|
+
client_secret: Μυστικός κωδικός προγράμματος-πελάτη
|
69
|
+
site_url: Διεύθυνση URL τοποθεσίας
|
70
|
+
enabled: Ενεργοποιήθηκε
|
71
|
+
enabled_by_default: Αυτός ο πάροχος είναι ενεργοποιημένος από προεπιλογή. Μπορεί να υποβληθεί σε επεξεργασία αλλά όχι να απενεργοποιηθεί.
|
72
|
+
facebook:
|
73
|
+
app_id: Αναγνωριστικό εφαρμογής
|
74
|
+
app_secret: Μυστικός κωδικός εφαρμογής
|
75
|
+
google_oauth2:
|
76
|
+
client_id: Αναγνωριστικό προγράμματος-πελάτη
|
77
|
+
client_secret: Μυστικός κωδικός προγράμματος-πελάτη
|
78
|
+
icon: Εικονίδιο
|
79
|
+
icon_path: Διαδρομή εικονιδίου
|
80
|
+
twitter:
|
81
|
+
api_key: Κλειδί API
|
82
|
+
api_secret: Μυστικός κωδικός API
|
83
|
+
smtp_settings:
|
84
|
+
instructions:
|
85
|
+
from_label: 'Ο αποστολέας email θα είναι: «το-όνομα-του-οργανισμού-σας <your-organization@your-provider.org>». Αφήστε κενό για να χρησιμοποιήσετε το πεδίο «από_email» ως ετικέτα'
|
86
|
+
placeholder:
|
87
|
+
from_email: Ο-οργανισμός-σας@ο-πάροχός σας.org
|
88
|
+
from_label: το-όνομα-του-οργανισμού-σας
|
89
|
+
update:
|
90
|
+
error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του οργανισμού.
|
91
|
+
success: Ο οργανισμός ενημερώθηκε με επιτυχία.
|
92
|
+
users_registration_mode:
|
93
|
+
disabled: Η πρόσβαση μπορεί να γίνει μόνο με εξωτερικούς λογαριασμούς
|
94
|
+
enabled: Να επιτρέπεται στους συμμετέχοντες η εγγραφή και η σύνδεση
|
95
|
+
existing: Να μην επιτρέπεται στους συμμετέχοντες η εγγραφή, αλλά να επιτρέπεται στους υπάρχοντες συμμετέχοντες η σύνδεση
|
96
|
+
shared:
|
97
|
+
notices:
|
98
|
+
no_organization_warning_html: Πρέπει να δημιουργήσετε έναν οργανισμό για να ξεκινήσετε. Βεβαιωθείτε ότι έχετε διαβάσει τον οδηγό %{guide} προτού συνεχίσετε.
|
99
|
+
our_getting_started_guide: ο οδηγός μας γρήγορης έναρξης
|
100
|
+
titles:
|
101
|
+
dashboard: Πίνακας εργαλείων
|
data/config/locales/en.yml
CHANGED
@@ -64,7 +64,12 @@ en:
|
|
64
64
|
secondary_hosts_hint: Enter each one of them in a new line
|
65
65
|
title: New organization
|
66
66
|
omniauth_settings:
|
67
|
+
decidim:
|
68
|
+
client_id: Client ID
|
69
|
+
client_secret: Client secret
|
70
|
+
site_url: Site URL
|
67
71
|
enabled: Enabled
|
72
|
+
enabled_by_default: This provider is enabled by default. It can be edited but not disabled.
|
68
73
|
facebook:
|
69
74
|
app_id: App ID
|
70
75
|
app_secret: App secret
|
@@ -76,6 +81,12 @@ en:
|
|
76
81
|
twitter:
|
77
82
|
api_key: API key
|
78
83
|
api_secret: API secret
|
84
|
+
smtp_settings:
|
85
|
+
instructions:
|
86
|
+
from_label: 'Email sender will be: "your-organization-name <your-organization@your-provider.org>". Leave blank to use the ''from_email'' as label'
|
87
|
+
placeholder:
|
88
|
+
from_email: your-organization@your-provider.org
|
89
|
+
from_label: your-organization-name
|
79
90
|
update:
|
80
91
|
error: There was a problem updating this organization.
|
81
92
|
success: Organization successfully updated.
|
data/config/locales/es-MX.yml
CHANGED
@@ -63,7 +63,12 @@ es-MX:
|
|
63
63
|
secondary_hosts_hint: Introduce cada uno de ellos en una nueva línea
|
64
64
|
title: Nueva organización
|
65
65
|
omniauth_settings:
|
66
|
+
decidim:
|
67
|
+
client_id: ID del cliente
|
68
|
+
client_secret: Secreto del cliente
|
69
|
+
site_url: URL del sitio web
|
66
70
|
enabled: Habilitado
|
71
|
+
enabled_by_default: Este proveedor está habilitado por defecto. Se puede editar pero no se puede desactivar.
|
67
72
|
facebook:
|
68
73
|
app_id: ID de la App
|
69
74
|
app_secret: Secreto de aplicación
|
@@ -75,6 +80,12 @@ es-MX:
|
|
75
80
|
twitter:
|
76
81
|
api_key: Clave API
|
77
82
|
api_secret: Secreto API
|
83
|
+
smtp_settings:
|
84
|
+
instructions:
|
85
|
+
from_label: 'La dirección de correo de envío será: "el-nombre-de-tu-organización<your-organization@your-provider.org>. Déjalo en blanco para usar el "des de" como etiqueta'
|
86
|
+
placeholder:
|
87
|
+
from_email: tu-organizacion@tu-proveedor.org
|
88
|
+
from_label: el-nombre-de-tu-organizacion
|
78
89
|
update:
|
79
90
|
error: Se ha producido un error al actualizar esta organización.
|
80
91
|
success: Organización actualizada correctamente.
|
data/config/locales/es-PY.yml
CHANGED
@@ -63,7 +63,12 @@ es-PY:
|
|
63
63
|
secondary_hosts_hint: Introduce cada uno de ellos en una nueva línea
|
64
64
|
title: Nueva organización
|
65
65
|
omniauth_settings:
|
66
|
+
decidim:
|
67
|
+
client_id: ID del cliente
|
68
|
+
client_secret: Secreto del cliente
|
69
|
+
site_url: URL del sitio web
|
66
70
|
enabled: Habilitado
|
71
|
+
enabled_by_default: Este proveedor está habilitado por defecto. Se puede editar pero no se puede desactivar.
|
67
72
|
facebook:
|
68
73
|
app_id: ID de la App
|
69
74
|
app_secret: Secreto de aplicación
|
@@ -75,6 +80,12 @@ es-PY:
|
|
75
80
|
twitter:
|
76
81
|
api_key: Clave API
|
77
82
|
api_secret: Secreto API
|
83
|
+
smtp_settings:
|
84
|
+
instructions:
|
85
|
+
from_label: 'La dirección de correo de envío será: "el-nombre-de-tu-organización<your-organization@your-provider.org>. Déjalo en blanco para usar el "des de" como etiqueta'
|
86
|
+
placeholder:
|
87
|
+
from_email: tu-organizacion@tu-proveedor.org
|
88
|
+
from_label: el-nombre-de-tu-organizacion
|
78
89
|
update:
|
79
90
|
error: Se ha producido un error al actualizar esta organización.
|
80
91
|
success: Organización actualizada correctamente.
|