kicad patches
Go to file
Kerusey Karyu 9a8f3756f6 Replace "trivial" translations with better ones
Two translated strings may confuse user when they selects track for
further operations. So I replaced them to make them clear.
2015-12-29 15:20:47 +01: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 de: Update whole translation to current version 2015-12-13 20:54:24 +01:00
el Minor corrections in Greek translation 2015-11-26 15:45:58 +02:00
es 92% Translated 2015-12-18 13:07:32 +01:00
fi Updated finnish translation 2012-04-04 00:21:59 +03:00
fr Update French GUI translation against rev bzr 6403 2015-12-23 13:07:46 +01: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 2015-12-22 15:08:10 +01:00
ja update Japanese for 4.0.0 by starfort-jp 2015-11-30 17:41:26 +09:00
ko move internat into this repo 2010-04-16 09:06:22 -05:00
lt 3369 string remaining 2015-11-22 01:01:19 +02: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@415c72262a 2015-12-27 11:44: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 Added to ignore .pot template files 2015-11-16 09:11:05 +01: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 Added global string update script 2015-11-02 18:10:07 +01:00
README.adoc README.adoc shell code visualization improvment 2015-09-26 11:29:28 +02:00
update-po-files.sh Added keep pot template option to script 2015-11-20 11:58:03 +01: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.