aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Cobrand/FixMindelo.pm
blob: 59debf157cc2c0484eb3795482f0f2d7a77f0c72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package FixMyStreet::Cobrand::FixMindelo;
use base 'FixMyStreet::Cobrand::Default';

use strict;
use warnings;

sub country {
    return 'CV';
}

sub languages { [ 'pt-cv,Portuguese,pt_CV', 'en-gb,English,en_GB' ] }
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;