Skip to content

Commit fc4c44d

Browse files
committed
Fix bug
1 parent bfddc8e commit fc4c44d

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Diff for: build/t9n.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
summary: "Almost i18n, with standard translations for basic meteor packages.",
3-
version: "2.5.0",
3+
version: "2.5.1",
44
name: "softwarerero:accounts-t9n",
55
git: "https://github.com/softwarerero/meteor-accounts-t9n.git",
66
});

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "meteor-accounts-t9n",
3-
"version": "2.5.0",
3+
"version": "2.5.1",
44
"description": "Translations for Meteor projects, almost i18n",
55
"repository": "https://github.com/softwarerero/meteor-accounts-t9n",
66
"bugs": "https://github.com/softwarerero/meteor-accounts-t9n/issues",

Diff for: smart.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Translations for the meteor account's error messages",
44
"homepage": "https://github.com/softwarerero/meteor-accounts-t9n",
55
"author": "Stefan Undorf <[email protected]>",
6-
"version": "2.5.0",
6+
"version": "2.5.1",
77
"git": "https://github.com/softwarerero/meteor-accounts-t9n.git",
88
"packages": {}
99
}

Diff for: t9n.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ class T9n
8181
while index1 > -1
8282
index1 = strCopy.indexOf('@{')
8383
if index1 > -1
84-
index2 = strCopy.substring(index1).indexOf('}') # no nested tokens
84+
index2 = strCopy.indexOf('}') # no nested tokens
8585
token = strCopy.substring(index1, index2 + 1)
8686
if token.indexOf('->') > -1
8787
value = @handleSelector(strCopy, args, token)

0 commit comments

Comments
 (0)