Require Python 2.7, not 2.6
parent
f11f9c7bc7
commit
68fd619311
|
@ -1,6 +1,6 @@
|
|||
cmake_minimum_required(VERSION 2.8)
|
||||
|
||||
find_package(PythonInterp 2.6)
|
||||
find_package(PythonInterp 2.7)
|
||||
|
||||
if(NOT PYTHONINTERP_FOUND)
|
||||
message(WARNING "Python not found, help and level files will NOT be translated!")
|
||||
|
|
|
@ -5,7 +5,7 @@ is managed through translation files (`*.pot` and `*.po`) as those generated by
|
|||
[gettext](https://www.gnu.org/software/gettext/). This is achieved by
|
||||
a set of Python scripts using [polib library](https://pypi.python.org/pypi/polib).
|
||||
|
||||
The only requirement for generating translations is standard Python 2.6+ installation
|
||||
The only requirement for generating translations is standard Python 2.7+ installation
|
||||
(polib library is bundled with other script files). If you don't have Python
|
||||
installed, nothing is generated and only English files are installed.
|
||||
|
||||
|
|
Loading…
Reference in New Issue