Add i18n for next/back/install buttons (#2045)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
filtered
2024-12-25 06:01:54 +11:00
committed by GitHub
parent eb43234a3a
commit 467b35f98d
6 changed files with 22 additions and 7 deletions

View File

@@ -42,6 +42,9 @@
"no": "No",
"cancel": "Cancel",
"close": "Close",
"back": "Back",
"next": "Next",
"install": "Install",
"overwrite": "Overwrite",
"customize": "Customize",
"experimental": "BETA",

View File

@@ -65,6 +65,7 @@
"g": {
"about": "情報",
"add": "追加",
"back": "戻る",
"cancel": "キャンセル",
"close": "閉じる",
"color": "色",
@@ -91,12 +92,14 @@
"icon": "アイコン",
"imageFailedToLoad": "画像の読み込みに失敗しました",
"insert": "挿入",
"install": "インストール",
"keybinding": "キーバインディング",
"loadAllFolders": "すべてのフォルダーを読み込む",
"loadWorkflow": "ワークフローを読み込む",
"loading": "読み込み中",
"logs": "ログ",
"newFolder": "新しいフォルダー",
"next": "次へ",
"no": "いいえ",
"noResultsFound": "結果が見つかりません",
"noTasksFound": "タスクが見つかりません",

View File

@@ -65,6 +65,7 @@
"g": {
"about": "정보",
"add": "추가",
"back": "뒤로",
"cancel": "취소",
"close": "닫기",
"color": "색상",
@@ -91,12 +92,14 @@
"icon": "아이콘",
"imageFailedToLoad": "이미지를 로드하지 못했습니다.",
"insert": "삽입",
"install": "설치",
"keybinding": "키 바인딩",
"loadAllFolders": "모든 폴더 로드",
"loadWorkflow": "워크플로우 로드",
"loading": "로딩 중",
"logs": "로그",
"newFolder": "새 폴더",
"next": "다음",
"no": "아니오",
"noResultsFound": "결과를 찾을 수 없습니다.",
"noTasksFound": "작업을 찾을 수 없습니다.",

View File

@@ -65,6 +65,7 @@
"g": {
"about": "О программе",
"add": "Добавить",
"back": "Назад",
"cancel": "Отмена",
"close": "Закрыть",
"color": "Цвет",
@@ -91,12 +92,14 @@
"icon": "Иконка",
"imageFailedToLoad": "Не удалось загрузить изображение",
"insert": "Вставить",
"install": "Установить",
"keybinding": "Привязка клавиш",
"loadAllFolders": "Загрузить все папки",
"loadWorkflow": "Загрузить рабочий процесс",
"loading": "Загрузка",
"logs": "Журналы",
"newFolder": "Новая папка",
"next": "Далее",
"no": "Нет",
"noResultsFound": "Результатов не найдено",
"noTasksFound": "Задачи не найдены",

View File

@@ -65,6 +65,7 @@
"g": {
"about": "关于",
"add": "添加",
"back": "返回",
"cancel": "取消",
"close": "关闭",
"color": "颜色",
@@ -91,12 +92,14 @@
"icon": "图标",
"imageFailedToLoad": "图像加载失败",
"insert": "插入",
"install": "安装",
"keybinding": "快捷键",
"loadAllFolders": "加载所有文件夹",
"loadWorkflow": "加载工作流",
"loading": "加载中",
"logs": "日志",
"newFolder": "新文件夹",
"next": "下一步",
"no": "否",
"noResultsFound": "未找到结果",
"noTasksFound": "未找到任务",

View File

@@ -22,7 +22,7 @@
<GpuPicker v-model:device="device" />
<div class="flex pt-6 justify-end">
<Button
label="Next"
:label="$t('g.next')"
icon="pi pi-arrow-right"
iconPos="right"
@click="activateCallback('1')"
@@ -37,13 +37,13 @@
/>
<div class="flex pt-6 justify-between">
<Button
label="Back"
:label="$t('g.back')"
severity="secondary"
icon="pi pi-arrow-left"
@click="activateCallback('0')"
/>
<Button
label="Next"
:label="$t('g.next')"
icon="pi pi-arrow-right"
iconPos="right"
@click="activateCallback('2')"
@@ -58,13 +58,13 @@
/>
<div class="flex pt-6 justify-between">
<Button
label="Back"
:label="$t('g.back')"
severity="secondary"
icon="pi pi-arrow-left"
@click="activateCallback('1')"
/>
<Button
label="Next"
:label="$t('g.next')"
icon="pi pi-arrow-right"
iconPos="right"
@click="activateCallback('3')"
@@ -78,13 +78,13 @@
/>
<div class="flex pt-6 justify-between">
<Button
label="Back"
:label="$t('g.back')"
severity="secondary"
icon="pi pi-arrow-left"
@click="activateCallback('2')"
/>
<Button
label="Install"
:label="$t('g.install')"
icon="pi pi-check"
iconPos="right"
:disabled="hasError"