Skip to content

Commit

Permalink
Fix i18n on ponder scenes
Browse files Browse the repository at this point in the history
  • Loading branch information
hlysine committed Nov 11, 2023
1 parent 79df626 commit 8bccb16
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 6 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,18 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.0.0] - 2023-11-11
## 1.0.1 - 2023-11-11

### Fixed

- I18n for ponder scenes

## 1.0.0 - 2023-11-11

### Added

- **Andesite chunk loader**
- **Brass chunk loader**
- Ponder scenes
- Crafting recipes
- Speed multiplier config

[1.0.0]: https://github.com/olivierlacan/keep-a-changelog/releases/tag/v1.0.0
- Speed multiplier config
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ mod_name=Create: Power Loader
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=MIT
# The mod version. See https://semver.org/
mod_version=1.0.0
mod_version=1.0.1
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
Expand Down
18 changes: 17 additions & 1 deletion src/main/resources/assets/create_power_loader/lang/en_us.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,21 @@
"create.create_power_loader.brass_chunk_loader.load_3x3": "3x3 Square",
"create.create_power_loader.brass_chunk_loader.load_5x5": "5x5 Square",

"create_power_loader.config.brass_speed_requirement_multiplier": "Brass Chunk Loader Speed Requirement Multiplier"
"create_power_loader.config.brass_speed_requirement_multiplier": "Brass Chunk Loader Speed Requirement Multiplier",

"create_power_loader.ponder.andesite_chunk_loader_basic.header": "Basic Usage of the Andesite Chunk Loader",
"create_power_loader.ponder.andesite_chunk_loader_basic.text_1": "The chunk loader keeps the current chunk loaded when given rotational power.",
"create_power_loader.ponder.andesite_chunk_loader_basic.text_2": "It does not work when the rotation speed is too slow.",

"create_power_loader.ponder.brass_chunk_loader_basic.header": "Basic Usage of the Brass Chunk Loader",
"create_power_loader.ponder.brass_chunk_loader_basic.text_1": "The chunk loader keeps the current chunk loaded when given rotational power",
"create_power_loader.ponder.brass_chunk_loader_basic.text_2": "It does not work when the rotation speed is too slow",
"create_power_loader.ponder.brass_chunk_loader_basic.text_3": "You can configure the loaded range through the value panel...",
"create_power_loader.ponder.brass_chunk_loader_basic.text_4": "...but a longer range requires a higher rotation speed",

"create_power_loader.ponder.brass_chunk_loader_contraptions.header": "Loading Chunks Around Moving Contraptions",
"create_power_loader.ponder.brass_chunk_loader_contraptions.text_1": "Brass chunk loaders also work on contraptions",
"create_power_loader.ponder.brass_chunk_loader_contraptions.text_2": "They always load a 3x3 chunk area around the contraption",
"create_power_loader.ponder.brass_chunk_loader_contraptions.text_3": "When assembled, they do not require rotational power to function",
"create_power_loader.ponder.brass_chunk_loader_contraptions.text_4": "They also function on stationary contraptions"
}

0 comments on commit 8bccb16

Please sign in to comment.