🚧 WIP: renderer i18n

This commit is contained in:
PiEgg
2022-01-18 23:10:49 +08:00
parent cc73fe7bce
commit be32ed0e52
4 changed files with 51 additions and 35 deletions
+3 -3
View File
@@ -4,7 +4,7 @@
@submit.native.prevent
>
<el-form-item
label="文件改名"
:label="$T('FILE_RENAME')"
>
<el-input
v-model="fileName"
@@ -15,8 +15,8 @@
</el-form>
<el-row>
<div class="pull-right">
<el-button @click="cancel" round size="mini">取消</el-button>
<el-button type="primary" @click="confirmName" round size="mini">确定</el-button>
<el-button @click="cancel" round size="mini">{{ $T('CANCEL') }}</el-button>
<el-button type="primary" @click="confirmName" round size="mini">{{ $T('CONFIRM') }}</el-button>
</div>
</el-row>
</div>