Skip to content
Snippets Groups Projects
Commit 811f0807 authored by echicken's avatar echicken :chicken:
Browse files

Get locale string without write

parent 695e5a5c
No related branches found
No related tags found
No related merge requests found
......@@ -63,6 +63,10 @@ EN_US.prototype.group_numbers = function (n) {
).split('').reverse().join('') + (d > -1 ? n.substring(d) : '');
}
EN_US.prototype.get = function (str, sec) {
return this.strings[sec || this.section][str];
}
EN_US.prototype.write = function (str, sec) {
write(this.strings[sec || this.section][str]);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment