aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/amazon_s3.pm
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2009-07-23 00:43:28 +0200
committerJonas Smedegaard <dr@jones.dk>2009-07-23 00:43:28 +0200
commit8b7389b426a7a9833b0bd40dca285b746d81b5a1 (patch)
tree1b56a83af8b8f8f47d9a1aa3972949681a1d0cce /IkiWiki/Plugin/amazon_s3.pm
parentdc9e0f3e3279c42faf9dd1331d0e41afb3a3b4a3 (diff)
downloadikiwiki-8b7389b426a7a9833b0bd40dca285b746d81b5a1.tar
ikiwiki-8b7389b426a7a9833b0bd40dca285b746d81b5a1.tar.gz
Improve translatable texts to ease translation (e.g. to→into and from→inside)
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 10bf358e4..0482178ea 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 in",
+ description => "globally unique name of bucket to store wiki into",
safe => 1,
rebuild => 1,
},
@@ -133,7 +133,7 @@ sub getbucket {
}
if (! $bucket) {
- error(gettext("Failed to create bucket in S3: ").
+ error(gettext("Failed to create bucket inside S3: ").
$s3->err.": ".$s3->errstr."\n");
}
@@ -218,7 +218,7 @@ sub writefile ($$$;$$) {
}
}
if (! $res) {
- error(gettext("Failed to save file to S3: ").
+ error(gettext("Failed to save file into 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 from S3: ").
+ error(gettext("Failed to delete file inside S3: ").
$bucket->err.": ".$bucket->errstr."\n");
}
}