[Phpfreechat-svn] SF.net SVN: phpfreechat: [1061] trunk/data/public/js/pfcresource.js
Status: Beta
Brought to you by:
kerphi
From: <ke...@us...> - 2007-07-30 13:12:27
|
Revision: 1061 http://phpfreechat.svn.sourceforge.net/phpfreechat/?rev=1061&view=rev Author: kerphi Date: 2007-07-30 06:12:30 -0700 (Mon, 30 Jul 2007) Log Message: ----------- when the translation is not available, just display the initial string (key) arrounded with underscores (_) Modified Paths: -------------- trunk/data/public/js/pfcresource.js Modified: trunk/data/public/js/pfcresource.js =================================================================== --- trunk/data/public/js/pfcresource.js 2007-07-30 12:30:22 UTC (rev 1060) +++ trunk/data/public/js/pfcresource.js 2007-07-30 13:12:30 UTC (rev 1061) @@ -28,7 +28,7 @@ return String.sprintf2(this.getLabel.arguments); } else - return ""; + return '_'+key+'_'; }, setFileUrl: function(key, value) @@ -68,18 +68,3 @@ }; - - - - - - - - - - - - - - - This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |