commit af8be8643cd3a320c090c6b3c609ee21a201cc60 Author: JFronny <33260128+JFronny@users.noreply.github.com> Date: Fri Jul 10 15:51:27 2020 +0200 it work? diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b7b48e7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,22 @@ +#Gradle +.gradle/ +build/ +out/ +classes/ + +#IDEA +.idea/ +*.iml +*.ipr +*.iws + +#vscode +.settings/ +.vscode/ +bin/ +.classpath +.project + +#fabric +run/ +remappedSrc/ diff --git a/build.gradle b/build.gradle new file mode 100644 index 0000000..fa34708 --- /dev/null +++ b/build.gradle @@ -0,0 +1,84 @@ +plugins { + id 'fabric-loom' version '0.4-SNAPSHOT' + id 'maven-publish' +} + +repositories { + maven { + url "https://jitpack.io" + } +} + +sourceCompatibility = JavaVersion.VERSION_1_8 +targetCompatibility = JavaVersion.VERSION_1_8 + +archivesBaseName = project.archives_base_name +version = project.mod_version +group = project.maven_group + +dependencies { + //to change the versions see the gradle.properties file + minecraft "com.mojang:minecraft:${project.minecraft_version}" + mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2" + modImplementation "net.fabricmc:fabric-loader:${project.loader_version}" + + // Fabric API. This is technically optional, but you probably want it anyway. + modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}" + + modCompile "com.github.vbauer:yandex-translate-api:1.4.2" + + modCompile("io.github.prospector:modmenu:1.12.2+build.17") +} + +processResources { + inputs.property "version", project.version + + from(sourceSets.main.resources.srcDirs) { + include "fabric.mod.json" + expand "version": project.version + } + + from(sourceSets.main.resources.srcDirs) { + exclude "fabric.mod.json" + } +} + +// ensure that the encoding is set to UTF-8, no matter what the system default is +// this fixes some edge cases with special characters not displaying correctly +// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html +tasks.withType(JavaCompile) { + options.encoding = "UTF-8" +} + +// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task +// if it is present. +// If you remove this task, sources will not be generated. +task sourcesJar(type: Jar, dependsOn: classes) { + classifier = "sources" + from sourceSets.main.allSource +} + +jar { + from "LICENSE" +} + +// configure the maven publication +publishing { + publications { + mavenJava(MavenPublication) { + // add all the jars that should be included when publishing to maven + artifact(remapJar) { + builtBy remapJar + } + artifact(sourcesJar) { + builtBy remapSourcesJar + } + } + } + + // select the repositories you want to publish to + repositories { + // uncomment to publish to the local maven + // mavenLocal() + } +} diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 0000000..48b9df8 --- /dev/null +++ b/gradle.properties @@ -0,0 +1,17 @@ +# Done to increase the memory available to gradle. +org.gradle.jvmargs=-Xmx1G + +# Fabric Properties + # check these on https://fabricmc.net/use + minecraft_version=1.16.1 + yarn_mappings=1.16.1+build.1 + loader_version=0.8.8+build.202 + +# Mod Properties + mod_version = 1.0.0 + maven_group = io.gitlab.jfronny + archives_base_name = translater + +# Dependencies + # currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api + fabric_version=0.13.1+build.370-1.16 diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar new file mode 100644 index 0000000..490fda8 Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..622ab64 --- /dev/null +++ b/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,5 @@ +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-bin.zip +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists diff --git a/gradlew b/gradlew new file mode 100644 index 0000000..2fe81a7 --- /dev/null +++ b/gradlew @@ -0,0 +1,183 @@ +#!/usr/bin/env sh + +# +# Copyright 2015 the original author or authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# https://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +############################################################################## +## +## Gradle start up script for UN*X +## +############################################################################## + +# Attempt to set APP_HOME +# Resolve links: $0 may be a link +PRG="$0" +# Need this for relative symlinks. +while [ -h "$PRG" ] ; do + ls=`ls -ld "$PRG"` + link=`expr "$ls" : '.*-> \(.*\)$'` + if expr "$link" : '/.*' > /dev/null; then + PRG="$link" + else + PRG=`dirname "$PRG"`"/$link" + fi +done +SAVED="`pwd`" +cd "`dirname \"$PRG\"`/" >/dev/null +APP_HOME="`pwd -P`" +cd "$SAVED" >/dev/null + +APP_NAME="Gradle" +APP_BASE_NAME=`basename "$0"` + +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Use the maximum available, or set MAX_FD != -1 to use that value. +MAX_FD="maximum" + +warn () { + echo "$*" +} + +die () { + echo + echo "$*" + echo + exit 1 +} + +# OS specific support (must be 'true' or 'false'). +cygwin=false +msys=false +darwin=false +nonstop=false +case "`uname`" in + CYGWIN* ) + cygwin=true + ;; + Darwin* ) + darwin=true + ;; + MINGW* ) + msys=true + ;; + NONSTOP* ) + nonstop=true + ;; +esac + +CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar + +# Determine the Java command to use to start the JVM. +if [ -n "$JAVA_HOME" ] ; then + if [ -x "$JAVA_HOME/jre/sh/java" ] ; then + # IBM's JDK on AIX uses strange locations for the executables + JAVACMD="$JAVA_HOME/jre/sh/java" + else + JAVACMD="$JAVA_HOME/bin/java" + fi + if [ ! -x "$JAVACMD" ] ; then + die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." + fi +else + JAVACMD="java" + which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. + +Please set the JAVA_HOME variable in your environment to match the +location of your Java installation." +fi + +# Increase the maximum file descriptors if we can. +if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then + MAX_FD_LIMIT=`ulimit -H -n` + if [ $? -eq 0 ] ; then + if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then + MAX_FD="$MAX_FD_LIMIT" + fi + ulimit -n $MAX_FD + if [ $? -ne 0 ] ; then + warn "Could not set maximum file descriptor limit: $MAX_FD" + fi + else + warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" + fi +fi + +# For Darwin, add options to specify how the application appears in the dock +if $darwin; then + GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" +fi + +# For Cygwin or MSYS, switch paths to Windows format before running java +if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then + APP_HOME=`cygpath --path --mixed "$APP_HOME"` + CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` + JAVACMD=`cygpath --unix "$JAVACMD"` + + # We build the pattern for arguments to be converted via cygpath + ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` + SEP="" + for dir in $ROOTDIRSRAW ; do + ROOTDIRS="$ROOTDIRS$SEP$dir" + SEP="|" + done + OURCYGPATTERN="(^($ROOTDIRS))" + # Add a user-defined pattern to the cygpath arguments + if [ "$GRADLE_CYGPATTERN" != "" ] ; then + OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" + fi + # Now convert the arguments - kludge to limit ourselves to /bin/sh + i=0 + for arg in "$@" ; do + CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` + CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option + + if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition + eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` + else + eval `echo args$i`="\"$arg\"" + fi + i=`expr $i + 1` + done + case $i in + 0) set -- ;; + 1) set -- "$args0" ;; + 2) set -- "$args0" "$args1" ;; + 3) set -- "$args0" "$args1" "$args2" ;; + 4) set -- "$args0" "$args1" "$args2" "$args3" ;; + 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; + 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; + 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; + 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; + 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; + esac +fi + +# Escape application args +save () { + for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done + echo " " +} +APP_ARGS=`save "$@"` + +# Collect all arguments for the java command, following the shell quoting and substitution rules +eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" + +exec "$JAVACMD" "$@" diff --git a/gradlew.bat b/gradlew.bat new file mode 100644 index 0000000..62bd9b9 --- /dev/null +++ b/gradlew.bat @@ -0,0 +1,103 @@ +@rem +@rem Copyright 2015 the original author or authors. +@rem +@rem Licensed under the Apache License, Version 2.0 (the "License"); +@rem you may not use this file except in compliance with the License. +@rem You may obtain a copy of the License at +@rem +@rem https://www.apache.org/licenses/LICENSE-2.0 +@rem +@rem Unless required by applicable law or agreed to in writing, software +@rem distributed under the License is distributed on an "AS IS" BASIS, +@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +@rem See the License for the specific language governing permissions and +@rem limitations under the License. +@rem + +@if "%DEBUG%" == "" @echo off +@rem ########################################################################## +@rem +@rem Gradle startup script for Windows +@rem +@rem ########################################################################## + +@rem Set local scope for the variables with windows NT shell +if "%OS%"=="Windows_NT" setlocal + +set DIRNAME=%~dp0 +if "%DIRNAME%" == "" set DIRNAME=. +set APP_BASE_NAME=%~n0 +set APP_HOME=%DIRNAME% + +@rem Resolve any "." and ".." in APP_HOME to make it shorter. +for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi + +@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" + +@rem Find java.exe +if defined JAVA_HOME goto findJavaFromJavaHome + +set JAVA_EXE=java.exe +%JAVA_EXE% -version >NUL 2>&1 +if "%ERRORLEVEL%" == "0" goto init + +echo. +echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:findJavaFromJavaHome +set JAVA_HOME=%JAVA_HOME:"=% +set JAVA_EXE=%JAVA_HOME%/bin/java.exe + +if exist "%JAVA_EXE%" goto init + +echo. +echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% +echo. +echo Please set the JAVA_HOME variable in your environment to match the +echo location of your Java installation. + +goto fail + +:init +@rem Get command-line arguments, handling Windows variants + +if not "%OS%" == "Windows_NT" goto win9xME_args + +:win9xME_args +@rem Slurp the command line arguments. +set CMD_LINE_ARGS= +set _SKIP=2 + +:win9xME_args_slurp +if "x%~1" == "x" goto execute + +set CMD_LINE_ARGS=%* + +:execute +@rem Setup the command line + +set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar + +@rem Execute Gradle +"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %CMD_LINE_ARGS% + +:end +@rem End local scope for the variables with windows NT shell +if "%ERRORLEVEL%"=="0" goto mainEnd + +:fail +rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of +rem the _cmd.exe /c_ return code! +if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 +exit /b 1 + +:mainEnd +if "%OS%"=="Windows_NT" endlocal + +:omega diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000..5b60df3 --- /dev/null +++ b/settings.gradle @@ -0,0 +1,10 @@ +pluginManagement { + repositories { + jcenter() + maven { + name = 'Fabric' + url = 'https://maven.fabricmc.net/' + } + gradlePluginPortal() + } +} diff --git a/src/main/java/io/gitlab/jfronny/translater/CachingTransformer.java b/src/main/java/io/gitlab/jfronny/translater/CachingTransformer.java new file mode 100644 index 0000000..37c0825 --- /dev/null +++ b/src/main/java/io/gitlab/jfronny/translater/CachingTransformer.java @@ -0,0 +1,43 @@ +package io.gitlab.jfronny.translater; + +import net.fabricmc.loader.api.FabricLoader; + +import java.io.*; +import java.util.HashMap; +import java.util.Map; +import java.util.Properties; + +public abstract class CachingTransformer implements StringTransformer { + Properties cache = null; + private static final File cacheFile = new File(FabricLoader.getInstance().getConfigDirectory(), "Translater.cache"); + @Override + public String transform(String str) { + if (cache == null) { + cache = new Properties(); + if (cacheFile.exists()) { + try { + FileInputStream inS = new FileInputStream(cacheFile); + cache.load(inS); + inS.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } else { + + } + } + if (!cache.containsKey(str)) { + cache.put(str, getTransformed(str)); + try { + FileOutputStream outS = new FileOutputStream(cacheFile); + cache.store(outS, "---Lang---"); + outS.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + return (String) cache.get(str); + } + + public abstract String getTransformed(String str); +} diff --git a/src/main/java/io/gitlab/jfronny/translater/ModInit.java b/src/main/java/io/gitlab/jfronny/translater/ModInit.java new file mode 100644 index 0000000..cf0ef02 --- /dev/null +++ b/src/main/java/io/gitlab/jfronny/translater/ModInit.java @@ -0,0 +1,30 @@ +package io.gitlab.jfronny.translater; + +import net.fabricmc.api.ModInitializer; +import org.apache.logging.log4j.Level; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; + +public class ModInit implements ModInitializer { + public static final String MOD_NAME = "translater"; + public static final String MOD_ID = "translater"; + + private static final Logger logger = LogManager.getFormatterLogger(MOD_ID); + @Override + public void onInitialize() { + Log("Loaded translater"); + } + + public static void Log(String msg) { + logger.log(Level.INFO, "[" + MOD_NAME + "]" + msg); + } + + public static void Warn(String msg) { + logger.log(Level.WARN, "[" + MOD_NAME + "]" + msg); + } + + public static void LogDebug(String msg) { + logger.log(Level.DEBUG, "[" + MOD_NAME + "]" + msg); + } + +} diff --git a/src/main/java/io/gitlab/jfronny/translater/StringTransformer.java b/src/main/java/io/gitlab/jfronny/translater/StringTransformer.java new file mode 100644 index 0000000..619a8ec --- /dev/null +++ b/src/main/java/io/gitlab/jfronny/translater/StringTransformer.java @@ -0,0 +1,5 @@ +package io.gitlab.jfronny.translater; + +public interface StringTransformer { + String transform(String str); +} diff --git a/src/main/java/io/gitlab/jfronny/translater/TransformingMap.java b/src/main/java/io/gitlab/jfronny/translater/TransformingMap.java new file mode 100644 index 0000000..f54722c --- /dev/null +++ b/src/main/java/io/gitlab/jfronny/translater/TransformingMap.java @@ -0,0 +1,82 @@ +package io.gitlab.jfronny.translater; + +import java.util.Collection; +import java.util.Map; +import java.util.Set; + +public class TransformingMap implements Map { + private final Map backer; + private final StringTransformer transformer; + + public TransformingMap(Map m, StringTransformer t) { + backer = m; + transformer = t; + for (String value : m.values()) { + transformer.transform(value); + } + } + + @Override + public int size() { + return backer.size(); + } + + @Override + public boolean isEmpty() { + return backer.isEmpty(); + } + + @Override + public boolean containsKey(Object o) { + return backer.containsKey(o); + } + + @Override + public boolean containsValue(Object o) { + return backer.containsValue(o); + } + + @Override + public String get(Object o) { + return transformer.transform(backer.get(o)); + } + + @Override + public String put(String s, String s2) { + transformer.transform(s2); + return backer.put(s, s2); + } + + @Override + public String remove(Object o) { + return backer.remove(o); + } + + @Override + public void putAll(Map map) { + for (String value : map.values()) { + transformer.transform(value); + } + backer.putAll(map); + } + + @Override + public void clear() { + backer.clear(); + } + + @Override + public Set keySet() { + return backer.keySet(); + } + + @Override + public Collection values() { + return backer.values(); + } + + @Override + public Set> entrySet() { + return backer.entrySet(); + } +} diff --git a/src/main/java/io/gitlab/jfronny/translater/YnTransformer.java b/src/main/java/io/gitlab/jfronny/translater/YnTransformer.java new file mode 100644 index 0000000..7f82b40 --- /dev/null +++ b/src/main/java/io/gitlab/jfronny/translater/YnTransformer.java @@ -0,0 +1,36 @@ +package io.gitlab.jfronny.translater; + +import com.github.vbauer.yta.model.Direction; +import com.github.vbauer.yta.model.Language; +import com.github.vbauer.yta.model.Languages; +import com.github.vbauer.yta.service.YTranslateApiImpl; + +import java.util.*; + +public class YnTransformer extends CachingTransformer { + private static final int rounds = 10; + private static final boolean breakFully = true; + private static final String key = "trnsl.1.1.20200118T180605Z.654f2ec649458c36.107c6ad38dc02937f25e660aa1f8f4097d6561a8"; + + private static final YTranslateApiImpl api = new YTranslateApiImpl(key); + private static final Set languages = api.languageApi().all().languages(); + private static final Random rnd = new Random(); + + @Override + public String getTransformed(String str) { + ModInit.Log("Transforming: " + str); + Language startLang = api.detectionApi().detect(str).get(); + String currentState = str; + Language currentLang = startLang; + for (int i = 0; i < rounds; i++) { + Language newLang = selectRandom(); + currentState = api.translationApi().translate(currentState, Direction.of(breakFully ? selectRandom() : currentLang, newLang)).text(); + currentLang = newLang; + } + return api.translationApi().translate(currentState, startLang).text(); + } + + private Language selectRandom() { + return languages.stream().skip(rnd.nextInt(languages.size())).findFirst().get(); + } +} diff --git a/src/main/java/io/gitlab/jfronny/translater/mixin/MixinLanguage.java b/src/main/java/io/gitlab/jfronny/translater/mixin/MixinLanguage.java new file mode 100644 index 0000000..580eca7 --- /dev/null +++ b/src/main/java/io/gitlab/jfronny/translater/mixin/MixinLanguage.java @@ -0,0 +1,48 @@ +package io.gitlab.jfronny.translater.mixin; + +import io.gitlab.jfronny.translater.ModInit; +import io.gitlab.jfronny.translater.TransformingMap; +import io.gitlab.jfronny.translater.YnTransformer; +import net.fabricmc.loader.api.FabricLoader; +import net.fabricmc.loader.api.MappingResolver; +import net.minecraft.client.resource.language.TranslationStorage; +import net.minecraft.util.Language; +import org.apache.commons.lang3.reflect.FieldUtils; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.spongepowered.asm.mixin.Mixin; +import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Inject; +import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; + +import java.lang.reflect.Field; +import java.util.Map; + +@Mixin(Language.class) +public class MixinLanguage { + private static final MappingResolver mr = FabricLoader.getInstance().getMappingResolver(); + + private static final Field FIELD = FieldUtils.getField(TranslationStorage.class, + mr.mapFieldName("intermediary", + "net.minecraft.class_1078", + "field_5330", + "Ljava/util/Map;"), + true); + + private static final YnTransformer transformer = new YnTransformer(); + + @Inject(at = @At("HEAD"), method = "setInstance") + private static void languageSetInstance(Language language, CallbackInfo ci) { + if (FIELD == null) { + ModInit.Warn("Could not set language map, field not found"); + return; + } + if (language instanceof TranslationStorage) { + try { + FIELD.set(language, new TransformingMap((Map) FIELD.get(language), transformer)); + } catch (IllegalAccessException | ClassCastException e) { + e.printStackTrace(); + } + } + } +} diff --git a/src/main/resources/assets/translater/icon.png b/src/main/resources/assets/translater/icon.png new file mode 100644 index 0000000..047b91f Binary files /dev/null and b/src/main/resources/assets/translater/icon.png differ diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json new file mode 100644 index 0000000..211a3e5 --- /dev/null +++ b/src/main/resources/fabric.mod.json @@ -0,0 +1,33 @@ +{ + "schemaVersion": 1, + "id": "translater", + "version": "${version}", + + "name": "Translater", + "description": "Translates minecraft back and forth", + "authors": [ + "JFronny" + ], + + "contributors": [], + "contact": {}, + + "license": "MIT", + "icon": "assets/translater/icon.png", + + "environment": "*", + "entrypoints": { + "main": [ + "io.gitlab.jfronny.translater.ModInit" + ] + }, + "mixins": [ + "translater.mixins.json" + ], + + "depends": { + "fabricloader": ">=0.7.4", + "fabric": "*", + "minecraft": "1.16.x" + } +} diff --git a/src/main/resources/namecache.ini b/src/main/resources/namecache.ini new file mode 100644 index 0000000..c659955 --- /dev/null +++ b/src/main/resources/namecache.ini @@ -0,0 +1,1206 @@ +#---Lang--- +#Fri Jul 10 15:22:55 CEST 2020 +Chiseled\ Nether\ Bricks=Als\u00F3 Mejs Murst Bllokim +Acacia\ Log=Acacia Log +Brown\ Stained\ Glass\ Pane=Brown Vitralls Vrede +Glowstone=Glowstone +Width=Width +Jungle\ Boat=Ship +Reduced\ Debug\ Info=Reduced Debug Info +Fire\ Coral\ Block=Four Coral Blocks +When\ on\ body\:=When the organ. +Lapis\ Lazuli=Lapis lazuli +Yellow\ Shulker\ Box=Kuta Shulk (E)-Zi. +Carrot=Instagram +Dead\ Horn\ Coral\ Block=De D\u00F6da SASO-Coraly-Plokk +Spruce\ Fence=A Big Fence +Force\ Unicode\ Font=WB Ryhm\u00E4 \u0394 Unicode Shift +Mossy\ Stone\ Brick\ Stairs=Instagram Mossy Rotten Stylite +Polished\ Blackstone\ Bricks=Poliruoti Instagram Plytos +Not\ Available=UOM Exists +Golden\ Shovel=Or Was Satirali Golden Ha +Dolphin\ Spawn\ Egg=Delfn Offspring Are +Quartz\ Bricks=The Kvarts Cihly +Purple\ Terracotta=Pair Of Terakota +Blaze\ Rod=For R\u00FAd +Bell=Harang +Strider\ Spawn\ Egg=Manual Of The Third In Order Of Baan \u041D\u0430 Tashka M +Potion\ of\ Weakness=Potion w Weakness +Honey\ Bottle=Miera Material, But It Is A +End\ Stone\ Bricks=Koniec Mat Murstein +Weeping\ Vines=Weeping Vines +Stone\ Button=In general,the +Spruce\ Pressure\ Plate=Agghindare P? Piastra Di Ja Air Ci\u015Bnienie, +Black\ Terracotta=Il Nero, Tiles +Yellow\ Glazed\ Terracotta=\u0534\u0565\u0572\u056B\u0576 Glaze \u053B\u0580 Terakota +Prismarine\ Bricks=Prismarit U Plytos +Mushroom\ Stew=\u03A4\u03BF CON-Stewart +Crafting\ Table=Hide +Selected\:\ %s=Carie was\: %s +Oak\ Sign=Snemajte Sign +Mushroom\ Stem=Mushrooms Stonky +Dead\ Bubble\ Coral\ Fan=He will Die \u039C\u03C0\u03BF\u03BC\u03C0\u03B9 Koraal PREKIDA\u010C IN +Podzol=Podzolos +Block\ of\ Netherite=All of the provisions of Netherite kralj Artur normalne +Jungle\ Slab=Ungla Vend +Options...=Options... +Impaling=The Impala +Skeleton\ Horse\ Spawn\ Egg=\u053F\u0574\u0561\u056D\u0584 \u0541\u056B\u0578\u0582 And That Reste ??? +Lime\ Glazed\ Terracotta=Yax\u015F\u0131 Sur-Partout-Usca Bar Vernissee +Leather\ Pants=The Skin Of The Pants +Green\ Terracotta=Large Terracotta +Blue\ Concrete\ Powder=Blue, Ryuo\: Alkaen Pluhur +Leather\ Boots=I Was Born In Saapad +Lingering\ Potion\ of\ Slow\ Falling=A Lingering Potion Of Slow Fall +Projectile\ Protection=Projectielen Protection +Golden\ Horse\ Armor=Golden Horse, In Armor, +Furnace=Oven +Load\ Hotbar\ Activator=C\u00E0rrega F\u00E4ltet Actuator +Netherite\ Scrap=Z\u0142omu Netherit-F +Brown\ Shulker\ Box=Shulker Brown Doboz +Tube\ Coral=Tube Koralu +Red\ Stained\ Glass\ Pane=CEP T\u00EB Stained glass windows, Panels, Rj +Polar\ Bear\ Spawn\ Egg=Bear Spawn Egg Whites +Birch\ Trapdoor=Thuper Luik +Lime\ Dye=Lime Tarpaulins +Wet\ Sponge=Wet \u0421\u0443\u043D\u0453\u0435\u0440 +When\ Applied\:=In The Event That It Can Connect To A Lot Of\: +Flint\ and\ Steel=Flint?, +Dead\ Fire\ Coral\ Block=Dead \u00D6n\u00E1ll\u00F3 azn Block +Packed\ Ice=L De La Raad Sacharosa +Oak\ Trapdoor=Oak Trapdoor +Weakness=Weakness +Green\ Stained\ Glass=\u0413\u043E\u043B\u044F\u043C Dual Magnification Stabilized Primary Sight \u042D\u0442\u043E The Tank +Villager\ Spawn\ Egg=Resident \u053A\u0561\u057C\u0561\u0576\u0563-Egg +Lingering\ Potion\ of\ Regeneration=This Cancer Regenereerimise +Chainmail\ Helmet=PA Dhan Koralky Malhotra +Grass\ Path=Instagram ?? Quantitative Risk Assessment +Dispenser=Dispenser +Power=Izturiba +Paper=Papel sp +Polished\ Blackstone=Polerad \u054D\u0587 \u0554\u0561\u0580 +Steak=Steak +Trident=Trident +Phantom\ Membrane=Fantom Je J Preskocena Plevna K Diu +built-in=built-in +Resistance=Resistance +Fishing\ Rod=Fishing rod +Nether\ Brick\ Stairs=NASA D\u00FCz'tax +Light\ Blue\ Terracotta=Or The Light Blue V Terakotov\u00E9 +Brown\ Wool=The Brown \u0395\u03C0\u03AD\u03BB\u03B5\u03BE\u03B5 +Mundane\ Potion=Mandahl Gumb Valikko Til +Cyan\ Carpet=/ Ist\u0259yirdi Carpet +Block\ of\ Quartz=Kuarc Bllok Area +Depth\ Strider=Yolgezer I Depth-Nga +Basalt=Basalt +Pink\ Tulip=Web Tulpan Koryuu +Arrow\ of\ the\ Turtle\ Master=Rodykliu Master Vezlys +Gunpowder=Luckenwalde +Swap\ Item\ With\ Offhand=Swap Tygodniu Cone Egy Di Gioco +Magenta\ Carpet=Magenta Carpet +White\ Carpet=Bily Ilim +Dropper=Dropper +Golden\ Boots=Tencere Of YOU +Cauldron=With Zi +Birch\ Log=Bj\u00F6rk Priate\u013Esk\u00E9 I\u015Fl\u0259m\u0259y\u0259 Posters. +Polished\ Blackstone\ Pressure\ Plate=Blackstone Poler De Tryckplattan +Wither\ Rose=Panseixen Filter +Birch\ Pressure\ Plate=\ Borghese Aandrukplaat +Light\ Blue\ Concrete\ Powder=Light Blue \u0411\u0435\u0442\u043E\u043D\u0438 Powder +Rail=Railway +Shulker\ Shell=Shulk Fn, Shell +Raw\ Cod=Osn First To Il Cod +Polished\ Blackstone\ Stairs=Polished Blackstone Stairs +Attack/Destroy=Attack/Destroy +Sugar\ Cane=Kanie-Of-The-Mountain +Focused\ Height=Focused Nettstedet Height +End\ Stone\ Brick\ Stairs=Cox Das, Bricks, Stairs +Clock=Shkoni Zakucac +Leather\ Cap=Cogni Me Fat +Mossy\ Stone\ Brick\ Wall=Yosunlu Page Table Anyone Else, \u0548\u0580 +Luck=Good luck +Orange\ Glazed\ Terracotta=Laranja, Terracotta Vidrada +Crimson\ Hyphae=Mini-Viesn\u012Bcas Ketone Tax +Chicken\ Spawn\ Egg=Chicken Spawn Egg +Bat\ Spawn\ Egg=Tailand\u00E9s Gyde mix +Bee\ Spawn\ Egg=The Fur Of The Mouse ... +Mundane\ Splash\ Potion=Banali Pig Drink' +Donkey\ Spawn\ Egg=Dhe Ezel, Je Git-V +Warped\ Planks=Sick Boards +Cooked\ Porkchop=Kokta Pig Have +Curse\ of\ Binding=Curse Of Binding +Oak\ Sapling=Eiken Seedlings +Space=Space +Light\ Gray\ Concrete\ Powder=This plug Formigo Lietteen \u0420\u0435\u0432\u0456\u043D na +Prismarine\ Stairs=Prismarine \u03A3\u03BA\u03AC\u03BB\u03B5\u03C2 +Lingering\ Potion\ of\ Luck=Lingering Drink Good Luck +Mundane\ Lingering\ Potion=Mundane Potion Extended +Green\ Glazed\ Terracotta=Green Glazed \u041B\u0430\u0446\u0435 +Spruce\ Button=Pulsating Abe +Movement=The move +Birch\ Fence\ Gate=Birch Kohta Fence Plaate +Blast\ Protection=Explosion Protection +Nether\ Bricks=Pescara-Bricks +VI=C\u1EE7a T\u00D4I +Oak\ Planks=Another Dolgo +Jungle\ Log=Jornal \u0538 Dzungli +Jungle\ Planks=Dzsungel Dosky +%s\ (%s)=%s (%s). +Lime\ Concrete\ Powder=Vs Pulver \u00DCz\u0259rind\u0259 Concrete +Enchanted\ Book=Where He Lives, Isabel +Dead\ Tube\ Coral\ Block=Le Koral Points April, Blatov Cheers +Arrow\ of\ Slowness=I Bio Je U Mogu\u0107nosti Get +Green\ Banner=The Amusement Park Gr\u00F6na Bundy On The Right +Endermite\ Spawn\ Egg=Endermite Kudema Jaje +Warped\ Door=Vaantynyt Aries +Instant\ Damage=Direct Damage +Acacia\ Planks=Acacia Art The Ruins Of The Temple Kalno Art Objects +Dark\ Oak\ Button=Tymen Button Podvijnogo Informaci\u00F3 More Of The Following Estima +Polished\ Diorite\ Slab=Tue Dioriet Polished +Slow\ Falling=Pomaly The Loss The Love The Test +Creeper\ Head=La Enredadera De La Cabeza +Crimson\ Stairs=Malinowy \u039A\u03BB\u03B9\u03BC\u03B1\u03BA\u03B5\u03C2 +Red\ Sand=Red Sand +Polished\ Blackstone\ Wall=Polished Instagram Wall +Zombie\ Head=Zombie Hlavu +Shown=Displayed +Oak\ Boat=Preuzmite Age +Ice=(O) Ice +Infested\ Stone\ Bricks=Castron Infested Brick +Lead=Chumbo +Beehive=\u00DAl +Brown\ Bed=Lek\u0131 Bed +Bucket\ of\ Pufferfish=Coppa fish +Smooth\ Red\ Sandstone\ Stairs=Eleganci On Carvone Peskovic Report About +Multiplayer=The number of points is the +Quartz\ Pillar=Quartz Aastal More Shtyl +Acacia\ Sign=Acacia Log +Water\ Bottle=The Water-Sticla +Blue\ Stained\ Glass=Stained Glass Blue +Cyan\ Terracotta=Blue Terracotta +Crimson\ Door=The Crimson D\u00F8ren +White\ Glazed\ Terracotta=For The Transportation Of Cargo That, For The Transport Of Goods K\u00E9rd\u00E9sre Xhama Shekulli +Orange\ Tulip=Mr. Tulip Naran\u010Dasta +Pumpkin=Pour +Creative\ Mode=Kreativni Mode +Iron\ Nugget=Iron Checkerboard +Regeneration=Yo +Twisting\ Vines=Slingrande Vinrankor +Purple\ Glazed\ Terracotta=Byal Ethylen Fliser +Poppy=Mack +Warped\ Stem=Sameties V TSIL ma +Iron\ Shovel=Great Iron Mitoitettu Y La Pala +Potion\ of\ Poison=Wang GE Po\u021Biune +Panda\ Spawn\ Egg=Hu Bygge-\u0393\u03CC\u03BD\u03BF\u03C2-Nie +Beacon=Lighthouse +Infested\ Cobblestone=Cobblestone Infected +Skeleton\ Spawn\ Egg=The Skeleton \u0411\u0443\u0431\u0431\u043B\u0435 Some Eggs +Lingering\ Potion\ of\ Weakness=Jatkuva Potion \u0434\u0435 Weakness +Lime\ Shulker\ Box=Left The Port Of Shulker Cuadro +Riptide=Desert +Pufferfish\ Spawn\ Egg=Fish Ap Jumurda +Dark\ Oak\ Sign=Temni Kompleksid Me\u0219e Where, A Code +Jungle\ Wood=\u040F\u0443\u043D\u0433\u043B\u0430\u0442\u0430 On \u041F\u0440\u044B\u043A\u043B\u0430\u0434, \u0424\u043E\u043D\u0434\u0430\u0446\u0438\u0458\u0430\u0442\u0430 On \u0405\u0438\u0434\u043E\u0432\u0438, +Purple\ Concrete=Violates Betonu +Block\ of\ Emerald=\u0544\u056B\u0561\u057E\u0578\u0580 watching emerald, razgovarali \u057D\u0574\u0561\u0580\u0569\u0586\u0578\u0576 +Bedrock=Based +Save\ Hotbar\ Activator=Shr \u0536\u0578\u0582\u0575\u0563 Shaby Negerai \u0544\u0561\u057D\u056B\u0576 Aktyvatorius +Potion\ of\ Slow\ Falling=Poci\u00F3 alternatives Caiguda \u0395\u03B2\u03B4\u03BF\u03BC\u03AC\u03B4\u03B1 +Fern=Priest files +Red\ Tulip=I\u0107i Travel +Oak\ Slab=Oak Board +Reset\ Keys=Resetare Na Klucevi Na +Leather=Par-Pella +Crimson\ Stem=Crimson Panjevima +Birch\ Fence=Birch Ogrodzenia +Stripped\ Dark\ Oak\ Log=Azuolo Zurnalas / Stripped Dark +Sandstone\ Stairs=Piesok Akmuo Mednieks, Ktor\u00E9ho Pasc\u00ED +Minecart=Truck +Arrow\ of\ Night\ Vision=Rukovoditel have lagnala KNOCK Visia +Evoker\ Spawn\ Egg=Or Evocatorul Mobile Leikkaussalit \u0413\u043E\u0441\u043F\u043E\u0434\u0430\u0440 +Splash\ Potion\ of\ Leaping=Positieve know Flip splash +Firework\ Star=Star Tuzijatek +Blue\ Stained\ Glass\ Pane=Blue Predstavenstva Stained Glass +Iron\ Hoe=J\u00E4rn-Cover +Wither\ Skeleton\ Spawn\ Egg=Dried Up Skeleton Spawn \u041C\u0435\u0441\u044F\u0446 +Dragon's\ Breath=Breath Of The Dragon \u0412\u0435\u045B +Granite\ Wall=In Par\u00EDs Graniit +Name\ Tag=Oznake In +Potion\ of\ Regeneration=Button jul again ra\u0111anje +Splash\ Potion\ of\ Poison=I Po\u00E7\u00E3o ?? Veneno +Bricks=A Brick +ON=I don't +Stripped\ Spruce\ Wood=Nedstrippet Egl\u0117s D ' azur +Stonecutter=Coast +Bubble\ Coral=Bubble Coral +Jungle\ Sapling=In The Jungle Of The Fi +Sponge=Mushrooms ++%s\ %s=+? %?? %?? +Glowstone\ Dust=Glowstone Zglob +Redstone\ Dust=The Redstone \u0553\u0578\u0577\u0578\u0582 +Elder\ Guardian\ Spawn\ Egg=A) Reaalne Sri Toj\u00E1s +Lime\ Stained\ Glass\ Pane=Panelet Vtarnovo Skladsk Cs +Bow=\ Lanka +Lingering\ Potion\ of\ Invisibility=Persistente Invisible +Bone\ Meal=Harina \u0534\u0565-\u053C\u0561 Real Concealer +Arrow\ of\ Healing=Hotel De Drie Psi +Cyan\ Bed=Cyan Gulta +End\ Portal\ Frame=The End Of The Frame N\u00EB +Netherite\ Chestplate=Netherit Het Ligamic +Gold\ Ore=Mineral San Nj\u00EB Just Q\u0131z\u0131l +Lingering\ Potion\ of\ Swiftness=From whom comes the snow \u00FCzerinde Resin +Purple\ Bed=Purple Leg +Feather\ Falling=L?l?ajo ?? +Diamond\ Shovel=Diamond Qu"il a Shovel +Language\ translations\ may\ not\ be\ 100%%\ accurate=Vertaling fr harroni ima\u0161 kaikki ndihmoi 100%% nauwkeurig +Golden\ Sword=You Live By The Sword +Flame=Flame +Smooth\ Stone\ Slab=Smooth Stone Slab +Minecart\ with\ Chest=Cart Injection of med +Red\ Sandstone\ Slab=Darabi Dramatiky Homokko +Nether\ Brick\ Fence=Mann Onderwereld Richard +Light\ Gray\ Terracotta=Sergey Kinos > > Het Elektron Terracotta +Hopper=Hopper +Use\ Item/Place\ Block=Haqq\u0131nda Use. Hlediska Kontroly/Lok-Vahid +Cracked\ Polished\ Blackstone\ Bricks=Instagram ?????????? Instagram Count +Globe=\u0421\u041D \u0418\u0414\u041A World +Grass=Grass +Redstone\ Ore=Redstone Malms +Chain=Width aix\u00F2 rrjet prielaida? +Fire\ Coral=Brann-Korall +List\ Players=Players List +Husk\ Spawn\ Egg=Hull Dance Micelij Jajce +Thorns=Spikes +Fire\ Aspect=Fire Aspect +Soul\ Sand=Soul Sand +Title\ Screen=El T\u00EDtol De La \u0399\u03C3\u03BF\u03C4\u03B9\u03BC\u03AF\u03B1\u03C2 +Clay\ Ball=? Chalaveka HUMAN Fused +Acacia\ Boat=There Is A Boat Ride +Milk\ Bucket=Milk \u041A\u0430\u0432\u0438 +Efficiency=Efficiency +Diamond\ Boots=Diamond Shoes +Polished\ Granite\ Stairs=Poleeritud De Lined, \u0531\u0576\u0570\u0561\u0574\u0562\u0565\u0580 \u054D\u057A\u0561\u057D\u0578\u0582\u0574 +Mooshroom\ Spawn\ Egg=Mooshroom Spawn Egg +Blaze\ Spawn\ Egg=Blis Gyde Vejce +Jungle\ Fence\ Gate=Jungle-Pomozi You Port +Cut\ Sandstone\ Slab=Cutting Boards, Gruels Il\u0259 N Of Sandstone +IV=IV +Clay=Glina +Warped\ Button=He\u00E7 Pogue +II=Other +Sheep\ Spawn\ Egg=Olas Gyd not OVC +White\ Shulker\ Box=Bela Shulker Kaste +Chiseled\ Polished\ Blackstone=Blackstone Mejslade H\u013Ead\u00E1 Baseinas +Pink\ Stained\ Glass=Lavandula Iwatani +Cookie=Where +Purpur\ Slab=Instagram ABPM +Squid\ Spawn\ Egg=Spawn Squid Egg +Petrified\ Oak\ Slab=Nediena Hardened \u0391\u03BB\u03B5\u03C0\u03BF\u03CD\u03B4\u03B5\u03C2 Plate +Lantern=Fn His +Oak\ Button=Get Arbeloa +Dark\ Oak\ Boat=Eikh Twilight, Surf Platta, Or Racun-Ette +Lapis\ Lazuli\ Ore=Lapis Lazuli Maagi +Jungle\ Button=Jungle Fasil\u0259 +Lime\ Terracotta=Lime One +Trader\ Llama\ Spawn\ Egg=T\u00FCccar-\u053C\u0561\u0574\u0561\u0576 Egg Spawn +Piercing=Piercing +Leather\ Tunic=Model B\u0151r +Blue\ Wool=Blue Capelli +Stripped\ Acacia\ Wood=Deprived Of Acacia +Dead\ Bush=Dead Bush +Cracked\ Nether\ Bricks=Cracked Bottom Brick +Ender\ Pearl=Hyvitykseni Hallarda Zhemchug +Acacia\ Button=Acacia Handle +Acacia\ Slab=Yes +Splash\ Potion\ of\ Slowness=Inactivity Of Drink, By Umrze\u0107 \u0412\u0430\u0445\u043B +Snow=Snow +Redstone\ Comparator=Redstone Kompar\u00E1tor +Thick\ Splash\ Potion=Ilkin Qalinlig Na Exira +Horn\ Coral\ Block=Rog, Korale Bloks +Slime\ Spawn\ Egg=Hlen Spawn Eggs +Mods=Mods +Activator\ Rail=Colin Train +Stone\ Bricks=\u0410\u043A\u043C\u0435\u043D\u0441 Layers Of Tiles +Birch\ Button=Birch Button +Firework\ Rocket=Rocket Firework +Blue\ Terracotta=The Blue One +Iron\ Axe=Sekera Weather +Green\ Carpet=Carpet Green +Unfocused\ Height=High Ufokuserede +Splash\ Potion\ of\ the\ Turtle\ Master=Kilpikonna Pozdravlyat Napuka Mestari +Infinity=I know +Spruce\ Leaves=Wave Sheet +FOV=Die in field of view +Stone\ Shovel=Da\u0219 Shovel +Sneak=Hidden +Stripped\ Crimson\ Stem=Izlo\u010Da L. \u017Barty Intellectu, In +Normal=Nice +Oak\ Wood=\u0104\u017Euolo Medijev Player +Arrow=Zirkinik +Light\ Gray\ Bed=Voo, Helehall Sana +Sandstone\ Slab=Plates Of Sandstone +Vex\ Spawn\ Egg=Bree Generera Vejce +Birch\ Door=Heast +Dark\ Oak\ Slab=What is the sono mining the Dark, Jeff Plate +Lever=The lever +Dark\ Oak\ Leaves=Trio-Ul-Raud\u0101t Oak Leaves +Nether\ Brick\ Wall=Vsichko Tarvitse STI +Bubble\ Coral\ Fan=Koral Flluske Tifoz +Selected=Selected +Observer=The observer +Empty\ Map=About E Visio Thanks +Detector\ Rail=Rail Dedekt\u00F6r\u00FC +Cornflower=The +Jack\ o'Lantern=Several ponosi this Lantern +Smooth\ Quartz\ Slab=Before Printed In The Lai De Quartzo +Magenta\ Bed=Magenta Raha +Stripped\ Oak\ Wood=Indi, Was Dabovo Dveh +Splash\ Water\ Bottle=Splash Water Free Download Bottle +Ender\ Chest=In Rare Build +Sea\ Pickle=V\u00EDce Response Properties, Okurkou +Black\ Stained\ Glass=\u0544\u0561\u056F-\u053B Black And Stained-Glass Windows +Aqua\ Affinity=Aqua Affinity +Mossy\ Cobblestone\ Stairs=Mossi Kocka Stylite +Sweet\ Berries=Pretsedatel Chairman \u0421\u0430\u043B\u0434\u0443\u0441 \u0420\u0430\u0439\u043E\u043D \u041D\u0430\u0441\u0435\u043B\u0435\u043D\u0438\u0439 \u041F\u0443\u043D\u043A\u0442, \u0412 \u0420\u0435\u0433\u0456\u043E\u043D\u0456 Uog\u0173 Obminski, Education +Cooked\ Rabbit=Cuit Conil \u0564\u0578\u0582\u0584 +Warped\ Nylium=Sick Nyli Is +Honey\ Block=Mouse Blokuoti +Splash\ Potion\ of\ Water\ Breathing=Splash potion of breath ja +Brown\ Dye=Kleurstof Brown +Stone\ Slab=Then Stenblokk +Coal=Coal +Dirt=The dirt +Gray\ Stained\ Glass=Sri Glasses +Frost\ Walker=Gel Walker +Cyan\ Glazed\ Terracotta=GL Geglazuurde ?????????? +Smoker=Smoker +Splash\ Potion\ of\ Fire\ Resistance=Splash Potion anti-virus \u043D\u0430 resistance \u043E\u0445\u043D\u0438 +Block\ of\ Iron=A coming-OF-\u0408\u0435\u0433\u043F\u0431\u044B\u043B +Obsidian=Obsidian +Open\ Command=Comando De Volta +Silverfish\ Spawn\ Egg=Tra\u00E7as Spawn Eye +Lingering\ Potion\ of\ Night\ Vision=De code stanoch Vztrajno Dzia\u0142 doru\u010Dak Nocturn broj krzy\u017C +Diamond=Diamond +Singleplayer=Ty igrach +Cooked\ Chicken=Obce Moon White Chicken +Diamond\ Leggings=Diamante Dokolenke +Light\ Blue\ Shulker\ Box=?; Llumar \u039C\u03C0\u03BB\u03B1 I Shulker Obrazy +Open\ Pack\ Folder=? Open Preprogo Of Packages +No\ Effects=No Effects +Blue\ Ice=E-Gel Blue +Light\ Gray\ Stained\ Glass=\u03A6\u03C9\u03C2 \u0393\u03BA\u03C1\u03B9 \u0393\u03C5\u03B1\u03BB\u03AF FLP Registro Di systems +Dead\ Bubble\ Coral=\u0544\u0561\u0580\u057F Coraly Mor +Gray\ Concrete=\u0393\u03BA\u03C1\u03B9 Concrete +Lime\ Wool=The Kalku In Vilnius +Stripped\ Birch\ Wood=Deprived Of \u0422\u043E\u0458 Birch +Mossy\ Stone\ Bricks=Moss-Covered Stones In Tula +Dead\ Brain\ Coral\ Block=Dead Brain-Corail-Block +Spruce\ Log=Spruce Log +Raw\ Chicken=Raw Kahn +Mossy\ Cobblestone\ Slab=Kasvataja Brosten Ad +Green\ Concrete=Green Betong +Shulker\ Spawn\ Egg=Nurse \u0540\u0565\u057F Shulk Pechatatj Kiausiniu +Soul\ Torch=Flashlight Heart +Guardian\ Spawn\ Egg="Ar Genres Teacher Or +Magenta\ Stained\ Glass=Purple Stained Glass +Arrow\ of\ Strength=Strap Strelica +Smooth\ Quartz\ Block=Yn Cuart \u0411\u043B\u043E\u0433 +Egg=Eggs +Magma\ Block=Mother-Notepad +Arrow\ of\ Invisibility=One set to invisible +Apple=Ableg +Polished\ Blackstone\ Brick\ Wall=Cihly Any Blackstone Mur-De- +Green\ Shulker\ Box=Shulk A Valenti Barcelona +Stone\ Stairs=The Most Important Stairs In Kato's Stone +Potion\ of\ the\ Turtle\ Master=Trungu hotelot "Sheraton" av turtle Master +Stripped\ Crimson\ Hyphae=\u041E\u0434\u0440\u0430\u043D\u0438 Apartment Framboesa +Crimson\ Fungus=Crimson Ciuperci +Open\ Chat=Otvorite Czak +Cut\ Red\ Sandstone\ Slab=ROSO-directing Lastra Di Arenaria Cesare +Redstone\ Torch=Torch De Redstone +Sand=Sand +-%s\ %s=- %s\: %S \\ +Dark\ Oak\ Log=Dark Oak Jornal +Light\ Blue\ Banner=Gai\u0161i Banner ZIL +Cartography\ Table=Kartograafia Table +Lapis\ Lazuli\ Block=Circles-Blasto The South Side Of The Slip +Brown\ Concrete=Brun Konkreta +Polished\ Andesite\ Stairs=Lenkas-Andesfjelle Have Stativer +Channeling=Instructions +Stone\ Brick\ Wall=Piedra-Grass In Tula +Auto-Jump=By Itself, Meg +Compass=Compass +Spruce\ Sign=\u0534\u0578\u0582 M\u00F3dly Times Cabinets +End\ Rod=Finally Sikt +Diamond\ Sword=\u0426\u0456 Sword +Book\ and\ Quill=The books and the de la canilla +Light\ Blue\ Glazed\ Terracotta=\u00D8nsket Bl\u00E5 Jaleo Lys, Tera Glasur +Creeper\ Spawn\ Egg=\u041B\u0430 Spawn \u041B\u0430\u0441\u0456\u0446\u0430 Egg +Gray\ Concrete\ Powder=Das Free Toiletries Aske Aus Beton +Sharpness=Ostrina +(Place\ pack\ files\ here)=(Vieta pake failu n\u00EB st\u00F8tte fremmed jeg Meg) +Stripped\ Acacia\ Log=\u0536\u0580\u056F\u0565\u056C Akacij\u0173 Log View +Stone\ Hoe=The Kiwi Koblas +(%s\ Loaded)=(\u057F\u0578\u056F\u0578\u057D\u0568 Cartoony) +Andesite\ Slab=Andezitov\u00FD Board +C418\ -\ chirp=C418 - cirip +Cyan\ Stained\ Glass\ Pane=In China Dan Water Riquadro +Stripped\ Birch\ Log=Going Spanish \u039D\u03C4\u03AF\u03BB\u03B9 +Tube\ Coral\ Block=Treatment Unit +Inventory=Description +Cyan\ Dye=The Production Of Tortu Fest\u00E9k +Emerald\ Ore=Aukso P?Yes +Respawn\ Anchor=Vacanta Startowe +Red\ Sandstone=Sandstone Red +Chat\ Settings...=The Settings Vestlus The... +White\ Concrete=\: The Concrete K\u00F6hn\u0259 +Ink\ Sac=\u010Crnilo with +Red\ Nether\ Brick\ Slab=Rde\u010Da Abisal These Indicators, Kg-EQ +Blackstone=Blackstone +Cooked\ Salmon=Either You Laccu +Pink\ Concrete\ Powder=Poeder Concrete Roz\u0101 +Coal\ Ore=Ka Hz +Thing=?similar mai up \u0564\u0565\u057A\u0584\u0565\u0580\u056B +Acacia\ Wood=Smerte P +Protection=Protection +Purple\ Dye=Not Enough Variables +Melon\ Slice=A Piece Of Melon +Zombie\ Villager\ Spawn\ Egg=Zombie Alde\u00E3o Caviar Re +Lily\ of\ the\ Valley=Voice djevojka N udh\u00EBtimit t\u00EB colorful +Instant\ Health=Okam\u017Eit\u00FD Saudi +Pumpkin\ Seeds=Pumpkin Seeds +Dead\ Horn\ Coral=UMR Coralie, But Cuerno De +Brown\ Glazed\ Terracotta=\u03A4\u03B5\u03C1\u03B1\u03BA\u03BF\u03C4\u03B1 Brown Fabric +Music\ &\ Sounds...=\u039C\u03BF\u03C5\u03C3\u03B9\u03BA\u03AE & Nokia-The Favorite Locations Are Favorite Locations Are The Labas Zi\u0146as... +Dandelion=Dandelion +Gray\ Bed=Blue Bed (Krevet) +Diorite\ Slab=De Ovog Speicher +Night\ Vision=Night In +Bucket\ of\ Salmon=Emeris, van white city +Blue\ Orchid=Bla Orchid +Dried\ Kelp\ Block=Fem Dried Blokkok Standby +Quartz\ Stairs=Kvartsov Stabilito +Item\ Frame=De Elements Occupies A +Golden\ Chestplate=Zivti\u0146a The Protection Of The Chest Area +Oak\ Log=Oak Auk\u0161tas +Dark\ Oak\ Wood=Tamno U\u010Diniti Saponite Te +Warped\ Fungus\ on\ a\ Stick=Instagram Gaby Dae sur +Jump=Jump +Light\ Gray\ Banner=\u012E Llum Grisa Kan Baner +III=III. +Light\ Blue\ Wool=Ljus-Re - +Chiseled\ Quartz\ Block=Quartz Chiseled Block +Ghast\ Spawn\ Egg=Vorace Vejce Canteens Offspring +Gray\ Terracotta=Grey Terracotta +Dark\ Oak\ Fence=Dubba Sen Tmavy +Sweeping\ Edge=A Comprehensive \u0391\u03C0\u03BB\u03AC Edge Of The +Splash\ Potion\ of\ Harming=Ben G\u0117rimas In Imballo +Soul\ Speed=\u00C8 El Alma On \u0544\u0561\u0584\u057D\u056B\u0574 +Gray\ Stained\ Glass\ Pane=G. Omietky Haal Vitraazi +C418\ -\ 13=C418 - 13 +C418\ -\ 11=C418 - 11 +Cobblestone\ Wall=The Wii Kullersten +Spider\ Spawn\ Egg=Spider-Fresar Vejce. +Skull\ Charge=Skull For Free +Oak\ Leaves=Od Egeblade +Jungle\ Leaves=Jungle Leaves +Oak\ Fence\ Gate=Ozola Zogs Options +Magenta\ Shulker\ Box=Purpurt\u00EB, Navn Shulk Een Doboz +Nether\ Sprouts=Agreement City Troge +Fire\ Resistance=\u0424\u043E\u0439\u0454\u0440-Resistance +Acacia\ Leaves=Akaciju Way +Blackstone\ Stairs=Webs +Orange\ Bed=Orange B +Glass=Glass +Potion\ of\ Swiftness=Lektvar Truc +Lava\ Bucket=Bucket Ez Mauger Yes, But - +Spruce\ Stairs=I Trappor +Netherite\ Hoe=When You Try To Netherite +End\ Stone\ Brick\ Slab=The End Duvarlar, Brick Plate +Birch\ Planks=Planch Ball Mo +Golden\ Helmet=Gold Krmilo +Potion\ of\ Night\ Vision=Drink Was-De-La-Goodbye +Black\ Concrete=Black Clothing +Iron\ Chestplate=P\u00EBr Zeer Chestplate +Dead\ Fire\ Coral\ Fan=De Dood Van Net-Coral Fan +Curse\ of\ Vanishing=Prekletstvo Bagsto +Charcoal=Coal +Blackstone\ Slab=Blackstone En Pla +Dark\ Oak\ Stairs=Rimavicou Tmav\u00E9 Ladder +Red\ Concrete=Concrete Vormid Piros +Accessibility\ Settings...=Accessibility Settings... +Snow\ Block=Blocks Neve +Looting=?- Espol +Cyan\ Shulker\ Box=Box Of ZIL Shulk Stampante +Yellow\ Concrete\ Powder=Te\u010F Gf Is Tea Specificke +Iron\ Pickaxe=Iron Pickaxe +Diamond\ Pickaxe=Pickaxe Diamond +Black\ Stained\ Glass\ Pane=Schwartz Stained Glass Window +Black\ Bed=Kids Are In Bed +Rabbit\ Stew=Dhe Yahn Rabbit +Light\ Blue\ Stained\ Glass=The Kuin Mavi Stained Glass Window In The +Blue\ Shulker\ Box=Blue Shulk Alate \u039A\u03BF\u03C5\u03C4\u03AF +Polished\ Andesite\ Slab=Puleta To Lose The Andesite +Spruce\ Boat='Src identifikimi +Daylight\ Detector=Met\u0173 Motion Detector +Brain\ Coral\ Block=Behuizing Alcor\u00E0 Zeyd Cervell\u00F3 +Lingering\ Potion\ of\ Slowness=Treje intreast on Nuit de Baut) \u056C\u0561-\u057E\u0561\u0576 Traagheid +Ghast\ Tear=\u0413\u0421\u0413-\u00C5 Tear +Light\ Gray\ Dye=\u0427\u0430\u043A\u0430\u0446\u044C Should Helehal +Green\ Stained\ Glass\ Pane=The effects OF Protectionism Teemasid \u0412\u0438\u0442\u0440\u0430\u043B\u044C Help Tuul Ne \u03A6\u03BF\u03CD\u03BB\u03B5\u03C1 +Chorus\ Fruit=Cevi-Fruit +Brick\ Slab=The NEFT-Rast Site +Beetroot\ Soup=Stsd Soogipeet +Red\ Mushroom=Rde\u010De A. Stand. +Enchanted\ Golden\ Apple=Noiutud Kao Uro Gold +Dead\ Tube\ Coral=Myrrhe Coral In The Tube \u053C\u0561 +Multishot=Multishot +Luck\ of\ the\ Sea=DACA szerenc cables with ce Stahovat +Magenta\ Dye=Purple Dye +Zombified\ Piglin\ Spawn\ Egg=Unique Places Benestar Weeks Visit Git Owo Praca +Stone\ Axe=My Name Is Hacha De Piedra +Composter=Instagram +Red\ Concrete\ Powder=The Red, Powder-Tapauksessa +Gilded\ Blackstone=Tada, Blackstone +Line\ Spacing=No other +Nether\ Quartz=Hey Quartz +Jungle\ Door=Jungle Drum +Stripped\ Jungle\ Log=Stripped Of The Jungle Magazine +Scaffolding=Installation +Polished\ Blackstone\ Brick\ Stairs=The Policy Of The Common Maon, Escale, With The +White\ Terracotta=I Kissed You U\u0219oar\u0103 +Iron\ Boots=Iron Boots +Strafe\ Left=Puolimas W Lew De +Orange\ Stained\ Glass=Ich Laranja Tile In The Bathroom +Advancements=And +Acacia\ Sapling=Qaeda Every NSK Tr\u00E6 Conscience +Spruce\ Trapdoor=Planina Luik +Done=Made +Red\ Banner="atk\u0101rtota Leaders +Prismarine\ Wall=Prismarit Wall +Splash\ Potion\ of\ Strength=Shooting Potion of Strength +Cyan\ Wool=Demick, +Skin\ Customization...=Skin, Customization,... +Cyan\ Concrete\ Powder=The Blue Parashock Concrete +Spruce\ Slab=The Red Paklaja Skinny +Andesite\ Stairs=Ansi, Which +Miscellaneous=Many +Purple\ Stained\ Glass\ Pane=MIN \u012E Grupie, Der Faktisk Genoplivet Farvet OPA Famille +Dried\ Kelp=\u0393\u03B9\u03B1\u03C4\u03B9 Seca, But For \u03A6\u03C5\u03BA\u03B9\u03B1 +Nether\ Wart\ Block=Als\u00F3 Bradvica Blokk +Arrow\ of\ Luck=Bowers & wilkins u\u011Furlar +Peony=Peony +Green\ Bed=Gia-\u00C7arpay\u0131 +Raw\ Rabbit=Raaka-D +Crimson\ Trapdoor=Bibor Csapoajto +Prompt\ on\ Links=Moznosti ziadny \u0420\u0438\u0430\u0434 sllovake, \u043F\u0440\u043E\u0434\u0430\u0458\u0430 is made \u0432\u0430\u0448 +Mule\ Spawn\ Egg=Knappar Mazga, Is Not T\u00E4ckt Large Numai +Available=Available +Blue\ Bed=Neliels Kissed +Chat=Chat, doru\u010Dak +Brick=It +Wither\ Skeleton\ Skull=\u053F\u0574\u0561\u056D\u0584 March Cr\u00E2nio Ar +Wheat\ Seeds=L'Avant-Post Grurit +Beetroot\ Seeds=Rape Is Sementes +Tropical\ Fish=Tropical Fish +Smooth\ Sandstone\ Stairs=Sim Sandstone Stairs +Lily\ Pad=Lily +Light\ Blue\ Carpet=Koberec Jasny Wilde Aparthotel Modry +Spider\ Eye=You Ample De La Eye Of The Pok +Crimson\ Fence\ Gate=Rouge To Port De La Cl\u00F4ture +Heavy\ Weighted\ Pressure\ Plate=Heavy Ponderado Pressure Of The Card +Lime\ Banner=V\u00E1pno Banner Of The +Diorite=Diorit out +Yellow\ Bed=Bed Yellow +Ravager\ Spawn\ Egg=Life Kud I, Egg +Totem\ of\ Undying=\u0540\u0561\u0574\u0561\u0580 Totem Mapping to +Infested\ Stone=Et Vid\u011Bt To Cesati Stone +Toggle\ Fullscreen=\u0548\u0582\u0580\u0561\u056D Screen Completa na\u010Din, da +Loyalty=Loyalty +Dead\ Horn\ Coral\ Fan=\ Significant Bro On Atmirusajam Raga-Korallu Ventilatory +Flower\ Charge=\u0406\u043B\u044C \u0414\u044A Charge +Drop\ Selected\ Item=Com geta Odbrani +Farmland=There Are Semarang +Smooth\ Sandstone=Smooth Sandstone +Spruce\ Sapling=Ladinisch Fidan +Orange\ Concrete\ Powder=Portokalli, Or Plow Joueur +Melon\ Seeds=The Seeds From Brasov, Blue, Yellow +Orange\ Banner=The Good \u0534\u0580\u0578\u0577\u056B +Jukebox=Jukebox +Lectern=Of the podium +Netherite\ Axe=Dutch You Are A +Cut\ Sandstone=The Pje\u0161\u010Denjaka Izrezati +Arrow\ of\ Weakness=Arrow Is Weak +Splash\ Potion\ of\ Slow\ Falling=Splash Potion of Slow Decline +Language...=Select... +Gray\ Wool=A\u0161 Lumtur), Ose Wol Grijs +Diamond\ Chestplate=Diamond-Startni In The One Hundred Most Bauk +Jungle\ Pressure\ Plate=Bygge \u03A4\u03BF Es Trykkplaten +Chorus\ Flower=Were The Avs, Enc And +Polished\ Diorite=Cilal? Diorit +Lingering\ Potion\ of\ Harming=Persistent Drink f Damage +Flower\ Pot=But In The First Class +Purpur\ Pillar=Pole Purple +Warped\ Hyphae=Sk\u00E6v Hyf. Customer name +Smite=Turn +Mycelium=Gryba, EGR minutes +Barrel=Barrel +Wooden\ Shovel=\u041F\u0430\u0440\u043A S\u00FCqut \u041F\u0440\u0430\u0437\u043D\u0443\u0432\u0430 In The End, In Order To +Rabbit's\ Foot=J\u00E4nes Needs +Quit\ Game=Seton Lopettaa Koirohi +Cyan\ Stained\ Glass=Blue Last +Brick\ Stairs=Country, Address Escelsa +Potion\ of\ Strength=Soul Lek +Brown\ Stained\ Glass=Bern Farva At\u00E2rn\u0103 Ne +Red\ Mushroom\ Block=Devouring Rde\u010De Blok +Diamond\ Horse\ Armor=Horse Oklop Diamant +Eye\ of\ Ender=OHI Edaj +Drag\ and\ drop\ files\ into\ this\ window\ to\ add\ packs=Pull hittem file, the following \u03AD\u03BD\u03B1 giudizio elijesztettem \u03B4\u03C1. the window for adding balenin +Splash\ Potion\ of\ Regeneration=Fozetet Spurtas Regeneracio +Red\ Sandstone\ Stairs=Arenito Vermelho The Stairs +Yellow\ Wool=\u0416\u043E\u043B\u0442\u0430 Kosa +Lodestone=Top +Red\ Shulker\ Box=Tutorial Shulker Pandora +Golden\ Carrot=Zlatna Morecambe +Block\ of\ Diamond=Diamond Boy +Chainmail\ Boots=Chain Shirt \u0427\u0438\u0437\u043C\u0438 +Tripwire\ Hook=Coco Why Krevetu +Light\ Gray\ Carpet=Light Grey Carpet +Wooden\ Pickaxe=A Wooden Punch Sienu +Dark\ Prismarine\ Stairs=M\u00F8rke Prismarine Arpi +OFF=FORUMS +Warped\ Stairs=For \u0391\u03BB\u03AF\u03BA\u03B7 Good Life To Kooldunud +-%s%%\ %s=- - %\u0568%% %s +Pink\ Glazed\ Terracotta=Juoktis Glazed-Lg +Glass\ Bottle=Glass Bottle +Tropical\ Fish\ Spawn\ Egg=Trops Colla Peix, Ki Jaj, Ja En Micelij +Chiseled\ Red\ Sandstone=Ostry Crveno \u03A8\u03B1\u03BC\u03BC\u03AF\u03C4\u03B7\u03C2 +Magma\ Cream=Rokas Krem +Minecraft\ Realms=Minecraft Verden +Gray\ Dye=Shiva Barvanje +Dead\ Brain\ Coral=Lukten Brain Coral +Raw\ Salmon=Salmone Crudo +Oak\ Stairs=Kiemeliai Ladder +Jungle\ Stairs=Jungle Alebo Cad\u00E1ver +Magenta\ Terracotta=Instagram, Blanc \u0551\u056B\u0574\u0565\u0576\u057F +Stone\ Pressure\ Plate=??? The Pressure Plate +Iron\ Leggings=Gelato, Stulpi\u0146i +Invisibility=Invisibility +Mossy\ Cobblestone=- The way +Stripped\ Dark\ Oak\ Wood=D\u00E9pouill\u00E9 Dark Oak Kook +Warped\ Sign=Tamilla Var Kakwa Ni\u015Fan\u0131, E-May\u0131l +Bubble\ Coral\ Block=Block N Bubble \u039A\u03BF\u03C1\u03B1\u03BB\u03BB\u03B9\u03BF\u03B3\u03B5\u03BD\u03B5\u03B9\u03C2 +Iron\ Bars=Zelezo Baarid +Red\ Bed=In The Bed Of The Red +Acacia\ Stairs=Helyi Escaleras +Smooth\ Quartz\ Stairs=Svo Ave Na Primjer, El Cuarto \u0395\u03C3\u03BA\u03AD\u03B9\u03BB +Sprint=N +Grindstone=Growth is +Turtle\ Shell=Broasca Godin on Testosterone AF Dan V\u00E6rn +Left\ Shift=The Linker \u053B\u057D\u056F, A Shift Toets +Walk\ Forwards=Not Fremad +Mossy\ Stone\ Brick\ Slab=Driven By Brick Stone Tables +Creeper\ Charge=Herobrine Complex Pensou, And Free Photos +Strength=Enough ++%s%%\ %s=+"%s%% %s +Take\ Screenshot=Take A Screenshot +Gray\ Glazed\ Terracotta=Grey Glazed Terracotta ??? +%s\ button=%s \u043A\u043E\u043F\u0447\u0435 el final muraci\u0259t +Wheat=Addressee for gruri +Crimson\ Sign=Raspberry Ekle +White\ Concrete\ Powder=F \u041D\u0430\u043E\u043A\u043E Terns From the JP E Dulke +Oak\ Door=Brahma Hrastova +Cake=Desire some k\u00F6stek +Pink\ Wool=Roosa Wave +Splash\ Potion\ of\ Luck=Splash Poci\u00F3n K\u0101 Cabo +Melon=J\u00EDzda on the paddle boat +Glass\ Pane=Izlet ce se odr\u017Eati to do +Lingering\ Potion\ of\ Leaping=V E Balance Skok Napitak +Water\ Bucket=The battle of the det +Jungle\ Fence=\u054A\u0561\u0580\u056B Jungle +Orange\ Dye=Portals Boa +Blaze\ Powder=Flames To Dust +Enchanting\ Table=Enchanting \u010Credo +Blue\ Banner=Standartoas Well +Iron\ Sword=Jerne Cetec +Ocelot\ Spawn\ Egg=Ocelote Toj\u00E1s Srodu +Potato=Potato +Spruce\ Wood=Madeira Jelka +Cooked\ Cod=Cod Baked +Block\ of\ Coal=Unit Z +Polished\ Blackstone\ Slab=Blackstone Schlock Polido +Web\ Links=The Links To The Web +Soul\ Campfire=Efficiency \u03A8\u03C5\u03C7\u03AE T\u00E1bor\u00E1k +Oak\ Pressure\ Plate=Over Segura. +Fermented\ Spider\ Eye=Fermentacja E Pavkovi Eyes +Potion\ of\ Invisibility=Potion Of Invisibility +Slimeball=Slime +Ancient\ Debris=A T\u00F6bbi Gamla Svou +Powered\ Rail=Sms Napoule Zheleznitsa. +Brown\ Terracotta=Ranta, Brown +Large\ Fern=Street Fern +Fletching\ Table=Feathers Ac\u021Biune +Bookshelf=It +Yellow\ Stained\ Glass=L Yellow Stained Glass +Rabbit\ Hide=Rabbit Hide +White\ Tulip=Bardh\u00EB Mass, Es +Diamond\ Helmet=Diamond Helm +Bucket\ of\ Tropical\ Fish=\u0531\u056C\u0565\u0584\u057D JT Trapni Fish +Black\ Dye=Meat +Heart\ of\ the\ Sea=\u0160ventov\u0117 " Di Mare Cuore +Potion\ of\ Slowness=Oil slow +Quartz\ Slab=Kvarc From The Plate +Rabbit\ Spawn\ Egg=\u00DCllatus Screwed To The Galician Is To Get +Realms\ Notifications=\u0158\u00ED\u0161e Invitations +Awkward\ Lingering\ Potion=Dezvolta Potion To Maldestr Llarg +Lingering\ Potion\ of\ the\ Turtle\ Master=Refreshing Drink \u017B\u00F3\u0142w Mestre +Parrot\ Spawn\ Egg=Papuk In The Search Kutemaan Huevoa +Glistering\ Melon\ Slice=Kavun Centelleantes Diamond +Black\ Banner=The Black Banner Of The +Red\ Carpet=The Red Carpet +Dead\ Fire\ Coral=Dead Corals +Blast\ Furnace=A blast furnace +Iron\ Trapdoor=Iron Ed\u00E9n De San Vien\u0105 Pus\u0119 Art-And-Osakeste +Minecart\ with\ Hopper=Stroller costs s background +Cooked\ Mutton=Karitsast Varen\u00E1 +Chorus\ Plant=Choir Phyto +Toggle\ Cinematic\ Camera=The Senna Film Camera Canvit +Salmon\ Spawn\ Egg=Who-\u0538 Munun Ever +When\ in\ main\ hand\:=\u0535\u0582 fi kryesore Quan\: +Brain\ Coral=Mo\u017Egan Minutes Of Coral +Pink\ Banner=Pink Banner +Feather=Piuma +Arrow\ of\ Leaping=Pile Hoppe And +Cobweb=Harsachtige from aranha +Diamond\ Ore=The Diamond-Where-Miner\u0101lu De +Campfire=Tabortuz +Gray\ Banner=Banners Uree Gray +Brown\ Concrete\ Powder=Krakow, Tego \u041D\u0435 Click Next +Block\ of\ Redstone=Blocul \u0570\u0565\u057F Redstone +Granite\ Slab=Plyty Granitowe +Dark\ Oak\ Fence\ Gate=Fosc, Tancu Centrum Back La Portet +C418\ -\ mellohi=C418 - mellohi +Video\ Settings...=Video Irasok Postavke... +Raw\ Beef=This Ova +Yellow\ Banner=Dzeltena Leaders +Blue\ Concrete=/ Hotel Concrete +Chiseled\ Sandstone=Reefy Yeah, And Der Provinz Pescara +Nether\ Brick=Tu\u0161tumos Telliskivi +Lilac=Leela +Lime\ Carpet=In Addition, \u0406\u0440\u0430, Carpet +Slowness=\u0540\u0561\u0574\u0561\u0580 Traagheid +Soul\ Lantern=Only Lamper +Green\ Concrete\ Powder=The Green Powder Products +Green\ Dye=Zele Augl\u012Bga Barvivo +Wolf\ Spawn\ Egg=\u041F\u043D The Offspring Of A Vejcem +Turtle\ Spawn\ Egg=T\u0131sba\u011Fa Presenece Ner\u0161ti +Snowball=Snow +Elytra=Elytra +Iron\ Ingot=Feraud Hus Lingotto +Blue\ Dye=??? Fargamne +Warped\ Roots=Deformades Na +Pig\ Spawn\ Egg=Encirclement It Was The \u041D\u0430\u0448\u0447\u0430\u0434\u043A\u0430\u045E-Per Lui +Oak\ Fence=Hrastov Aharaja +Left\ Control=Hiire Supervision +Splash\ Potion\ of\ Weakness=Dob\u00EBsie Splack S\u00F6ll +Brown\ Mushroom=Brown Mushroom +Raw\ Porkchop=Chops Raw Material Szelet +Oxeye\ Daisy=Kakrakteristikami Izdelka Daisy +Lingering\ Potion\ of\ Strength=In Istria Potiune on Power +Unbreaking=Unbreaking +Yellow\ Terracotta=Makes \u017Duta +Shroomlight=Shroomlight +Light\ Gray\ Wool=I Synnerhet Vill Hall +Wooden\ Sword=SCATT ??? O Q?l?nc +Wandering\ Trader\ Spawn\ Egg=Tava Trgovec Micelij Aiko +Splash\ Potion\ of\ Invisibility=(E) at CPW Poci\u00F3 de La Invisibilitat +Orange\ Carpet=Carpeted "Bed; Breakfast" +Crimson\ Planks=Karma From Corretja, But The Pace +Redstone\ Repeater=Redstone Repeater +Polished\ Granite\ Slab=Tender Oven Granitowy +Brain\ Coral\ Fan=The Brain Corales Fan +Light\ Blue\ Bed=The Light Blue Of The Bed +Yellow\ Dye=Yellow Dye +Acacia\ Pressure\ Plate=Acacia Push +Acacia\ Fence\ Gate=Foretaget Som Skrev Haben Akacijev Puerta +Carrot\ on\ a\ Stick=Vizh na siata +Netherite\ Boots=Netherite Saapad +String=Lina +Acacia\ Door=Acacia Door +Walk\ Backwards=Go To Felicit\u0103ri +Stripped\ Spruce\ Log=Zbor C-Jurnal +Potion\ of\ Harming=\u03A7\u03C1\u03CC\u03BD\u03BF s\u0105skait\u0105 consumer +Netherite\ Helmet=Netherit \u00A2 Helmet +Acacia\ Fence=Calcutta Jeanne Esclat +Block\ of\ Gold=\u0544\u056B\u0561\u057E\u0578\u0580 Goud NAPISANE +Light\ Gray\ Stained\ Glass\ Pane=Shuga Ratn Dans Votre Vitra Rent May +Lingering\ Water\ Bottle=Lho Butalso \u0538 Vada +Flint=Flint +Red\ Stained\ Glass=There Is A Generation Of Malate, And Lip Gloss +Nether\ Quartz\ Ore=The Dutch Mineralin Kuarc +Warped\ Slab=Happiness, Misvorm Samo As Plaat +Chat\ Text\ Opacity=\u0420\u0430\u0437\u0433\u043E\u0432\u043E\u0440 There Borbe S Bikovima Bullring \u0423 \u0410\u0440\u0435\u043D\u0430-\u0414\u0435-\u0421\u0438\u043B\u0430 G Texts +Hay\ Bale=H\u00F8 Still Alive +Dark\ Oak\ Trapdoor=Mok Eg Hatch +Honeycomb=Petek +Smooth\ Red\ Sandstone\ Slab=Gresie Hay Square Manan +Punch=T\u0259sir Bet, And bet +Purple\ Banner=Fialov\u00E9 Banner +Water\ Breathing=Water Breathing +Dark\ Oak\ Door=For The Donk T\u00EB Eikenhouten Water Of The E +Black\ Wool=Raportin Korea +Polished\ Diorite\ Stairs=Polished Diorite Of Stairs +Netherite\ Leggings=The goals he en taken out of them +Crimson\ Slab=Plokste\u0431\u044B\u043B Crimson +Lingering\ Potion\ of\ Poison=Lingering Drink Poison +Horse\ Spawn\ Egg=Co Er Far\u00EB +Controls=Control +Text\ Background\ Opacity=Energetic Offering Credit Only To Firms Efficiency Opacitate De Fundal +Red\ Glazed\ Terracotta=Red Glazed Terracotta +Kelp=Hotel faciliteter +Magenta\ Glazed\ Terracotta=Magenta Stylene-Shelter +Infested\ Cracked\ Stone\ Bricks=Infested Brick-??-Stone Cracked +Target=Target +Quick\ Charge=Fast Charging Station +Smooth\ Sandstone\ Slab=A Smooth Slab Of Sandstone +Sea\ Lantern=Fener Sea +Splash\ Potion\ of\ Healing=Splack Jook koniec \u0395\u03C0\u03BF\u03CD\u03BB\u03C9\u03C3\u03B7\u03C2 +Cracked\ Stone\ Bricks=Broken Bricks, Stones +Poison=Poison +Prismarine\ Brick\ Stairs=Prismarine \u03A4\u03B7\u03C2 \u0389\u03C7\u03BF Vro\u010De +Fire\ Protection=Fire fighting +Chainmail\ Chestplate=Experience Points \u03A4\u03BF\u03BD \u0395\u03B1\u03C5\u03C4\u03BF Talousarvioon; \u03A3\u03B1\u03BB\u03B9\u03B1\u03C1\u03B5\u03C2 +Birch\ Leaves=The Leaves Of The Birch +Crimson\ Pressure\ Plate=Lampone Trykkplaten +Diorite\ Stairs=Dioriitti De La Escala +Prismarine\ Crystals=Prismarine Crystal +Birch\ Sign=Social Brese +Armor\ Stand=Armor Staat +Stripped\ Warped\ Stem=Obseo Is The Wrong Step +Black\ Glazed\ Terracotta=Keramik Plit\u0259l\u0259r Nero Geamuri CU +Lingering\ Potion\ of\ Water\ Breathing=Postoyanny Poci\u00F3n \u0564\u0565 Agua \u0564\u0565 \u056C\u0561 Respiraci\u00F3n +Purple\ Wool=Violetti Villor +Red\ Sandstone\ Wall=Red Sandstone Wall +Dark\ Oak\ Pressure\ Plate=He Della Rovere Chiaro Piastra, CAS Og Di \u0391\u03BD\u03CE\u03C4\u03B1\u03C4\u03B7 \u0391\u03BD\u03CE +Orange\ Concrete=Oranje Concrete +Sugar=U +Piston=SZEM +Red\ Dye=The Aim Of \u054C\u0578\u056D\u0578\u0576 +Stripped\ Jungle\ Wood=No Resano With Da Floresta Jungel Z +Birch\ Sapling=And Csemete +Nautilus\ Shell=Cauquil La De Nautile Where Sports Photos +C418\ -\ strad=C418 - \u043D\u0430\u043C\u0441 you know +Blue\ Carpet=Blue Carpet +Leather\ Horse\ Armor=Ko\u017Een\u00E9 Horse Armor +Seagrass=The grass of the Sea +Lingering\ Potion\ of\ Fire\ Resistance=Persistent Drink with a fire resistance +Dead\ Tube\ Coral\ Fan=Mort \u00C7\u0259ll\u0259k Coralee Kaapeli-Sync +Potion\ of\ Leaping=Pozione ate Sol +Cod\ Spawn\ Egg=Bacalar Posterity So +Pick\ Block=Block Pro Vaara, An +Warped\ Wart\ Block=Must Be High, U Conformitate Chuck Soolat\u00FC\u00FCgas Checkpoint, Bizim +Fire\ Charge=The Back Of Veel Kosten +Note\ Block=If The Block +Light\ Blue\ Stained\ Glass\ Pane=Ako Vitro iskustvo Motive NUC Deschis +Vines=Vines +Hoglin\ Spawn\ Egg=Le Hogl Spawn Mestia +Horn\ Coral\ Fan=S, Koral Fan +White\ Stained\ Glass\ Pane=Baltic Stained Efendi More +Shulker\ Box=Shulk Printer Est\u00E1 Ativa. +Crying\ Obsidian=Lahko Chi Nesposoben Obsidian Mod +Painting=Un Painting +Llama\ Spawn\ Egg=Aleksandras Eggs Lama +Nether\ Brick\ Slab=\u041B\u0430 X \u0414\u044D Brick Ya\u0219ad\u0131\u011F\u0131m The Number Of +Magenta\ Stained\ Glass\ Pane=Our Farget Stick Juostos +Light\ Gray\ Concrete=Garnish With A Long Term Problemen Zijn, Kurtar\u0131n \u0393\u03BA\u03C1\u03B9 \u03A3\u03BA\u03C5\u03C1\u03BF\u03B4\u03AD\u03BC\u03B1\u03C4\u03BF\u03C2 +Arrow\ of\ Swiftness=Flecha Quickly +Torch=Flashlight +Knockback=Adan +Coarse\ Dirt=Dirt Large +Silk\ Touch=Koprina Stick +Smooth\ Stone=Can Capacity, Stone +Bread=Bread +Brewing\ Stand=The Company's Products \u00C1llv\u00E1ny +C418\ -\ cat=C418 - market +Bucket=Bucket +%s\ slider=%s a-lliscant +Netherrack=Lower Rack +Gameplay=Game +Warped\ Fungus=Strain Mushrooms +Dragon\ Head=Head, \u0414\u043C\u0438 +Potion\ of\ Water\ Breathing=Lektvar l'eau UN Shuffle +Black\ Carpet=W-Matto +Turtle\ Egg=Turtle Sobe +Chainmail\ Leggings=Error Kolczuga. +Red\ Nether\ Brick\ Stairs=Herunder Hendes Dutch Brick-Schody +Player\ Head=\u041D\u0435\u0433\u043E\u0432\u0430\u0442\u0430 Copenhagen +Polished\ Blackstone\ Button=Knop Polerowane Tregtar +Nether\ Gold\ Ore=The Dutch \u0417\u044D\u043B\u0442\u0430 Ore +Bowl=Was +Pink\ Bed=Der Tag Des A Credit +Potion\ of\ Fire\ Resistance=Juoma Pozarne Wide Muscle On Betoto +Light\ Gray\ Shulker\ Box=Licht Slimane Shulker Protract +Phantom\ Spawn\ Egg=Dvasios Mic\u0113lijs, Oh +Music\ Disc=Muzika E Disco +Orange\ Wool=\u0130nstagram \u039C\u03B1\u03BB\u03BB\u03AF +Scute=Please +Options=Part +Infested\ Mossy\ Stone\ Bricks=Nyheter, De A D ' Angrips Protetores Bemoste Tijolos, +Pink\ Concrete=Rose From The Concrete +Crimson\ Roots=G Combined Choir Purple +Pink\ Carpet=Pink Carpet +Dead\ Bubble\ Coral\ Block=Mrtvica We Blokovi Coraly +Arrow\ of\ Water\ Breathing=The arrow-??-Bruden-??-Breathing +Infested\ Chiseled\ Stone\ Bricks=Infection Of Carved Stone, Bricks +Purpur\ Stairs=Purple K\u0101pn\u0113m +Slime\ Block=ROS Bloco +Splash\ Potion\ of\ Night\ Vision=\ Sol-f Nocni Vid +Light\ Blue\ Concrete=Konkrete Blue +Gray\ Carpet=Catifa ALB +Terracotta=Terracotta +Pumpkin\ Pie=Bucn Account Svilpukas +Black\ Concrete\ Powder=Black Powder, Bezmaksas Concrete +Stick=Verduna forblive +Arrow\ of\ Fire\ Resistance=Arrow Resistance IA Gude +Arrow\ of\ Poison=Arrow Poison +Wooden\ Hoe=Matyka Dramana +Spectral\ Arrow=\u03A6\u03B1\u03C3\u03BC\u03B1\u03C4\u03B9\u03BA\u03B7 Arrow +White\ Wool=? Bill Ropes +Yellow\ Carpet=Pogled Od Arm\u00E9n Matto +Gravel=Gravel +Golden\ Leggings=OF Saarystimet +Sandstone\ Wall=Pescar \u00A1Vegge +Netherite\ Sword=Netherite Ma\u010D +Blue\ Glazed\ Terracotta=Blakytny Glazurovannuju Teracati +Golden\ Hoe=Zero Sakaw Slope Karlovo Vari Od Comme De +Stray\ Spawn\ Egg=Boily Of The Seed Of The +Rotten\ Flesh=Rotting \u0544\u056B\u057D +Sticky\ Piston=AP-Kolbmootorid +Chipped\ Anvil=Yonts, Prosessit Floresta +Polished\ Andesite=Polished Andesa's Tide, +Crimson\ Button=Zmeura Manzana +Netherite\ Pickaxe=Netherite Pickaxe +Stone=Bergen-\u0576\u0561\u0564-city +Polished\ Blackstone\ Brick\ Slab=Poliran Tirgot\u0101js Place \u054F\u0578\u0582\u056C\u0561 +Red\ Terracotta=Red Terracotta +Lime\ Concrete=Liming Concrete +Iron\ Door=Skydas Events In The Palace Of The +Zombie\ Spawn\ Egg=Zombie \u039B\u03AD\u03BA\u03B1 On Ben \u039C. +Raw\ Mutton=Raw Sheep's +Saddle=Sadlen +White\ Bed=POSTEL Handsvinget +Rose\ Bush=Day Rosenbuske +Cobblestone\ Stairs=The Room Adoquin N\u00EB "Chernomorets" +Birch\ Boat=Rod, Boat, +Ladder=Other +Stone\ Brick\ Slab=Diamentowa Kamena Murstein +Polished\ Basalt=Csiszolt Basalt Rocks +Brown\ Banner=Brown Rekl\u0101ma +When\ on\ head\:=EK samo AKO slowem manty\: +Trapped\ Chest=? Schatkist Felle, +C418\ -\ far=C418 - far +Dark\ Prismarine=Discipline Prism +Speed=Die rate der +Light\ Gray\ Glazed\ Terracotta=Light Of Siva, Light Of Paned +Black\ Shulker\ Box=Shulker Fi Negra +Cactus=This Kaktusz +Splash\ Potion\ of\ Swiftness=Well Potion Olacaq +Stone\ Brick\ Stairs=Aragaz Ceg\u0142a Scar +Warped\ Fence=Perverz Ograde +Witch\ Spawn\ Egg=\u0425\u0443 We Hope Leka Eggs +C418\ -\ blocks=C418 - blokkok +Smooth\ Red\ Sandstone=The Arakawa Kuq \u03A4\u03B5\u03B2\u03B5 Cetq \u03A4\u03B5\u03B2\u03B5 +Zoglin\ Spawn\ Egg=Zoglin Add Yayka +Red\ Nether\ Bricks=Punainen N\u012Bderlandes Is A Tii +Mouse\ Settings...=Musata Settings.... +Acacia\ Trapdoor=Akasya Fallucka +Lingering\ Potion\ of\ Healing=The potions Tervendav \u0412\u0421\u0410 +Vindicator\ Spawn\ Egg=?? Redresseur ?? Torts Fryer The Gulina +Smithing\ Table=Herrer\u00EDa Fair +Iron\ Helmet=Ferro Helmet +Light\ Blue\ Dye=The Most Important Historical Buildings, Blu Spalva +Azure\ Bluet=Azure blue +Carved\ Pumpkin=Such that ?; Carbo you +Minecart\ with\ TNT=In Magnes E. G. +Warped\ Pressure\ Plate=Warped Pressure In Ploce +Purpur\ Block=Unit CUA +Chiseled\ Stone\ Bricks=More, I Bands, Bricks, +Purple\ Carpet=Pallavi De-Abeto Schlafsofa +Birch\ Slab=Will Bednice Beautiful Abedul Gets +Loom=\u041E Loom +Mending=Szerezzen to Slide +Enderman\ Spawn\ Egg=Ender is the type of Genre, Alebo +Allium=Allium +Mossy\ Cobblestone\ Wall=Dick Akademisi Co-Ta\u015F\u0131 C\u0103ptu\u0219ite +Diamond\ Hoe=Apple Hakke del +When\ on\ feet\:=Geta het Niet?A L F O R T? f\u00F8dder\: +Bone\ Block=Aksine, The Unit Square +Book=Kirja Susa, including SUS, including +Nether\ Wart=On The Lower Ne +Chest=View niza +Gold\ Ingot=Poluga A +Yellow\ Stained\ Glass\ Pane=\u018Fl Air Conditioning Panel +Crimson\ Nylium=Bloody Nylia More +Pink\ Shulker\ Box=Box Pink Shulker +Netherite\ Ingot=Netherite Anus +Birch\ Stairs=Half Portaissa +Golden\ Pickaxe=\u0417\u043B\u0430\u0442\u043D\u0430 Pickaxe +Bone=Bone +Bane\ of\ Arthropods=Bain, A. Leddi products +Warped\ Fence\ Gate=Deformerade Ogrodzenia Gate +Arrow\ of\ Harming=Poort, skodna \u0587 +Orange\ Stained\ Glass\ Pane=Orange \u039B\u03B5\u03BA\u03B9\u03B1\u03C3\u03BC\u03B5\u03BD\u03BF Geam +Orange\ Shulker\ Box=Narancs, OGA Shulker +Honeycomb\ Block=The Hat-Block +Reset=Reset +Golden\ Apple=The Golden Apple +Conduit=Drevo +Cobblestone\ Slab=Drewna Weak +Dark\ Oak\ Sapling=Dark Oak Saplings +Lime\ Bed=Beds, Cal\u00E7 +Banner\ Pattern=Banneri, Vzorec +Popped\ Chorus\ Fruit=Peygamber Indirectly Papel Home To Go To Rangely +Pillager\ Spawn\ Egg=Or Bag Tekstovi \u0391\u03C5\u03B3\u03CC +C418\ -\ ward=C418 - Bairro +\ (Modded)=\ (Mo)\: +Toggle\ Perspective=In the future +Chat\ Text\ Size=Yra Mp Besedilo Noi +Andesite\ Wall=Andesite Wall +Orange\ Terracotta=Instagram Thoracotomy +Soul\ Soil=The Soul Of Soil +Anvil=Anvil +Sunflower=Gasol +Andesite=Ansi +Nether\ Star=Sise Donji VISION Sve +Lena\ Raine\ -\ Pigstep=Lena Rhinen - Pigstep +Strafe\ Right=Strafe Right +Awkward\ Splash\ Potion=Open A Feeling +Lime\ Stained\ Glass=Kire\u00E7 Glas In Lood +Magenta\ Wool=Vila Purple +Red\ Nether\ Brick\ Wall=L-Rouge Arvesse mantas Mur-de-Briques +Arrow\ of\ Slow\ Falling=Streets I live my +Magenta\ Concrete=Magenta ??? Giallo Instagram +Piglin\ Spawn\ Egg=Piglin Gyde ?\u0564 +Wooden\ Axe=Bad Cirvis +Redstone\ Lamp=On Redstone LEMP ?? +Thick\ Lingering\ Potion=Dad-Chia, Y, X Dylys It's Worth +Command\ Suggestions=I Sugjer Me In A Coma +TNT=TNT +Beetroot=Beetroot +Cobblestone=Brugakmens +Golden\ Axe=\u0386\u03C1\u03C4\u03B1 Iron +Spruce\ Door=\u03A1\u03B5\u03BD\u03AD Avec Moins De \u03A3\u03C4\u03BF Cinq Is Namijenjen To Kori\u0161tenje Preuzimanje Update Of +When\ on\ legs\:=Yoanna (unge venn) (jaunasis draugas), Finlandia ve l\u00E1bak\: +Open/Close\ Inventory=\u00C5bne/The Hole In Your Bakgrunden +Resource\ Packs...=Ressurss Hoolduspaketid... +Crossbow=The crossbow +Dark\ Prismarine\ Slab=Tee Seda-Prismarine +Gray\ Shulker\ Box="Bir Mal\u00FD Shu bude Sedna Cuties +Grass\ Block=Jah-Lohko De Gram +C418\ -\ stal=C418 - stalk +Jungle\ Sign=Forest +Diorite\ Wall=Diorit Moore +Arrow\ of\ Regeneration=Arrow Regeneration +Granite=Granite +Pink\ Stained\ Glass\ Pane=\u0553\u056B\u0576\u0584 Obaino Vidre Panelit +Emerald=Emerald +Hotbar\ Slot\ 9=9, The Heating Valmisteverotuksen +Red\ Wool=Poika Was Closed +Hotbar\ Slot\ 8=After Barra De Atalho Sk 8 +Fabric\ mod=Tkanina mode +Hotbar\ Slot\ 7=M\u00E0quina Escurabutxaques De Comenzi Bar For Rask 7 +Hotbar\ Slot\ 6=A Bar Acesso R\u00E1pido \u03A5\u03C0\u03BF\u03B4\u03BF\u03C7\u03AE 6 +Hotbar\ Slot\ 5=Hotbar Intervalliga 5 +Hotbar\ Slot\ 4=Ranura Plate 4 Of The +Hotbar\ Slot\ 3=The Bar Bli\u017Enjice Game 3 +Hotbar\ Slot\ 2=2, The Du, The Worker Because Of The Greda +Cyan\ Banner=Blue Flag +Hotbar\ Slot\ 1=\u0544\u0578\u0582\u057F\u0584\u0568 ' Gy\u00E1rs\u00E1n \u041C\u0411\u0418 \u0537 Lien 1 +Shears=Shears +Tall\ Grass=Tall Grass +Purple\ Shulker\ Box=Violeta Kaste Shulk. Fn +Stone\ Sword=Visa Sverd +Magenta\ Banner=Order Of The Red Banner +White\ Banner=\u0532\u0565\u056C\u056B Flamur s +Fox\ Spawn\ Egg=Welcome To The Vejce Git +Stone\ Pickaxe=Piatra T\u00E2rn\u0103copul +Yellow\ Concrete="The Art Of Hormigon +Snout=Na RIL +Polished\ Granite=Lestene Granite +Shield=The shield +Awkward\ Potion=Nesrecno Vdara +Bamboo=Bambus +Bottle\ o'\ Enchanting=Czarowne shisha e +Highlight\ Players\ (Spectators)=Interesant\u0101kais Only The Specialists Of \u03A7\u03C4\u03CD\u03C0\u03B7\u03BC\u03B1 Players (Publiczno\u015B\u0107) +End\ Crystal=Eind The Crystal +Warped\ Trapdoor=NEMA Trampilla +Iron\ Ore=Miner De Fier Reggio Zin\u0101t +Light\ Weighted\ Pressure\ Plate=Kevyt Engine Avgift +Drowned\ Spawn\ Egg=Afogamento, File, Or. +End\ Stone\ Brick\ Wall=The End Of Grey Lurer +Lure=Moms +Gold\ Nugget=Zlatna Gruda +Prismarine\ Slab=Prismarit Igra +End\ Stone=Furr\u00EB Of Kroot +C418\ -\ mall=C418 - centar +Zombie\ Horse\ Spawn\ Egg=Zombier-\u0541\u056B Bramy \u0541\u0578\u0582 +Cut\ Red\ Sandstone=Cut Hearts Pasychnik +Jungle\ Trapdoor=Using The Tool Trap +Granite\ Stairs=Granite Is Out Of Our Trepn +Pink\ Dye=De Rosa Farbivo +Stripped\ Oak\ Log=Dennik Stripped \u0545\u0578\u0582\u0572\u0565\u056C +White\ Stained\ Glass=White Painted Glass +Blackstone\ Wall=Interesting Here \u0534\u056B\u0576\u0561\u0574\u056B\u056F\u0561\u0576 Lighting Instagram +Prismarine=Prismarine +Purple\ Concrete\ Powder=\u0408\u0430 \u0544\u0578\u057F-A Group Of Truly \u0531\u0573\u0575\u0578\u0582\u0576\u0568 \u041A\u043E\u043D\u043A\u0440\u0435\u0442\u043D\u0438 Revived +Diamond\ Axe=From \u00D8ks Airport +Magma\ Cube\ Spawn\ Egg=Ey Magma Cubo Far\u00EB Vejce +Crimson\ Fence=Malawi Hegn +Fire\ Coral\ Fan=Fire-Water Corals Havaland\u0131rma. +Purple\ Stained\ Glass=Vijoli\u010Dno Obarvajo Before +Skeleton\ Skull=Behold Crani +Jump\ Boost=The Jump Will Increase +Narrator=The +Bee\ Nest=Ninh av abelha +Potion\ of\ Luck=Positive, men \u0421\u0443\u0435\u0440\u0442\u0435 +Birch\ Wood=Rod Drury +Baked\ Potato=Baked Potato +C418\ -\ wait=C418 - Zeca +Minecart\ with\ Furnace=How good are you ??? you can s s s s s tie\u017E ?? +Green\ Wool=Ehlen Armpits +Respiration=Respiration +Spruce\ Planks=Considering The Cathedral Of The Objects To The Head +Pink\ Terracotta=Svelni Pink +Cocoa\ Beans=Ziarna Same, Which Reads As Follows +V=V. +Brick\ Wall=Z\u0131d Fibroblasts Brick +Thick\ Potion=Rude Gratuit Games. +Cave\ Spider\ Spawn\ Egg=Cave Spider Spawn The P\u016B\u0137is Olas Egg +Brown\ Carpet=Leads Teppa +Spruce\ Fence\ Gate=A\u00EFta Was On Port +I=Kettle +Cow\ Spawn\ Egg=Inek Spawn Quattro Yumurta +Tube\ Coral\ Fan=Wentylator Up Well Corallo +Horn\ Coral=Chifre Koraljni +Dead\ Brain\ Coral\ Fan=Dead Brain Mercan Fan +Netherite\ Shovel=Netherite Shovel +Dark\ Oak\ Planks=K\u00E4nsla Oak Deszk\u0105 +Controls...=In Los control, pulsuz million\u00E6r it... +Select\ Resource\ Packs=Vyberte Ressurss The Number Of Units +Prismarine\ Shard=Prismarine Cup +Damaged\ Anvil=Have Vigdal Klein People Do Not \u0391\u03C3\u03B2\u03AD\u03C3\u03C4\u03B7 +Prismarine\ Brick\ Slab=Prismarit The Left, Cigli, Plo\u010De +Magenta\ Concrete\ Powder=Magenta, Concrete Powder +Iron\ Horse\ Armor=Su Kontaktnaja Oseb In Armure +White\ Dye=Buoy Bijela +Bucket\ of\ Cod=\u00C4mp\u00E4ri w code of civil procedure +Sandstone=Fishing +Fortune=Fortune +Cat\ Spawn\ Egg=Aygul Nonne +Stripped\ Warped\ Hyphae=Svlekl Pokrivene Hyfy +Colors=Color +Brown\ Mushroom\ Block=G\u00F6b\u0259l\u0259k Block Fat +Cyan\ Concrete=Mavi Clothing +Potion\ of\ Healing=The potion \u03CC\u03C7\u03B9 Healing +Pufferfish=\u03A4\u03BF\u03CD\u03B2 Bal\u0131\u011F\u0131 Connection +Poisonous\ Potato=Toxic Steen diff --git a/src/main/resources/translater.mixins.json b/src/main/resources/translater.mixins.json new file mode 100644 index 0000000..c102d18 --- /dev/null +++ b/src/main/resources/translater.mixins.json @@ -0,0 +1,14 @@ +{ + "required": true, + "minVersion": "0.8", + "package": "io.gitlab.jfronny.translater.mixin", + "compatibilityLevel": "JAVA_8", + "client": [ + "MixinLanguage" + ], + "injectors": { + "defaultRequire": 1 + }, + "mixins": [ + ] +}