1/**
2 * (c) Copyright by authors of the Tiki Wiki CMS Groupware Project
3 *
4 * All Rights Reserved. See copyright.txt for details and a complete list of authors.
5 * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details.
6 *
7 * Example custom JavaScript lang file for Tiki
8 *
9 * Rename to custom.js to deploy
10 *
11 * $Id$
12 */
13
14lang = $.extend(lang, {
15	"Favorite" : "My favourite!",
16	"Example in English" : "Translated text here"
17	// remember IE does not support ending comma on last item
18});
19
20