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