Adds description to all admin settings

This commit is contained in:
decabeza
2018-07-23 19:58:49 +02:00
parent 3fee56e8fe
commit 108e458678
6 changed files with 241 additions and 84 deletions

View File

@@ -1,13 +1,23 @@
<h2><%= t("admin.settings.index.title") %></h2> <h2><%= t("admin.settings.index.title") %></h2>
<table> <table>
<thead>
<tr>
<th><%= t("admin.settings.setting_name") %></th>
<th><%= t("admin.settings.setting_value") %></th>
</tr>
</thead>
<tbody> <tbody>
<% @settings.each do |setting| %> <% @settings.each do |setting| %>
<tr> <tr>
<td class="small-12 medium-4"> <td class="small-6">
<strong><%= t("settings.#{setting.key}") %></strong> <strong><%= t("settings.#{setting.key}") %></strong>
<br>
<span class="small">
<%= t("settings.#{setting.key}_description", default: t("admin.settings.no_description")) %>
</span>
</td> </td>
<td class="small-12 medium-8"> <td class="small-6">
<%= form_for(setting, url: admin_setting_path(setting), html: { id: "edit_#{dom_id(setting)}"}) do |f| %> <%= form_for(setting, url: admin_setting_path(setting), html: { id: "edit_#{dom_id(setting)}"}) do |f| %>
<div class="small-12 medium-6 large-9 column"> <div class="small-12 medium-6 large-9 column">
<%= f.text_area :value, label: false, id: dom_id(setting), lines: 1 %> <%= f.text_area :value, label: false, id: dom_id(setting), lines: 1 %>

View File

@@ -1,15 +1,36 @@
<h2><%= t("admin.settings.index.feature_flags") %></h2> <h2><%= t("admin.settings.index.feature_flags") %></h2>
<table> <table>
<thead>
<tr>
<th><%= t("admin.settings.setting") %></th>
<th><%= t("admin.settings.setting_status") %></th>
<th><%= t("admin.settings.setting_actions") %></th>
</tr>
</thead>
<tbody> <tbody>
<% @feature_flags.each do |feature_flag| %> <% @feature_flags.each do |feature_flag| %>
<tr> <tr>
<td> <td class="small-8">
<strong><%= t("settings.#{feature_flag.key}") %></strong> <strong><%= t("settings.#{feature_flag.key}") %></strong>
<br>
<span class="small">
<%= t("settings.#{feature_flag.key}_description", default: t("admin.settings.no_description")) %>
</span>
</td> </td>
<td> <td>
<%= feature_flag.enabled? ? t("admin.settings.index.features.enabled") : t("admin.settings.index.features.disabled") %> <% if feature_flag.enabled? %>
<span class="enabled">
<strong>
<%= t ("admin.settings.index.features.enabled") %>
</strong>
</span>
<% else %>
<span class="disabled">
<%= t("admin.settings.index.features.disabled") %>
</span>
<% end %>
</td> </td>
<td class="text-right"> <td class="text-right">

View File

@@ -416,6 +416,7 @@ en:
form: form:
custom_categories: Categories custom_categories: Categories
custom_categories_description: Categories that users can select creating the proposal. custom_categories_description: Categories that users can select creating the proposal.
custom_categories_placeholder: Enter the tags you would like to use, separated by commas (,) and between quotes ("")
draft_versions: draft_versions:
create: create:
notice: 'Draft created successfully. <a href="%{link}">Click to visit</a>' notice: 'Draft created successfully. <a href="%{link}">Click to visit</a>'
@@ -663,7 +664,7 @@ en:
section_title: Edit notification section_title: Edit notification
show: show:
section_title: Notification preview section_title: Notification preview
send: Send send: Send notification
will_get_notified: (%{n} users will be notified) will_get_notified: (%{n} users will be notified)
got_notified: (%{n} users got notified) got_notified: (%{n} users got notified)
sent_at: Sent at sent_at: Sent at
@@ -1055,6 +1056,12 @@ en:
update: Map configuration updated succesfully. update: Map configuration updated succesfully.
form: form:
submit: Update submit: Update
setting: Feature
setting_actions: Actions
setting_name: Setting
setting_status: Status
setting_value: Value
no_description: "No description"
shared: shared:
booths_search: booths_search:
button: Search button: Search

View File

@@ -1,65 +1,121 @@
en: en:
settings: settings:
comments_body_max_length: "Comments body max length" comments_body_max_length: "Comments body max length"
comments_body_max_length_description: "In number of characters"
official_level_1_name: "Level 1 public official" official_level_1_name: "Level 1 public official"
official_level_1_name_description: "Tag that will appear on users marked as Level 1 official position"
official_level_2_name: "Level 2 public official" official_level_2_name: "Level 2 public official"
official_level_2_name_description: "Tag that will appear on users marked as Level 2 official position"
official_level_3_name: "Level 3 public official" official_level_3_name: "Level 3 public official"
official_level_3_name_description: "Tag that will appear on users marked as Level 3 official position"
official_level_4_name: "Level 4 public official" official_level_4_name: "Level 4 public official"
official_level_4_name_description: "Tag that will appear on users marked as Level 4 official position"
official_level_5_name: "Level 5 public official" official_level_5_name: "Level 5 public official"
official_level_5_name_description: "Tag that will appear on users marked as Level 5 official position"
max_ratio_anon_votes_on_debates: "Maximum ratio of anonymous votes per Debate" max_ratio_anon_votes_on_debates: "Maximum ratio of anonymous votes per Debate"
max_ratio_anon_votes_on_debates_description: "Anonymous votes are by registered users with an unverified account"
max_votes_for_proposal_edit: "Number of votes from which a Proposal can no longer be edited" max_votes_for_proposal_edit: "Number of votes from which a Proposal can no longer be edited"
max_votes_for_proposal_edit_description: "From this number of supports the author of a Proposal can no longer edit it"
max_votes_for_debate_edit: "Number of votes from which a Debate can no longer be edited" max_votes_for_debate_edit: "Number of votes from which a Debate can no longer be edited"
max_votes_for_debate_edit_description: "From this number of votes the author of a Debate can no longer edit it"
proposal_code_prefix: "Prefix for Proposal codes" proposal_code_prefix: "Prefix for Proposal codes"
proposal_code_prefix_description: "This prefix will appear in the Proposals before the creation date and its ID"
votes_for_proposal_success: "Number of votes necessary for approval of a Proposal" votes_for_proposal_success: "Number of votes necessary for approval of a Proposal"
votes_for_proposal_success_description: "When a proposal reaches this number of supports it will no longer be able to receive more supports and is considered successful"
months_to_archive_proposals: "Months to archive Proposals" months_to_archive_proposals: "Months to archive Proposals"
months_to_archive_proposals_description: After this number of months the Proposals will be archived and will no longer be able to receive supports"
email_domain_for_officials: "Email domain for public officials" email_domain_for_officials: "Email domain for public officials"
email_domain_for_officials_description: "All users registered with this domain will have their account verified at registration"
per_page_code_head: "Code to be included on every page (<head>)" per_page_code_head: "Code to be included on every page (<head>)"
per_page_code_head_description: "This code will appear inside the <head> label. Useful for entering custom scripts, analitycs..."
per_page_code_body: "Code to be included on every page (<body>)" per_page_code_body: "Code to be included on every page (<body>)"
per_page_code_body_description: "This code will appear inside the <body> label. Useful for entering custom scripts, analitycs..."
twitter_handle: "Twitter handle" twitter_handle: "Twitter handle"
twitter_handle_description: "If filled in it will appear in the footer"
twitter_hashtag: "Twitter hashtag" twitter_hashtag: "Twitter hashtag"
twitter_hashtag_description: "Hashtag that will appear when sharing content on Twitter"
facebook_handle: "Facebook handle" facebook_handle: "Facebook handle"
facebook_handle_description: "If filled in it will appear in the footer"
youtube_handle: "Youtube handle" youtube_handle: "Youtube handle"
youtube_handle_description: "If filled in it will appear in the footer"
telegram_handle: "Telegram handle" telegram_handle: "Telegram handle"
telegram_handle_description: "If filled in it will appear in the footer"
instagram_handle: "Instagram handle" instagram_handle: "Instagram handle"
instagram_handle_description: "If filled in it will appear in the footer"
url: "Main URL"
url_description: "Main URL of your website"
org_name: "Organization"
org_name_description: "Name of your organization"
place_name: "Place"
place_name_description: "Name of your city"
related_content_score_threshold: "Related content score threshold"
related_content_score_threshold_description: "Hides content that users mark as unrelated"
map_latitude: "Latitude"
map_latitude_description: "Latitude to show the map position"
map_longitude: "Longitude"
map_longitude_description: "Longitude to show the position of the map"
map_zoom: "Zoom"
map_zoom_description: "Zoom to show the map position"
mailer_from_name: "Sender email name"
mailer_from_name_description: "This name will appear in emails sent from the application"
mailer_from_address: "Sender email address"
mailer_from_address_description: "This email address will appear in emails sent from the application"
meta_title: "Site title (SEO)"
meta_title_description: "Title for the site <title>, used to improve SEO"
meta_description: "Site description (SEO)"
meta_description_description: 'Site description <meta name="description">, used to improve SEO'
meta_keywords: "Keywords (SEO)"
meta_keywords_description: 'Keywords <meta name="keywords">, used to improve SEO'
min_age_to_participate: Minimum age needed to participate
min_age_to_participate_description: "Users over this age can participate in all processes"
analytics_url: "Analytics URL"
blog_url: "Blog URL" blog_url: "Blog URL"
transparency_url: "Transparency URL" transparency_url: "Transparency URL"
opendata_url: "Open Data URL" opendata_url: "Open Data URL"
url: "Main URL"
org_name: "Organization"
place_name: "Place"
feature:
budgets: Participatory budgeting
twitter_login: Twitter login
facebook_login: Facebook login
google_login: Google login
proposals: Proposals
debates: Debates
polls: Polls
signature_sheets: Signature sheets
spending_proposals: Investment projects
spending_proposal_features:
voting_allowed: Voting on investment projects
legislation: Legislation
user:
recommendations: Recommendations
skip_verification: Skip user verification
recommendations_on_debates: Recommendations on debates
recommendations_on_proposals: Recommendations on proposals
community: Community on proposals and investments
map: Proposals and budget investments geolocation
allow_images: Allow upload and show images
allow_attached_documents: Allow upload and show of attached documents
guides: Guides to create proposals or investment projects
public_stats: Public stats
related_content_score_threshold: Related content score threshold
map_latitude: Latitude
map_longitude: Longitude
map_zoom: Zoom
mailer_from_name: Origin email name
mailer_from_address: Origin email address
meta_title: "Site title (SEO)"
meta_description: "Site description (SEO)"
meta_keywords: "Keywords (SEO)"
verification_offices_url: Verification offices URL verification_offices_url: Verification offices URL
min_age_to_participate: Minimum age needed to participate
proposal_improvement_path: Proposal improvement info internal link proposal_improvement_path: Proposal improvement info internal link
feature:
budgets: "Participatory budgeting"
budgets_description: "With participatory budgets, citizens decide which projects presented by their neighbours will receive a part of the municipal budget"
twitter_login: "Twitter login"
twitter_login_description: "Allow users to sign up with their Twitter account"
facebook_login: "Facebook login"
facebook_login_description: "Allow users to sign up with their Facebook account"
google_login: "Google login"
google_login_description: "Allow users to sign up with their Google Account"
proposals: "Proposals"
proposals_description: "Citizens' proposals are an opportunity for neighbours and collectives to decide directly how they want their city to be, after getting sufficient support and submitting to a citizens' vote"
debates: "Debates"
debates_description: "The citizens' debate space is aimed at anyone who can present issues that concern them and about which they want to share their views with others"
polls: "Polls"
polls_description: "Citizens' polls are a participatory mechanism by which citizens with voting rights can make direct decisions"
signature_sheets: "Signature sheets"
signature_sheets_description: "It allows ading from the Administration panel signatures collected on-site to Proposals and investment projects of the Participative Budgets"
legislation: "Legislation"
legislation_description: "In participatory processes, citizens are offered the opportunity to participate in the drafting and modification of regulations that affect the city and to give their opinion on certain actions that are planned to be carried out"
spending_proposals: "Spending proposals"
spending_proposals_description: "⚠️ NOTE: This functionality has been replaced by Participatory Budgeting and will disappear in new versions"
spending_proposal_features:
voting_allowed: Voting on investment projects - Preselection phase
voting_allowed_description: "⚠️ NOTE: This functionality has been replaced by Participatory Budgeting and will disappear in new versions"
user:
recommendations: "Recommendations"
recommendations_description: "Shows users recommendations on the homepage based on the tags of the following items"
skip_verification: "Skip user verification"
skip_verification_description: "This will disable user verification and all registered users will be able to participate in all processes"
recommendations_on_debates: "Recommendations on debates"
recommendations_on_debates_description: "Shows users recommendations to users on the debates page based on the tags of the items followed"
recommendations_on_proposals: "Recommendations on proposals"
recommendations_on_proposals_description: "Displays recommendations to users on the proposals page based on the tags of the items followed"
community: "Community on proposals and investments"
community_description: "Enables the community section in the proposals and investment projects of the Participatory Budgets"
map: "Proposals and budget investments geolocation"
map_description: "Enables geolocation of proposals and investment projects"
allow_images: "Allow upload and show images"
allow_images_description: "Allows users to upload images when creating proposals and investment projects from Participatory Budgets"
allow_attached_documents: "Allow upload and show of attached documents"
allow_attached_documents_description: "Allows users to upload documents when creating proposals and investment projects from Participatory Budgets"
guides: "Guides to create proposals or investment projects"
guides_description: "Displays a guide to differences between proposals and investment projects if there is an active participatory budget"
public_stats: "Public stats"
public_stats_description: "Display public stats in the Administration panel"

View File

@@ -417,6 +417,7 @@ es:
form: form:
custom_categories: Categorías custom_categories: Categorías
custom_categories_description: Categorías que el usuario puede seleccionar al crear la propuesta. custom_categories_description: Categorías que el usuario puede seleccionar al crear la propuesta.
custom_categories_placeholder: Escribe las etiquetas que desees separadas por una coma (,) y entrecomilladas ("")
draft_versions: draft_versions:
create: create:
notice: 'Borrador creado correctamente. <a href="%{link}">Haz click para verlo</a>' notice: 'Borrador creado correctamente. <a href="%{link}">Haz click para verlo</a>'
@@ -481,7 +482,7 @@ es:
form: form:
error: Error error: Error
form: form:
add_option: +Añadir respuesta cerrada add_option: Añadir respuesta cerrada
title: Pregunta title: Pregunta
title_placeholder: Escribe un título a la pregunta title_placeholder: Escribe un título a la pregunta
value_placeholder: Escribe una respuesta cerrada value_placeholder: Escribe una respuesta cerrada
@@ -664,7 +665,7 @@ es:
section_title: Editar notificación section_title: Editar notificación
show: show:
section_title: Vista previa de notificación section_title: Vista previa de notificación
send: Enviar send: Enviar notificación
will_get_notified: (%{n} usuarios serán notificados) will_get_notified: (%{n} usuarios serán notificados)
got_notified: (%{n} usuarios fueron notificados) got_notified: (%{n} usuarios fueron notificados)
sent_at: Enviado sent_at: Enviado
@@ -1056,6 +1057,12 @@ es:
update: La configuración del mapa se ha guardado correctamente. update: La configuración del mapa se ha guardado correctamente.
form: form:
submit: Actualizar submit: Actualizar
setting: Funcionalidad
setting_actions: Acciones
setting_name: Configuración
setting_status: Estado
setting_value: Valor
no_description: Sin descripción
shared: shared:
booths_search: booths_search:
button: Buscar button: Buscar

View File

@@ -1,65 +1,121 @@
es: es:
settings: settings:
comments_body_max_length: "Longitud máxima de los comentarios" comments_body_max_length: "Longitud máxima de los comentarios"
comments_body_max_length_description: "En número de caracteres"
official_level_1_name: "Cargos públicos de nivel 1" official_level_1_name: "Cargos públicos de nivel 1"
official_level_1_name_description: "Etiqueta que aparecerá en los usuarios marcados como Nivel 1 de cargo público"
official_level_2_name: "Cargos públicos de nivel 2" official_level_2_name: "Cargos públicos de nivel 2"
official_level_2_name_description: "Etiqueta que aparecerá en los usuarios marcados como Nivel 2 de cargo público"
official_level_3_name: "Cargos públicos de nivel 3" official_level_3_name: "Cargos públicos de nivel 3"
official_level_3_name_description: "Etiqueta que aparecerá en los usuarios marcados como Nivel 3 de cargo público"
official_level_4_name: "Cargos públicos de nivel 4" official_level_4_name: "Cargos públicos de nivel 4"
official_level_4_name_description: "Etiqueta que aparecerá en los usuarios marcados como Nivel 4 de cargo público"
official_level_5_name: "Cargos públicos de nivel 5" official_level_5_name: "Cargos públicos de nivel 5"
official_level_5_name_description: "Etiqueta que aparecerá en los usuarios marcados como Nivel 5 de cargo público"
max_ratio_anon_votes_on_debates: "Porcentaje máximo de votos anónimos por Debate" max_ratio_anon_votes_on_debates: "Porcentaje máximo de votos anónimos por Debate"
max_votes_for_proposal_edit: "Número de votos en que una Propuesta deja de poderse editar" max_ratio_anon_votes_on_debates_description: "Se consideran votos anónimos los realizados por usuarios registrados con una cuenta sin verificar"
max_votes_for_proposal_edit: "Número de apoyos en que una Propuesta deja de poderse editar"
max_votes_for_proposal_edit_description: "A partir de este número de apoyos el autor de una Propuesta ya no podrá editarla"
max_votes_for_debate_edit: "Número de votos en que un Debate deja de poderse editar" max_votes_for_debate_edit: "Número de votos en que un Debate deja de poderse editar"
max_votes_for_debate_edit_description: "A partir de este número de votos el autor de un Debate ya no podrá editarlo"
proposal_code_prefix: "Prefijo para los códigos de Propuestas" proposal_code_prefix: "Prefijo para los códigos de Propuestas"
votes_for_proposal_success: "Número de votos necesarios para aprobar una Propuesta" proposal_code_prefix_description: "Este prefijo aparecerá en las Propuestas delante de la fecha de creación y su ID"
votes_for_proposal_success: "Número de apoyos necesarios para aprobar una Propuesta"
votes_for_proposal_success_description: "Cuando una propuesta alcance este número de apoyos ya no podrá recibir más y se considera exitosa"
months_to_archive_proposals: "Meses para archivar las Propuestas" months_to_archive_proposals: "Meses para archivar las Propuestas"
months_to_archive_proposals_description: "Pasado este número de meses las Propuestas se archivarán y ya no podrán recoger apoyos"
email_domain_for_officials: "Dominio de email para cargos públicos" email_domain_for_officials: "Dominio de email para cargos públicos"
email_domain_for_officials_description: "Todos los usuarios registrados con este dominio tendrán su cuenta verificada al registrarse"
per_page_code_head: "Código a incluir en cada página (<head>)" per_page_code_head: "Código a incluir en cada página (<head>)"
per_page_code_head_description: "Esté código aparecerá dentro de la etiqueta <head>. Útil para introducir scripts personalizados, analitycs..."
per_page_code_body: "Código a incluir en cada página (<body>)" per_page_code_body: "Código a incluir en cada página (<body>)"
per_page_code_body_description: "Esté código aparecerá dentro de la etiqueta <body>. Útil para introducir scripts personalizados, analitycs..."
twitter_handle: "Usuario de Twitter" twitter_handle: "Usuario de Twitter"
twitter_handle_description: "Si está rellenado aparecerá en el pie de página"
twitter_hashtag: "Hashtag para Twitter" twitter_hashtag: "Hashtag para Twitter"
twitter_hashtag_description: "Hashtag que aparecerá al compartir contenido por Twitter"
facebook_handle: "Identificador de Facebook" facebook_handle: "Identificador de Facebook"
facebook_handle_description: "Si está rellenado aparecerá en el pie de página"
youtube_handle: "Usuario de Youtube" youtube_handle: "Usuario de Youtube"
youtube_handle_description: "Si está rellenado aparecerá en el pie de página"
telegram_handle: "Usuario de Telegram" telegram_handle: "Usuario de Telegram"
telegram_handle_description: "Si está rellenado aparecerá en el pie de página"
instagram_handle: "Usuario de Instagram" instagram_handle: "Usuario de Instagram"
instagram_handle_description: "Si está rellenado aparecerá en el pie de página"
url: "URL general de la web"
url_description: "URL principal de tu web"
org_name: "Nombre de la organización"
org_name_description: "Nombre de tu organización"
place_name: "Nombre del lugar"
place_name_description: "Nombre de tu ciudad"
related_content_score_threshold: Umbral de puntuación de contenido relacionado
related_content_score_threshold_description: Oculta el contenido que los usuarios marquen como no relacionado
map_latitude: "Latitud"
map_latitude_description: "Latitud para mostrar la posición del mapa"
map_longitude: "Longitud"
map_longitude_description: "Longitud para mostrar la posición del mapa"
map_zoom: "Zoom"
map_zoom_description: "Zoom para mostrar la posición del mapa"
mailer_from_name: "Nombre email remitente"
mailer_from_name_description: "Este nombre aparecerá en los emails enviados desde la aplicación"
mailer_from_address: "Dirección email remitente"
mailer_from_address_description: "Esta dirección de email aparecerá en los emails enviados desde la aplicación"
meta_title: "Título del sitio"
meta_title_description: "Título para el sitio <title>, utilizado para mejorar el SEO"
meta_description: "Descripción del sitio"
meta_description_description: 'Descripción del sitio <meta name="description">, utilizada para mejorar el SEO'
meta_keywords: "Palabras clave"
meta_keywords_description: 'Palabras clave <meta name="keywords">, utilizadas para mejorar el SEO'
min_age_to_participate: "Edad mínima para participar"
min_age_to_participate_description: "Los usuarios mayores de esta edad podrán participar en todos los procesos"
analytics_url: "URL de estadísticas externas"
blog_url: "URL del blog" blog_url: "URL del blog"
transparency_url: "URL de transparencia" transparency_url: "URL de transparencia"
opendata_url: "URL de open data" opendata_url: "URL de open data"
url: "URL general de la web"
org_name: "Nombre de la organización"
place_name: "Nombre del lugar"
feature:
budgets: Presupuestos participativos
twitter_login: Registro con Twitter
facebook_login: Registro con Facebook
google_login: Registro con Google
proposals: Propuestas
debates: Debates
polls: Votaciones
signature_sheets: Hojas de firmas
spending_proposals: Propuestas de inversión
spending_proposal_features:
voting_allowed: Votaciones sobre propuestas de inversión
legislation: Legislación
user:
recommendations: Recomendaciones
skip_verification: Omitir verificación de usuarios
recommendations_on_debates: Recomendaciones en debates
recommendations_on_proposals: Recomendaciones en propuestas
community: Comunidad en propuestas y proyectos de gasto
map: Geolocalización de propuestas y proyectos de gasto
allow_images: Permitir subir y mostrar imágenes
allow_attached_documents: Permitir creación de documentos adjuntos
guides: Guías para crear propuestas o proyectos de inversión
public_stats: Estadísticas públicas
related_content_score_threshold: Umbral de puntuación de contenido relacionado
map_latitude: Latitud
map_longitude: Longitud
map_zoom: Zoom
mailer_from_name: Nombre email remitente
mailer_from_address: Dirección email remitente
meta_title: "Título del sitio (SEO)"
meta_description: "Descripción del sitio (SEO)"
meta_keywords: "Palabras clave (SEO)"
verification_offices_url: URL oficinas verificación verification_offices_url: URL oficinas verificación
min_age_to_participate: Edad mínima para participar
proposal_improvement_path: Link a información para mejorar propuestas proposal_improvement_path: Link a información para mejorar propuestas
feature:
budgets: "Presupuestos participativos"
budgets_description: "Con los presupuestos participativos la ciudadanía decide a qué proyectos presentados por los vecinos y vecinas va destinada una parte del presupuesto municipal"
twitter_login: "Registro con Twitter"
twitter_login_description: "Permitir que los usuarios se registren con su cuenta de Twitter"
facebook_login: "Registro con Facebook"
facebook_login_description: "Permitir que los usuarios se registren con su cuenta de Facebook"
google_login: "Registro con Google"
google_login_description: "Permitir que los usuarios se registren con su cuenta de Google"
proposals: "Propuestas"
proposals_description: "Las propuestas ciudadanas son una oportunidad para que los vecinos y colectivos decidan directamente cómo quieren que sea su ciudad, después de conseguir los apoyos suficientes y de someterse a votación ciudadana"
debates: "Debates"
debates_description: "El espacio de debates ciudadanos está dirigido a que cualquier persona pueda exponer temas que le preocupan y sobre los que quiera compartir puntos de vista con otras personas"
polls: "Votaciones"
polls_description: "Las votaciones ciudadanas son un mecanismo de participación por el que la ciudadanía con derecho a voto puede tomar decisiones de forma directa"
signature_sheets: "Hojas de firmas"
signature_sheets_description: "Permite añadir desde el panel de Administración firmas recogidas de forma presencial a Propuestas y proyectos de gasto de los Presupuestos participativos"
legislation: "Legislación colaborativa"
legislation_description: "En los procesos participativos se ofrece a la ciudadanía la oportunidad de participar en la elaboración y modificación de normativa que afecta a la ciudad y de dar su opinión sobre ciertas actuaciones que se tiene previsto llevar a cabo"
spending_proposals: "Propuestas de inversión"
spending_proposals_description: "⚠️ NOTA: Esta funcionalidad ha sido sustituida por Pesupuestos Participativos y desaparecerá en nuevas versiones"
spending_proposal_features:
voting_allowed: "Votaciones de preselección sobre propuestas de inversión."
voting_allowed_description: "⚠️ NOTA: Esta funcionalidad ha sido sustituida por Pesupuestos Participativos y desaparecerá en nuevas versiones"
user:
recommendations: "Recomendaciones"
recommendations_description: "Muestra a los usuarios recomendaciones en la homepage basado en las etiquetas de los elementos que sigue"
skip_verification: "Omitir verificación de usuarios"
skip_verification_description: "Esto deshabilitará la verificación de usuarios y todos los usuarios registrados podrán participar en todos los procesos"
recommendations_on_debates: "Recomendaciones en debates"
recommendations_on_debates_description: "Muestra a los usuarios recomendaciones en la página de debates basado en las etiquetas de los elementos que sigue"
recommendations_on_proposals: "Recomendaciones en propuestas"
recommendations_on_proposals_description: "Muestra a los usuarios recomendaciones en la página de propuestas basado en las etiquetas de los elementos que sigue"
community: "Comunidad en propuestas y proyectos de gasto"
community_description: "Activa la sección de comunidad en las propuestas y en los proyectos de gasto de los Presupuestos participativos"
map: "Geolocalización de propuestas y proyectos de gasto"
map_description: "Activa la geolocalización de propuestas y proyectos de gasto"
allow_images: "Permitir subir y mostrar imágenes"
allow_images_description: "Permite que los usuarios suban imágenes al crear propuestas y proyectos de gasto de los Presupuestos participativos"
allow_attached_documents: "Permitir creación de documentos adjuntos"
allow_attached_documents_description: "Permite que los usuarios suban documentos al crear propuestas y proyectos de gasto de los Presupuestos participativos"
guides: "Guías para crear propuestas o proyectos de gasto"
guides_description: "Muestra una guía de diferencias entre las propuestas y los proyectos de gasto si hay un presupuesto participativo activo"
public_stats: "Estadísticas públicas"
public_stats_description: "Muestra las estadísticas públicas en el panel de Administración"