kicad patches
Go to file
Marco Ciampa ff05cb5159 Updated Italian translation 2017-08-09 03:13:01 +02:00
bg Add Bulgarian translation. 2011-11-30 12:27:59 +01:00
ca Update Catalan translation 2017-03-08 13:01:59 +01:00
cs cs: update Czech translation 2017-05-21 15:21:11 +02:00
de de: update po file after upstream changes 2017-07-06 20:51:17 +02:00
el el: Greek translation update against source code commit e6de99cc86 2017-02-25 10:25:16 +02:00
es es update 2017-07-10 15:59:47 +02:00
fi Updated finnish translation 2012-04-04 00:21:59 +03:00
fr French translation: update and fix typo 2017-08-02 08:46:49 +02:00
hu move internat into this repo 2010-04-16 09:06:22 -05:00
id Renamed erroneous Indonesian dir and added language into the list of processed files 2015-11-01 10:25:05 +01:00
it Updated Italian translation 2017-08-09 03:13:01 +02:00
ja Fix some spelling variants in Japanese 2017-07-28 01:59:05 +09:00
ko move internat into this repo 2010-04-16 09:06:22 -05:00
lt 2075 translated 2016-05-08 21:13:18 +03:00
nl move internat into this repo 2010-04-16 09:06:22 -05:00
pl Replace "trivial" translations with better ones 2015-12-29 15:20:47 +01:00
pt Doc update 2011-02-17 19:52:38 +01:00
ru ru: KiCad/kicad-source-mirror@7bf9f8e1c 2017-08-05 10:16:14 +03:00
sk French translation update 2014-09-07 18:46:36 +02:00
sl move internat into this repo 2010-04-16 09:06:22 -05:00
sv Updated swedish translation. 2015-04-01 22:07:55 +02:00
zh_CN Fixed an error in Chinese translation 2017-07-24 14:57:45 +08:00
.gitignore Made git ignore translation status statistics output file 2016-08-02 18:46:19 +02:00
CMakeLists.txt Fix CMakeLists.txt In-source build error message format 2015-09-20 20:35:56 +02:00
LINGUAS Added Lithuanian i18n template po file 2015-11-02 12:49:38 +01:00
POTDIRS Remove the "new" folder 2016-08-07 10:11:30 +02:00
README.adoc README.adoc shell code visualization improvment 2015-09-26 11:29:28 +02:00
plot_i18n_status.py Fix bug: plot_i18n_status generate /bin/python: bad interpreter 2016-08-03 14:14:16 +03:00
update-po-files.sh Add argument for path to source 2016-08-02 18:26:52 +02:00

README.adoc

= 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
```sh
$ cd kicad-i18n
$ BUILD_SRC=$(pwd)
$ mkdir -p ~/tmp/kicad-i18n-build
$ cd ~/tmp/kicad-i18n-build
$ cmake ${BUILD_SRC}
$ make install
$ cd ..
$ rm -rf ~/tmp/kicad-i18n-build
```

If you want to change the default install prefix to match your KiCad
build, you can add `cmake` option for example use:
```
-DCMAKE_INSTALL_PREFIX=/usr
```

If you occurred some problems, use `cmake --trace -DCMAKE_VERBOSE_MAKEFILE=ON` instead `cmake` to
make build log more verbose, when you fill issue report.