diff --git a/lib/services/sync_service.dart b/lib/services/sync_service.dart index efc014f137b6c79fe25bbe01bff40e7db5145b9d..d8680206ab6ee9f4450f56cce2d2fe39ab6813e6 100644 --- a/lib/services/sync_service.dart +++ b/lib/services/sync_service.dart @@ -243,8 +243,8 @@ class SyncService { if ((now - lastNotificationShownTime) > microSecondsInDay) { await _prefs.setInt(kLastStorageLimitExceededNotificationPushTime, now); NotificationService.instance.showNotification( - "storage limit exceeded", - "sorry, we had to pause your backups", + "Storage limit exceeded", + "Sorry, we had to pause your backups", ); } } diff --git a/lib/services/update_service.dart b/lib/services/update_service.dart index 973bc545bc7ea45a05adb3605df697ecd4992c67..f5d2b7acd32564120f02b2a78606665b3b25de51 100644 --- a/lib/services/update_service.dart +++ b/lib/services/update_service.dart @@ -71,8 +71,8 @@ class UpdateService { hasBeen3DaysSinceLastNotification && _latestVersion.shouldNotify) { NotificationService.instance.showNotification( - "update available", - "click to install our best version yet", + "Update available", + "Click to install our best version yet", ); await _prefs.setInt(kUpdateAvailableShownTimeKey, now); } else {