https://github.com/wesnoth/steam-meta
Steam metadata for Wesnoth
https://github.com/wesnoth/steam-meta
translations wesnoth
Last synced: 8 months ago
JSON representation
Steam metadata for Wesnoth
- Host: GitHub
- URL: https://github.com/wesnoth/steam-meta
- Owner: wesnoth
- Created: 2018-04-15T08:45:43.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-04-17T20:54:28.000Z (over 1 year ago)
- Last Synced: 2024-12-29T23:22:20.049Z (10 months ago)
- Topics: translations, wesnoth
- Language: Makefile
- Size: 181 KB
- Stars: 1
- Watchers: 44
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
Awesome Lists containing this project
README
Wesnoth Steam Store i18n Kit
============================
This repository contains the Wesnoth Steam metadata files and the toolchain
required to localize them into other languages. You will need to have **GNU
gettext**, **GNU make**, **GNU sed**, **po4a**, and **dos2unix** installed
in order to build the metadata translations.
**Translators need not worry about building metadata themselves.** For more
information about the process used to add or update translations, see
`CONTRIBUTING.md`.
Dependencies
------------
Debian:
```
sudo apt-get install make po4a gettext dos2unix
```
Build instructions
------------------
```
# Do all of the tasks below (except clean and distclean) in a single step.
make
# Updates the catalogue template.
make update-pot
# Merges translation catalogues with the updated template.
make update-po
# Rebuilds translated text files from catalogues.
make update-txt
# Cleans files used to keep track of the build status, as well as any backups
# of translation catalogues left behind by po4a.
make clean
# Deletes translated text files. Only used for toolchain debugging.
make distclean
```