Skip to content

Commit

Permalink
Add karakalpakstan lang
Browse files Browse the repository at this point in the history
  • Loading branch information
JeongJun-Lee committed May 23, 2024
1 parent a4dccbd commit 76f6040
Show file tree
Hide file tree
Showing 18 changed files with 22,599 additions and 5,320 deletions.
2 changes: 1 addition & 1 deletion build/entryx64.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
!define MUI_UNICON "icon.ico"
!define PRODUCT_NAME "Entry"
!define APP_NAME "Entry.exe"
!define PRODUCT_VERSION "2.0.51"
!define PRODUCT_VERSION "2.0.53"
!define PRODUCT_PUBLISHER "EntryLabs"
!define PRODUCT_WEB_SITE "http://www.playentry.org/"

Expand Down
2 changes: 1 addition & 1 deletion build/entryx86.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
!define MUI_UNICON "icon.ico"
!define PRODUCT_NAME "Entry"
!define APP_NAME "Entry.exe"
!define PRODUCT_VERSION "2.0.51"
!define PRODUCT_VERSION "2.0.53"
!define PRODUCT_PUBLISHER "EntryLabs"
!define PRODUCT_WEB_SITE "http://www.playentry.org/"

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"productName": "Entry",
"name": "entry",
"version": "2.0.51",
"version": "2.0.53",
"description": "Entry for offline",
"main": "src/main_build/main.bundle.js",
"scripts": {
Expand Down
1 change: 1 addition & 0 deletions src/renderer/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ class Header extends Component<IProps, IState> {
return [
[RendererUtils.getLang('ko'), 'ko'],
[RendererUtils.getLang('uz'), 'uz'],
[RendererUtils.getLang('kaa'), 'kaa'],
[RendererUtils.getLang('ru'), 'ru'],
[RendererUtils.getLang('en'), 'en'],
[RendererUtils.getLang('jp'), 'jp'],
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/resources/db/ExcelToJson_sounds.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
temp['duration'] = item['duration']
temp['category'] = {'main': item['main'], 'sub': item['sub']}
temp['name'] = item['ko']
temp['label'] = {'ko': item['ko'], 'en': item['en'], 'uz': item['uz'], 'ru': item['ru']}
temp['label'] = {'ko': item['ko'], 'en': item['en'], 'uz': item['uz'], 'ru': item['ru'], 'kaa': item['kaa']}
temp['created'] = ''
temp['specials'] = []
printable.append(temp)
Expand Down
4 changes: 2 additions & 2 deletions src/renderer/resources/db/ExcelToJson_sprites.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
}
if item['sub']:
temp['category']['sub'] = item['sub']
temp['label'] = {'ko': item['ko'], 'en': item['en'], 'uz': item['uz'], 'ru': item['ru']}
temp['label'] = {'ko': item['ko'], 'en': item['en'], 'uz': item['uz'], 'ru': item['ru'], 'kaa': item['kaa']}
else:
if not 'pictures' in temp:
temp['pictures'] = []
Expand All @@ -35,7 +35,7 @@
# if picture['imageType'] == 'svg':
# temp['hasSvg'] = True
picture['dimension'] = {'width': item['main'], 'height': item['sub']}
picture['label'] = {'ko': item['ko'], 'en': item['en'], 'uz': item['uz'], 'ru': item['ru']}
picture['label'] = {'ko': item['ko'], 'en': item['en'], 'uz': item['uz'], 'ru': item['ru'], 'kaa': item['kaa']}
temp['pictures'].append(picture)

if len(temp) != 0: # Not to miss the last one
Expand Down
Loading

0 comments on commit 76f6040

Please sign in to comment.