[Paulscriptsmods-checkin] ajax_shout/root/language/en/mods shout.php, NONE, 1.1.2.1
Status: Beta
Brought to you by:
paulsohier
From: Paul S. <pau...@us...> - 2007-06-08 21:35:58
|
Update of /cvsroot/paulscriptsmods/ajax_shout/root/language/en/mods In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26190/root/language/en/mods Added Files: Tag: phpbb3_ver shout.php Log Message: Lot of bug fixes. --- NEW FILE: shout.php --- <?php /** * * shout [English] * * @package language * @version $Id: shout.php,v 1.1.2.1 2007/06/08 21:35:52 paulsohier Exp $ * @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */ /** * DO NOT CHANGE */ if (empty($lang) || !is_array($lang)) { $lang = array(); } // DEVELOPERS PLEASE NOTE // // All language files should use UTF-8 as their encoding and the files must not contain a BOM. // // Placeholders can now contain order information, e.g. instead of // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows // translators to re-order the output of data while ensuring it remains correct // // You do not need this where single placeholders are used, e.g. 'Message %d' is fine // equally where a string contains only two placeholders which are used to wrap text // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine /** * NOTE: Most of the language items are used in javascript * If you want to use quotes or other chars that need escaped, be sure you escape them double * (Especially for ', you must use \\\' instead of \'. For " you only need to use \". */ /** * @TODO:Change this to uppercase things. */ $lang = array_merge($lang, array( 'missing_div' => 'The shoutbox div cann\\\'t be found.', 'loading' => 'Loading', 'post_message' => 'Post message', 'sending' => 'Sending message.', 'message_empty' => 'Message is empty.', 'invalid_xml' => 'The xml is invalid: tr/td without table', 'invalid_el' => 'Invalid element: ', 'xml_er' => 'XML error.', 'no_message' => 'There are no messages.', 'no_ajax' => 'No ajax', 'js_err' => 'There has been a JavaScript error. \nError:', 'line' => 'Line', 'file' => 'File', 'flood_error' => 'Flood error', 'posted' => 'Message posted.', //Added in 0.0.3 'no_quote' => 'Don\\\'t use list, quote or code bbcode.', 'smilies' => 'Smilies', 'del_shout' => 'Are you sure you want to delete this shout?', 'no_shout_id' => 'No shout id.', 'msg_del_done' => 'Message deleted', 'SHOUTBOX' => 'Shoutbox', )); ?> |