Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-11-19 14:30:17 +01:00
Add translation badge and remove manual remapping of language codes (#1060)
Dieser Commit ist enthalten in:
Ursprung
118747c66b
Commit
600c54d89d
@ -6,6 +6,7 @@
|
|||||||
[![Build Status](https://ci.nukkitx.com/job/Geyser/job/master/badge/icon)](https://ci.nukkitx.com/job/Geyser/job/master/)
|
[![Build Status](https://ci.nukkitx.com/job/Geyser/job/master/badge/icon)](https://ci.nukkitx.com/job/Geyser/job/master/)
|
||||||
[![Discord](https://img.shields.io/discord/613163671870242838.svg?color=%237289da&label=discord)](http://discord.geysermc.org/)
|
[![Discord](https://img.shields.io/discord/613163671870242838.svg?color=%237289da&label=discord)](http://discord.geysermc.org/)
|
||||||
[![HitCount](http://hits.dwyl.io/Geyser/GeyserMC.svg)](http://hits.dwyl.io/Geyser/GeyserMC)
|
[![HitCount](http://hits.dwyl.io/Geyser/GeyserMC.svg)](http://hits.dwyl.io/Geyser/GeyserMC)
|
||||||
|
[![Crowdin](https://badges.crowdin.net/geyser/localized.svg)](https://translate.geysermc.org/)
|
||||||
|
|
||||||
Geyser is a bridge between Minecraft: Bedrock Edition and Minecraft: Java Edition, closing the gap from those wanting to play true cross-platform.
|
Geyser is a bridge between Minecraft: Bedrock Edition and Minecraft: Java Edition, closing the gap from those wanting to play true cross-platform.
|
||||||
|
|
||||||
|
@ -135,17 +135,7 @@ public class LanguageUtils {
|
|||||||
private static String formatLocale(String locale) {
|
private static String formatLocale(String locale) {
|
||||||
try {
|
try {
|
||||||
String[] parts = locale.toLowerCase().split("_");
|
String[] parts = locale.toLowerCase().split("_");
|
||||||
String newLocale = parts[0] + "_" + parts[1].toUpperCase();
|
return parts[0] + "_" + parts[1].toUpperCase();
|
||||||
switch (newLocale) { // Fallback to the closest language if we don't support it but Bedrock does.
|
|
||||||
case "es_MX":
|
|
||||||
return "es_ES";
|
|
||||||
case "pt_BR":
|
|
||||||
return "pt_PT";
|
|
||||||
case "fr_CA":
|
|
||||||
return "fr_FR";
|
|
||||||
default:
|
|
||||||
return newLocale;
|
|
||||||
}
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
return locale;
|
return locale;
|
||||||
}
|
}
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit cd57d6029186293b3ca282243a90252db434714b
|
Subproject commit 65e36478b894af9cec74bc6df6552cb160a0c47d
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren