aboutsummaryrefslogtreecommitdiff
path: root/basewikipo.setup
blob: 11197472752e02921ae93c5664e1be354076292a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/perl
# Configuration file for ikiwiki that uses the po plugin to build/update
# po files for pages in the base wiki.

use IkiWiki::Setup::Standard {
	wikiname => "ikiwiki",
	srcdir => "po/underlays",
	destdir => "po/html",
	templatedir => "templates",
	# we don't want to pull in the normal underlays
	underlaydirbase => "po/underlays",
	underlaydir => "po/underlays/basewiki",
	discussion => 0,
	locale => '',
	verbose => 1,
	syslog => 0,
	add_plugins => [qw{po}],
	po_master_language => { 'code' => 'en', 'name' => 'English' },
	# List here all languages for which someone is working on
	# translating the base wiki. Listing languages that are not
	# being actively worked on will excessively bloat things.
        po_slave_languages => {
		#'fr' => 'Français',
                #'es' => 'Español',
                #'de' => 'Deutsch',
        },
	po_translatable_pages => "*",
}