Browse Source

Fix string

Neeraj Gupta 2 năm trước cách đây
mục cha
commit
b841d5ecd7
2 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 1 1
      lib/l10n/arb/app_en.arb
  2. 1 1
      lib/ui/account/logout_dialog.dart

+ 1 - 1
lib/l10n/arb/app_en.arb

@@ -63,7 +63,7 @@
   "supportDevs" : "Subscribe to <bold-green>ente</bold-green> to support this project.",
   "supportDiscount" : "Use coupon code \"AUTH\" to get 10% off first year",
   "changeEmail": "change email",
-  "ok": "OK",
+  "ok": "Ok",
   "cancel": "Cancel",
   "yes": "Yes",
   "no": "No",

+ 1 - 1
lib/ui/account/logout_dialog.dart

@@ -11,7 +11,7 @@ Future<void> autoLogoutAlert(BuildContext context) async {
     actions: [
       TextButton(
         child: Text(
-          "Ok",
+          l10n.ok,
           style: TextStyle(
             color: Theme.of(context).colorScheme.primary,
           ),