gstreamer/po
Tim-Philipp Müller 155a4b6da8 Update translations
2020-10-21 14:41:20 +01:00
..
.gitignore Ignore another file 2009-01-23 23:09:42 +00:00
af.po Update translations 2019-02-26 11:37:58 +00:00
ast.po Update translations 2019-02-26 11:37:58 +00:00
az.po Update translations 2019-02-26 11:37:58 +00:00
be.po Update translations 2019-02-26 11:37:58 +00:00
bg.po Update translations 2019-09-23 11:01:47 +01:00
ca.po Update translations 2019-02-26 11:37:58 +00:00
cs.po Update translations 2019-02-26 11:37:58 +00:00
da.po Update translations 2019-02-26 11:37:58 +00:00
de.po Update translations 2019-09-23 11:01:47 +01:00
el.po Update translations 2019-02-26 11:37:58 +00:00
en_GB.po Update translations 2019-02-26 11:37:58 +00:00
eo.po Update translations 2019-02-26 11:37:58 +00:00
es.po Update translations 2019-02-26 11:37:58 +00:00
eu.po Update translations 2019-02-26 11:37:58 +00:00
fi.po Update translations 2019-02-26 11:37:58 +00:00
fr.po Update translations 2020-10-21 14:41:20 +01:00
fur.po Update translations 2019-02-26 11:37:58 +00:00
gl.po Update translations 2019-02-26 11:37:58 +00:00
hr.po Update translations 2019-09-23 11:01:47 +01:00
hu.po Update translations 2019-12-03 10:57:29 +00:00
id.po Update translations 2019-02-26 11:37:58 +00:00
it.po Update translations 2019-02-26 11:37:58 +00:00
ja.po Update translations 2019-02-26 11:37:58 +00:00
LINGUAS po: Update translations 2017-04-27 15:21:26 +03:00
lt.po Update translations 2019-02-26 11:37:58 +00:00
Makevars po: set gettext domain in Makevars so we don't have to patch the generated Makefile.in.in 2013-12-22 21:58:03 +00:00
meson.build meson: po: use glib preset and read language list from LINGUAS 2017-07-15 12:40:28 +01:00
nb.po Update translations 2019-09-23 11:01:47 +01:00
nl.po Update translations 2019-02-26 11:37:58 +00:00
pl.po Update translations 2019-02-26 11:37:58 +00:00
POTFILES.in Remove old alloc tracing code now that we have a GstTracer-based replacement 2016-08-13 10:10:30 +01:00
POTFILES.skip po/POTFILES.*: Update POTFILES. Fixes #461599. 2007-08-05 14:48:06 +00:00
pt_BR.po Update translations 2020-10-21 14:41:20 +01:00
README docs: some 0.10 -> 1.0 changes 2012-10-02 13:22:35 +02:00
remove-potcdate.sin Files needed for build 2003-10-09 01:22:21 +00:00
ro.po Update translations 2020-10-21 14:41:20 +01:00
ru.po Update translations 2019-02-26 11:37:58 +00:00
rw.po Update translations 2019-02-26 11:37:58 +00:00
sk.po Update translations 2019-02-26 11:37:58 +00:00
sl.po Update translations 2019-02-26 11:37:58 +00:00
sq.po Update translations 2019-02-26 11:37:58 +00:00
sr.po Update translations 2020-10-21 14:41:20 +01:00
sv.po Update translations 2019-02-26 11:37:58 +00:00
tr.po Update translations 2019-09-23 11:01:47 +01:00
uk.po Update translations 2019-02-26 11:37:58 +00:00
vi.po Update translations 2019-02-26 11:37:58 +00:00
zh_CN.po Update translations 2019-04-19 00:15:19 +01:00
zh_TW.po Update translations 2019-02-26 11:37:58 +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-1.0.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-1.0.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