Skip to content
Snippets Groups Projects
Commit 547a186f authored by Olivier PEREZ's avatar Olivier PEREZ
Browse files

Translate message 'This poll doesn't exist'

parent 8a0c8bd8
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
......@@ -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;
}
......
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment