✨ YAML based localization system for everyone!
npm install @hammerhq/localization
✨ YAML based localization system for everyone!
Get support »
Report Bug
·
Documentation
constants.yaml and apply to everything
bash
$ npm install @hammerhq/logger
`
🚀 Usage
`js
import { I18n } from "@hammerhq/localization";
/*
options:
directory?: string;
defaultLocale: string;
*/
const parser = new I18n({
defaultLocale: "en",
});
parser.getLocales(); // => [ "en", "tr" ];
parser.getConstant(); // => all constants;
parser.getConstant("owner"); // => "owner" constant;
parser.toJSON(); // => all language data in an object
parser.toJSON({ arg: "this is an argument" }); // => all language data in an object with argument replaced
parser.get("en", "info", "test"); // "test" string in "info" section in "en" folder
parser.get("tr", "messages", "message", { arg: "this is an argument" }); // "message" string in "messages" section in "tr" folder with "arg" argument
`
📝 File Structure
$3
`yaml
owner: barbarbar338
site: "https://hammer.338.rocks"
anotherConstant: this is a constant
`
$3
`yaml
withConstant: this string uses %{owner} constant
withArgs: this string uses %{argument} argument and %{anotherArgument} argument
withConstantsAndArguments: this string uses %{simpleArgument} argument and %{site} constant
`
📁 Folder Structure
`
📂 locales/
├─── 📝 constants.yaml
├─── 📂 en
│ ├─── 📝 info.yaml
│ ├─── 📝 messages.yaml
│ └─── 📝 test.yaml
└─── 📂 tr
├─── 📝 info.yaml
├─── 📝 messages.yaml
└─── 📝 test.yaml
`
🧦 Looking For Contributors
We are looking for contributors to actively work on Hammer and to contribute to the repos. There is still lots of work to do. If you are interested in contributing, please join our Discord server. (There will be a surprise for early contributors!)
🔑 License
Copyright © 2022 Barış DEMİRCİ.
Distributed under the GPL-3.0 License. See LICENSE for more information.
🧦 Contributing
This repo is open for #hacktoberfest. Feel free to use GitHub's features.
1. Fork the Project
2. Create your Feature Branch (git checkout -b feature/my-feature)
3. Run prettier (npm run format)
4. Commit your Changes (git commit -m 'my awesome feature my-feature')
5. Push to the Branch (git push origin feature/my-feature`)