2015-09-18 17:03:41 +00:00
|
|
|
= KiCad GUI translations
|
|
|
|
|
|
|
|
This is the repository for the po files that is used for the GUI
|
|
|
|
translations for KiCad.
|
|
|
|
|
|
|
|
It is cmake equipped to conform with the rest of the installation
|
|
|
|
principles for KiCad.
|
|
|
|
|
|
|
|
== Depends
|
|
|
|
- Cmake
|
|
|
|
- Gettext
|
|
|
|
|
|
|
|
== How to install
|
2015-09-26 09:29:28 +00:00
|
|
|
```sh
|
2015-09-20 11:56:19 +00:00
|
|
|
$ cd kicad-i18n
|
2015-09-20 13:25:54 +00:00
|
|
|
$ BUILD_SRC=$(pwd)
|
2015-09-20 11:56:19 +00:00
|
|
|
$ mkdir -p ~/tmp/kicad-i18n-build
|
|
|
|
$ cd ~/tmp/kicad-i18n-build
|
2015-09-20 13:25:54 +00:00
|
|
|
$ cmake ${BUILD_SRC}
|
2015-09-20 11:56:19 +00:00
|
|
|
$ make install
|
2015-09-20 12:04:54 +00:00
|
|
|
$ cd ..
|
|
|
|
$ rm -rf ~/tmp/kicad-i18n-build
|
2015-09-18 17:03:41 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
If you want to change the default install prefix to match your KiCad
|
2015-09-20 13:29:03 +00:00
|
|
|
build, you can add `cmake` option for example use:
|
2015-09-20 12:00:02 +00:00
|
|
|
```
|
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr
|
|
|
|
```
|
2015-09-20 11:56:19 +00:00
|
|
|
|
2015-09-21 08:15:45 +00:00
|
|
|
If you occurred some problems, use `cmake --trace -DCMAKE_VERBOSE_MAKEFILE=ON` instead `cmake` to
|
2015-09-20 11:56:19 +00:00
|
|
|
make build log more verbose, when you fill issue report.
|