@crowdin/app-project-module 0.48.0 → 0.49.0
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.
|
@@ -196,6 +196,21 @@ function applyIntegrationModuleDefaults(config, integration) {
|
|
|
196
196
|
dependencySettings: JSON.stringify([{ '#schedule-settings': { type: '!equal', value: ['0'] } }]),
|
|
197
197
|
});
|
|
198
198
|
}
|
|
199
|
+
if (integration.uploadTranslations) {
|
|
200
|
+
defaultSettings.push({
|
|
201
|
+
key: 'importEqSuggestions',
|
|
202
|
+
label: 'Allow target translation to match source',
|
|
203
|
+
type: 'checkbox',
|
|
204
|
+
}, {
|
|
205
|
+
key: 'autoApproveImported',
|
|
206
|
+
label: 'Approve added translations',
|
|
207
|
+
type: 'checkbox',
|
|
208
|
+
}, {
|
|
209
|
+
key: 'translateHidden',
|
|
210
|
+
label: 'Translate hidden strings',
|
|
211
|
+
type: 'checkbox',
|
|
212
|
+
});
|
|
213
|
+
}
|
|
199
214
|
return [
|
|
200
215
|
...defaultSettings,
|
|
201
216
|
{
|
package/package.json
CHANGED