You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Nick Østergaard 4f450743f2 Add support for plotting stats from update script 9 years ago
bg Add Bulgarian translation. 14 years ago
ca Updated Catalan translation 10 years ago
cs Czech translation update 14 years ago
de de: update POT file after upstream changes 10 years ago
el Greek GUI translation against bzr 6941 9 years ago
es es: update to 6936 10 years ago
fi Updated finnish translation 14 years ago
fr Update French GUI translation against bzr 6885 10 years ago
hu move internat into this repo 16 years ago
id Renamed erroneous Indonesian dir and added language into the list of processed files 10 years ago
it Updated Italian translation 9 years ago
ja fix Japanese GUI translations 10 years ago
ko move internat into this repo 16 years ago
lt 2075 translated 10 years ago
nl move internat into this repo 16 years ago
pl Replace "trivial" translations with better ones 10 years ago
pt Doc update 15 years ago
ru ru: KiCad/kicad-source-mirror@5a00c78 9 years ago
sk French translation update 11 years ago
sl move internat into this repo 16 years ago
sv Updated swedish translation. 11 years ago
zh_CN 修改分支合并后格式错误提示,已经修改完毕。POEDIT不会报错。 10 years ago
.gitignore git忽略规则中添加.DS_Store 10 years ago
CMakeLists.txt Fix CMakeLists.txt In-source build error message format 10 years ago
LINGUAS Lithuanian translation added 10 years ago
POTDIRS Added global string update script 10 years ago
README.adoc README.adoc shell code visualization improvment 10 years ago
plot_i18n_status.py Add python script to plot translation statistics 9 years ago
update-po-files.sh Add support for plotting stats from update script 9 years ago

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.