diff options
author | Struan Donald <struan@exo.org.uk> | 2012-09-26 13:56:58 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2012-09-26 13:56:58 +0100 |
commit | f57308caadc7e2ac6a1f74c02346b8e6ef88a95d (patch) | |
tree | a786aee3fddbb1e22e83fec24e7411df0ef03887 | |
parent | 632c4f876d9cb04daefdc6dbe00f7f4ea9ce85d9 (diff) |
deal with plurals
-rw-r--r-- | perllib/PoChange.pm | 2 |
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; } |