enhance(frontend): 設定の同期をオンにするときに競合したときに値をマージできるように

This commit is contained in:
syuilo
2025-05-31 12:49:10 +09:00
parent 9f196bbf75
commit 0254570fbf
8 changed files with 85 additions and 28 deletions

10
locales/index.d.ts vendored
View File

@@ -5335,15 +5335,19 @@ export interface Locale extends ILocale {
*/
"preferenceSyncConflictTitle": string;
/**
* 同期が有効にされた設定項目は設定値をサーバーに保存しますが、この設定項目のサーバーに保存された設定値が見つかりました。どちらの設定値で上書きしますか?
* 同期が有効にされた設定項目は設定値をサーバーに保存しますが、この設定項目のサーバーに保存された設定値が見つかりました。どしますか?
*/
"preferenceSyncConflictText": string;
/**
* サーバーの設定値
* 統合する
*/
"preferenceSyncConflictChoiceMerge": string;
/**
* サーバーの設定値で上書き
*/
"preferenceSyncConflictChoiceServer": string;
/**
* デバイスの設定値
* デバイスの設定値で上書き
*/
"preferenceSyncConflictChoiceDevice": string;
/**