decidim-system 0.22.0 → 0.23.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim-system might be problematic. Click here for more details.

Files changed (70) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/decidim/system/application.js.es6 +1 -0
  3. data/app/assets/stylesheets/decidim/system/_forms.scss +36 -0
  4. data/app/assets/stylesheets/decidim/system/application.scss +1 -0
  5. data/app/commands/decidim/system/create_oauth_application.rb +37 -0
  6. data/app/commands/decidim/system/destroy_oauth_application.rb +39 -0
  7. data/app/commands/decidim/system/register_organization.rb +2 -1
  8. data/app/commands/decidim/system/update_oauth_application.rb +39 -0
  9. data/app/commands/decidim/system/update_organization.rb +4 -0
  10. data/app/controllers/decidim/system/oauth_applications_controller.rb +84 -0
  11. data/app/controllers/decidim/system/organizations_controller.rb +1 -0
  12. data/app/forms/decidim/system/file_upload_settings_form.rb +70 -0
  13. data/app/forms/decidim/system/oauth_application_form.rb +35 -0
  14. data/app/forms/decidim/system/update_organization_form.rb +5 -3
  15. data/app/views/decidim/system/oauth_applications/_form.html.erb +26 -0
  16. data/app/views/decidim/system/oauth_applications/edit.html.erb +13 -0
  17. data/app/views/decidim/system/oauth_applications/index.html.erb +41 -0
  18. data/app/views/decidim/system/oauth_applications/new.html.erb +13 -0
  19. data/app/views/decidim/system/oauth_applications/show.html.erb +27 -0
  20. data/app/views/decidim/system/organizations/_file_upload_settings.erb +56 -0
  21. data/app/views/decidim/system/organizations/_smtp_settings.html.erb +6 -6
  22. data/app/views/decidim/system/organizations/edit.html.erb +1 -0
  23. data/app/views/decidim/system/organizations/new.html.erb +1 -0
  24. data/config/locales/am-ET.yml +1 -0
  25. data/config/locales/bg.yml +8 -0
  26. data/config/locales/ca.yml +83 -2
  27. data/config/locales/cs.yml +85 -4
  28. data/config/locales/da.yml +1 -0
  29. data/config/locales/de.yml +88 -7
  30. data/config/locales/el.yml +0 -3
  31. data/config/locales/en.yml +83 -2
  32. data/config/locales/eo.yml +1 -0
  33. data/config/locales/es-MX.yml +83 -2
  34. data/config/locales/es-PY.yml +83 -2
  35. data/config/locales/es.yml +83 -2
  36. data/config/locales/et.yml +1 -0
  37. data/config/locales/fi-plain.yml +83 -2
  38. data/config/locales/fi.yml +83 -2
  39. data/config/locales/fr-CA.yml +83 -2
  40. data/config/locales/fr.yml +83 -2
  41. data/config/locales/gl.yml +118 -11
  42. data/config/locales/hr.yml +1 -0
  43. data/config/locales/is.yml +55 -0
  44. data/config/locales/it.yml +0 -3
  45. data/config/locales/ja.yml +182 -0
  46. data/config/locales/ko-KR.yml +1 -0
  47. data/config/locales/ko.yml +1 -0
  48. data/config/locales/lt.yml +1 -0
  49. data/config/locales/{lv-LV.yml → lv.yml} +0 -3
  50. data/config/locales/mt.yml +1 -0
  51. data/config/locales/nl.yml +12 -2
  52. data/config/locales/no.yml +10 -0
  53. data/config/locales/om-ET.yml +1 -0
  54. data/config/locales/pl.yml +98 -22
  55. data/config/locales/pt.yml +0 -3
  56. data/config/locales/ro-RO.yml +0 -3
  57. data/config/locales/si-LK.yml +1 -0
  58. data/config/locales/so-SO.yml +1 -0
  59. data/config/locales/sv.yml +42 -3
  60. data/config/locales/sw-KE.yml +1 -0
  61. data/config/locales/ti-ER.yml +1 -0
  62. data/config/locales/tr-TR.yml +108 -2
  63. data/config/locales/vi-VN.yml +1 -0
  64. data/config/locales/vi.yml +1 -0
  65. data/config/locales/zh-CN.yml +171 -0
  66. data/config/locales/zh-TW.yml +1 -0
  67. data/config/routes.rb +2 -0
  68. data/lib/decidim/system/engine.rb +5 -0
  69. data/lib/decidim/system/version.rb +1 -1
  70. metadata +46 -12
@@ -0,0 +1 @@
1
+ da:
@@ -1,4 +1,36 @@
1
1
  de:
2
+ activemodel:
3
+ attributes:
4
+ oauth_application:
5
+ name: Name OAuth-Anwendung
6
+ organization_logo: Organisationslogo (quadratisch)
7
+ organization_name: Organisation
8
+ organization_url: URL der Organisation
9
+ redirect_uri: Weiterleitungs-URI
10
+ organization:
11
+ address: SMTP Hostname
12
+ from_email: E-Mail-Adresse
13
+ from_label: Beschreibung
14
+ password: Passwort
15
+ port: Datenbank Port
16
+ user_name: Benutzername
17
+ organization_file_uploads:
18
+ allowed_content_types:
19
+ admin: Admin MIME-Typen
20
+ default: Standard MIME-Typen
21
+ allowed_file_extensions:
22
+ admin: Admin-Dateierweiterungen
23
+ default: Standard-Dateierweiterungen
24
+ image: Bild-Dateierweiterungen
25
+ maximum_file_size:
26
+ avatar: Avatar Dateigröße
27
+ default: Standard-Dateigröße
28
+ errors:
29
+ models:
30
+ oauth_application:
31
+ attributes:
32
+ redirect_uri:
33
+ must_be_ssl: Der Umleitungs-URI muss ein SSL-URI sein
2
34
  decidim:
3
35
  system:
4
36
  actions:
@@ -32,6 +64,7 @@ de:
32
64
  menu:
33
65
  admins: Admins
34
66
  dashboard: Instrumententafel
67
+ oauth_applications: OAuth-Anwendungen
35
68
  organizations: Organisationen
36
69
  models:
37
70
  admin:
@@ -41,21 +74,67 @@ de:
41
74
  name: Administrator
42
75
  validations:
43
76
  email_uniqueness: ein anderer Administrator mit der gleichen E-Mail existiert bereits
77
+ oauth_application:
78
+ fields:
79
+ created_at: Erstellt am
80
+ name: Name OAuth-Anwendung
81
+ organization_name: Organisation
82
+ name: OAuth-Anwendung
44
83
  organization:
45
84
  actions:
46
- save_and_invite: Organisieren & einladen admin erstellen
85
+ save_and_invite: Organisation erstellen & den Admin einladen
47
86
  fields:
48
87
  created_at: Hergestellt in
88
+ file_upload_settings: Datei-Upload Einstellungen
49
89
  name: Name
50
90
  omniauth_settings: Omniauth-Einstellungen
51
91
  smtp_settings: SMTP-Einstellungen
52
92
  name: Organisation
93
+ oauth_applications:
94
+ create:
95
+ error: Beim Erstellen dieser Anwendung ist ein Fehler aufgetreten.
96
+ success: Anwendung erfolgreich erstellt.
97
+ destroy:
98
+ error: Beim Löschen dieser Anwendung ist ein Fehler aufgetreten.
99
+ success: Anwendung erfolgreich gelöscht.
100
+ edit:
101
+ save: Speichern
102
+ title: Anwendung bearbeiten
103
+ form:
104
+ select_organization: Organisation wählen
105
+ index:
106
+ confirm_delete: Möchten Sie diese Anwendung wirklich löschen?
107
+ title: OAuth-Anwendungen
108
+ new:
109
+ save: Speichern
110
+ title: Neue Applikation
111
+ update:
112
+ error: Beim Erstellen dieser Anwendung ist ein Fehler aufgetreten.
113
+ success: Die Anwendung wurde erfolgreich aktualisiert.
53
114
  organizations:
54
115
  create:
55
116
  error: Beim Erstellen einer neuen Organisation ist ein Fehler aufgetreten.
56
117
  success: Organisation erfolgreich erstellt
57
118
  edit:
58
119
  secondary_hosts_hint: Geben Sie jede von ihnen in einer neuen Zeile ein
120
+ file_upload_settings:
121
+ content_types:
122
+ admin_hint: Diese MIME-Typen sind für das Hochladen im Admin-Panel erlaubt. Admin-Benutzer sollten sich der Risiken des Hochladens einiger Dokumentformate bewusst sein, so dass man von ihnen erwarten kann dass sie vorsichtiger mit Datei-Uploads sind.
123
+ default_hint: Diese MIME-Typen sind standardmäßig für alle Benutzer erlaubt.
124
+ intro_html: Sie fügen Platzhalter mit dem Sternzeichen für die MIME-Typen hinzu, z.B. <code>image/*</code>.
125
+ title: Erlaubte MIME-Typen
126
+ file_extensions:
127
+ admin_hint: Diese Datei-Erweiterungen sind für das Hochladen im Admin-Panel erlaubt. Admin-Benutzer sollten sich der Risiken des Hochladens einiger Dokumentformate bewusst sein, so dass man von ihnen erwarten kann dass sie vorsichtiger mit Datei-Uploads sind.
128
+ default_hint: Diese Dateierweiterungen sind standardmäßig für alle Benutzer erlaubt.
129
+ image_hint: Diese Dateierweiterungen sind für alle Arten von Bild-Uploads erlaubt.
130
+ title: Zulässige Dateierweiterungen
131
+ file_sizes:
132
+ avatar_hint: Megabytes (MB). Maximale Dateigröße für das Hochladen des Avatars.
133
+ default_hint: Megabytes (MB). Diese Dateigröße ist die Standardeinstellung, die für alle Datei-Uploads verwendet wird, sofern nicht anders angegeben.
134
+ title: Maximale Dateigröße
135
+ intro: |
136
+ Bitte seien Sie besonders vorsichtig, wenn Sie überlegen, diese Einstellungen zu ändern. Je weniger Sie erlauben, desto besser.
137
+ Wenn bestimmte Dateierweiterungen oder MIME-Typen zugelassen werden, können Benutzer Sicherheitsrisiken ausgesetzt werden und es kann auch die Zugänglichkeit der Website beeinträchtigen.
59
138
  index:
60
139
  title: Organisationen
61
140
  new:
@@ -64,8 +143,8 @@ de:
64
143
  title: Neue Organisation
65
144
  omniauth_settings:
66
145
  decidim:
67
- client_id: Kunden-ID
68
- client_secret: Kundengeheimnis
146
+ client_id: Client-ID
147
+ client_secret: Client-Secret
69
148
  site_url: Website-URL
70
149
  enabled: Aktiviert
71
150
  enabled_by_default: Dieser Anbieter ist standardmäßig aktiviert. Er kann bearbeitet aber nicht deaktiviert werden.
@@ -73,18 +152,20 @@ de:
73
152
  app_id: App-ID
74
153
  app_secret: App-Geheimnis
75
154
  google_oauth2:
76
- client_id: Kunden-ID
77
- client_secret: Kundengeheimnis
155
+ client_id: Client-ID
156
+ client_secret: Client-Secret
78
157
  icon: Symbol
79
158
  icon_path: Icon-Pfad
80
159
  twitter:
81
160
  api_key: API-Schlüssel
82
161
  api_secret: API-Geheimnis
83
162
  smtp_settings:
163
+ fieldsets:
164
+ sender: Absender
84
165
  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'
166
+ from_label: 'E-Mail-Absender lautet: "Dein-Organisationsname <your-organization@example.org>". Leer lassen um ''from_email'' als Absender zu verwenden'
86
167
  placeholder:
87
- from_email: ihre-organisation@ihr-anbieter.org
168
+ from_email: deine-organisation@example.org
88
169
  from_label: name-ihrer-organisation
89
170
  update:
90
171
  error: Beim Aktualisieren dieser Organisation ist ein Fehler aufgetreten.
@@ -81,10 +81,7 @@ el:
81
81
  api_key: Κλειδί API
82
82
  api_secret: Μυστικός κωδικός API
83
83
  smtp_settings:
84
- instructions:
85
- from_label: 'Ο αποστολέας email θα είναι: «το-όνομα-του-οργανισμού-σας <your-organization@your-provider.org>». Αφήστε κενό για να χρησιμοποιήσετε το πεδίο «από_email» ως ετικέτα'
86
84
  placeholder:
87
- from_email: Ο-οργανισμός-σας@ο-πάροχός σας.org
88
85
  from_label: το-όνομα-του-οργανισμού-σας
89
86
  update:
90
87
  error: Υπήρξε ένα πρόβλημα κατά την ενημέρωση αυτού του οργανισμού.
@@ -1,5 +1,37 @@
1
1
  ---
2
2
  en:
3
+ activemodel:
4
+ attributes:
5
+ oauth_application:
6
+ name: OAuth Application Name
7
+ organization_logo: Organization logo (square)
8
+ organization_name: Organization
9
+ organization_url: Organization URL
10
+ redirect_uri: Redirect URI
11
+ organization:
12
+ address: SMTP hostname
13
+ from_email: Email address
14
+ from_label: Label
15
+ password: Password
16
+ port: Port
17
+ user_name: Username
18
+ organization_file_uploads:
19
+ allowed_content_types:
20
+ admin: Admin MIME types
21
+ default: Default MIME types
22
+ allowed_file_extensions:
23
+ admin: Admin file extensions
24
+ default: Default file extensions
25
+ image: Image file extensions
26
+ maximum_file_size:
27
+ avatar: Avatar file size
28
+ default: Default file size
29
+ errors:
30
+ models:
31
+ oauth_application:
32
+ attributes:
33
+ redirect_uri:
34
+ must_be_ssl: The redirect URI must be a SSL URI
3
35
  decidim:
4
36
  system:
5
37
  actions:
@@ -33,6 +65,7 @@ en:
33
65
  menu:
34
66
  admins: Admins
35
67
  dashboard: Dashboard
68
+ oauth_applications: OAuth applications
36
69
  organizations: Organizations
37
70
  models:
38
71
  admin:
@@ -42,21 +75,67 @@ en:
42
75
  name: Admin
43
76
  validations:
44
77
  email_uniqueness: another admin with the same email already exists
78
+ oauth_application:
79
+ fields:
80
+ created_at: Created at
81
+ name: OAuth application name
82
+ organization_name: Organization
83
+ name: OAuth application
45
84
  organization:
46
85
  actions:
47
86
  save_and_invite: Create organization & invite admin
48
87
  fields:
49
88
  created_at: Created at
89
+ file_upload_settings: File upload settings
50
90
  name: Name
51
91
  omniauth_settings: Omniauth settings
52
92
  smtp_settings: SMTP settings
53
93
  name: Organization
94
+ oauth_applications:
95
+ create:
96
+ error: There was a problem creating this application.
97
+ success: Application created successfully.
98
+ destroy:
99
+ error: There was a problem destroying this application.
100
+ success: Application destroyed successfully.
101
+ edit:
102
+ save: Save
103
+ title: Edit application
104
+ form:
105
+ select_organization: Select an organization
106
+ index:
107
+ confirm_delete: Are you sure you want to delete this application?
108
+ title: OAuth applications
109
+ new:
110
+ save: Save
111
+ title: New application
112
+ update:
113
+ error: There was a problem updating this application.
114
+ success: Application updated successfully.
54
115
  organizations:
55
116
  create:
56
117
  error: There was a problem creating a new organization.
57
118
  success: Organization successfully created.
58
119
  edit:
59
120
  secondary_hosts_hint: Enter each one of them in a new line
121
+ file_upload_settings:
122
+ content_types:
123
+ admin_hint: These MIME types are allowed for the admin section uploads. Admin users should be aware of the risks with uploading some document formats, so you can expect them to be more cautious with the file uploads.
124
+ default_hint: These MIME types are allowed for all users by default.
125
+ intro_html: You add wildcards with the asterisk character for the MIME types, e.g. <code>image/*</code>.
126
+ title: Allowed MIME types
127
+ file_extensions:
128
+ admin_hint: These file extensions are allowed for the admin section uploads. Admin users should be aware of the risks with uploading some document formats, so you can expect them to be more cautious with the file uploads.
129
+ default_hint: These file extensions are allowed for all users by default.
130
+ image_hint: These file extensions are allowed for any kind of image uploads.
131
+ title: Allowed file extensions
132
+ file_sizes:
133
+ avatar_hint: Megabytes (MB). This file size limit is used for the avatar image uploads.
134
+ default_hint: Megabytes (MB). This file size limit is the default which is used for all file uploads unless otherwise specified.
135
+ title: Maximum file sizes
136
+ intro: |
137
+ Please be extra cautious when considering to change these settings. The less you allow, the better.
138
+ Allowing specific file extensions or MIME types can expose the system users to security risks and it can also affect the accessibility of the website.
60
139
  index:
61
140
  title: Organizations
62
141
  new:
@@ -82,10 +161,12 @@ en:
82
161
  api_key: API key
83
162
  api_secret: API secret
84
163
  smtp_settings:
164
+ fieldsets:
165
+ sender: Sender
85
166
  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'
167
+ from_label: 'Email sender will be: "your-organization-name <your-organization@example.org>". Leave blank to use the ''Email address'' as label'
87
168
  placeholder:
88
- from_email: your-organization@your-provider.org
169
+ from_email: your-organization@example.org
89
170
  from_label: your-organization-name
90
171
  update:
91
172
  error: There was a problem updating this organization.
@@ -0,0 +1 @@
1
+ eo:
@@ -1,4 +1,36 @@
1
1
  es-MX:
2
+ activemodel:
3
+ attributes:
4
+ oauth_application:
5
+ name: Nombre de la aplicación OAuth
6
+ organization_logo: Logo de la organización (cuadrado)
7
+ organization_name: Organización
8
+ organization_url: URL de organización
9
+ redirect_uri: Redirigir URI
10
+ organization:
11
+ address: Nombre de host SMTP
12
+ from_email: Dirección de correo electrónico
13
+ from_label: Etiqueta
14
+ password: Contraseña
15
+ port: Puerto
16
+ user_name: Nombre de usuario
17
+ organization_file_uploads:
18
+ allowed_content_types:
19
+ admin: Tipos MIME del panel de administración
20
+ default: Tipos MIME por defecto
21
+ allowed_file_extensions:
22
+ admin: Extensiones de archivo del panel de administración
23
+ default: Extensiones de archivo por defecto
24
+ image: Extensiones de archivo de imagen
25
+ maximum_file_size:
26
+ avatar: Tamaño del archivo de avatar
27
+ default: Tamaño de archivo por defecto
28
+ errors:
29
+ models:
30
+ oauth_application:
31
+ attributes:
32
+ redirect_uri:
33
+ must_be_ssl: La URI de redirección debe ser una URI SSL
2
34
  decidim:
3
35
  system:
4
36
  actions:
@@ -32,6 +64,7 @@ es-MX:
32
64
  menu:
33
65
  admins: Administradores
34
66
  dashboard: Panel de control
67
+ oauth_applications: Aplicaciones OAuth
35
68
  organizations: Organizaciones
36
69
  models:
37
70
  admin:
@@ -41,21 +74,67 @@ es-MX:
41
74
  name: Administrador
42
75
  validations:
43
76
  email_uniqueness: ya existe otro administrador con este correo electrónico
77
+ oauth_application:
78
+ fields:
79
+ created_at: Creado el
80
+ name: Nombre de la aplicación OAuth
81
+ organization_name: Organización
82
+ name: Aplicación OAuth
44
83
  organization:
45
84
  actions:
46
85
  save_and_invite: Crear organización e invitar a administrador
47
86
  fields:
48
87
  created_at: Fecha de creación
88
+ file_upload_settings: Ajustes de subida de archivos
49
89
  name: Nombre
50
90
  omniauth_settings: Ajustes de Omniauth
51
91
  smtp_settings: Configuración de SMTP
52
92
  name: Organización
93
+ oauth_applications:
94
+ create:
95
+ error: Se ha producido un error al crear esta aplicación.
96
+ success: Aplicación creada correctamente.
97
+ destroy:
98
+ error: Se ha producido un error al eliminar esta aplicación.
99
+ success: Aplicación eliminada correctamente.
100
+ edit:
101
+ save: Guardar
102
+ title: Editar aplicación
103
+ form:
104
+ select_organization: Seleccionar una organización
105
+ index:
106
+ confirm_delete: '¿Seguro que quieres eliminar esta aplicación?'
107
+ title: Aplicaciones OAuth
108
+ new:
109
+ save: Guardar
110
+ title: Nueva aplicación
111
+ update:
112
+ error: Se ha producido un error al actualizar esta aplicación.
113
+ success: Aplicación actualizada correctamente.
53
114
  organizations:
54
115
  create:
55
116
  error: Se ha producido un error al crear una nueva organización.
56
117
  success: Organización creada correctamente.
57
118
  edit:
58
119
  secondary_hosts_hint: Introduce cada uno de ellos en una nueva línea
120
+ file_upload_settings:
121
+ content_types:
122
+ 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.
123
+ default_hint: Estos tipos MIME están permitidos por defecto para todas las usuarias.
124
+ intro_html: Añade comodines con el carácter asterisco para los tipos MIME, por ejemplo, <code>image/*</code>.
125
+ title: Tipos MIME permitidos
126
+ file_extensions:
127
+ admin_hint: Estas extensiones de archivo están permitidas para subidas 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.
128
+ default_hint: Estas extensiones de archivo están permitidas por defecto para todas los usuarias.
129
+ image_hint: Estas extensiones de archivo están permitidas para cualquier tipo de subida de imágenes.
130
+ title: Extensiones de archivo permitidas
131
+ file_sizes:
132
+ avatar_hint: Megabytes (MB). Este límite de tamaño de archivo se utiliza para subir imágenes de avatar.
133
+ default_hint: Megabytes (MB). Este límite de tamaño de archivo es el predeterminado que se utiliza para todas las subidas de archivos a menos que se especifique lo contrario.
134
+ title: Tamaño máximo de archivos
135
+ intro: |
136
+ Por favor, sé muy cautelosa al considerar cambiar estos ajustes. Cuanto menos opciones permitas, mejor.
137
+ Permitir extensiones de archivos específicas o tipos MIME puede exponer a las usuarias del sistema a riesgos de seguridad y también puede afectar a la accesibilidad del sitio web.
59
138
  index:
60
139
  title: Organizaciones
61
140
  new:
@@ -81,10 +160,12 @@ es-MX:
81
160
  api_key: Clave API
82
161
  api_secret: Secreto API
83
162
  smtp_settings:
163
+ fieldsets:
164
+ sender: Remitente
84
165
  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'
166
+ from_label: 'El remitente de correo electrónico será: "su-nombre de organización <your-organization@example.org>". Déjalo en blanco para usar el campo ''Dirección de correo electrónico'' como etiqueta'
86
167
  placeholder:
87
- from_email: tu-organizacion@tu-proveedor.org
168
+ from_email: tu-organizacion@example.org
88
169
  from_label: el-nombre-de-tu-organizacion
89
170
  update:
90
171
  error: Se ha producido un error al actualizar esta organización.
@@ -1,4 +1,36 @@
1
1
  es-PY:
2
+ activemodel:
3
+ attributes:
4
+ oauth_application:
5
+ name: Nombre de la aplicación OAuth
6
+ organization_logo: Logo de la organización (cuadrado)
7
+ organization_name: Organización
8
+ organization_url: URL de organización
9
+ redirect_uri: Redirigir URI
10
+ organization:
11
+ address: Nombre de host SMTP
12
+ from_email: Dirección de correo electrónico
13
+ from_label: Etiqueta
14
+ password: Contraseña
15
+ port: Puerto
16
+ user_name: Nombre de usuario
17
+ organization_file_uploads:
18
+ allowed_content_types:
19
+ admin: Tipos MIME del panel de administración
20
+ default: Tipos MIME por defecto
21
+ allowed_file_extensions:
22
+ admin: Extensiones de archivo del panel de administración
23
+ default: Extensiones de archivo por defecto
24
+ image: Extensiones de archivo de imagen
25
+ maximum_file_size:
26
+ avatar: Tamaño del archivo de avatar
27
+ default: Tamaño de archivo por defecto
28
+ errors:
29
+ models:
30
+ oauth_application:
31
+ attributes:
32
+ redirect_uri:
33
+ must_be_ssl: La URI de redirección debe ser una URI SSL
2
34
  decidim:
3
35
  system:
4
36
  actions:
@@ -32,6 +64,7 @@ es-PY:
32
64
  menu:
33
65
  admins: Administradores
34
66
  dashboard: Panel de control
67
+ oauth_applications: Aplicaciones OAuth
35
68
  organizations: Organizaciones
36
69
  models:
37
70
  admin:
@@ -41,21 +74,67 @@ es-PY:
41
74
  name: Administrador
42
75
  validations:
43
76
  email_uniqueness: ya existe otro administrador con este correo electrónico
77
+ oauth_application:
78
+ fields:
79
+ created_at: Creado el
80
+ name: Nombre de la aplicación OAuth
81
+ organization_name: Organización
82
+ name: Aplicación OAuth
44
83
  organization:
45
84
  actions:
46
85
  save_and_invite: Crear organización e invitar a administrador
47
86
  fields:
48
87
  created_at: Fecha de creación
88
+ file_upload_settings: Ajustes de subida de archivos
49
89
  name: Nombre
50
90
  omniauth_settings: Ajustes de Omniauth
51
91
  smtp_settings: Configuración de SMTP
52
92
  name: Organización
93
+ oauth_applications:
94
+ create:
95
+ error: Se ha producido un error al crear esta aplicación.
96
+ success: Aplicación creada correctamente.
97
+ destroy:
98
+ error: Se ha producido un error al eliminar esta aplicación.
99
+ success: Aplicación eliminada correctamente.
100
+ edit:
101
+ save: Guardar
102
+ title: Editar aplicación
103
+ form:
104
+ select_organization: Seleccionar una organización
105
+ index:
106
+ confirm_delete: '¿Seguro que quieres eliminar esta aplicación?'
107
+ title: Aplicaciones OAuth
108
+ new:
109
+ save: Guardar
110
+ title: Nueva aplicación
111
+ update:
112
+ error: Se ha producido un error al actualizar esta aplicación.
113
+ success: Aplicación actualizada correctamente.
53
114
  organizations:
54
115
  create:
55
116
  error: Se ha producido un error al crear una nueva organización.
56
117
  success: Organización creada correctamente.
57
118
  edit:
58
119
  secondary_hosts_hint: Introduce cada uno de ellos en una nueva línea
120
+ file_upload_settings:
121
+ content_types:
122
+ 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.
123
+ default_hint: Estos tipos MIME están permitidos por defecto para todas las usuarias.
124
+ intro_html: Añade comodines con el carácter asterisco para los tipos MIME, por ejemplo, <code>image/*</code>.
125
+ title: Tipos MIME permitidos
126
+ file_extensions:
127
+ admin_hint: Estas extensiones de archivo están permitidas para subidas 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.
128
+ default_hint: Estas extensiones de archivo están permitidas por defecto para todas los usuarias.
129
+ image_hint: Estas extensiones de archivo están permitidas para cualquier tipo de subida de imágenes.
130
+ title: Extensiones de archivo permitidas
131
+ file_sizes:
132
+ avatar_hint: Megabytes (MB). Este límite de tamaño de archivo se utiliza para subir imágenes de avatar.
133
+ default_hint: Megabytes (MB). Este límite de tamaño de archivo es el predeterminado que se utiliza para todas las subidas de archivos a menos que se especifique lo contrario.
134
+ title: Tamaño máximo de archivos
135
+ intro: |
136
+ Por favor, sé muy cautelosa al considerar cambiar estos ajustes. Cuanto menos opciones permitas, mejor.
137
+ Permitir extensiones de archivos específicas o tipos MIME puede exponer a las usuarias del sistema a riesgos de seguridad y también puede afectar a la accesibilidad del sitio web.
59
138
  index:
60
139
  title: Organizaciones
61
140
  new:
@@ -81,10 +160,12 @@ es-PY:
81
160
  api_key: Clave API
82
161
  api_secret: Secreto API
83
162
  smtp_settings:
163
+ fieldsets:
164
+ sender: Remitente
84
165
  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'
166
+ from_label: 'El remitente de correo electrónico será: "su-nombre de organización <your-organization@example.org>". Déjalo en blanco para usar el campo ''Dirección de correo electrónico'' como etiqueta'
86
167
  placeholder:
87
- from_email: tu-organizacion@tu-proveedor.org
168
+ from_email: tu-organizacion@example.org
88
169
  from_label: el-nombre-de-tu-organizacion
89
170
  update:
90
171
  error: Se ha producido un error al actualizar esta organización.