summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Macdonald <mamacdon@gmail.com>2014-12-17 17:16:48 -0500
committerMark Macdonald <mamacdon@gmail.com>2014-12-17 17:17:49 -0500
commitfdfcf2d3f9c2bc2c68cbd0be7e268d3a1710e835 (patch)
treead9bcf36856e725b0021852cc0696c1de6daffe8
parent34b5e06dade8e6bc5291ec1cc2587255d805b06b (diff)
downloadorg.eclipse.orion.client-origin/stable_20141215.zip
org.eclipse.orion.client-origin/stable_20141215.tar.gz
org.eclipse.orion.client-origin/stable_20141215.tar.bz2
Fix shape of message bundle javascript/nls/root/problemsorigin/stable_20141215
-rw-r--r--bundles/org.eclipse.orion.client.javascript/web/javascript/nls/root/problems.js74
1 files changed, 36 insertions, 38 deletions
diff --git a/bundles/org.eclipse.orion.client.javascript/web/javascript/nls/root/problems.js b/bundles/org.eclipse.orion.client.javascript/web/javascript/nls/root/problems.js
index 2c2a242..bf8c1c3 100644
--- a/bundles/org.eclipse.orion.client.javascript/web/javascript/nls/root/problems.js
+++ b/bundles/org.eclipse.orion.client.javascript/web/javascript/nls/root/problems.js
@@ -9,42 +9,40 @@
******************************************************************************/
/* eslint-env amd */
define({
- root: {//Default message bundle
- 'syntaxErrorIncomplete': 'Syntax error, incomplete statement.', //$NON-NLS-0$ //$NON-NLS-1$
- 'syntaxErrorBadToken': 'Syntax error on token \'${0}\', delete this token.', //$NON-NLS-0$ //$NON-NLS-1$
- 'esprimaParseFailure': 'Esprima failed to parse this file because an error occurred: ${0}', //$NON-NLS-0$ //$NON-NLS-1$
- 'eslintValidationFailure': 'ESLint failed to validate this file because an error occurred: ${0}', //$NON-NLS-0$ //$NON-NLS-1$
- 'curly': 'Statement should be enclosed in braces.', //$NON-NLS-0$ //$NON-NLS-1$
- 'eqeqeq' : 'Expected \'${0}\' and instead saw \'${1}\'.', //$NON-NLS-0$ //$NON-NLS-1$
- 'missing-doc' : 'Missing documentation for function \'${0}\'.', //$NON-NLS-0$ //$NON-NLS-1$
- 'new-parens' : 'Missing parentheses invoking constructor.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-caller': '\'arguments.${0}\' is deprecated.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-comma-dangle': 'Trailing commas in object expressions are discouraged.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-debugger': '\'debugger\' statement use is discouraged.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-dupe-keys' : 'Duplicate object key \'${0}\'.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-empty-block' : 'Empty block should be removed or commented.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-eval' : '${0} function calls are discouraged.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-extra-semi' : 'Unnecessary semicolon.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-fallthrough' : 'Switch case may be entered by falling through the previous case.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-jslint' : 'The \'${0}\' directive is unsupported, please use eslint-env.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-new-array' : 'Use the array literal notation \'[]\'.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-new-func' : 'The Function constructor is eval.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-new-object' : 'Use the object literal notation \'{}\' or Object.create(null).', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-new-wrappers' : 'Do not use \'${0}\' as a constructor.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-redeclare' : '\'${0}\' is already defined.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-shadow' : '\'${0}\' is already declared in the upper scope.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-sparse-arrays': 'Sparse array declarations should be avoided.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-undef-defined' : '\'${0}\' is undefined.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-undef-readonly': '\'${0}\' is readonly.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-unreachable' : 'Unreachable code.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-unused-params' : 'Parameter \'${0}\' is never used.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-unused-vars-unused' : '\'${0}\' is unused.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-unused-vars-unread' : '\'${0}\' is unread.', //$NON-NLS-0$ //$NON-NLS-1$
- 'no-use-before-define': '\'${0}\' was used before it was defined.', //$NON-NLS-0$ //$NON-NLS-1$
- 'radix': 'Missing radix parameter.', //$NON-NLS-0$ //$NON-NLS-1$
- 'semi': 'Missing semicolon.', //$NON-NLS-0$ //$NON-NLS-1$
- 'throw-error': 'Throw an Error instead.', //$NON-NLS-0$ //$NON-NLS-1$
- 'use-isnan': 'Use the isNaN function to compare with NaN.', //$NON-NLS-0$ //$NON-NLS-1$
- 'valid-typeof' : 'Invalid typeof comparison.', //$NON-NLS-0$ //$NON-NLS-1$
- }
+ 'syntaxErrorIncomplete': 'Syntax error, incomplete statement.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'syntaxErrorBadToken': 'Syntax error on token \'${0}\', delete this token.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'esprimaParseFailure': 'Esprima failed to parse this file because an error occurred: ${0}', //$NON-NLS-0$ //$NON-NLS-1$
+ 'eslintValidationFailure': 'ESLint failed to validate this file because an error occurred: ${0}', //$NON-NLS-0$ //$NON-NLS-1$
+ 'curly': 'Statement should be enclosed in braces.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'eqeqeq' : 'Expected \'${0}\' and instead saw \'${1}\'.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'missing-doc' : 'Missing documentation for function \'${0}\'.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'new-parens' : 'Missing parentheses invoking constructor.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-caller': '\'arguments.${0}\' is deprecated.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-comma-dangle': 'Trailing commas in object expressions are discouraged.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-debugger': '\'debugger\' statement use is discouraged.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-dupe-keys' : 'Duplicate object key \'${0}\'.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-empty-block' : 'Empty block should be removed or commented.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-eval' : '${0} function calls are discouraged.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-extra-semi' : 'Unnecessary semicolon.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-fallthrough' : 'Switch case may be entered by falling through the previous case.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-jslint' : 'The \'${0}\' directive is unsupported, please use eslint-env.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-new-array' : 'Use the array literal notation \'[]\'.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-new-func' : 'The Function constructor is eval.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-new-object' : 'Use the object literal notation \'{}\' or Object.create(null).', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-new-wrappers' : 'Do not use \'${0}\' as a constructor.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-redeclare' : '\'${0}\' is already defined.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-shadow' : '\'${0}\' is already declared in the upper scope.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-sparse-arrays': 'Sparse array declarations should be avoided.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-undef-defined' : '\'${0}\' is undefined.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-undef-readonly': '\'${0}\' is readonly.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-unreachable' : 'Unreachable code.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-unused-params' : 'Parameter \'${0}\' is never used.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-unused-vars-unused' : '\'${0}\' is unused.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-unused-vars-unread' : '\'${0}\' is unread.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'no-use-before-define': '\'${0}\' was used before it was defined.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'radix': 'Missing radix parameter.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'semi': 'Missing semicolon.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'throw-error': 'Throw an Error instead.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'use-isnan': 'Use the isNaN function to compare with NaN.', //$NON-NLS-0$ //$NON-NLS-1$
+ 'valid-typeof' : 'Invalid typeof comparison.', //$NON-NLS-0$ //$NON-NLS-1$
});