public

Rpg Maker Developers Group

Simple enough for a child, powerful enough for a developer

2 Followers

MZODW - Multi-Language System Plugin

BMM Archive · July 15, 2026

Preserved forum archive. This topic stores the original first post and locally mirrored RPG Maker Web attachments when available. It is posted by the BMMPlay archive account, not by the original creator.

Original Source

  • Original title: ODW - Multi-Language System Plugin
  • Original author: r66r
  • Original date: October 21, 2021
  • Source thread: https://forums.rpgmakerweb.com/threads/odw-multi-language-system-plugin.141442/
  • Source forum path: Game Development Engines > RPG Maker Javascript Plugins > JS Plugin Releases (RMMZ)

Summary

Multi-Language System Plugin v1.1.0 by Open Digital World​ Introduction This plugin lets you translate game texts to suit your needs. Texts are simply written in JSON files, grouped in language-specific folders. It is also possible to configure fonts specifically for each language. The active language can be selected from the game options window.

Archived First Post


Multi-Language System Plugin v1.1.0
by Open Digital World

Introduction

This plugin lets you translate game texts to suit your needs. Texts are simply written in JSON files, grouped in language-specific folders. It is also possible to configure fonts specifically for each language. The active language can be selected from the game options window.

NOTE: This plugin is a full rewritten and extended version of the Ignis Text Database plugin by Raizen. Also inspired by some features present in the DKTools Localization plugin by DK.

Features
  • Adds an option to choose the game language.
  • Adds the possibility of having a specific font per language.
  • Translates almost all database and event command texts, including hard-coded texts in RPG Maker MZ code (see comments here).
  • Offers ready-to-use patches for Galv and VisuStella plugins.
During a game, go to the options to change the language by pressing or simply clicking on the language option. Texts will be translated instantly.

How to use

1. Install and configure your plugin. Please note that the first language in the "Languages" settings list will be the default language of the game. You can reorder them as you want in the option box.

2. Place the font files for your languages in the "fonts" folder at the root of your game project:
Code:
RMMZ Project Folder
   |_ Fonts Folder
      |_ Font 0.woff
      |_ Font 1.woff

3. Create the language folders and files according to your plugin settings, as follows (folder and file names are case sensitive):

Code:
RMMZ Project Folder
   |_ Root Folder
      |_ Language Folder => Language [0]
         |_ Language File [0].json
         |_ Language File [1].json
         |_ ...
      |_ Language Folder => Language [1]
         |_ Language File [0].json
         |_ Language File [1].json
         |_ ...

4. Develop your game, and for each text you want to translate, make sure you follow the correct syntax below:

=> In a text field of the RMMZ editor (database, message, plugin settings):

${text code}

=> In a language file (JSON syntax):

"text code": "text to display"

=> To use the the control characters in translated texts (like color, icon, variable, ...), double escape them like this in the "text to display":

\C[0] -> \\C[0] or \V[1] -> \\V[1] or \. -> \\.

=> You can also nest translated texts like this in the "text to display":

"Text1": "an example",
"Text2": "My text 1 is ${Text1}."

-> Displayed result = My text is an example.

5. During a game play, you can change the current active language in the game option window.

See also README.md for more information about settings, commands, ...

Terms of use

This plugin is published under the MIT License.

Special thanks

Thanks to @Raizen for allowing me to extend his plugin and to publish a completely reworked version.



Download Link
ODW_MultiLanguageSystem.js (itch.io)


ODW_MultiLanguageSystem_1.png
ODW_MultiLanguageSystem_2.png
ODW_MultiLanguageSystem_3.png
ODW_MultiLanguageSystem_4.png
ODW_MultiLanguageSystem_5.png
ODW_MultiLanguageSystem_6.png
ODW_MultiLanguageSystem_7.png
ODW_MultiLanguageSystem_EN.gif
ODW_MultiLanguageSystem_FR.gif
mls-fonts.gif

v1.0.0 - 21.10.2021
  • Initial release.
v1.0.1 - 19.09.2022
  • Fixed a processing bug when the text has the ${} pattern twice or more.
v1.0.2 - 03.08.2023
  • Fixed a syntax error in the $.updateIndex() function.
v1.0.3 - 07.09.2023
  • Rewrite the text database load process.
v1.0.4 - 19.11.2023
  • Revert the changes made in v1.0.3, to load the text database later in the game boot process.
v1.1.0 - 25.05.2024
  • Improved the documentation.
  • Improved the code for parsing language settings.
  • Added new font settings per language.
  • Added a new global parameter to display/hide the error log in the console.
  • Removed the $.getCodes() and $.getLabels() functions.
  • Removed the $._isDatabaseLoaded property and $.isDatabaseLoaded() function.
  • Removed the compatibility code for VisuStellaMZ plugins (replaced by a patch).
  • Created patch for Galv MZ plugins.
  • Created patch for VisuStella MZ plugins.

Features Mentioned

  • Adds an option to choose the game language.
  • Adds the possibility of having a specific font per language.
  • Translates almost all database and event command texts, including hard-coded texts in RPG Maker MZ code (see comments here).
  • Offers ready-to-use patches for Galv and VisuStella plugins.
  • During a game, go to the options to change the language by pressing or simply clicking on the language option. Texts will be translated instantly.

Downloads / Referenced Files

Log in to download

Log in, then follow the RPG Maker Developers Group to see these download links.

Log in to download

License / Terms Note

Terms of use This plugin is published under the MIT License. Special thanks Thanks to @Raizen for allowing me to extend his plugin and to publish a completely reworked version.

Creator Claims / Removal

If you are the original creator and want this listing reassigned, edited, or removed, join BMMPlay and contact the moderators with proof that matches the original RPG Maker Web profile, linked GitHub, itch.io page, or another public creator identity.

#rmmz#plugin-archive

Replies (0)

No replies yet.

0 replies 1 view

Log in to reply.

User Avatar