client/lang/en.js   A
last analyzed

Complexity

Total Complexity 1
Complexity/F 0

Size

Lines of Code 8
Function Count 0

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 5
mnd 1
bc 1
fnc 0
dl 0
loc 8
rs 10
bpm 0
cpm 0
noi 1
c 0
b 0
f 0
1
if (typeof ss === 'undefined' || typeof ss.i18n === 'undefined') {
0 ignored issues
show
Bug introduced by
The variable ss seems to be never declared. If this is a global, consider adding a /** global: ss */ comment.

This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.

To learn more about declaring variables in Javascript, see the MDN.

Loading history...
2
  /* eslint-disable-next-line no-console */
3
  console.error('Class ss.i18n not defined')
4
} else {
5
  ss.i18n.addDictionary('en', {
6
    'AssetAdmin.DETAILS': 'Edit'
7
  })
8
}
9