feat(sj_1.0.0): locale "Snail Job"

This commit is contained in:
dhb52 2024-04-17 23:47:17 +08:00
parent d13f42b2eb
commit e2c7ce6315
7 changed files with 13 additions and 11 deletions

2
.env
View File

@ -1,6 +1,6 @@
VITE_BASE_URL=/ VITE_BASE_URL=/
VITE_APP_TITLE=Easy Retry VITE_APP_TITLE=Snail Job
VITE_APP_DESC=A flexible, reliable, and fast platform for distributed task retry and distributed task scheduling. VITE_APP_DESC=A flexible, reliable, and fast platform for distributed task retry and distributed task scheduling.

2
.gitignore vendored
View File

@ -33,3 +33,5 @@ package-lock.json
yarn.lock yarn.lock
.VSCodeCounter .VSCodeCounter
src/typings/elegant-router.d.ts

View File

@ -1,20 +1,20 @@
{ {
"name": "easy-retry", "name": "snail-job",
"type": "module", "type": "module",
"version": "1.0.0", "version": "1.0.0",
"packageManager": "pnpm@8.15.5", "packageManager": "pnpm@8.15.5",
"description": "A flexible, reliable, and fast platform for distributed task retry and distributed task scheduling.", "description": "A flexible, reliable, and fast platform for distributed task retry and distributed task scheduling.",
"license": "MIT", "license": "MIT",
"homepage": "https://gitee.com/aizuda/easy-retry", "homepage": "https://gitee.com/aizuda/snail-job",
"repository": { "repository": {
"url": "https://gitee.com/aizuda/easy-retry.git" "url": "https://gitee.com/aizuda/snail-job.git"
}, },
"bugs": { "bugs": {
"url": "https://gitee.com/aizuda/easy-retry/issues" "url": "https://gitee.com/aizuda/snail-job/issues"
}, },
"keywords": [ "keywords": [
"Job", "Job",
"Easy Retry", "Snail Job",
"Vue3 admin ", "Vue3 admin ",
"vue-admin-template", "vue-admin-template",
"Vite5", "Vite5",

View File

@ -13,7 +13,7 @@ const version = ref<string>(`v${localStg.get('version') || VITE_APP_VERSION}`);
<template> <template>
<DarkModeContainer class="h-full flex-center"> <DarkModeContainer class="h-full flex-center">
<a href="https://gitee.com/aizuda/easy-retry/blob/master/LICENSE" target="_blank" rel="noopener noreferrer"> <a href="https://gitee.com/aizuda/easy-retry/blob/master/LICENSE" target="_blank" rel="noopener noreferrer">
Copyright © 2024 Easy Retry {{ version }} Copyright © 2024 Snail Job {{ version }}
</a> </a>
</DarkModeContainer> </DarkModeContainer>
</template> </template>

View File

@ -1,6 +1,6 @@
const local: App.I18n.Schema = { const local: App.I18n.Schema = {
system: { system: {
title: 'Easy Retry', title: 'Snail Job',
desc: 'A flexible, reliable, and fast platform for distributed task retry and distributed task scheduling.' desc: 'A flexible, reliable, and fast platform for distributed task retry and distributed task scheduling.'
}, },
common: { common: {

View File

@ -1,6 +1,6 @@
const local: App.I18n.Schema = { const local: App.I18n.Schema = {
system: { system: {
title: 'Easy Retry', title: 'Snail Job',
desc: '灵活,可靠和快速的分布式任务重试和分布式任务调度平台' desc: '灵活,可靠和快速的分布式任务重试和分布式任务调度平台'
}, },
common: { common: {

View File

@ -114,13 +114,13 @@ const href = (url: string) => {
class="color-#c71d23" class="color-#c71d23"
tooltip-content="Gitee" tooltip-content="Gitee"
icon="simple-icons:gitee" icon="simple-icons:gitee"
@click="href('https://gitee.com/aizuda/easy-retry')" @click="href('https://gitee.com/aizuda/snail-job')"
/> />
<ButtonIcon <ButtonIcon
tooltip-content="Github" tooltip-content="Github"
class="color-#010409 dark:color-#e6edf3" class="color-#010409 dark:color-#e6edf3"
icon="simple-icons:github" icon="simple-icons:github"
@click="href('https://github.com/aizuda/easy-retry')" @click="href('https://github.com/aizuda/snail-job')"
/> />
</div> </div>
<GlobalFooter /> <GlobalFooter />