function confirmFireBrigade(language) {
    if ("de" == language) {
        confirmationText    = "Are you sure you want to report this post?";
    } else if ("fr" == language) {
        confirmationText    = "Are you sure you want to report this post?";
    } else {
        confirmationText    = "Are you sure you want to report this post?";
    }
    return confirm(confirmationText);
}