gstreamer/po
David Schleef d10158fcb5 configure.ac: Add test for allowing unaligned access. Add define to put in gstconfig.h.
Original commit message from CVS:
* configure.ac: Add test for allowing unaligned access.  Add define
to put in gstconfig.h.
* docs/gst/gstreamer-sections.txt: New symbols
* docs/gst/tmpl/gstcompat.sgml: Check in changes made by gtkdoc
* docs/gst/tmpl/gstfilesrc.sgml:
* docs/gst/tmpl/gstparse.sgml:
* docs/gst/tmpl/gsttypes.sgml:
* docs/gst/tmpl/gstutils.sgml:
* docs/gst/tmpl/gstvalue.sgml:
* gst/gstconfig.h.in: Add GST_HAVE_UNALIGNED_ACCESS
* gst/gstutils.h: Add macros for unaligned memory access.  Useful
on most !i386/!powerpc architectures.  From Daniel Gazard
<daniel.gazard@free.fr>.  (bug #140156)
* po/af.po: Check in changes made by gettext.
* po/az.po:
* po/fr.po:
* po/nl.po:
* po/sr.po:
* po/sv.po:
2004-04-20 00:17:26 +00:00
..
.gitignore ignore more files 2004-01-14 00:32:56 +00:00
af.po configure.ac: Add test for allowing unaligned access. Add define to put in gstconfig.h. 2004-04-20 00:17:26 +00:00
az.po configure.ac: Add test for allowing unaligned access. Add define to put in gstconfig.h. 2004-04-20 00:17:26 +00:00
fr.po configure.ac: Add test for allowing unaligned access. Add define to put in gstconfig.h. 2004-04-20 00:17:26 +00:00
LINGUAS adding ukrainian translation 2004-04-19 13:48:06 +00:00
Makevars adding i18n tested with nl, seems to work fine 2004-01-13 11:30:00 +00:00
nl.po configure.ac: Add test for allowing unaligned access. Add define to put in gstconfig.h. 2004-04-20 00:17:26 +00:00
POTFILES.in throw an error for mime types spider can't handle 2004-02-17 17:59:32 +00:00
README update nl transition add gst-launch to be translated 2004-01-13 13:44:10 +00:00
remove-potcdate.sin Files needed for build 2003-10-09 01:22:21 +00:00
sr.po configure.ac: Add test for allowing unaligned access. Add define to put in gstconfig.h. 2004-04-20 00:17:26 +00:00
sv.po configure.ac: Add test for allowing unaligned access. Add define to put in gstconfig.h. 2004-04-20 00:17:26 +00:00
tr.po adding turkish translation 2004-04-18 19:06:56 +00:00
uk.po adding ukrainian translation 2004-04-19 13:48:06 +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.7.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.7.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