浅试 i18n
This commit is contained in:
parent
787db345cd
commit
b0fa41e74a
@ -44,7 +44,7 @@ const chartOptions = {
|
|||||||
maxHeight: 300
|
maxHeight: 300
|
||||||
};
|
};
|
||||||
|
|
||||||
const {locale} = useI18n()
|
const {t, locale} = useI18n()
|
||||||
|
|
||||||
const editorRef = ref()
|
const editorRef = ref()
|
||||||
|
|
||||||
@ -108,7 +108,7 @@ const ctx = reactive({
|
|||||||
|
|
||||||
function openFile(){
|
function openFile(){
|
||||||
OpenFileDialog({
|
OpenFileDialog({
|
||||||
title: "打开 markdown 文件",
|
title: `${t("general.open")} markdown ${t("general.file")}`,
|
||||||
filters: [
|
filters: [
|
||||||
{
|
{
|
||||||
displayName: "Markdown",
|
displayName: "Markdown",
|
||||||
@ -130,7 +130,7 @@ function openFile(){
|
|||||||
|
|
||||||
function saveFile(){
|
function saveFile(){
|
||||||
SaveFileDialog({
|
SaveFileDialog({
|
||||||
title: "保存 markdown",
|
title: `${t("general.save")} markdown`,
|
||||||
filters: [
|
filters: [
|
||||||
{
|
{
|
||||||
displayName: "Markdown",
|
displayName: "Markdown",
|
||||||
@ -162,8 +162,8 @@ function saveFile(){
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<el-button type="primary" @click="openFile">打开</el-button>
|
<el-button type="primary" @click="openFile">{{ t("general.open") }}</el-button>
|
||||||
<el-button type="success" @click="saveFile">保存</el-button>
|
<el-button type="success" @click="saveFile">{{ t("general.save")}}</el-button>
|
||||||
<div ref="editorRef" class="overscroll-none"/>
|
<div ref="editorRef" class="overscroll-none"/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -28,5 +28,10 @@
|
|||||||
"global": {
|
"global": {
|
||||||
"not-supported": "Because it is a beta version, it can't be done for the time being, it will be completed later.",
|
"not-supported": "Because it is a beta version, it can't be done for the time being, it will be completed later.",
|
||||||
"click-link": "The currently clicked link is: "
|
"click-link": "The currently clicked link is: "
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"open": "open",
|
||||||
|
"save": "save",
|
||||||
|
"file": "file"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -28,5 +28,10 @@
|
|||||||
"global": {
|
"global": {
|
||||||
"not-supported": "由于是测试版,所以暂时做不了,后续会完成它。",
|
"not-supported": "由于是测试版,所以暂时做不了,后续会完成它。",
|
||||||
"click-link": "当前点击的链接是: "
|
"click-link": "当前点击的链接是: "
|
||||||
|
},
|
||||||
|
"general": {
|
||||||
|
"open": "打开",
|
||||||
|
"save": "保存",
|
||||||
|
"file": "文件"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user