Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -174,6 +174,11 @@ export const LANG_LIST: LangItem[] = [{
name: 'Polish',
nativeName: 'Polski',
rtl: false,
}, {
langCode: 'it',
name: 'Italian',
nativeName: 'Italiano',
rtl: false,
}];

export const STAKING_CYCLE_DURATION_MS = 131072000; // 36.4 hours
Expand Down
2 changes: 1 addition & 1 deletion src/global/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export type DialogType = {
message: string;
};

export type LangCode = 'en' | 'es' | 'ru' | 'zh-Hant' | 'zh-Hans' | 'tr' | 'de' | 'th' | 'uk' | 'pl';
export type LangCode = 'en' | 'es' | 'ru' | 'zh-Hant' | 'zh-Hans' | 'tr' | 'de' | 'th' | 'uk' | 'pl' | 'it';

export interface LangItem {
langCode: LangCode;
Expand Down
Loading