aboutsummaryrefslogtreecommitdiffstats
path: root/perllib/FixMyStreet/Cobrand/FixMindelo.pm
blob: fd3a55c6c4e2970e9c16f47cd891a32f8ab3cb57 (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
26
27
package FixMyStreet::Cobrand::FixMindelo;
use base 'FixMyStreet::Cobrand::Default';

use strict;
use warnings;

sub site_title { return 'FixMindelo'; }

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;