gstreamer/po
Thomas Vander Stichele e281264078 updated translations
Original commit message from CVS:
updated translations
2007-09-22 17:22:10 +00:00
..
.gitignore ignore more files 2004-01-14 00:32:56 +00:00
af.po Update .po files 2007-08-03 13:20:50 +00:00
az.po Update .po files 2007-08-03 13:20:50 +00:00
be.po docs/random/release: The release manager should run 'make download-po' before making a release to make sure translati... 2007-08-20 12:31:54 +00:00
bg.po Update .po files 2007-08-03 13:20:50 +00:00
ca.po Update .po files 2007-08-03 13:20:50 +00:00
cs.po updated translations 2007-09-22 17:22:10 +00:00
da.po Update .po files 2007-08-03 13:20:50 +00:00
de.po Update .po files 2007-08-03 13:20:50 +00:00
en_GB.po Update .po files 2007-08-03 13:20:50 +00:00
es.po po/: Added Spanish translation. 2007-09-22 17:18:52 +00:00
fi.po po/: Updated translations. 2007-08-09 10:48:53 +00:00
fr.po Update .po files 2007-08-03 13:20:50 +00:00
hu.po updated translations 2007-09-22 17:22:10 +00:00
it.po po/: Updated translations. 2007-08-09 10:48:53 +00:00
LINGUAS po/: Added Spanish translation. 2007-09-22 17:18:52 +00:00
Makevars adding i18n tested with nl, seems to work fine 2004-01-13 11:30:00 +00:00
nb.po Update .po files 2007-08-03 13:20:50 +00:00
nl.po po/: Updated translations. 2007-08-09 10:48:53 +00:00
pl.po docs/random/release: The release manager should run 'make download-po' before making a release to make sure translati... 2007-08-20 12:31:54 +00:00
POTFILES.in po/POTFILES.*: Update POTFILES. Fixes #461599. 2007-08-05 14:48:06 +00:00
POTFILES.skip po/POTFILES.*: Update POTFILES. Fixes #461599. 2007-08-05 14:48:06 +00:00
README docs/: add new API entries to the docs 2006-01-13 14:21:48 +00:00
remove-potcdate.sin Files needed for build 2003-10-09 01:22:21 +00:00
ru.po Update .po files 2007-08-03 13:20:50 +00:00
rw.po docs/random/release: The release manager should run 'make download-po' before making a release to make sure translati... 2007-08-20 12:31:54 +00:00
sq.po Update .po files 2007-08-03 13:20:50 +00:00
sr.po Update .po files 2007-08-03 13:20:50 +00:00
sv.po po/: Updated translations. 2007-08-09 10:48:53 +00:00
tr.po Update .po files 2007-08-03 13:20:50 +00:00
uk.po updated translations 2007-09-22 17:22:10 +00:00
vi.po Update .po files 2007-08-03 13:20:50 +00:00
zh_CN.po Update .po files 2007-08-03 13:20:50 +00:00
zh_TW.po Update .po files 2007-08-03 13:20:50 +00:00

The idiot's guide to managing this directory

Q: How do I add source files to be translated ? 
A: - Make sure the source file includes either gst-i18n-lib.h (if it's a part
     of a library/plugin) or gst-i18n-app.h (if it's an application)
   - Add the file path, relative to the top of the module, to POTFILES.in

Q: How do I add/mark strings to be translated ?
A: - Use N_(...) to mark for translation.
   - Use _(...) to get a translated string
   - run "make gstreamer-0.10.pot-update" to update the .pot file
     and check if your new strings got added

Q: How do I add a language ?
A: - copy gstreamer-0.10.pot to your new language.po
   - add the language code to LINGUAS
   - edit the header of this language.po file and make it match one of
     the existing .po files
   - translate the strings

Q: How do I update a language ?
A: - run make language.po-update to update your .po file
     (replace language with your language code)
   - edit the .po file, and translate the untranslated strings
   - run make install from the .po dir (so the updated strings get installed
     and will be used in the lib/app) and test if the new strings are
     translated
     (To check, you need to export LANG=ll_LL.  Make sure you add the last
      bit; ie. for Dutch you need export LANG=nl_NL)
   - commit