Convert strings to translated versions to be ready to use everything in Spanish!

This commit is contained in:
2018-11-27 10:45:50 -03:00
parent 418fc04eb1
commit 82451218be
3 changed files with 13 additions and 4 deletions
@@ -53,7 +53,7 @@ export default Component.extend({
let hbc = this.get('upper_bound_candidate');
if (hbc < lbc) {
this.set('error', `lower limit (${lbc}) cannot be greater than the upper limit (${hbc}).`);
this.set('error', t('number.range.lower_larger_than_upper_error', {lower: lbc, upper: hbc}));
console.log(this.error);
} else {
this.set('lower_bound', lbc || '');