26 lines
820 B
PHP
26 lines
820 B
PHP
|
<?php
|
||
|
|
||
|
/*
|
||
|
* @copyright Copyright (C) 2005-2009 Keyboard Monkeys Ltd. http://www.kb-m.com
|
||
|
* @license http://creativecommons.org/licenses/BSD/ BSD License
|
||
|
* @author Keyboard Monkeys Ltd.
|
||
|
* @since Textroller 0.9
|
||
|
* @package TextRoller
|
||
|
* @packager Keyboard Monkeys
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* This class is never called. It's only a placeholder for form error messages wrapped in translate(),
|
||
|
* so that Poedit (or any other message catalogs editor) can catalog these messages for translation
|
||
|
*/
|
||
|
class ErrorMessages
|
||
|
{
|
||
|
private function _messages()
|
||
|
{
|
||
|
translate('Value is empty, but a non-empty value is required');
|
||
|
translate('\'%value%\' is not a valid email address in the basic format local-part@hostname');
|
||
|
translate('Captcha value is wrong');
|
||
|
translate('Password confirmation does not match');
|
||
|
}
|
||
|
}
|