📝 i18n: Update ratio sync message text

- Change message from "已与上游倍率完全一致,无需同步" to "未找到差异化倍率,无需同步"
- Update English translation to "No differential ratio found, no synchronization is required"
- Improve user experience clarity for upstream ratio synchronization status
This commit is contained in:
Apple\Apple
2025-06-21 02:09:08 +08:00
parent 0b326e7af4
commit 9c3a13cb23
2 changed files with 2 additions and 2 deletions

View File

@@ -125,7 +125,7 @@ export default function UpstreamRatioSync(props) {
setHasSynced(true);
if (Object.keys(differences).length === 0) {
showSuccess(t('已与上游倍率完全一致,无需同步'));
showSuccess(t('未找到差异化倍率,无需同步'));
}
} catch (e) {
showError(t('请求后端接口失败:') + e.message);