summaryrefslogtreecommitdiffstats
path: root/po/he.po
AgeCommit message (Collapse)AuthorFilesLines
2015-06-12Translation updates from TransifexLukas Fleischer1-17/+68
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
2015-06-08Translation updates from TransifexLukas Fleischer1-126/+99
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
2014-12-27Translation updates from TransifexLukas Fleischer1-46/+41
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2014-08-02Translation updates from TransifexLukas Fleischer1-10/+45
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2014-07-28Translation updates from TransifexLukas Fleischer1-17/+32
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2014-07-05Translation updates from TransifexLukas Fleischer1-20/+99
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2014-07-01Translation updates from TransifexLukas Fleischer1-11/+20
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2014-05-20Translation updates from TransifexLukas Fleischer1-86/+148
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2013-09-02Translation updates from TransifexLukas Fleischer1-27/+48
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2013-03-26Translation updates from TransifexLukas Fleischer1-6/+33
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2013-03-18Translation updates from TransifexLukas Fleischer1-15/+36
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2012-11-04Translation updates from TransifexLukas Fleischer1-342/+520
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2012-03-09Translation updates from TransifexLukas Fleischer1-21/+23
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2011-08-13Rebuild message catalog and translationsLukas Fleischer1-17/+23
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2011-08-13Translation updates from TransifexLukas Fleischer1-108/+37
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2011-04-10Update portable object files using `make update-po`.Lukas Fleischer1-396/+650
This ensures we have proper native portable objects instead of those created by sed(1)'ing the former translation files. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2011-04-10Add initial headers to portable object files.Lukas Fleischer1-0/+19
Those are just dummy headers created by ripping them off from "aur.pot" and changing the "Content-Type" charset to UTF-8. Needed to make msgmerge(1) operate on our converted ".po" files - otherwise it would fail to detect the files' encodings and do nothing but throw a pile of "invalid multibyte sequence" errors. Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2011-04-10Convert translation files to gettext compatible portable objects.Lukas Fleischer1-0/+630
Put new gettext compatible files into "po/" while keeping old translations in "web/lang/". Conversion was done using following hacky shell script: ---- for f in *.po; do # Remove "<?php" shebang and "global" statements. sed -i '1d; /^global/d' "$f" # Convert former translation strings into real PO statements. sed -i 's/^$_t\[\(.*\)\] = \(.*\);.*/msgid \1\nmsgstr \2/' "$f" # Ensure there always is an empty line after each msgstr. sed -i '/^msgstr/!b; n; /^$/!i\ ' "$f" done ---- Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>