aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/amazon_s3.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-07-23 11:48:02 +0200
committerJoey Hess <joey@gnu.kitenet.net>2009-07-23 11:48:02 +0200
commite01badd3e7034dde6b1287b640cd7806b7aea59f (patch)
tree1f84750a6b065c48fc03d3ac1f6a7aeff7afd823 /IkiWiki/Plugin/amazon_s3.pm
parent081febc156c096c9cba93316ed8db40b049159f9 (diff)
downloadikiwiki-e01badd3e7034dde6b1287b640cd7806b7aea59f.tar
ikiwiki-e01badd3e7034dde6b1287b640cd7806b7aea59f.tar.gz
reverted a few of the string changes
Improved one string.
Diffstat (limited to 'IkiWiki/Plugin/amazon_s3.pm')
-rw-r--r--IkiWiki/Plugin/amazon_s3.pm8
1 files changed, 4 insertions, 4 deletions
diff --git a/IkiWiki/Plugin/amazon_s3.pm b/IkiWiki/Plugin/amazon_s3.pm
index 0482178ea..3571c4189 100644
--- a/IkiWiki/Plugin/amazon_s3.pm
+++ b/IkiWiki/Plugin/amazon_s3.pm
@@ -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");
}
}