kicad patches
Go to file
Marco Ciampa 032b640d82 Updated Italian translation 2019-01-30 20:42:57 +01:00
bg Update all to 5.0.0 2018-07-18 21:21:25 +02:00
ca Update all to 5.0.0 2018-07-18 21:21:25 +02:00
cs my last work 2018-09-20 12:00:03 +02:00
de de: update po file against KiCad master tree 2019-01-26 10:52:25 +01:00
el Update all to 5.0.0 2018-07-18 21:21:25 +02:00
en Update en "translation" 2019-01-14 10:32:27 +01:00
es Update all to 5.0.0 2018-07-18 21:21:25 +02:00
fi Update all to 5.0.0 2018-07-18 21:21:25 +02:00
fr Update French translation 2019-01-26 09:31:32 +01:00
hu hungarian language update 2018-08-06 15:19:54 +02:00
it Updated Italian translation 2019-01-30 20:42:57 +01:00
ja Update Japanese Translation 2019-01-22 11:12:20 +01:00
ko Update all to 5.0.0 2018-07-18 21:21:25 +02:00
lt Update all to 5.0.0 2018-07-18 21:21:25 +02:00
nl Update all to 5.0.0 2018-07-18 21:21:25 +02:00
pl Fix typo 2019-01-13 21:40:09 +01:00
pt Update Portuguese translation 2018-12-21 08:10:19 +01:00
ru Russian translation update. 2018-09-21 08:59:18 +02:00
sk Update all to 5.0.0 2018-07-18 21:21:25 +02:00
sl Update all to 5.0.0 2018-07-18 21:21:25 +02:00
sv Corretted encoding string of sv reported by Seth Hillbrand, fixes #315 2018-10-06 19:08:31 +02:00
zh_CN Update simplified Chinese translation 2019-01-01 11:30:22 +01:00
zh_TW Traditional Chinese :fix a incorrect translation. 2018-08-15 23:18:59 +02: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 Chinese traditional language in list 2018-08-27 15:56:42 +02:00
POTDIRS Remove deleted lib_dxf from POTDIRS 2019-01-14 10:31:45 +01:00
README.adoc Add suggestion on how to handle po file updates 2018-01-08 23:24:20 +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 Sort file list for xgettext 2018-06-05 16:09:17 +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.

== How to submit translations
No general details about translating po-files will be described here,
there are plenty of resources on the rest of the www. But a suggestion
on how to handle updates and translations will be provided.

When you start translating we need to make sure there is an updated
po-file. You can either ask someone to do push an update or do it
yourself with the `update-po-files.sh` script. You can add your
language code as the first argument to the script to only update that
single language.

When you did update the po-file, please make a commit with the
following text if you update the german language relative to the kicad
master branch:
```
Update german to master

ca264f898290158f60d4c9dcd55d0428b7fa7965
```

Here we included the language, branch and sha of the kicad source at
the time of updating.  Now make your translations and commit that and
push the pull request.

This is not mandatory, but it makes it easer for other people to
review your changes when we seperate the automatic update from the
human edits.


== 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.