Skip to content

Commit

Permalink
Merge pull request #36 from daithihearn/bug-fix
Browse files Browse the repository at this point in the history
fix: minor bug fixes
  • Loading branch information
daithihearn authored Sep 9, 2023
2 parents a76f0bf + 9c2e3bd commit 4713288
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.11.1
1.11.2
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class AlexSkillService(private val priceSerice: PriceService, private val messag

val roundedDailyAverage = dailyAverage.times(100).roundToInt()

// Get cheapest period
// Get the cheapest periods
val twoCheapPeriods = getTwoCheapestPeriods(pricesTomorrow, 3)
val cheapestPeriod1Average = twoCheapPeriods.first.map { it.price }.average().times(100).roundToInt()
val cheapestPeriod1Time = formatAmPm(twoCheapPeriods.first[0].dateTime)
Expand All @@ -103,7 +103,7 @@ class AlexSkillService(private val priceSerice: PriceService, private val messag

val ratingText = getTomorrowRatingText(rating, roundedDailyAverage, locale)

val mainText = if (twoCheapPeriods.second.isNotEmpty()) {
val mainText = if (twoCheapPeriods.second.isEmpty()) {
messageSource.getMessage(
"alexa.tomorrow.rating.single",
arrayOf(
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/i18n/messages_es.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ alexa.today.rating.normal=Hoy es un día normal, con un precio medio de {0} cén
alexa.tomorrow.rating.good=Mañana es un día bueno, con un precio promedio de {0} céntimos por kilovatio-hora.
alexa.tomorrow.rating.bad=Mañana es un día malo, con un precio promedio de {0} céntimos por kilovatio-hora.
alexa.tomorrow.rating.normal=Mañana es un día normal, con un precio promedio de {0} céntimos por kilovatio-hora.
alexa.tomorrow.rating.single=El mejor período de comienza a las {0} con un precio promedio de {1} céntimos y dura {2} horas. El peor período comienza a las {3} con un precio promedio de {4} céntimos y dura 3 horas.
alexa.tomorrow.rating.single=El mejor período comienza a las {0} con un precio promedio de {1} céntimos y dura {2} horas. El peor período comienza a las {3} con un precio promedio de {4} céntimos y dura 3 horas.
alexa.tomorrow.rating.double=Hay dos períodos bajos, una que comienza a las {0} con un precio promedio de {1} y otra a las {2} con un precio promedio de {3}. Los dos períodos duran 3 horas. El peor período de comienza a las {4} con un precio promedio de {5} céntimos y dura 3 horas.
alexa.tomorrow.no_data=Aún no hay datos disponibles para mañana. Por favor, vuelva más tarde. Los precios están generalmente disponibles a las 8:30 PM.
alexa.next.cheap.period=El próximo período bajo comienza a las {0} con un precio medio de {1} céntimos por kilovatio-hora y dura {2} horas.
Expand Down

0 comments on commit 4713288

Please sign in to comment.