Merge pull request #5044 from kensible/5002-ctint-i18n-strings

Updated strings for i18n
This commit is contained in:
kensible
2017-01-31 20:45:34 -05:00
committed by GitHub
4 changed files with 16 additions and 10 deletions
+2 -1
View File
@@ -678,7 +678,8 @@ angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerat
if(field.reset && !field.disabled) {
var resetValue = "'" + field.reset+ "'";
html+= `<a class="Form-resetValue" ng-click="resetValue(${resetValue})">` + i18n._("Reset") + `</a>`;
var resetMessage = i18n._('Reset');
html+= `<a class="Form-resetValue" ng-click="resetValue(${resetValue})">${resetMessage}</a>`;
}
html += "\n\t</label>\n";