画布部分语言适配
This commit is contained in:
@@ -145,10 +145,10 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="dialog-buttons">
|
<div class="dialog-buttons">
|
||||||
<button class="cancel-btn" @click="cancelFeather">
|
<button class="cancel-btn" @click="cancelFeather">
|
||||||
{{ $t("取消") }}
|
{{ $t("Canvas.close") }}
|
||||||
</button>
|
</button>
|
||||||
<button class="confirm-btn" @click="applyFeather">
|
<button class="confirm-btn" @click="applyFeather">
|
||||||
{{ $t("确认") }}
|
{{ $t("Canvas.confirmEdit") }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -159,7 +159,7 @@
|
|||||||
<div v-if="showColorPicker" class="dialog-overlay">
|
<div v-if="showColorPicker" class="dialog-overlay">
|
||||||
<div class="dialog-container">
|
<div class="dialog-container">
|
||||||
<div class="dialog-header">
|
<div class="dialog-header">
|
||||||
<h3>{{ $t("选择填充颜色") }}</h3>
|
<h3>{{ $t("Canvas.SelectFillColor") }}</h3>
|
||||||
<button class="close-dialog-btn" @click="cancelColorPicker">
|
<button class="close-dialog-btn" @click="cancelColorPicker">
|
||||||
×
|
×
|
||||||
</button>
|
</button>
|
||||||
@@ -168,10 +168,10 @@
|
|||||||
<input type="color" v-model="fillColor" class="color-picker" />
|
<input type="color" v-model="fillColor" class="color-picker" />
|
||||||
<div class="dialog-buttons">
|
<div class="dialog-buttons">
|
||||||
<button class="cancel-btn" @click="cancelColorPicker">
|
<button class="cancel-btn" @click="cancelColorPicker">
|
||||||
{{ $t("取消") }}
|
{{ $t("Canvas.close") }}
|
||||||
</button>
|
</button>
|
||||||
<button class="confirm-btn" @click="confirmColorPicker">
|
<button class="confirm-btn" @click="confirmColorPicker">
|
||||||
{{ $t("确认") }}
|
{{ $t("Canvas.confirmEdit") }}
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -770,7 +770,7 @@ export class ToolManager {
|
|||||||
title,
|
title,
|
||||||
content,
|
content,
|
||||||
okText: this.t("Canvas.ConfirmRasterization"),
|
okText: this.t("Canvas.ConfirmRasterization"),
|
||||||
cancelText: "取消",
|
cancelText: this.t("Canvas.close"),
|
||||||
centered: true,
|
centered: true,
|
||||||
icon: h("span", { style: "color: #faad14;" }, "⚠️"),
|
icon: h("span", { style: "color: #faad14;" }, "⚠️"),
|
||||||
onOk: () => {
|
onOk: () => {
|
||||||
|
|||||||
2839
src/lang/cn.ts
2839
src/lang/cn.ts
File diff suppressed because it is too large
Load Diff
2835
src/lang/en.ts
2835
src/lang/en.ts
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user