Skip to content

Commit

Permalink
fix grammer at -> in
Browse files Browse the repository at this point in the history
  • Loading branch information
iqfareez committed Nov 29, 2020
1 parent 8bbc849 commit c48ea2b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/utils/notifications_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void schedulePrayNotification(List<dynamic> times) async {
title: 'It\'s Fajr',
scheduledTime: tz.TZDateTime.from(
DateTime.fromMillisecondsSinceEpoch(subuhTimeEpoch), tz.local),
body: 'at ' + currentLocation,
body: 'in ' + currentLocation,
);
}
if (!(syurukTimeEpoch < currentTime)) {
Expand All @@ -142,7 +142,7 @@ void schedulePrayNotification(List<dynamic> times) async {
notifsPlugin: notifsPlugin,
id: (syurukTimeEpoch / 1000).truncate(),
title: 'It\'s Syuruk',
body: 'at ' + currentLocation,
body: 'in ' + currentLocation,
scheduledTime: tz.TZDateTime.from(
DateTime.fromMillisecondsSinceEpoch(syurukTimeEpoch), tz.local));
}
Expand All @@ -152,7 +152,7 @@ void schedulePrayNotification(List<dynamic> times) async {
notifsPlugin: notifsPlugin,
id: (zuhrTimeEpoch / 1000).truncate(),
title: 'It\'s Zuhr',
body: 'at ' + currentLocation,
body: 'in ' + currentLocation,
scheduledTime: tz.TZDateTime.from(
DateTime.fromMillisecondsSinceEpoch(zuhrTimeEpoch), tz.local));
}
Expand All @@ -162,7 +162,7 @@ void schedulePrayNotification(List<dynamic> times) async {
notifsPlugin: notifsPlugin,
id: (asarTimeEpoch / 1000).truncate(),
title: 'It\'s Asr',
body: 'at ' + currentLocation,
body: 'in ' + currentLocation,
scheduledTime: tz.TZDateTime.from(
DateTime.fromMillisecondsSinceEpoch(asarTimeEpoch), tz.local));
}
Expand All @@ -172,7 +172,7 @@ void schedulePrayNotification(List<dynamic> times) async {
notifsPlugin: notifsPlugin,
id: (maghribTimeEpoch / 1000).truncate(),
title: 'It\'s Maghrib',
body: 'at ' + currentLocation,
body: 'in ' + currentLocation,
scheduledTime: tz.TZDateTime.from(
DateTime.fromMillisecondsSinceEpoch(maghribTimeEpoch), tz.local));
}
Expand All @@ -182,7 +182,7 @@ void schedulePrayNotification(List<dynamic> times) async {
notifsPlugin: notifsPlugin,
id: (isyakTimeEpoch / 1000).truncate(),
title: 'It\'s Isya\'',
body: 'at ' + currentLocation,
body: 'in ' + currentLocation,
scheduledTime: tz.TZDateTime.from(
DateTime.fromMillisecondsSinceEpoch(isyakTimeEpoch), tz.local));
}
Expand Down

0 comments on commit c48ea2b

Please sign in to comment.