feat(i18n): add support for Polish language (#102)

* feat(i18n): add support for Polish language
This commit is contained in:
Karol Lassak
2023-03-31 12:09:17 +02:00
committed by GitHub
parent db9cff1ae1
commit 8be30a734d
5 changed files with 22 additions and 9 deletions
+6 -3
View File
@@ -11,13 +11,16 @@ const platform = process.platform;
let separator = '';
switch (platform) {
case 'win32': // Windows
// Windows
case 'win32':
separator = path.sep;
break;
case 'darwin': // macOS
// macOS
case 'darwin':
separator = '';
break;
case 'linux': // Linux
// Linux
case 'linux':
separator = '';
break;
default: