Monogatari Documentation
HomepageGitHubDiscordTwitter
v1.4.1
v1.4.1
  • Getting Started
  • Configuration
    • Asset Preloading
    • Internationalization
    • Saving
    • Skip Main Menu
  • Design
    • CSS Classes
    • HTML Data Attributes
    • Icons
    • Image Menus
  • Port
    • Ren'py
  • Release
    • Chrome App
    • Desktop App
    • Mobile
    • Web
  • Script
    • Audio
    • Characters
    • Choices
    • Conditionals
    • Images
    • Input
    • JavaScript
    • Labels
    • Messages
    • Notifications
    • Particles
    • Scenes
    • Split Files
    • Storage
    • Text
    • Vibration
    • Video
    • Wait
  • Contribute
    • Translations
Powered by GitBook
On this page
  • Overview
  • Getting started

Was this helpful?

  1. Contribute

Translations

Translate Monogatari to other languages!

Overview

Apart from translating the game contents, Monogatari's UI can also be translated to multiple languages. If you are someone who knows a language different from English, your help on translating the project is more than welcome!

Getting started

The file containing all the translations is found at js/strings.js. In it, you'll find multiple JSON objects describing the translations for each string on its own language.

strings.js
"English": {
		"AdvanceHelp": "To advance through the game, press the space key or click.",
		"Audio": "Audio",
		"AutoPlay": "Auto",
		"AutoPlaySpeed": "Autoplay Speed",

		"Back": "Back",
		"BackButton": "Back.",

		"Cancel": "Cancel",
		"Close": "Close",
		"Confirm": "Do you want to quit?",

		"FullScreen": "Full Screen",

		"Help": "Help",
		"Hide": "Hide",
		"HideButton": "Hide Text.",

		"iOSAudioWarning": "Audio settings are not supported on iOS.",

		"Language": "Language",
		"Load": "Load",
		"LoadAutoSaveSlots": "Auto Saved Games",
		"LoadButton": "Open the Load Screen.",
		"Loading": "Loading",
		"LoadingMessage": "Wait while the assets are loaded.",
		"LoadSlots": "Saved Games",
		"LocalStorageWarning": "Local Storage is not available in this browser.",

		"Music": "Music Volume",

		"NoSavedGames": "No saved games.",
		"NoAutoSavedGames": "No automatically saved games.",

		"Overwrite": "Overwrite",

		"QuickButtons": "Quick Menu Buttons",
		"Quit": "Quit",
		"QuitButton": "Quit Game.",

		"Resolution": "Resolution",

		"Save": "Save",
		"SaveButon": "Open the Save Screen.",
		"SaveInSlot": "Save in slot",
		"Settings": "Settings",
		"SettingsButton": "Open the Settings Screen.",
		"Show": "Show",
		"SlotDeletion": "Are you sure you want to delete this slot?",
		"SlotOverwrite": "Are you sure you want to overwrite this slot?",
		"Sound": "Sound Volume",
		"Start": "Start",
		"Stop": "Stop",

		"TextSpeed": "Text Speed",

		"Voice": "Voice Volume",

		"Windowed": "Windowed"
},

To add a new language, simply copy one of these blocks and add your own translations!

PreviousWait

Last updated 5 years ago

Was this helpful?