Skip to content

Instantly share code, notes, and snippets.

@hmelenok
Last active April 27, 2021 16:17
Show Gist options
  • Save hmelenok/b27ea994c6027f1ea58fafc184d656d9 to your computer and use it in GitHub Desktop.
Save hmelenok/b27ea994c6027f1ea58fafc184d656d9 to your computer and use it in GitHub Desktop.
File structure for i18n package
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