diff options
| author | jani270 <69345714+jani270@users.noreply.github.com> | 2025-06-05 13:14:55 +0200 |
|---|---|---|
| committer | Linnea Gräf <nea@nea.moe> | 2025-06-07 23:19:12 +0200 |
| commit | df8c8a02a04d48345e8e44d868f18e12dff01aab (patch) | |
| tree | d0422c49a8cb436580418e1de6840a349d5b629f | |
| parent | 33f2c27462ee0c64263e2decbfa52f61c1568e9d (diff) | |
| download | Firmament-df8c8a02a04d48345e8e44d868f18e12dff01aab.tar.gz Firmament-df8c8a02a04d48345e8e44d868f18e12dff01aab.tar.bz2 Firmament-df8c8a02a04d48345e8e44d868f18e12dff01aab.zip | |
fix: Missing Translation
| -rw-r--r-- | src/main/kotlin/features/inventory/PriceData.kt | 2 | ||||
| -rw-r--r-- | translations/en_us.json | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/main/kotlin/features/inventory/PriceData.kt b/src/main/kotlin/features/inventory/PriceData.kt index 026cb93..9f6a8bb 100644 --- a/src/main/kotlin/features/inventory/PriceData.kt +++ b/src/main/kotlin/features/inventory/PriceData.kt @@ -22,7 +22,7 @@ object PriceData : FirmamentFeature { object TConfig : ManagedConfig(identifier, Category.INVENTORY) { val tooltipEnabled by toggle("enable-always") { true } val enableKeybinding by keyBindingWithDefaultUnbound("enable-keybind") - val stackSizeKey by keyBinding("stack-size") { GLFW.GLFW_KEY_LEFT_SHIFT } + val stackSizeKey by keyBinding("stack-size-keybind") { GLFW.GLFW_KEY_LEFT_SHIFT } } override val config get() = TConfig diff --git a/translations/en_us.json b/translations/en_us.json index 2f66c84..0e1570a 100644 --- a/translations/en_us.json +++ b/translations/en_us.json @@ -207,6 +207,8 @@ "firmament.config.price-data.enable-always.description": "Show item auction/bazaar prices on SkyBlock items", "firmament.config.price-data.enable-keybind": "Enable only with Keybinding", "firmament.config.price-data.enable-keybind.description": "Only show auction/bazaar prices when holding this keybinding. Unbind to always show.", + "firmament.config.price-data.stack-size-keybind": "Stack Size Multiplier Keybinding", + "firmament.config.price-data.stack-size-keybind.description": "Press this key while hovering over an item to show its price multiplied by the number of items you have.", "firmament.config.pristine-profit": "Pristine Profit Tracker", "firmament.config.pristine-profit.fine-gemstones": "Use Fine Gemstones", "firmament.config.pristine-profit.fine-gemstones.description": "Use the (more stable) price of fine gemstones, instead of flawed gemstones.", |
