Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ TCDCommons is a Minecraft modding API library that features its own GUI system a
## Dependencies

This mod depends on some other mods that first need to be installed before this mod can be installed. Those dependencies are as follows:
- 🏗 [Architectury API](https://github.com/architectury/architectury-api) - Allows this mod to run on `Fabric` and `NeoForge`
- 🧵 [Fabric API](https://github.com/FabricMC/fabric-api) (Fabric only) - Loads this mod's assets and resources.

## Building

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ maven.group = com.thecsdev

# Mod properties
mod.id = tcdcommons
mod.version = 5.5.2
mod.version = 5.5.3
mod.name = TCDCommons API
mod.description = TheCSDev's personal Minecraft modding library.
mod.author = TheCSDev
Expand Down
42 changes: 42 additions & 0 deletions src/main/resources/assets/tcdcommons/lang/de_de.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"modmenu.nameTranslation.tcdcommons": "TCDCommons API",
"modmenu.summaryTranslation.tcdcommons": "TheCSDev's Persönliche Minecraft-Modding-Bibliothek.",

"tcdcommons.config.common": "Klient/Server Eigenschaften",
"tcdcommons.config.client": "Klient Eigenschaften",
"tcdcommons.config.client.update_item_groups_on_join": "Artikelgruppen beim Betritt aktualisieren",
"tcdcommons.config.client.update_item_groups_on_join.tooltip": "Leistungs-Funktion. Das Basisspiel aktualisiert beim Öffnen des Inventars die Item-Gruppen, was bei größeren Modpacks zur einer Verzögerungsspitze führen kann. Diese Funktion führt den Vorgang während des Ladebildschirms aus, damit es im Spiel nicht zum Verzögern auftretet.",
"tcdcommons.config.server": "Server Eigenschaften",
"tcdcommons.config.property_value": "Wert",

"tcdcommons.stat_type.minecraft.custom": "Allgemein",
"tcdcommons.stat_type.minecraft.killed": "Getötet",
"tcdcommons.stat_type.minecraft.killed_by": "Getötet an",
"tcdcommons.stat_type.morestats.damaged": "Schaden verursacht",
"tcdcommons.stat_type.morestats.damaged_by": "Schaden erlitten",
"tcdcommons.stat_type.morestats.totem_popped_by": "Totems Ausgelöst von",

"tcdcommons.gui.screen.text_dialog.default_title": "Dialog",
"tcdcommons.gui.screen.text_dialog.error_title": "Etwas ist schiefaufgelaufen",

"tcdcommons.gui.dropdown.default_label": "Wähle eine Option...",

"tcdcommons.gui.filechooser.mode.explore": "Datei-Explorer",
"tcdcommons.gui.filechooser.mode.choose_file": "Datei auswählen",
"tcdcommons.gui.filechooser.mode.create_file": "Datei erstellen",
"tcdcommons.gui.filechooser.quick_access": "Schnellzugriff",
"tcdcommons.gui.filechooser.quick_access.mount_points": "Einhängepunkte",
"tcdcommons.gui.filechooser.ctxmenu.select": "Auswählen",
"tcdcommons.gui.filechooser.ctxmenu.open": "Öffnen",
"tcdcommons.gui.filechooser.ctxmenu.open_with": "Öffnen mit",
"tcdcommons.gui.filechooser.ctxmenu.open_with.assoc_app": "Zugehörige Anwendung",
"tcdcommons.gui.filechooser.action.file_name": "Dateiname",
"tcdcommons.gui.filechooser.action.file_type": "Dateityp",

"tcdcommons.misc.loading": "Wird Geladen...",
"tcdcommons.misc.something_went_wrong": "Etwas ist schiefaufgelaufen",
"tcdcommons.misc.coming_soon": "Bald verfügbar",
"tcdcommons.misc.preview": "Vorschau",
"tcdcommons.misc.from": "Von",
"tcdcommons.misc.to": "Zu"
}
Loading