Convert strings to translated versions to be ready to use everything in Spanish!
This commit is contained in:
@@ -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 || '');
|
||||
|
||||
Reference in New Issue
Block a user