kicad patches
Go to file
Nick Østergaard 6b57e6fd6b Explain why we are not actiuve on transifex 2018-01-07 22:14:16 +01:00
bg Add Bulgarian translation. 2011-11-30 12:27:59 +01:00
ca Update Catalan translation 2017-09-21 11:11:59 +02:00
cs cs: update Czech translation 2017-05-21 15:21:11 +02:00
de Update german to master 2018-01-07 22:10:41 +01:00
el Greek translation update against source code commit 9ca3f632a2 2017-11-18 20:43:09 +02:00
en English: Update 2017-12-21 17:22:26 +01:00
es es updated to 12/11/2017 2017-12-11 09:55:45 +01:00
fi Updated finnish translation 2012-04-04 00:21:59 +03:00
fr Update French translation 2018-01-06 11:08:44 +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 Fixed typo and improved Italian translation 2018-01-07 16:50:13 +01:00
ja Update Japanese Translation 2018-01-01 14:33:37 +09:00
ko move internat into this repo 2010-04-16 09:06:22 -05:00
lt Translation in progress 2017-08-15 13:18:25 +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 Russian translation update. 2017-12-16 17:08:05 +02: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 Update kicad.po 2017-12-31 10:33:09 +01:00
zh_CN differential pair. 2017-09-01 10:39:06 +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 Add English "translation" 2017-08-10 15:05:39 +02:00
POTDIRS Use alphabetic order for POTDIRS 2017-08-10 15:05:39 +02:00
README.adoc Explain why we are not actiuve on transifex 2018-01-07 22:14:16 +01: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 Updated statistics script: deleted temp file 2017-12-30 03:46:18 +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.

== Why are we not using transifex or similar service
We would like to make it easier for people to help translate, but I
don't really know how to make transifex work in synergy with a
workflow where people can also update by working with the po files
here directly.