feat(i18n): add support for Polish language (#102)
* feat(i18n): add support for Polish language
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user