Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename mtt_update to mod_translation_updater #13952

Merged
merged 2 commits into from
Nov 5, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/lua_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -4006,9 +4006,9 @@ Translations
Texts can be translated client-side with the help of `minetest.translate` and
translation files.

Consider using the script `util/mtt_update.py` in the Minetest repository
to generate and update translation files automatically from the Lua sources.
See `util/README_mtt_update.md` for an explanation.
Consider using the script `util/mod_translation_updater.py` in the Minetest
repository to generate and update translation files automatically from the Lua
sources. See `util/README_mod_translation_updater.md` for an explanation.

Translating a string
--------------------
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# `mtt_update.py`—Minetest Translation Updater
# `mod_translation_updater.py`—Minetest Translation Updater
srifqi marked this conversation as resolved.
Show resolved Hide resolved

This Python script is intended for use with localized Minetest mods, i.e., mods that use
`*.tr` and contain translatable strings of the form `S("This string can be translated")`.
Expand Down Expand Up @@ -111,7 +111,7 @@ the locale files in an entire game.

It has the following command line options:

mtt_update.py [OPTIONS] [PATHS...]
mod_translation_updater.py [OPTIONS] [PATHS...]

--help, -h: prints this help message
--recursive, -r: run on all subfolders of paths given
Expand Down
File renamed without changes.