summaryrefslogtreecommitdiff
path: root/underlaypo.setup
blob: c0d503f49e1fa33da79b0ba979cf631fa600669c (plain)
  1. #!/usr/bin/perl
  2. # Configuration file for ikiwiki that uses the po plugin to build/update
  3. # po and pot files for pages in the underlays.
  4. use IkiWiki::Setup::Standard {
  5. # List here all languages that have translations.
  6. # Listing languages without active translations
  7. # will excessively bloat things.
  8. po_slave_languages => {
  9. #'fr' => 'Français',
  10. #'es' => 'Español',
  11. #'de' => 'Deutsch',
  12. },
  13. po_master_language => { 'code' => 'en', 'name' => 'English' },
  14. po_translatable_pages => "*",
  15. add_plugins => [qw{po}],
  16. wikiname => "ikiwiki",
  17. srcdir => "po/underlays",
  18. destdir => "po/html",
  19. templatedir => "templates",
  20. # we don't want to pull in the normal underlays
  21. underlaydirbase => "po/underlays",
  22. underlaydir => "po/underlays/basewiki",
  23. discussion => 0,
  24. locale => '',
  25. verbose => 1,
  26. syslog => 0,
  27. }