ソースを参照

Fix casing in copies

vishnukvmd 2 年 前
コミット
3332b030ef
2 ファイル変更4 行追加4 行削除
  1. 2 2
      lib/services/sync_service.dart
  2. 2 2
      lib/services/update_service.dart

+ 2 - 2
lib/services/sync_service.dart

@@ -243,8 +243,8 @@ class SyncService {
     if ((now - lastNotificationShownTime) > microSecondsInDay) {
     if ((now - lastNotificationShownTime) > microSecondsInDay) {
       await _prefs.setInt(kLastStorageLimitExceededNotificationPushTime, now);
       await _prefs.setInt(kLastStorageLimitExceededNotificationPushTime, now);
       NotificationService.instance.showNotification(
       NotificationService.instance.showNotification(
-        "storage limit exceeded",
-        "sorry, we had to pause your backups",
+        "Storage limit exceeded",
+        "Sorry, we had to pause your backups",
       );
       );
     }
     }
   }
   }

+ 2 - 2
lib/services/update_service.dart

@@ -71,8 +71,8 @@ class UpdateService {
         hasBeen3DaysSinceLastNotification &&
         hasBeen3DaysSinceLastNotification &&
         _latestVersion.shouldNotify) {
         _latestVersion.shouldNotify) {
       NotificationService.instance.showNotification(
       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);
       await _prefs.setInt(kUpdateAvailableShownTimeKey, now);
     } else {
     } else {