10 questions
0
votes
0
answers
31
views
Namespacing problem with i18n-ally and Transloco
Set up Transloco for an Angular app, and I want to use i18n-ally to be able to see and edit the i18n resources directly from the code files.
However, I'm having a problem getting the path matching ...
0
votes
0
answers
32
views
How do I combine i18n-ally with Kaisermann/svelte-i18n library
I'm doing some internationalization with a Svelte project, and I'm using i18n-ally to do the language editing. i18n-ally does a great job of turning a block of code from:
<p>Copyright © ...
0
votes
1
answer
2k
views
Namespace addition to i18n-ally does not work
I'm using i18n-ally to see the translations whenever I translate texts and it works
but not that I added the namespace to the key it stopped working. I was wondering if there was a configuration to ...
0
votes
2
answers
4k
views
I just used i18n-ally in one project, why don't I see the tool tab when I switch to another project with i18n Ally enabled?
I was just working in a Vue project to do some language translations for the team. I used i18n Ally to provide translations and find missing translations. Finished that, I switched to another project. ...
2
votes
1
answer
4k
views
How to configure `I18n Ally` VsCode plugin to read nested locales from multiple locale files?
I have few language folders with locale files inside
locales
├── en
| ├── common.json
| ├── ...
| └── article.json
└── de
├── common.json
├── ...
└── ...
0
votes
0
answers
190
views
VsCode - Clear i18nAlly
After removing i18n-ally plugin in VsCode, it keeps modifying my .vscode/setting.json as below
"i18n-ally.localesPaths": [
...,
"ios/Pods/boost/boost/locale",
"...
1
vote
1
answer
277
views
How to translate Lao with i18n Ally vscode plugin?
I currently have other languages configured and able to translate, I am not sure if I have found the correct identifier for Lao, I named it la and it seems to show the corresponding flag, but when I ...
4
votes
1
answer
13k
views
How to configure `I18n Ally` vscode plugin to read my locals?
I am using i18next and react-i18next.
i18n Ally v2.8.1.
I have one locale file: /locales/en.json
Structure of this file:
{
"pagetitle.home": "Home",
"pagetitle.restore&...
7
votes
0
answers
830
views
What's the proper i18n ally configuration for a fe/be monorepo?
I have a project with:
backend (Express app)
locales/
src/
package.json
frontend (React app)
src/
locales
package.json
If I open frontend or backend in VSCode (as if they were the root folder, the ...
7
votes
1
answer
9k
views
How to configure `I18n Ally` VsCode plugin to read my locals from one single file?
I'm using vue-i18n package to translate my Vue project and want to use "I18n Ally" vs code extention to manage translations. The default folder structure for this extension is this:
...