kicad patches
Go to file
starfort-jp 5c0217aaa0 Update Japanese GUI
kicad.po - Follow up on 20151021.
c/w Eeschema ja.po
(Due to the unification of "ERC" naming.)
2015-10-22 05:22:19 +09:00
bg Add Bulgarian translation. 2011-11-30 12:27:59 +01:00
ca Patched Catalan po file, resolv bug #627303 by Martin Janitschke 2015-02-28 23:54:45 +01:00
cs Czech translation update 2011-08-15 11:33:35 +02:00
de German translation update. 2015-03-09 10:26:52 +01:00
el Greek translation update (based on Git-45a9b1c source) 2015-10-07 14:20:04 +03:00
es move internat into this repo 2010-04-16 09:06:22 -05:00
fi Updated finnish translation 2012-04-04 00:21:59 +03:00
fr French GUI translation against rev 6256 2015-10-08 19:57:56 +02:00
hu move internat into this repo 2010-04-16 09:06:22 -05:00
it Update Italian translation 2015-09-28 17:42:13 +02:00
ja Update Japanese GUI 2015-10-22 05:22:19 +09:00
ko move internat into this repo 2010-04-16 09:06:22 -05:00
nl move internat into this repo 2010-04-16 09:06:22 -05:00
pl Update Polish GUI translation related to lp:kicad rev.6232 2015-09-30 23:15:24 +02:00
pt Doc update 2011-02-17 19:52:38 +01:00
ru ru: KiCad/kicad-source-mirror@3596ef2d4c. Some polishing 2015-10-10 11:46:38 +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 move internat into this repo 2010-04-16 09:06:22 -05:00
.gitignore Add ignoring of building directories in src tree 2015-09-23 22:51:28 +03:00
CMakeLists.txt Fix CMakeLists.txt In-source build error message format 2015-09-20 20:35:56 +02:00
LINGUAS Fix LINGUAS difference to last commit 2015-09-19 14:28:23 +02:00
POTFILES.in Added first draft to list of translatable sources 2015-09-18 23:59:32 +02:00
README.adoc README.adoc shell code visualization improvment 2015-09-26 11:29:28 +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.