Skip to content

Commit

Permalink
Make admin notifications seed data translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
bertocq authored and decabeza committed Jul 25, 2018
1 parent 812002d commit a883e84
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 21 deletions.
15 changes: 15 additions & 0 deletions config/locales/en/seeds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,18 @@ en:
recounting_poll: "Recounting Poll"
expired_poll_without_stats: "Expired Poll without Stats & Results"
expired_poll_with_stats: "Expired Poll with Stats & Results"
admin_notifications:
internal_link:
title: 'Do you have a proposal?'
body: 'Remember you can create a proposal with your ideas and people will discuss & support it.'
link: '/proposals'
external_link:
title: Help us translate consul
body: 'If you are proficient in a language, please help us translate consul!.'
link: 'https://crwd.in/consul'
without_link:
title: 'You can now geolocate proposals & investments'
body: 'When you create a proposal or investment you now can specify a point on a map'
not_sent:
title: 'We are closing the Participatory Budget!!'
body: 'Hurry up and create a last proposal before it ends next in few days!'
15 changes: 15 additions & 0 deletions config/locales/es/seeds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,18 @@ es:
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)"
admin_notifications:
internal_link:
title: 'Tienes una propuesta?'
body: 'Recuerda que puedes crear propuestas y los ciudadanos las debatirán y apoyarán.'
link: '/proposals'
external_link:
title: 'Ayúdanos a traducir CONSUL'
body: 'Si dominas un idioma, ayúdanos a completar su traducción en CONSUL.'
link: 'https://crwd.in/consul'
without_link:
title: 'Ahora puedes geolocalizar propuestas y proyectos de inversión'
body: 'Cuando crees una propuesta o proyecto de inversión podrás especificar su localización en el mapa'
not_sent:
title: 'Últimos días para crear proyectos de Presupuestos Participativos'
body: 'Quedan pocos dias para que se cierre el plazo de presentación de proyectos de inversión para los presupuestos participativos!'
34 changes: 13 additions & 21 deletions db/dev_seeds/admin_notifications.rb
Original file line number Diff line number Diff line change
@@ -1,36 +1,28 @@
section "Creating Admin Notifications & Templates" do
AdminNotification.create!(
title: 'New usage Terms & Conditions!',
segment_recipient: 'administrators',
body: 'We have improved our usage terms & conditions! please check them out to be up to date.',
link: 'http:https://localhost:3000/condiciones-de-uso'
title: I18n.t('seeds.admin_notification.internal_link.title'),
body: I18n.t('seeds.admin_notification.internal_link.body'),
link: Setting['url'] + I18n.t('seeds.admin_notification.internal_link.link'),
segment_recipient: 'administrators'
).deliver

AdminNotification.create!(
title: 'Help us translate consul 🤓',
segment_recipient: 'administrators',
body: 'If you are proficient in a language, please help us translate consul!.',
link: 'https://crwd.in/consul'
title: I18n.t('seeds.admin_notification.external_link.title'),
body: I18n.t('seeds.admin_notification.external_link.body'),
link: I18n.t('seeds.admin_notification.external_link.link'),
segment_recipient: 'administrators'
).deliver

AdminNotification.create!(
title: 'You can now geolocate proposals & investments',
segment_recipient: 'administrators',
body: 'When you create a proposal or investment you now can specify a point on a map 🗺'
).deliver

AdminNotification.create!(
title: 'We just opened a new Participatory Budget!',
segment_recipient: 'administrators',
link: 'https://www.decide.madrid.es/presupuestos2018/1',
body: 'Start creating proposals for budget investments!'
title: I18n.t('seeds.admin_notification.without_link.title'),
body: I18n.t('seeds.admin_notification.without_link.body'),
segment_recipient: 'administrators'
).deliver

AdminNotification.create!(
title: 'We are closing the 2018 Participatory Budget!!',
title: I18n.t('seeds.admin_notification.not_sent.title'),
body: I18n.t('seeds.admin_notification.not_sent.body'),
segment_recipient: 'administrators',
link: 'https://www.decide.madrid.es/presupuestos2018/1',
body: 'Hurry up and create a last proposal before it ends next in two days!',
sent_at: nil
)
end

0 comments on commit a883e84

Please sign in to comment.