Initial translations support

Most of the app is now translatable, so put a POT file in git and make app use translations if available
This commit is contained in:
Rafał Dzięgiel
2021-08-25 11:23:43 +02:00
parent 8ca4c30beb
commit a1ce04edfa
7 changed files with 373 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ project('com.github.rafostar.Clapper', 'c', 'cpp',
]
)
i18n = import('i18n')
python = import('python')
python_bin = python.find_installation('python3')
@@ -22,6 +23,7 @@ endif
if get_option('clapper-player')
subdir('bin')
subdir('data')
subdir('po')
installdir = join_paths(get_option('prefix'), 'share', meson.project_name())
install_subdir('src', install_dir : installdir)