Updated localization. Fixed my own bug...

This commit is contained in:
DimitriDR
2023-01-07 20:50:07 +01:00
parent 6b376f1dad
commit d3ced73cf3
6 changed files with 13 additions and 27 deletions

View File

@@ -28,8 +28,8 @@
{{ $t('app-info.privacy-and-security-security-issue') }}
<a href="https://github.com/Lissy93/dashy/blob/master/.github/SECURITY.md">{{ $t('app-info.privacy-and-security-security-policy') }}</a>
<!-- License -->
<h3>{{ $t('app-info.licence') }}</h3>
{{ $t('app-info.licence-under') }} <a href="https://github.com/Lissy93/dashy/blob/master/LICENSE">MIT X11</a>.
<h3>{{ $t('app-info.license') }}</h3>
{{ $t('app-info.license-under') }} <a href="https://github.com/Lissy93/dashy/blob/master/LICENSE">MIT X11</a>.
Copyright <a href="https://aliciasykes.com">Alicia Sykes</a> © 2021.<br>
{{ $t('app-info.licence-third-party') }} <a href="https://github.com/Lissy93/dashy/blob/master/.github/LEGAL.md">{{ $t('app-info.licence-third-party-link') }}</a>.<br>
{{ $t('app-info.list-contributors') }} <a href="https://github.com/Lissy93/dashy/blob/master/docs/credits.md">{{ $t('app-info.list-contributors-link') }}</a>.

View File

@@ -9,7 +9,7 @@
{{ $t('cloud-sync.intro-l2') }}
<br>
{{ $t('cloud-sync.intro-l3') }}
<a href="https://github.com/Lissy93/dashy/blob/master/docs/backup-restore.md">docs</a>
<a href="https://github.com/Lissy93/dashy/blob/master/docs/backup-restore.md">{{ $t('cloud-sync.intro-docs') }}</a>.
</p>
</div>
<!-- Create or update a backup form -->

View File

@@ -2,7 +2,7 @@
<div class="css-editor-outer">
<!-- Add raw custom CSS -->
<div class="style-section css-wrapper">
<h3>Custom CSS</h3>
<h3>{{ $t('config.custom-css.title') }}</h3>
<textarea class="css-editor" v-model="customCss" />
<Button class="save-button" :click="save">{{ $t('config.css-save-btn') }}</Button>
<p class="quick-note">
@@ -12,7 +12,7 @@
</div>
<!-- Theme Selector -->
<div class="style-section base-theme-wrapper">
<h3>Base Theme</h3>
<h3>{{ $t('config.custom-css.base-theme') }}</h3>
<ThemeSelector :hidePallete="true" />
</div>
<!-- UI color configurator -->

View File

@@ -7,10 +7,10 @@
Using: {{ $store.state.currentConfigInfo.confPath }}
</span>
<span>
Developed by <a :href="authorUrl">{{authorName}}</a>.
Licensed under <a :href="licenseUrl">{{license}}</a>
{{ $t('footer.dev-by') }} <a :href="authorUrl">{{authorName}}</a>.
{{ $t('footer.licensed-under') }} <a :href="licenseUrl">{{license}}</a>
{{ showCopyright? '©': '' }} {{date}}.
Get the <a :href="repoUrl">Source Code</a>.
{{ $t('footer.get-the') }} <a :href="repoUrl">{{ $t('footer.source-code') }}</a>.
</span>
</footer>
</template>