gstreamer/po
2012-03-22 16:05:06 +01:00
..
.gitignore Ignore another file 2009-01-23 23:09:42 +00:00
af.po Release 0.11.3 2012-03-22 16:05:06 +01:00
az.po Release 0.11.3 2012-03-22 16:05:06 +01:00
be.po Release 0.11.3 2012-03-22 16:05:06 +01:00
bg.po Release 0.11.3 2012-03-22 16:05:06 +01:00
ca.po Release 0.11.3 2012-03-22 16:05:06 +01:00
cs.po Release 0.11.3 2012-03-22 16:05:06 +01:00
da.po Release 0.11.3 2012-03-22 16:05:06 +01:00
de.po Release 0.11.3 2012-03-22 16:05:06 +01:00
el.po Release 0.11.3 2012-03-22 16:05:06 +01:00
en_GB.po Release 0.11.3 2012-03-22 16:05:06 +01:00
eo.po Release 0.11.3 2012-03-22 16:05:06 +01:00
es.po Release 0.11.3 2012-03-22 16:05:06 +01:00
eu.po Release 0.11.3 2012-03-22 16:05:06 +01:00
fi.po Release 0.11.3 2012-03-22 16:05:06 +01:00
fr.po Release 0.11.3 2012-03-22 16:05:06 +01:00
gl.po Release 0.11.3 2012-03-22 16:05:06 +01:00
hu.po Release 0.11.3 2012-03-22 16:05:06 +01:00
id.po Release 0.11.3 2012-03-22 16:05:06 +01:00
it.po Release 0.11.3 2012-03-22 16:05:06 +01:00
ja.po Release 0.11.3 2012-03-22 16:05:06 +01:00
LINGUAS po: update translations 2011-12-11 17:14:32 +00:00
lt.po Release 0.11.3 2012-03-22 16:05:06 +01:00
Makevars po: Don't create backup .po files 2009-10-15 16:36:17 +01:00
nb.po Release 0.11.3 2012-03-22 16:05:06 +01:00
nl.po Release 0.11.3 2012-03-22 16:05:06 +01:00
pl.po Release 0.11.3 2012-03-22 16:05:06 +01:00
POTFILES.in po: queue2 has moved to core 2009-10-31 09:48:19 +01:00
POTFILES.skip po/POTFILES.*: Update POTFILES. Fixes #461599. 2007-08-05 14:48:06 +00:00
pt_BR.po Release 0.11.3 2012-03-22 16:05:06 +01: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
ro.po Release 0.11.3 2012-03-22 16:05:06 +01:00
ru.po Release 0.11.3 2012-03-22 16:05:06 +01:00
rw.po Release 0.11.3 2012-03-22 16:05:06 +01:00
sk.po Release 0.11.3 2012-03-22 16:05:06 +01:00
sl.po Release 0.11.3 2012-03-22 16:05:06 +01:00
sq.po Release 0.11.3 2012-03-22 16:05:06 +01:00
sr.po Release 0.11.3 2012-03-22 16:05:06 +01:00
sv.po Release 0.11.3 2012-03-22 16:05:06 +01:00
tr.po Release 0.11.3 2012-03-22 16:05:06 +01:00
uk.po Release 0.11.3 2012-03-22 16:05:06 +01:00
vi.po Release 0.11.3 2012-03-22 16:05:06 +01:00
zh_CN.po Release 0.11.3 2012-03-22 16:05:06 +01:00
zh_TW.po Release 0.11.3 2012-03-22 16:05:06 +01: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