mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2026-01-03 03:27:23 +01:00
Merge branch 'refs/heads/mk/i18n'
# Conflicts: # frontend/pages/index.vue
This commit is contained in:
21
frontend/locales/en.json
Normal file
21
frontend/locales/en.json
Normal file
@@ -0,0 +1,21 @@
|
||||
{
|
||||
"tagline": "Track, Organize, and Manage your Things.",
|
||||
"version": "Version: { version }",
|
||||
"build": "Build: { build }",
|
||||
"disabled_registration": "Registration Disabled",
|
||||
"login": "Login",
|
||||
"register": "Register",
|
||||
"remember_me": "Remember Me",
|
||||
"password": "Password",
|
||||
"email": "Email",
|
||||
"set_email": "What's your email?",
|
||||
"set_password": "Set your password",
|
||||
"set_name": "What's your name?",
|
||||
"password_strength": "Password Strength",
|
||||
"joining_group": "You're Joining an Existing Group!",
|
||||
"dont_join_group": "Don't want to join a group?",
|
||||
"read_docs": "Read the Docs",
|
||||
"follow_dev": "Follow the Developer",
|
||||
"join_discord": "Join the Discord",
|
||||
"github": "GitHub Project"
|
||||
}
|
||||
@@ -8,6 +8,7 @@
|
||||
import MdiLogin from "~icons/mdi/login";
|
||||
import MdiArrowRight from "~icons/mdi/arrow-right";
|
||||
import MdiLock from "~icons/mdi/lock";
|
||||
import MdiMastodon from '~icons/mdi/mastodon';
|
||||
|
||||
useHead({
|
||||
title: "Homebox | Organize and Tag Your Stuff",
|
||||
@@ -152,16 +153,16 @@
|
||||
<p class="ml-1 text-lg text-base-content/50">{{ $t("tagline") }}</p>
|
||||
</div>
|
||||
<div class="flex mt-6 sm:mt-0 gap-4 ml-auto text-neutral-content">
|
||||
<a class="tooltip" data-tip="Project Github" href="https://github.com/sysadminsmedia/homebox" target="_blank">
|
||||
<a class="tooltip" :data-tip="$t('github')" href="https://github.com/sysadminsmedia/homebox" target="_blank">
|
||||
<MdiGithub class="h-8 w-8" />
|
||||
</a>
|
||||
<a href="https://noc.social/@sysadminsmedia" class="tooltip" data-tip="Follow The Developer" target="_blank">
|
||||
<MdiTwitter class="h-8 w-8" />
|
||||
<a href="https://noc.social/@sysadminsmedia" class="tooltip" :data-tip="$t('follow_dev')" target="_blank">
|
||||
<MdiMastodon class="h-8 w-8" />
|
||||
</a>
|
||||
<a href="https://discord.gg/aY4DCkpNA9" class="tooltip" data-tip="Join The Discord" target="_blank">
|
||||
<a href="https://discord.gg/aY4DCkpNA9" class="tooltip" :data-tip="$t('join_discord')" target="_blank">
|
||||
<MdiDiscord class="h-8 w-8" />
|
||||
</a>
|
||||
<a href="https://homebox.sysadminsmedia.com/en/" class="tooltip" data-tip="Read The Docs" target="_blank">
|
||||
<a href="https://homebox.sysadminsmedia.com/en/" class="tooltip" :data-tip="$t('read_docs')" target="_blank">
|
||||
<MdiFolder class="h-8 w-8" />
|
||||
</a>
|
||||
</div>
|
||||
@@ -253,7 +254,7 @@
|
||||
</div>
|
||||
<footer v-if="status" class="mt-auto text-center w-full bottom-0 pb-4">
|
||||
<p class="text-center text-sm">
|
||||
{{ $t("version") }}: {{ status.build.version }} ~ {{ $t("build") }}: {{ status.build.commit }}
|
||||
{{ $t("version", { version: status.build.version }) }} ~ {{ $t("build", { build: status.build.commit }) }}
|
||||
</p>
|
||||
</footer>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user