feat: Crowdin integration scripts/actions (#40657)

This commit is contained in:
Randell Dawson
2021-01-12 11:20:54 -07:00
committed by GitHub
parent ab222e31e7
commit 0095583028
16 changed files with 670 additions and 69 deletions

View File

@@ -0,0 +1,5 @@
const delay = (time = 2000) => {
return new Promise(resolve => setTimeout(() => resolve(true), time));
};
module.exports = delay;