Skip to content

Commit

Permalink
add legal note
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobsjo committed Sep 9, 2023
1 parent 15ba0bf commit 321d81f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
1 change: 1 addition & 0 deletions locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"minecraft.dataPack.vanilla.description": "Die Standarddaten für Minecraft",
"minecraft.dataPack.update_1_20.description": "Neue Spielelemente und Inhalte für Minecraft 1.20",

"footer.legel.note": "KEIN OFFIZIELLES MINECRAFT WERKZEUG. NICHT GENEHMIGT VON ODER VERBUNDEN MIT MOJANG ODER MICROSOFT.",
"footer.about": "Info",
"footer.view_source": "Quellcode",
"footer.report_issue": "Problem Melden",
Expand Down
1 change: 1 addition & 0 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"minecraft.dataPack.vanilla.description": "The default data for Minecraft",
"minecraft.dataPack.update_1_20.description": "New features and content for Minecraft 1.20",

"footer.legel.note": "NOT AN OFFICIAL MINECRAFT TOOL. NOT APPROVED BY OR ASSOCIATED WITH MOJANG OR MICROSOFT.",
"footer.about": "About",
"footer.view_source": "View Source",
"footer.report_issue": "Report Issue",
Expand Down
9 changes: 7 additions & 2 deletions src/components/Footer.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import LocaleChanger from './LocaleChanger.vue';
<LocaleChanger />
<div class="smallprint">
<p>Copyright © 2023 jacobsjo</p>
<p id="note">{{ $t('footer.legel.note') }}</p>
<a href="https://jacobsjo.eu/about.html" target="_blank">{{ $t('footer.about') }}</a>
<a href="https://github.com/jacobsjo/mc-datapack-map" target="_blank">{{ $t('footer.view_source') }}</a>
<a href="https://github.com/jacobsjo/mc-datapack-map/issues" target="_blank">{{ $t('footer.report_issue') }}</a>
Expand All @@ -28,14 +29,13 @@ import LocaleChanger from './LocaleChanger.vue';
display: flex;
flex-direction: row;
flex-wrap: wrap;
height: 2.9rem;
gap: 0.5rem;
row-gap: 0rem;
height: 6.5rem;
}
a, p{
color: rgb(179, 179, 179);
height: 0rem;
}
p {
Expand All @@ -44,6 +44,11 @@ import LocaleChanger from './LocaleChanger.vue';
margin: 0;
}
#note {
font-size: 8pt;
height: 2.8rem;
}
a {
text-decoration: underline;
}
Expand Down

0 comments on commit 321d81f

Please sign in to comment.