renamed lt function to t as it's no longer localized text and t is shorter, also renamed parameter ltKey to tKey for similar reasons
This commit is contained in:
@@ -173,8 +173,8 @@ export default {
|
||||
var match;
|
||||
while ((match = pattern.exec(s)) != null) {
|
||||
var foundMatch = match[0];
|
||||
var ltKey = match[1];
|
||||
var newValue = this.get(ltKey);
|
||||
var tKey = match[1];
|
||||
var newValue = this.get(tKey);
|
||||
ret = ret.replace(foundMatch, newValue);
|
||||
}
|
||||
return ret;
|
||||
|
||||
Reference in New Issue
Block a user