mirror of
https://github.com/pezkuwichain/pezkuwi-apps.git
synced 2026-04-25 08:07:56 +00:00
feat: initial Pezkuwi Apps rebrand from polkadot-apps
Rebranded terminology: - Polkadot → Pezkuwi - Kusama → Dicle - Westend → Zagros - Rococo → PezkuwiChain - Substrate → Bizinikiwi - parachain → teyrchain Custom logos with Kurdistan brand colors (#e6007a → #86e62a): - bizinikiwi-hexagon.svg - sora-bizinikiwi.svg - hezscanner.svg - heztreasury.svg - pezkuwiscan.svg - pezkuwistats.svg - pezkuwiassembly.svg - pezkuwiholic.svg
This commit is contained in:
@@ -0,0 +1,60 @@
|
||||
// Copyright 2017-2025 @pezkuwi/apps-config authors & contributors
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
import type { TFunction } from '../types.js';
|
||||
import type { Option } from './types.js';
|
||||
|
||||
export function createLanguages (t: TFunction): Option[] {
|
||||
return [
|
||||
{
|
||||
text: t('lng.detect', 'Default browser language (auto-detect)', { ns: 'apps-config' }),
|
||||
value: 'default'
|
||||
},
|
||||
// default/native
|
||||
{
|
||||
text: 'English',
|
||||
value: 'en'
|
||||
},
|
||||
// translations (sorted by language code)
|
||||
{
|
||||
text: 'عربى',
|
||||
value: 'ar'
|
||||
},
|
||||
{
|
||||
text: 'Español',
|
||||
value: 'es'
|
||||
},
|
||||
{
|
||||
text: 'Français',
|
||||
value: 'fr'
|
||||
},
|
||||
{
|
||||
text: 'Bahasa Indonesia',
|
||||
value: 'id'
|
||||
},
|
||||
{
|
||||
text: 'Italiano',
|
||||
value: 'it'
|
||||
},
|
||||
{
|
||||
text: '日本語',
|
||||
value: 'ja'
|
||||
},
|
||||
{
|
||||
text: '한국어',
|
||||
value: 'ko'
|
||||
},
|
||||
{
|
||||
text: 'Português',
|
||||
value: 'pt'
|
||||
},
|
||||
{
|
||||
text: 'русский',
|
||||
value: 'ru'
|
||||
},
|
||||
{
|
||||
text: '汉语',
|
||||
value: 'zh'
|
||||
}
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user