Skip to content

Commit

Permalink
Bumped up version to 0.9.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
recurser committed Dec 17, 2010
1 parent 060fbd4 commit 5b8a10d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
<concat destfile="${JQI_MIN}">
<filelist files="${JQI}, tmpmin"/>
<filterchain>
<headfilter lines="12"/>
<headfilter lines="11"/>
</filterchain>
</concat>
<concat destfile="${JQI_MIN}" append="yes">
Expand Down
3 changes: 1 addition & 2 deletions jquery.i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Revision: $Id$
* Version: 0.9.1 (201012171435)
* Version: 0.9.1 (201012171436)
*/
(function($) {
/**
Expand Down
3 changes: 1 addition & 2 deletions jquery.i18n.min.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,7 @@
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Revision: $Id$
* Version: 0.9.1 (201012171435)
* Version: 0.9.1 (201012171436)
*/
(function(f){f.i18n={dict:null,setDictionary:function(a){this.dict=a},_:function(a,b){var c=a;if(this.dict&&this.dict[a])c=this.dict[a];return this.printf(c,b)},toEntity:function(a){for(var b="",c=0;c<a.length;c++)b+=a.charCodeAt(c)>128?"&#"+a.charCodeAt(c)+";":a.charAt(c);return b},stripStr:function(a){return a.replace(/^\s*/,"").replace(/\s*$/,"")},stripStrML:function(a){a=a.split("\n");for(var b=0;b<a.length;b++)a[b]=stripStr(a[b]);return stripStr(a.join(" "))},printf:function(a,b){if(!b)return a;
for(var c="",e=a.split("%s"),d=0;d<b.length;d++){if(e[d].lastIndexOf("%")==e[d].length-1&&d!=b.length-1)e[d]+="s"+e.splice(d+1,1)[0];c+=e[d]+b[d]}return c+e[e.length-1]}}})(jQuery);
1 change: 0 additions & 1 deletion src/jquery.i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Revision: $Id$
* Version: @VERSION (@DATE)
*/
(function($) {
Expand Down

0 comments on commit 5b8a10d

Please sign in to comment.