aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStruan Donald <struan@exo.org.uk>2012-09-26 13:56:58 +0100
committerStruan Donald <struan@exo.org.uk>2012-09-26 13:56:58 +0100
commitf57308caadc7e2ac6a1f74c02346b8e6ef88a95d (patch)
treea786aee3fddbb1e22e83fec24e7411df0ef03887
parent632c4f876d9cb04daefdc6dbe00f7f4ea9ce85d9 (diff)
deal with plurals
-rw-r--r--perllib/PoChange.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/perllib/PoChange.pm b/perllib/PoChange.pm
index 9bf18ae27..06b78fa3f 100644
--- a/perllib/PoChange.pm
+++ b/perllib/PoChange.pm
@@ -54,6 +54,8 @@ sub fixmystreet_to_fixmybarangay($) {
$s =~ s/FixMyStreet/FixMyBarangay/g;
$s =~ s/\bcouncil\b/barangay/g;
$s =~ s/\bCouncil\b/Barangay/g;
+ $s =~ s/\bcouncils\b/barangays/g;
+ $s =~ s/\bCouncils\b/Barangays/g;
return $s;
}