Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/imurx/localizedbrowser
Let's you search things in Minecraft without caring about some graphemes
https://github.com/imurx/localizedbrowser
Last synced: 2 months ago
JSON representation
Let's you search things in Minecraft without caring about some graphemes
- Host: GitHub
- URL: https://github.com/imurx/localizedbrowser
- Owner: ImUrX
- License: apache-2.0
- Created: 2022-06-20T02:40:14.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-26T11:43:57.000Z (6 months ago)
- Last Synced: 2024-10-10T21:14:55.355Z (3 months ago)
- Language: Java
- Size: 380 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# Localized Browser
A mod that makes things nicer for people that don't talk english.Current features are:
* Base letter shows all possible graphemes with it
* If you use a grapheme it will only show items with that grapheme
* Advanced Japanese support (romaji, hiragana shows katakana stuff, kanji dictionary, and the features above do apply to japanese too)To-do:
* Pinyin support (chinese one, need to check if taiwan has something different)
* Romaja support (korean one)
* Check if more languages need romanization support or something like japanese.## Maven
### Fabric or Forge
I suggest using Modrinth as a repository. [Use this official tutorial on how to do it](https://docs.modrinth.com/docs/tutorials/maven/)
#### Fabric
```groovy
dependencies {
modImplementation "maven.modrinth:better-locale:VERSION-fabric"
}
```
#### Forge (ForgeGradle)
```groovy
dependencies {
implementation fg.deobf("maven.modrinth:better-locale:VERSION-forge")
}
```
### Architectury or similars
You can use Maven Central to implement only the common part of the mod by doing the following:
```groovy
repositories {
mavenCentral()
}
dependencies {
implementation "io.github.imurx.localizedbrowser:better-locale:VERSION"
}
```### Acknowledgements
* [**wanakana-kt**](https://github.com/esnaultdev/wanakana-kt): is a Kotlin port of [WaniKani/WanaKana](https://github.com/WaniKani/WanaKana)
* [**Kuromoji**](https://github.com/atilika/kuromoji/): is a Japanese morphological analyzer
* [![JProfiler](https://www.ej-technologies.com/images/product_banners/jprofiler_small.png) for the Java profiler they provided me!](https://www.ej-technologies.com/products/jprofiler/overview.html)