summaryrefslogtreecommitdiff
path: root/README
blob: 3aa53f2bf5a27b2e7a311d7bebdd62144cc135cd (plain)
  1. Ikiwiki w/ translations
  2. =======================
  3. Ikiwiki[1] is a perl-based wiki compiler.
  4. This is routines to manage translatable parts of Ikiwiki and translations into
  5. the following locales:
  6. * danish (da) by Jonas Smedegaard <dr@jones.dk>
  7. Getting the source
  8. ------------------
  9. This README file and related scripts are available at http://source.jones.dk/
  10. as a GIT repository. Pull it like this:
  11. git clone http://source.jones.dk/ikiwiki.git
  12. Installation
  13. ------------
  14. To pull in all translatable and translated parts, do this:
  15. make
  16. To pull in all parts with write access to the repository, do something like
  17. this:
  18. make origin_ikiwiki='login@example.com:path/to/repositories/ikiwiki_MODULE.git'
  19. To remove all translatable and translated parts, and anything else below those
  20. directories without warning, do this:
  21. make ultraclean
  22. Customizing
  23. -----------
  24. To publish your own forked repository through web, you first need to create a
  25. special public repository that you "push" your changes into from your private
  26. working repository - like this:
  27. GIT_DIR=public_dir/repository_name.git git --bare init --shared
  28. chmod +x public_dir/repository_name.git/hooks/post-update
  29. To actually use your newly created public repository created above, you need to
  30. populate it with your current working repository (the --all option is only this
  31. once, not on subsequent pushes) - like this:
  32. git config remote.origin.url git-reference-to-public-repository
  33. git push --all
  34. To resyncronize an older fork of the repository with newer upstream changes, do
  35. like this (skip first command on subsequent updates):
  36. git remote add ikiwiki http://source.jones.dk/ikiwiki.git
  37. git pull ikiwiki master
  38. Translation
  39. -----------
  40. Some modules (markdown files - template files are not yet supported by po4a) is
  41. translatable through the gettext system using PO files.
  42. To update PO templates for all modules marked as supporting gettext, do this:
  43. make pot
  44. To update PO files for all supported locales of all supported modules, do this:
  45. make po
  46. To update all gettext-supported modules based on newer PO files, do this:
  47. make translations
  48. To initialize new locales, do like this (all on one line):
  49. make po po-init-modules="module1 module2" po-init-locales="da sv no"
  50. If you want to initialize based on an existing locale rather than the master,
  51. add the origin locale to the above make command similar to this:
  52. make po [...] po-init-fromlocale=de
  53. To add new modules and locales as gettext supported, add them to *_POMODULES
  54. and *_POLOCALES. Keep them alse in *_MODULES and *_LOCALES to support pulling
  55. final translations without recreating from PO files.
  56. Please beware that the automated po4a process is not perfected yet, so check
  57. the result before use.
  58. ----
  59. References:
  60. [1] http://ikiwiki.info/