Shun Miyazawa %!s(int64=3) %!d(string=hai) anos
pai
achega
3fc3ba5ea2

+ 2 - 2
packages/app/resource/locales/en_US/translation.json

@@ -1079,8 +1079,8 @@
     "cancel_like": "Cancel Like",
     "bookmark": "Bookmark",
     "cancel_bookmark": "Cancel Bookmark",
-    "subscribe": "Receive Notifications",
-    "cancel_subscribe": "No Notification",
+    "receive_notifications": "Receive Notifications",
+    "stop_notification": "Stop Notification",
     "footprints": "Footprints"
   }
 }

+ 3 - 3
packages/app/resource/locales/ja_JP/translation.json

@@ -1072,8 +1072,8 @@
     "cancel_like": "いいねを取り消す",
     "bookmark": "ブックマーク",
     "cancel_bookmark": "ブックマークを取り消す",
-    "subscribe": "通知を受け取る",
-    "cancel_subscribe": "通知をしない",
-    "footprints": "あしあと"
+    "receive_notifications": "通知を受け取る",
+    "stop_notification": "通知を止める",
+    "footprints": "足跡"
   }
 }

+ 2 - 2
packages/app/resource/locales/zh_CN/translation.json

@@ -1082,8 +1082,8 @@
     "cancel_like": "取消喜欢",
     "bookmark": "书签",
     "cancel_bookmark": "取消书签",
-    "subscribe": "接收通知",
-    "cancel_subscribe": "不通知",
+    "receive_notifications": "接收通知",
+    "stop_notification": "停止通知",
     "footprints": "脚印"
   }
 }

+ 2 - 2
packages/app/src/components/SubscribeButton.tsx

@@ -27,9 +27,9 @@ const SubscribeButton: FC<Props> = (props: Props) => {
     }
 
     if (isSubscribing) {
-      return 'tooltip.cancel_subscribe';
+      return 'tooltip.stop_notification';
     }
-    return 'tooltip.subscribe';
+    return 'tooltip.receive_notifications';
   }, [isGuestUser, isSubscribing]);
 
   return (