mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
ADD: Croatian language into Settings.
ADD: HRK Fiat in currency settings
This commit is contained in:
parent
23ccaec4a1
commit
a9cb1635a4
@ -17,7 +17,7 @@
|
||||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>3.5.6</string>
|
||||
<string>3.5.7</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleURLTypes</key>
|
||||
@ -33,7 +33,7 @@
|
||||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>223</string>
|
||||
<string>224</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
<false/>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
|
@ -18,7 +18,7 @@ module.exports = {
|
||||
header: 'Volet je par privatnog ključa (tajna!) i javne adrese' + 'koju slobodno možete dijeliti kada primate novce.',
|
||||
add: 'Dodaj volet',
|
||||
create_a_wallet: 'Stvori novi volet',
|
||||
create_a_wallet1: "Ne košta ništa i možete",
|
||||
create_a_wallet1: 'Ne košta ništa i možete',
|
||||
create_a_wallet2: 'ih stvoriti moliko želite',
|
||||
latest_transaction: 'posljednja transakcija',
|
||||
empty_txs1: 'Vaše transakcije će se pojaviti ovdje',
|
||||
@ -30,8 +30,7 @@ module.exports = {
|
||||
},
|
||||
add: {
|
||||
title: 'Dodaj volet',
|
||||
description:
|
||||
'Možete ili skenirati bekap papirnati volet (u WIF - Wallet Import Format), ili stvoriti novi volet. Segwit je podržan.',
|
||||
description: 'Možete ili skenirati bekap papirnati volet (u WIF - Wallet Import Format), ili stvoriti novi volet. Segwit je podržan.',
|
||||
scan: 'Skeniraj',
|
||||
create: 'Stvori',
|
||||
label_new_segwit: 'Novi SegWit',
|
||||
@ -72,7 +71,7 @@ module.exports = {
|
||||
import: {
|
||||
title: 'unesi',
|
||||
explanation:
|
||||
"Ovdje upiši svoj mnemonik slijed riječi, privatni ključ, WIF, ili što već imaš. BlueWallet će pokušati porocijeniti format i unesti tvoj volet.",
|
||||
'Ovdje upiši svoj mnemonik slijed riječi, privatni ključ, WIF, ili što već imaš. BlueWallet će pokušati porocijeniti format i unesti tvoj volet.',
|
||||
imported: 'Uneseno',
|
||||
error: 'Neuspješan unos. Molimo pažljivo provjerite ispravnost unesenih podataka.',
|
||||
success: 'Uspjeh',
|
||||
@ -190,7 +189,7 @@ module.exports = {
|
||||
'BlueWallet ti čuva leđa buraz. Nemaš brige. Gledaj.' +
|
||||
'Stvoriti ćemo dupli volet sa drugačijom lozinkom. Haha, žišku?' +
|
||||
'Pa kad se ovaj počne pjeniti a ti vidiš da je vrag odnio šalu' +
|
||||
'ti mu podvali ovaj drugi volet. Eto mu ga. Nek si cucla.' ,
|
||||
'ti mu podvali ovaj drugi volet. Eto mu ga. Nek si cucla.',
|
||||
help2: 'Novi spremnik će biti posve funkcionalan, možeš pohraniti koliko' + 'misliš da je potrebno da izgleda uvjerljivo.',
|
||||
create_fake_storage: 'Stvori fejk enkriptirani spremnik',
|
||||
go_back: 'Povratak',
|
@ -33,7 +33,8 @@ let strings;
|
||||
locale === 'cs-cz' ||
|
||||
locale === 'th-th' ||
|
||||
locale === 'da-dk' ||
|
||||
locale === 'nl-nl'
|
||||
locale === 'nl-nl' ||
|
||||
locale === 'hr-hr'
|
||||
) {
|
||||
locale = locale.replace('-', '_');
|
||||
strings.setLanguage(locale);
|
||||
@ -57,6 +58,7 @@ strings = new Localization({
|
||||
th_th: require('./th_TH.js'),
|
||||
nl_nl: require('./nl_NL.js'),
|
||||
fr_fr: require('./fr_FR.js'),
|
||||
hr_hr: require('./hr_HR.js'),
|
||||
});
|
||||
|
||||
strings.saveLanguage = lang => AsyncStorage.setItem(AppStorage.LANG, lang);
|
||||
|
@ -6,6 +6,7 @@ export const FiatUnit = Object.freeze({
|
||||
CNY: { endPointKey: 'CNY', symbol: '¥', locale: 'zh-CN' },
|
||||
EUR: { endPointKey: 'EUR', symbol: '€', locale: 'en-EN' },
|
||||
GBP: { endPointKey: 'GBP', symbol: '£', locale: 'en-GB' },
|
||||
HRK: { endPointKey: 'HRK', symbol: 'HRK', locale: 'hr-HR' },
|
||||
INR: { endPointKey: 'INR', symbol: '₹', locale: 'hi-HN' },
|
||||
JPY: { endPointKey: 'JPY', symbol: '¥', locale: 'ja-JP' },
|
||||
RUB: { endPointKey: 'RUB', symbol: '₽', locale: 'ru-RU' },
|
||||
|
@ -19,6 +19,7 @@ export default class Language extends Component {
|
||||
availableLanguages: [
|
||||
{ label: 'English', value: 'en' },
|
||||
{ label: 'Česky (CZ)', value: 'cs_cz' },
|
||||
{ label: 'Croatian (HR)', value: 'hr_hr' },
|
||||
{ label: 'Danish (DK)', value: 'da_dk' },
|
||||
{ label: 'Deutsch (DE)', value: 'de_de' },
|
||||
{ label: 'Dutch (NL)', value: 'nl_nl' },
|
||||
|
Loading…
Reference in New Issue
Block a user