You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in the bin.js file:
line 180: var key = await manager.getSuggestedKey(filePath, str.string, usedKeys)
i used the standard replace function to create a . instead of \
how can i choose another seperator for the keys - i have the problem that the default seperator '\' causes a lint error.
Example:
generated in vue component:
<div class="n-view-title">{{ $t('src\components\administration\user\index.title') }}</div>
generated in locals/en.json:
{ "src\\components\\administration\\user\\index": { "title": "New user" } }
this works of course but cause my linter to throw errors.
A seperator like '.' instead of '\' would also work!
How can i change this?
The text was updated successfully, but these errors were encountered: