aboutsummaryrefslogtreecommitdiff
path: root/auto.setup
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-08-21 22:49:50 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-08-21 22:49:50 -0400
commite910acfbc91a6132b82bf4f33b19574d61da3169 (patch)
tree06a13ff899328bb866c1dcefe0b518fbcb05aa8c /auto.setup
parent888f4203f5a228005a15b70f962b7e7f16de9ad3 (diff)
downloadikiwiki-e910acfbc91a6132b82bf4f33b19574d61da3169.tar
ikiwiki-e910acfbc91a6132b82bf4f33b19574d61da3169.tar.gz
i10n auto.setup
Diffstat (limited to 'auto.setup')
-rw-r--r--auto.setup8
1 files changed, 4 insertions, 4 deletions
diff --git a/auto.setup b/auto.setup
index 47d0d868f..74879dbc5 100644
--- a/auto.setup
+++ b/auto.setup
@@ -13,14 +13,14 @@
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,