mewwme-localpride
TypeScript icon, indicating that this package has built-in type declarations

2.2.4 • Public • Published

✨ YAML based localpride system for everyone!
Get support »

Report Bug

mewwme-localpride

  • This is a YAML based localisation system that will make your job quite easy
  • Just create your language folder and seperate everything in files
  • Set your constants in constants.yaml and apply to everything

📦 Installation

$ npm install mewwme-localpride

🚀 Usage

import { I18n } from "mewwme-localpride";

/*
    options:
        directory?: string;
        defaultLocale: string;
*/
const parser = new I18n({
	defaultLocale: "en",
});

parser.getLocales(); // => [ "en", "id" ];
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("id", "messages", "message", { arg: "this is an argument" }); // "message" string in "messages" section in "id" folder with "arg" argument

📝 File Structure

locales/constants.yaml example

owner: lrmn7
site: "https://is-a.fun"
anotherConstant: this is a constant

locales/{locale}/{section}.yaml example

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
└─── 📂 id
     ├─── 📝 info.yaml
     ├─── 📝 messages.yaml
     └─── 📝 test.yaml

🧦 Looking For Contributors

We are looking for contributors to actively work on Mewwme 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 lrmn7.

Distributed under the GPL-3.0 License. See LICENSE for more information.

🧦 Contributing

  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)
  6. Open a Pull Request

⭐️ Show your support

Give a ⭐️ if this project helped you!

☎️ Contact

Package Sidebar

Install

npm i mewwme-localpride

Weekly Downloads

2

Version

2.2.4

License

GPL-3.0

Unpacked Size

43 kB

Total Files

6

Last publish

Collaborators

  • lrmn7