reverted a few of the string changes
authorJoey Hess <joey@gnu.kitenet.net>
Thu, 23 Jul 2009 09:48:02 +0000 (11:48 +0200)
committerJoey Hess <joey@gnu.kitenet.net>
Thu, 23 Jul 2009 09:48:02 +0000 (11:48 +0200)
Improved one string.

IkiWiki/Plugin/amazon_s3.pm
IkiWiki/Plugin/orphans.pm

index 0482178eab3e4e5b61f2a2217722f53e79c70d61..3571c4189e43fe5b70e1032832a6978cded1af6b 100644 (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");
                        }
                }
index 7c938ef742da0b6793542151bcfd96465eef877b..944eba54123ba0a6adec21ae8ff90284521785f5 100644 (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 {