Skip to content

Commit f33d433

Browse files
Fix notice not being localized
1 parent 81abd1f commit f33d433

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "project-lodestone-website",
33
"private": true,
4-
"version": "1.0.5",
4+
"version": "1.0.6",
55
"type": "module",
66
"scripts": {
77
"dev": "vite",

src/App.svelte

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</Route>
4343
</Router>
4444

45-
<Footer logo={largeLogo} notice="Project Lodestone is NOT an official Minecraft product.">
45+
<Footer logo={largeLogo} notice={$t('footer.notice')}>
4646
<button class="topbarButton" title={$t('footer.buttons.openCredits.title')} on:click={setShowCredits}>{$t('footer.buttons.openCredits.text')}</button>
4747
<ButtonLink class="button topbarButton" href="https://github.com/team-lodestone/team-lodestone.github.io" title={$t('footer.buttons.openSource.title')}>{$t('footer.buttons.openSource.text')}</ButtonLink>
4848
<ButtonLink class="button topbarButton" href="https://team-lodestone.github.io/Documentation/Team" title={$t('footer.buttons.openTeam.title')}>{$t('footer.buttons.openTeam.text')}</ButtonLink>

src/Assets/L10N/en-us.json

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
}
4545
},
4646
"footer": {
47+
"notice": "Project Lodestone is NOT an official Minecraft product.",
4748
"buttons": {
4849
"openCredits": {
4950
"text": "Credits",

src/Assets/L10N/ru.json

+1
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@
4444
}
4545
},
4646
"footer": {
47+
"notice": "",
4748
"buttons": {
4849
"openCredits": {
4950
"text": "Авторы",

0 commit comments

Comments
 (0)