Topic: Change 'la' in title bar while verifying new add
Open page_verify.php and change
$html_title = stripslashes($jobs['title']) . ' la ' . stripslashes($jobs['company']) . ' / ' . SITE_NAME;into
$html_title = stripslashes($jobs['title']) . ' at ' . stripslashes($jobs['company']) . ' / ' . SITE_NAME;The best solution might be to change 'la' to {$translations.homepage.at}, but for my sake I have hardcoded it.
Good luck!