Browse Source

Merge pull request #89 from BlueWallet/development

FIX: #83 shadow values for wallets
localNotifications
Marcos Rodriguez Vélez 6 years ago
committed by GitHub
parent
commit
a87902a46d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      BlueComponents.js
  2. 1
      loc/en.js
  3. 11
      loc/es.js
  4. 1
      loc/pt_PT.js
  5. 1
      loc/ru.js
  6. 1
      loc/ua.js

9
BlueComponents.js

@ -883,7 +883,7 @@ export class NewWalletPannel extends Component {
let sliderWidth = width * 1;
let itemWidth = width * 0.82;
let sliderHeight = 181;
let sliderHeight = 190;
export class WalletsCarousel extends Component {
constructor(props) {
@ -951,9 +951,10 @@ export class WalletsCarousel extends Component {
}}
>
<LinearGradient
shadowOpacity={0.4}
shadowOffset={{ width: 0, height: 0 }}
shadowRadius={4}
shadowOpacity={18 / 100}
shadowOffset={{ width: 0, height: 4 }}
shadowRadius={10}
shadowColor="#000000"
colors={[gradient1, gradient2]}
style={{ padding: 15, borderRadius: 10, height: 164 }}
>

1
loc/en.js

@ -11,7 +11,6 @@ module.exports = {
},
wallets: {
list: {
tabBarLabel: 'Wallets',
app_name: 'Blue Wallet',
title: 'wallets',
header: 'A wallet represents a pair of a secret (private key) and an address' + 'you can share to receive coins.',

11
loc/es.js

@ -11,9 +11,8 @@ module.exports = {
},
wallets: {
list: {
tabBarLabel: 'Monederos',
app_name: 'Blue Wallet',
title: 'Mi Monederos de Bitcoin',
title: 'carteras',
header: 'Un Monedero esta representado con secreto (clave privada) y una dirección' + 'que puedes compartir para recibir monedas.',
add: 'Añadir Monedero',
create_a_wallet: 'Create a wallet',
@ -82,7 +81,7 @@ module.exports = {
transactions: {
list: {
tabBarLabel: 'Transacciónes',
title: 'Mi Transacciónes',
title: 'transacciones',
description: 'Una lista de las transacciones entrantes o salientes de sus monederos',
conf: 'conf',
},
@ -94,7 +93,7 @@ module.exports = {
},
},
send: {
header: 'Elige monedero',
header: 'enviar',
details: {
title: 'Crear Transaccion',
amount_fiels_is_not_valid: 'La cantidad no es válida',
@ -125,7 +124,7 @@ module.exports = {
},
},
receive: {
header: 'Elige el monedero',
header: 'Recibir',
details: {
title: 'Comparte esta dirección con el pagador',
share: 'Compartir',
@ -168,7 +167,7 @@ module.exports = {
success: 'Success',
},
lnd: {
title: 'manage funds',
title: 'manejar fondos',
choose_source_wallet: 'Choose a source wallet',
refill_lnd_balance: 'Refill Lightning wallet balance',
refill: 'Refill',

1
loc/pt_PT.js

@ -11,7 +11,6 @@ module.exports = {
},
wallets: {
list: {
tabBarLabel: 'Wallets',
app_name: 'Blue Wallet',
title: 'Minhas Bitcoin Wallets',
header: 'Uma wallet representa um par entre um segredo (chave privada) e um endereço' + 'que pode partilhar para receber Bitcoin.',

1
loc/ru.js

@ -11,7 +11,6 @@ module.exports = {
},
wallets: {
list: {
tabBarLabel: 'кошельки',
app_name: 'BlueWallet',
title: 'кошельки',
header: 'Кошелек это секретный (приватный) ключ, и соответствующий ему адрес на который можно получать биткоины',

1
loc/ua.js

@ -11,7 +11,6 @@ module.exports = {
},
wallets: {
list: {
tabBarLabel: 'Гаманці',
app_name: 'BlueWallet',
title: 'Мої Біткоїн Гаманці',
header: 'Гаманець це секретний (приватний) ключ, і відповідна йому адреса на яку можна отримувати біткоїни',

Loading…
Cancel
Save