diff options
Diffstat (limited to 'perllib/FixMyStreet')
-rw-r--r-- | perllib/FixMyStreet/Cobrand/ArreglaMiBarrio.pm | 10 | ||||
-rw-r--r-- | perllib/FixMyStreet/Cobrand/FixMindelo.pm | 25 |
2 files changed, 0 insertions, 35 deletions
diff --git a/perllib/FixMyStreet/Cobrand/ArreglaMiBarrio.pm b/perllib/FixMyStreet/Cobrand/ArreglaMiBarrio.pm deleted file mode 100644 index cc393f42e..000000000 --- a/perllib/FixMyStreet/Cobrand/ArreglaMiBarrio.pm +++ /dev/null @@ -1,10 +0,0 @@ -package FixMyStreet::Cobrand::ArreglaMiBarrio; -use base 'FixMyStreet::Cobrand::Default'; - -use utf8; -use strict; -use warnings; - -sub language_override { 'es' } - -1; diff --git a/perllib/FixMyStreet/Cobrand/FixMindelo.pm b/perllib/FixMyStreet/Cobrand/FixMindelo.pm deleted file mode 100644 index 60f69d589..000000000 --- a/perllib/FixMyStreet/Cobrand/FixMindelo.pm +++ /dev/null @@ -1,25 +0,0 @@ -package FixMyStreet::Cobrand::FixMindelo; -use base 'FixMyStreet::Cobrand::Default'; - -use strict; -use warnings; - -sub country { - return 'CV'; -} - -sub languages { [ 'pt-cv,Portuguese,pt_CV' ] } -sub language_override { 'pt-cv' } - -sub disambiguate_location { - return { - country => 'cv', - bing_country => 'Cape Verde', - }; -} - -# let staff hide reports -sub users_can_hide { 1 } - -1; - |