We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3801c2b commit 5efa663Copy full SHA for 5efa663
crowdin/download.js
@@ -16,10 +16,9 @@ function main() {
16
process.chdir(SYMLINKED_TRANSLATIONS_PATH);
17
18
crowdin
19
- .downloadToPath(DOWNLOADED_TRANSLATIONS_PATH)
20
- .then(() => {
21
- return crowdin.getTranslationStatus();
22
- })
+ // .export() // Not sure if this should be called in the script since it could be very slow
+ .then(() => crowdin.downloadToPath(DOWNLOADED_TRANSLATIONS_PATH))
+ .then(() => crowdin.getTranslationStatus())
23
.then(locales => {
24
const usableLocales = locales
25
.filter(
0 commit comments