Last active
April 27, 2021 16:17
-
-
Save hmelenok/b27ea994c6027f1ea58fafc184d656d9 to your computer and use it in GitHub Desktop.
File structure for i18n package
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i18n | |
├── README.md | |
├── babel.config.js | |
├── create-translations.js | |
├── crowdin.yml | |
├── package.json | |
├── renovate.json | |
├── src | |
│ ├── bundles | |
│ │ ├── app-1 | |
│ │ │ ├── index.ts | |
│ │ │ └── translations | |
│ │ ├── app-2 | |
│ │ │ ├── index.ts | |
│ │ │ └── translations | |
│ │ └── app-3 | |
│ │ ├── index.ts | |
│ │ └── translations | |
│ ├── getTranslation.ts | |
│ ├── helpers.ts | |
│ ├── index.ts | |
│ ├── resources | |
│ │ └── en | |
│ │ ├── app-1 | |
│ │ │ ├── common.json | |
│ │ │ ├── component.json | |
│ │ │ ├── glossary.json | |
│ │ │ └── view.json | |
│ │ ├── app-2 | |
│ │ │ └── index.json | |
│ │ └── app-3 | |
│ │ ├── common.json | |
│ │ ├── component.json | |
│ │ ├── glossary.json | |
│ │ └── view.json | |
│ └── translations | |
│ └── en.ts | |
└── tsconfig.json |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment