i10n auto.setup
[ikiwiki.git] / auto.setup
index 47d0d868f5de010af5c235827daf5ae376e9d68a..74879dbc51047fb66db08027cf02e9f8a2c1d737 100644 (file)
 require IkiWiki::Setup::Automator;
 
 our $wikiname=IkiWiki::Setup::Automator::ask(
-       "What will the wiki be named?", "wiki");
+       gettext("What will the wiki be named?"), gettext("wiki"));
 our $rcs=IkiWiki::Setup::Automator::ask(
-       "What revision control system to use?", "git");
+       gettext("What revision control system to use?"), "git");
 our $admin=IkiWiki::Setup::Automator::ask(
-       "What wiki user (or openid) will be wiki admin?", $ENV{USER});
+       gettext("What wiki user (or openid) will be wiki admin?"), $ENV{USER});
 use Net::Domain q{hostfqdn};
 our $domain=hostfqdn() || ikiwiki::setup::automator::ask(
-       "What is the domain name of the web server?", "");
+       gettext("What is the domain name of the web server?"), "");
 
 IkiWiki::Setup::Automator->import(
        wikiname => $wikiname,