mirror of
https://github.com/siyuan-note/siyuan.git
synced 2025-12-31 22:08:48 +01:00
🎨 Improve text https://github.com/siyuan-note/siyuan/issues/14447
This commit is contained in:
parent
69642e3bac
commit
3ebfdf6c5b
21 changed files with 77 additions and 72 deletions
|
|
@ -10,6 +10,7 @@ import {openSetting} from "../config";
|
|||
/// #endif
|
||||
import {App} from "../index";
|
||||
import {Constants} from "../constants";
|
||||
import {getCloudURL} from "../config/util/about";
|
||||
|
||||
export const addCloudName = (cloudPanelElement: Element) => {
|
||||
const dialog = new Dialog({
|
||||
|
|
@ -153,7 +154,7 @@ export const syncGuide = (app?: App) => {
|
|||
return;
|
||||
}
|
||||
} else if (!isPaidUser()) {
|
||||
showMessage(window.siyuan.languages["_kernel"][214]);
|
||||
showMessage(window.siyuan.languages["_kernel"][214].replaceAll("${accountServer}", getCloudURL("")));
|
||||
return;
|
||||
}
|
||||
/// #else
|
||||
|
|
@ -171,7 +172,7 @@ export const syncGuide = (app?: App) => {
|
|||
return;
|
||||
}
|
||||
if (0 !== window.siyuan.config.sync.provider && !isPaidUser() && app) {
|
||||
showMessage(window.siyuan.languages["_kernel"][214]);
|
||||
showMessage(window.siyuan.languages["_kernel"][214].replaceAll("${accountServer}", getCloudURL("")));
|
||||
return;
|
||||
}
|
||||
/// #endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue