remove redundant trans keys

This commit is contained in:
marshmallow 2024-05-04 08:59:08 +10:00
parent 56d6b0f645
commit febe17055a
3 changed files with 3 additions and 5 deletions

View file

@ -1,9 +1,7 @@
{ {
"root.title": "aux.computer",
"root.description": "An alternative to the Nix ecosystem", "root.description": "An alternative to the Nix ecosystem",
"header.community": "Community", "header.community": "Community",
"header.Github": "Github",
"goals.title": "Goals", "goals.title": "Goals",
"goals.independent.title": "Independent", "goals.independent.title": "Independent",

View file

@ -11,7 +11,7 @@ const translation = useTranslations(lang);
<div class="left"> <div class="left">
<a href="https://aux.computer" class="brand"> <a href="https://aux.computer" class="brand">
<img class="icon" src="/aux.svg" /> <img class="icon" src="/aux.svg" />
<span class="title">{translation("root.title")}</span> <span class="title">aux.computer</span>
</a> </a>
</div> </div>
<div class="right"> <div class="right">
@ -22,7 +22,7 @@ const translation = useTranslations(lang);
<li><a href="https://aux.computer/contribute">Contribute</a></li> <li><a href="https://aux.computer/contribute">Contribute</a></li>
--> -->
<li><a href="https://forum.aux.computer">{translation("header.community")}</a></li> <li><a href="https://forum.aux.computer">{translation("header.community")}</a></li>
<li><a href="https://github.com/auxolotl">{translation("header.github")}</a></li> <li><a href="https://github.com/auxolotl">Github</a></li>
</ul> </ul>
</nav> </nav>
</div> </div>

View file

@ -10,7 +10,7 @@ const translation = useTranslations(lang);
<div class="icon"> <div class="icon">
<img src="/aux.svg" alt="" /> <img src="/aux.svg" alt="" />
</div> </div>
<h1 class="title">{translation("root.title")}</h1> <h1 class="title">aux.computer</h1>
<div class="description">{translation("root.description")}</div> <div class="description">{translation("root.description")}</div>
</div> </div>
</div> </div>