Translate message 'This poll doesn't exist'

This commit is contained in:
Olivier PEREZ 2015-02-02 21:00:42 +01:00
parent 8a0c8bd8d3
commit 547a186f60
3 changed files with 3 additions and 3 deletions

View File

@ -52,7 +52,7 @@ if (!empty($_GET['poll']) && strlen($_GET['poll']) === 24) {
}
if (!$poll) {
$smarty->assign('error', 'This poll doesn\'t exist');
$smarty->assign('error', _('This poll doesn\'t exist !'));
$smarty->display('error.tpl');
exit;
}

View File

@ -48,7 +48,7 @@ if (!empty($_GET['poll'])) {
}
if (!$poll) {
$smarty->assign('error', 'This poll doesn\'t exist');
$smarty->assign('error', _('This poll doesn\'t exist !'));
$smarty->display('error.tpl');
exit;
}

View File

@ -97,7 +97,7 @@ if (!empty($_GET['poll'])) {
}
if (!$poll) {
$smarty->assign('error', 'This poll doesn\'t exist');
$smarty->assign('error', _('This poll doesn\'t exist !'));
$smarty->display('error.tpl');
exit;
}