Commit graph

13 commits

Author SHA1 Message Date
Lukas Fleischer
e071b94b8b Translation updates from Transifex
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2014-07-05 15:16:15 +02:00
Lukas Fleischer
0baca92944 Translation updates from Transifex
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2014-07-01 21:35:05 +02:00
Lukas Fleischer
6cbcff1ad7 Translation updates from Transifex
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2014-05-20 22:01:37 +02:00
Lukas Fleischer
f69facc9c9 Translation updates from Transifex
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2013-09-02 13:25:46 +02:00
Lukas Fleischer
504747e106 Translation updates from Transifex
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2013-03-26 07:27:47 +01:00
Lukas Fleischer
22e8fce04e Translation updates from Transifex
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2013-03-18 19:54:23 +01:00
Lukas Fleischer
b3dd31bf17 Translation updates from Transifex
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2012-11-04 11:12:04 +01:00
Lukas Fleischer
89fb3d4500 Translation updates from Transifex
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2012-03-09 08:11:52 +01:00
Lukas Fleischer
90063d7b98 Rebuild message catalog and translations
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2011-08-13 12:53:40 +02:00
Lukas Fleischer
0167e1d7a3 Translation updates from Transifex
Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
2011-08-13 12:42:32 +02:00
Lukas Fleischer
7364625510 Update portable object files using make update-po.
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-10 16:27:46 +02:00
Lukas Fleischer
7979864be3 Add initial headers to portable object files.
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-10 16:27:45 +02:00
Lukas Fleischer
758b7bf054 Convert translation files to gettext compatible portable objects.
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>
2011-04-10 15:40:48 +02:00