Skip to content

Commit

Permalink
Fix untranslatable alarm string
Browse files Browse the repository at this point in the history
  • Loading branch information
Bnyro committed Apr 7, 2023
1 parent dafaebf commit 55db98f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ class AlarmReceiver : BroadcastReceiver() {

if (currentDay - 1 in alarm.days) {
if (alarm.vibrate) VibrationHelper.vibrate(context)
Toast.makeText(context, "Alarm! Wake up! Wake up!", Toast.LENGTH_LONG).show()
Toast.makeText(context, context.getString(R.string.alarm), Toast.LENGTH_LONG).show()
showNotification(context, alarm)
}
}
Expand Down

0 comments on commit 55db98f

Please sign in to comment.