@crowdin/app-project-module 0.26.4 → 0.26.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -650,6 +650,7 @@ const configuration = {
650
650
  filesFolder: __dirname,
651
651
  type: 'type-xyz',
652
652
  stringsExport: true,
653
+ multilingualExport: true,
653
654
  extensions: [
654
655
  '.resx'
655
656
  ],
@@ -26,6 +26,7 @@ function handle(config) {
26
26
  customSrxSupported: !!config.customFileFormat.customSrxSupported,
27
27
  extensions: config.customFileFormat.extensions,
28
28
  signaturePatterns: config.customFileFormat.signaturePatterns,
29
+ multilingualExport: config.customFileFormat.multilingualExport,
29
30
  url: '/process',
30
31
  },
31
32
  ];
@@ -495,6 +495,10 @@ export interface CustomFileFormatLogic {
495
495
  * Enable custom srx
496
496
  */
497
497
  customSrxSupported?: boolean;
498
+ /**
499
+ * Enable multi language strings export
500
+ */
501
+ multilingualExport?: boolean;
498
502
  /**
499
503
  * Used for initial source file upload, source file update, and translation upload
500
504
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crowdin/app-project-module",
3
- "version": "0.26.4",
3
+ "version": "0.26.5",
4
4
  "description": "Module that generates for you all common endpoints for serving standalone Crowdin App",
5
5
  "main": "out/index.js",
6
6
  "types": "out/index.d.ts",