mirror of
https://github.com/spalencsar/bearhub.git
synced 2026-07-07 01:14:15 +02:00
[fix] Fix missing i18n keys when there are no mapped translations for the system's default locale
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
__version__ = '0.7.4'
|
||||
__version__ = '0.7.5'
|
||||
__app_name__ = 'bauh'
|
||||
|
||||
import os
|
||||
|
||||
@@ -53,7 +53,7 @@ def get_locale_keys(key: str = None, locale_dir: str = resource.get_path('locale
|
||||
break
|
||||
|
||||
if not locale_path:
|
||||
return key, {}
|
||||
return current_locale if current_locale else key, {}
|
||||
|
||||
with open(locale_path, 'r') as f:
|
||||
locale_keys = f.readlines()
|
||||
|
||||
Reference in New Issue
Block a user