summaryrefslogtreecommitdiff
path: root/po/underlay.setup
blob: 3e6c125668d8e3629bb803c36aac76938b96db2c (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. 'da' => 'Dansk',
  13. },
  14. po_master_language => { 'code' => 'en', 'name' => 'English' },
  15. po_translatable_pages => "*",
  16. add_plugins => [qw{po}],
  17. wikiname => "ikiwiki",
  18. srcdir => "underlays",
  19. destdir => "html",
  20. templatedir => "templates",
  21. # we don't want to pull in the normal underlays
  22. underlaydirbase => "underlays/empty",
  23. underlaydir => "underlays/empty",
  24. discussion => 0,
  25. locale => '',
  26. verbose => 1,
  27. syslog => 0,
  28. }