reverted a few of the string changes

Improved one string.
master
Joey Hess 2009-07-23 11:48:02 +02:00
parent 081febc156
commit e01badd3e7
2 changed files with 5 additions and 5 deletions

View File

@ -63,7 +63,7 @@ sub getsetup () {
amazon_s3_bucket => {
type => "string",
example => "mywiki",
description => "globally unique name of bucket to store wiki into",
description => "globally unique name of bucket to store wiki in",
safe => 1,
rebuild => 1,
},
@ -133,7 +133,7 @@ sub getbucket {
}
if (! $bucket) {
error(gettext("Failed to create bucket inside S3: ").
error(gettext("Failed to create S3 bucket: ").
$s3->err.": ".$s3->errstr."\n");
}
@ -218,7 +218,7 @@ sub writefile ($$$;$$) {
}
}
if (! $res) {
error(gettext("Failed to save file into S3: ").
error(gettext("Failed to save file to S3: ").
$bucket->err.": ".$bucket->errstr."\n");
}
}
@ -240,7 +240,7 @@ sub prune ($) {
foreach my $key (@keys) {
my $res=$bucket->delete_key($key);
if (! $res) {
error(gettext("Failed to delete file inside S3: ").
error(gettext("Failed to delete file from S3: ").
$bucket->err.": ".$bucket->errstr."\n");
}
}

View File

@ -49,7 +49,7 @@ sub preprocess (@) {
push @orphans, $page;
}
return gettext("All pages have other pages linking to them.") unless @orphans;
return gettext("All pages are linked to by other pages.") unless @orphans;
return "<ul>\n".
join("\n",
map {