mirror of
https://github.com/ProjectSegfault/website.git
synced 2025-05-31 14:12:04 +05:30
Finish i18n of Minecraft (Haven't translated to Norwegian yet.)
Signed-off-by: Alex J <odyssey346@disroot.org>
This commit is contained in:
@@ -1,17 +0,0 @@
|
||||
---
|
||||
title: Project Segfault MC
|
||||
---
|
||||
|
||||
# {title}
|
||||
|
||||
# [Click me to go back to the Minecraft site](/minecraft)
|
||||
|
||||
## Recommended mods list
|
||||
|
||||
These are picked by our community or are for server features like voice chatting.
|
||||
|
||||
If you play on Bedrock, try to find an alternative to these. Mods like Simple Voice Chat have no alternative on Bedrock, sorry.
|
||||
|
||||
- [Xaero's World Map](https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map) & [Xaero's Minimap](https://www.curseforge.com/minecraft/mc-mods/xaeros-minimap)
|
||||
- Any optimization mod (We recommend at least Sodium)
|
||||
- [Simple Voice Chat](https://www.curseforge.com/minecraft/mc-mods/simple-voice-chat)
|
||||
17
src/routes/minecraft/client-side-mods.svelte
Normal file
17
src/routes/minecraft/client-side-mods.svelte
Normal file
@@ -0,0 +1,17 @@
|
||||
<script>
|
||||
import { t } from '$lib/translations';
|
||||
</script>
|
||||
<h1>{$t('common.MINECRAFTTITLE')}</h1>
|
||||
|
||||
<h1><a href="/minecraft">{$t('common.RCS_CLICKBACK')}</a></h1>
|
||||
|
||||
<h2>{$t('common.RCSLIST')}</h2>
|
||||
|
||||
<p>{$t('common.RCSTHESEARE')}</p>
|
||||
|
||||
<p>{$t('common.RCSNOTEBED')}</p>
|
||||
<ul>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/xaeros-world-map">Xaero's World Map</a> & <a href="https://www.curseforge.com/minecraft/mc-mods/xaeros-minimap">Xaero's Minimap</a></li>
|
||||
<li>{$t('common.RCSANYMOD')}</li>
|
||||
<li><a href="https://www.curseforge.com/minecraft/mc-mods/simple-voice-chat">Simple Voice Chat</a></li>
|
||||
</ul>
|
||||
@@ -1,59 +0,0 @@
|
||||
---
|
||||
title: Project Segfault MC
|
||||
description: Yeah, we have a Minecraft server.
|
||||
---
|
||||
|
||||
# {title}
|
||||
|
||||
# {description}
|
||||
|
||||
We have an invite-only SMP server running on our network on version 1.18\* (1.18, 1.18.1, 1.18.2) which is also bridged to Bedrock using GeyserMC.
|
||||
|
||||
If you would like to join, please [join our Discord](https://discord.gg/26EG7fFtfS) and ask us there to be whitelisted.
|
||||
|
||||
## Rules
|
||||
|
||||
1. Do not modify buildings without permission.
|
||||
2. Do not bypass protections. (mining around a protected door, bypassing chest locks etc)
|
||||
3. Do not cheat
|
||||
4. Do not lag the shit out of the server.
|
||||
|
||||
## IP
|
||||
|
||||
**Java**: mc.projectsegfau.lt:25565
|
||||
|
||||
**Bedrock** mc.projectsegfau.lt:19132
|
||||
|
||||
_psst, you can join bedrock on your switch using the app we've linked below!_
|
||||
|
||||
_another psst, if you play on both Java and Bedrock, [link your accounts together on GeyserMC's website!](https://link.geysermc.org)_ Your accounts will be linked together meaning you will have the exact same experience.
|
||||
|
||||
## Links
|
||||
|
||||
[Dynmap](https://map.mc.projectsegfau.lt)
|
||||
|
||||
[MC Server Connector for iOS](https://apps.apple.com/us/app/mc-server-connector/id1548251304)
|
||||
|
||||
[MC Server Connector for Android](https://play.google.com/store/apps/details?id=com.smokiem.mcserverconnector&hl=no&gl=US)
|
||||
|
||||
## Recommended Client-Side Mods
|
||||
|
||||
[Click me for a list of recommended client-side mods](/minecraft/client-side-mods)
|
||||
|
||||
## Plugin list
|
||||
|
||||
This is a manually made list of our plugins, so it might not be up to date.
|
||||
|
||||
- BlockLocker
|
||||
- CoreProtect
|
||||
- [Dynmap](https://map.mc.projectsegfau.lt)
|
||||
- EssentialsX (EssentialsXDiscord, EssentialsXGeoIP)
|
||||
- Geyser & Floodgate
|
||||
- LuckPerms
|
||||
- mcMMO (Imagine paying for a build of an open source piece of software. [Click here to download our build.](https://dl.odyssey346.dev/Software/mcMMO_because_fuck_buying_open_source_software.jar))
|
||||
- TabTPS
|
||||
- Vault
|
||||
- ViaVersion (You may only connect from a base version and its subversions (1.18, 1.18.1, 1.18.2). You cannot connect from a major version older than the major version the server is running.)
|
||||
- PlugMan
|
||||
- CombatLogX
|
||||
- Simple Voice Mod
|
||||
62
src/routes/minecraft/index.svelte
Normal file
62
src/routes/minecraft/index.svelte
Normal file
@@ -0,0 +1,62 @@
|
||||
<script>
|
||||
import { t } from '$lib/translations';
|
||||
</script>
|
||||
|
||||
<h1>{$t('common.MINECRAFTTITLE')}</h1>
|
||||
|
||||
<h1>{$t('common.MINECRAFTDESCRIPTION')}</h1>
|
||||
|
||||
<p>{$t('common.MINECRAFTWEHAVE')}</p>
|
||||
|
||||
<p>{$t('common.MINECRAFTJOIN')}</p> <a href="https://discord.gg/26EG7fFtfS">{$t('common.MINECRAFTDISCORDINVITE')}</a>
|
||||
|
||||
<h2>{$t('common.MINECRAFTRULES')}</h2>
|
||||
|
||||
<p>{$t('common.MINECRAFTRULE1')}</p>
|
||||
<p>{$t('common.MINECRAFTRULE2')}</p>
|
||||
<p>{$t('common.MINECRAFTRULE3')}</p>
|
||||
<p>{$t('common.MINECRAFTRULE4')}</p>
|
||||
|
||||
<h2>{$t('common.MINECRAFTIP')}</h2>
|
||||
|
||||
<p><b>Java</b>: mc.projectsegfau.lt:25565</p>
|
||||
|
||||
<p><b>Bedrock</b>: mc.projectsegfau.lt:19132</p>
|
||||
|
||||
<i>{$t('common.MINECRAFTPSST1')}</i>
|
||||
|
||||
<br>
|
||||
|
||||
<i>{$t('common.MINECRAFTPSST2')}</i>
|
||||
|
||||
<h2>{$t('common.MINECRAFTLINKS')}</h2>
|
||||
|
||||
<a href="https://map.mc.projectsegfau.lt">Dynmap</a>
|
||||
|
||||
<a href="https://apps.apple.com/us/app/mc-server-connector/id1548251304">{$t('common.MINECRAFTMCIOS')}</a>
|
||||
|
||||
<a href="https://play.google.com/store/apps/details?id=com.smokiem.mcserverconnector&hl=no&gl=US">{$t('common.MINECRAFTMCANDROID')}</a>
|
||||
|
||||
<h2>{$t('common.MINECRAFTRECOMMENDEDCLIENTSIDEMODS')}</h2>
|
||||
|
||||
<a href="/minecraft/client-side-mods">{$t('common.MINECRAFTCLIENTSIDEMODSHREF')}</a>
|
||||
|
||||
<h2>{$t('common.MINECRAFTPLUGINLISTH2')}</h2>
|
||||
|
||||
<p>{$t('common.MINECRAFTMANUALLYMADE')}</p>
|
||||
|
||||
<ul>
|
||||
<li>BlockLocker</li>
|
||||
<li>CoreProtect</li>
|
||||
<li><a href="https://map.mc.projectsegfau.lt">Dynmap</a></li>
|
||||
<li>EssentialsX (EssentialsXDiscord, EssentialsXGeoIP)</li>
|
||||
<li>Geyser & Floodgate</li>
|
||||
<li>LuckPerms</li>
|
||||
<li>mcMMO <a href="https://dl.odyssey346.dev/Software/mcMMO_because_fuck_buying_open_source_software.jar">{$t('common.MINECRAFTOURBUILDOFMCMMO')}</a></li>
|
||||
<li>TabTPS</li>
|
||||
<li>Vault</li>
|
||||
<li>ViaVersion ({$t('common.MINECRAFTVIAVERSION')})</li>
|
||||
<li>PlugMan</li>
|
||||
<li>CombatLogX</li>
|
||||
<li>Simple Voice Chat</li>
|
||||
</ul>
|
||||
Reference in New Issue
Block a user