[ADF-3591] spellcheck support for code (#3827)

* setup spellcheck
This commit is contained in:
Denys Vuika
2018-10-23 15:05:38 +01:00
committed by Eugenio Romano
parent 53d96679ea
commit e39a2b149b
262 changed files with 1561 additions and 1005 deletions

View File

@@ -67,21 +67,21 @@ exports.APPLICATION = {
APS: 'main'
};
exports.TASKFILTERS = {
exports.TASK_FILTERS = {
MY_TASKS: 'My Tasks',
INV_TASKS: 'Involved Tasks',
QUE_TASKS: 'Queued Tasks',
COMPL_TASKS: 'Completed Tasks'
COMPLETED_TASKS: 'Completed Tasks'
};
exports.TASKDETAILS = {
exports.TASK_DETAILS = {
NO_FORM: 'No form',
NO_PARENT: 'No parent',
NO_DATE: 'No date',
NO_CATEGORY: 'No category'
};
exports.TASKSTATUS = {
exports.TASK_STATUS = {
RUNNING: 'Running'
};
@@ -106,17 +106,17 @@ exports.APP_ICON = {
UNIT: "ac_unit"
};
exports.PROCESSENDDATE = "No date";
exports.PROCESS_END_DATE = "No date";
exports.PROCESSCATEGORY = "http://www.activiti.org/processdef";
exports.PROCESS_CATEGORY = "http://www.activiti.org/processdef";
exports.PROCESSBUSINESSKEY = "None";
exports.PROCESS_BUSINESS_KEY = "None";
exports.PROCESSDESCRIPTION = "No description";
exports.PROCESS_DESCRIPTION = "No description";
exports.PROCESSDATEFORMAT = "mmm dd yyyy";
exports.PROCESS_DATE_FORMAT = "mmm dd yyyy";
exports.PROCESSSTATUS = {
exports.PROCESS_STATUS = {
RUNNING: 'Running',
COMPLETED: 'Completed'
};

View File

@@ -87,19 +87,19 @@ exports.Files = {
people_id: "people",
group_id: "groupofpeople",
multiline_id: "multilinetext",
typeahead_id: "typeahead",
displaytext_id: "displaytext",
displayvalue_id: "displayvalue",
typeAhead_id: "typeahead",
displayText_id: "displaytext",
displayValue_id: "displayvalue",
hyperlink_id: "hyperlink",
attachfolder_id: "attachfolder",
attachfile_id: "attachfile",
attachFolder_id: "attachfolder",
attachFile_id: "attachfile",
date_id: "date",
dateTime_id: "dateandtime",
checkbox_id: "checkbox",
dropdown_id: "dropdown",
dropdown_value: "mat-select[id='dropdown'] span span",
radiobuttons_id: "radiobuttons",
dynamictable_id: "dynamictable"
radioButtons_id: "radiobuttons",
dynamicTable_id: "dynamictable"
}
},

View File

@@ -183,9 +183,9 @@ exports.generateRandomStringToUpperCase = function (length) {
* @param baseName{string} the base name of all files
* @param extension{string} the extension of the file
* @return fileNames
* @method generateSeqeunceFiles
* @method generateSequenceFiles
*/
exports.generateSeqeunceFiles = function (startIndex, endIndex, baseName, extension) {
exports.generateSequenceFiles = function (startIndex, endIndex, baseName, extension) {
var fileNames = [];
for (var i = startIndex; i <= endIndex; i++) {
fileNames.push(baseName + i + extension);