#!/bin/sh -e
# Author: Brian Murray <brian@canonical.com>
# Copyright (C) 2009 Canonical, Ltd.
# License: GPLv3

loc=$(dirname "$0")

comment="I noticed that some of the sentences in this bug report are not in English.  If they were translated to English they would be accessible to more triagers.  Could you please translate them?"

for b in "$@"; do
    "$loc"/update-bug --comment "$comment" $b || {
        echo "ERROR with LP: #$b" >&2
    }
done

