diff --git a/SchematicSystem_Core/src/SchematicSystem.properties b/SchematicSystem_Core/src/SchematicSystem.properties index f72591e..100f34c 100644 --- a/SchematicSystem_Core/src/SchematicSystem.properties +++ b/SchematicSystem_Core/src/SchematicSystem.properties @@ -17,8 +17,8 @@ UTIL_LIST_BACK=§e../ UTIL_LIST_BACK_HOVER=§eBack {0} UTIL_LIST_DIR=§7§lDIR UTIL_LIST_TYPE=§8§l{0} -UTIL_LIST_BASE=§l §e -UTIL_LIST_FROM=§l §8Owner §7{0} +UTIL_LIST_BASE=§e +UTIL_LIST_FROM=§8Owner §7{0} UTIL_LIST_OPEN_DIR=§eShow directory UTIL_LIST_OPEN_SCHEM=§eManage schematics UTIL_LIST_REMOVE=[Remove] diff --git a/SchematicSystem_Core/src/SchematicSystem_de.properties b/SchematicSystem_Core/src/SchematicSystem_de.properties index 364e4d7..d70518b 100644 --- a/SchematicSystem_Core/src/SchematicSystem_de.properties +++ b/SchematicSystem_Core/src/SchematicSystem_de.properties @@ -12,7 +12,7 @@ UTIL_NAME_INVALID_CHAR=§cDer angegebene Schematicname enthält verbotene Zeiche UTIL_NAME_FORBIDDEN=§cDer Pfad darf nicht \"§l{0}§c\" enthalten UTIL_LIST_PATH=§7Aktueller Pfad: §e{0} UTIL_LIST_BACK_HOVER=§eZurück gehen {0} -UTIL_LIST_FROM=§l §8von §7{0} +UTIL_LIST_FROM=§8von §7{0} UTIL_LIST_OPEN_DIR=§eOrdner anzeigen UTIL_LIST_OPEN_SCHEM=§eSchematic verwalten UTIL_LIST_REMOVE=[Entfernen] diff --git a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java index cecee5f..e21de74 100644 --- a/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java +++ b/SchematicSystem_Core/src/de/steamwar/schematicsystem/commands/SchematicCommandUtils.java @@ -104,11 +104,11 @@ public class SchematicCommandUtils { StringBuilder nodeString = new StringBuilder(); if (node.isDir()) { - nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_DIR", player)); + nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_DIR", player)).append(" "); } else { SchematicType type = node.getSchemtype(); if (type != SchematicType.Normal) { - nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_TYPE", player, type.name())); + nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_TYPE", player, type.name())).append(" "); } } nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_BASE", player)); @@ -120,7 +120,7 @@ public class SchematicCommandUtils { } if (node.getOwner() != user.getId()) { - nodeString.append(SchematicSystem.MESSAGE.parse("UTIL_LIST_FROM", player, SteamwarUser.get(node.getOwner()).getUserName())); + nodeString.append(" ").append(SchematicSystem.MESSAGE.parse("UTIL_LIST_FROM", player, SteamwarUser.get(node.getOwner()).getUserName())); } TextComponent schematics = new TextComponent(nodeString.toString());