| Line | |
|---|
| 1 | |
|---|
| 2 | # Declare a main target. |
|---|
| 3 | exe main : main.cpp ; |
|---|
| 4 | |
|---|
| 5 | # Declare an action for updating translations |
|---|
| 6 | # After changing main.cpp, invocation of |
|---|
| 7 | # |
|---|
| 8 | # bjam update-russian |
|---|
| 9 | # |
|---|
| 10 | # will update translations in russian.po |
|---|
| 11 | gettext.update update-russian : russian.po main ; |
|---|
| 12 | |
|---|
| 13 | # Compiled message catalog. |
|---|
| 14 | gettext.catalog russian : russian.po ; |
|---|
| 15 | |
|---|
| 16 | # A stage rule which installs message catalog to the |
|---|
| 17 | # location gettext expects. |
|---|
| 18 | stage messages-russian : russian |
|---|
| 19 | : <location>messages/ru_RU.KOI8-R/LC_MESSAGES |
|---|
| 20 | <name>main |
|---|
| 21 | ; |
|---|
| 22 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.