diff --git a/config/locales/en/seeds.yml b/config/locales/en/seeds.yml index 87db8e5c9..b77ebfc21 100644 --- a/config/locales/en/seeds.yml +++ b/config/locales/en/seeds.yml @@ -36,10 +36,20 @@ en: groups: all_city: All City districts: Districts + valuator_groups: + culture_and_sports: Culture & Sports + gender_and_diversity: Gender & Diversity Policies + urban_development: Sustainable Urban Development + equity_and_employment: Equity & Employment + statuses: + studying_project: Studying the project + bidding: Bidding + executing_project: Executing the project + executed: Executed polls: current_poll: "Current Poll" current_poll_geozone_restricted: "Current Poll Geozone Restricted" incoming_poll: "Incoming Poll" recounting_poll: "Recounting Poll" expired_poll_without_stats: "Expired Poll without Stats & Results" - expired_poll_with_stats: "Expired Poll with Stats & Results" \ No newline at end of file + expired_poll_with_stats: "Expired Poll with Stats & Results" diff --git a/config/locales/es/seeds.yml b/config/locales/es/seeds.yml index ad6d5c656..7640e4e4d 100644 --- a/config/locales/es/seeds.yml +++ b/config/locales/es/seeds.yml @@ -36,10 +36,20 @@ es: groups: all_city: Toda la Ciudad districts: Distritos + valuator_groups: + culture_and_sports: Cultura y Deportes + gender_and_diversity: Políticas de Género y Diversidad + urban_development: Desarrollo Urbano Sostenible + equity_and_employment: Equidad y Empleo + statuses: + studying_project: Estudiando el proyecto + bidding: Licitación + executing_project: Ejecutando el proyecto + executed: Ejecutado polls: current_poll: "Votación Abierta" current_poll_geozone_restricted: "Votación Abierta restringida por geozona" incoming_poll: "Siguiente Votación" recounting_poll: "Votación en Recuento" expired_poll_without_stats: "Votación Finalizada (sin Estadísticas o Resultados)" - expired_poll_with_stats: "Votación Finalizada (con Estadísticas y Resultado)" \ No newline at end of file + expired_poll_with_stats: "Votación Finalizada (con Estadísticas y Resultado)" diff --git a/db/dev_seeds/budgets.rb b/db/dev_seeds/budgets.rb index 5d3294b46..5633e1dc6 100644 --- a/db/dev_seeds/budgets.rb +++ b/db/dev_seeds/budgets.rb @@ -123,3 +123,10 @@ section "Creating investment milestones" do end end end + +section "Creating default Investment Milestone Statuses" do + Budget::Investment::Status.create(name: I18n.t('seeds.budgets.statuses.studying_project')) + Budget::Investment::Status.create(name: I18n.t('seeds.budgets.statuses.bidding')) + Budget::Investment::Status.create(name: I18n.t('seeds.budgets.statuses.executing_project')) + Budget::Investment::Status.create(name: I18n.t('seeds.budgets.statuses.executed')) +end