use POSIX;
use Locale::gettext;
POSIX::setlocale(LC_MESSAGES, $language); # Set target language
textdomain("web"); # Usually the same as the application's name
sub _ { gettext(@_) } # it's just a shorthand for gettext()
print _("Sorry, this site is under construction.");