(title, key, enValue, toValue, path, format)
| 136 | } |
| 137 | |
| 138 | wrapRow (title, key, enValue, toValue, path, format) { |
| 139 | if (!enValue) { return } |
| 140 | if (!toValue) { toValue = '' } |
| 141 | const doNotTranslate = enValue.match(/(['"`][^\s`]+['"`])/gi) |
| 142 | return this.translationList.push({ title, doNotTranslate, key, enValue, toValue, path, format }) |
| 143 | } |
| 144 | |
| 145 | buildTranslationList () { return [] } // overwrite |
| 146 |
no outgoing calls
no test coverage detected