Tom Kirkpatrick
6 years ago
104 changed files with 4146 additions and 344 deletions
@ -0,0 +1,6 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
expires: 'Expires in' |
||||
|
}) |
@ -0,0 +1,10 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
received: 'Received payment', |
||||
|
requested: 'Requested payment', |
||||
|
type_paid: 'Lightning invoice (paid)', |
||||
|
type_unpaid: 'Lightning invoice (unpaid)', |
||||
|
amount: 'Invoice amount' |
||||
|
}) |
@ -0,0 +1,12 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
copy: 'Copy Request', |
||||
|
pay_req: 'Payment Request', |
||||
|
memo: 'Memo', |
||||
|
request: 'Request', |
||||
|
save: 'Save as image', |
||||
|
not_paid: 'Not Paid', |
||||
|
paid: 'Paid' |
||||
|
}) |
@ -0,0 +1,8 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
amount: 'Payment amount', |
||||
|
fee: 'Payment fee', |
||||
|
type: 'Lightning payment' |
||||
|
}) |
@ -0,0 +1,8 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
sent: 'Sent', |
||||
|
fee: 'Fee', |
||||
|
lightning: 'Lightning Network' |
||||
|
}) |
@ -0,0 +1,10 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
received: 'Received', |
||||
|
sent: 'Sent', |
||||
|
amount: 'Transaction amount', |
||||
|
fee: 'Transaction fee', |
||||
|
type: 'On-chain transaction' |
||||
|
}) |
@ -0,0 +1,9 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
fee: 'Fee', |
||||
|
on_chain: 'On-Chain', |
||||
|
received: 'Received', |
||||
|
sent: 'Sent' |
||||
|
}) |
@ -0,0 +1,13 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
all: 'All', |
||||
|
sent: 'Sent', |
||||
|
requested: 'Requested', |
||||
|
pending: 'Pending', |
||||
|
refresh: 'Refresh', |
||||
|
search: 'Search', |
||||
|
hide_expired: 'Hide Expired Requests', |
||||
|
show_expired: 'Show Expired Requests' |
||||
|
}) |
@ -0,0 +1,11 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
export default defineMessages({ |
||||
|
online: 'Online', |
||||
|
offline: 'Offline', |
||||
|
pending: 'Pending', |
||||
|
private: 'Private', |
||||
|
manual_button: 'Connect Manually', |
||||
|
manual_description: |
||||
|
"Hm, looks like we can't see that node from here, wanna try to manually connect?" |
||||
|
}) |
@ -0,0 +1,9 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
title: 'Connect Manually', |
||||
|
description: 'Please enter the peer’s pubkey@host', |
||||
|
placeholder: 'pubkey@host', |
||||
|
submit: 'Submit' |
||||
|
}) |
@ -0,0 +1,16 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
title: 'My Network', |
||||
|
loading: 'loading', |
||||
|
pending: 'pending', |
||||
|
closing: 'closing', |
||||
|
offline: 'offline', |
||||
|
online: 'online', |
||||
|
refresh: 'Refresh', |
||||
|
open_channel: 'Open a channel', |
||||
|
pay_limit: 'Pay Limit', |
||||
|
req_limit: 'Request Limit', |
||||
|
search_placeholder: 'search by alias or pubkey' |
||||
|
}) |
@ -0,0 +1,11 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
title: 'Add Funds to Network', |
||||
|
description: |
||||
|
"Opening a channel will help you send and receive money on the Lightning Network. You aren't spending any money, rather moving the money you plan to use onto the network.", |
||||
|
submit: 'Submit', |
||||
|
duplicate_warnig: |
||||
|
'You currently have {activeChannels, plural, zero {no active channels} one {1 active channel} other {{activeChannels} active channels}} open to {aliasMsg, select, this_node {this node} other {{aliasMsg}}} with a capacity of' |
||||
|
}) |
@ -0,0 +1,8 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
connect: 'Connect', |
||||
|
empty_description: |
||||
|
"Hmmm, looks like you don't have any channels yet. Here are some suggested nodes to open a channel with to get started" |
||||
|
}) |
@ -0,0 +1,11 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
title: 'Make Payment', |
||||
|
destination: 'Destination', |
||||
|
amount: 'Amount', |
||||
|
request_placeholder: 'Paste payment request or bitcoin address here', |
||||
|
pay: 'Pay', |
||||
|
onchain_description: 'On-Chain (~10 minutes)' |
||||
|
}) |
@ -0,0 +1,9 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
export default defineMessages({ |
||||
|
title: 'Request Payment', |
||||
|
amount: 'Amount', |
||||
|
memo: 'Memo', |
||||
|
details: 'Details about the request', |
||||
|
request: 'Request' |
||||
|
}) |
@ -0,0 +1,6 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
loading: 'loading' |
||||
|
}) |
@ -0,0 +1,7 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
enable: 'Enable', |
||||
|
disable: 'Disable' |
||||
|
}) |
@ -0,0 +1,10 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
btcpay_description: |
||||
|
"Paste the full content of your BTCPay Server connection config file. This can be found by clicking the link entitled 'Click here to open the configuration file' in your BTCPay Server gRPC settings.", |
||||
|
btcpay_error: 'Invalid connection string.', |
||||
|
connection_string_label: 'Connection String', |
||||
|
connection_string_placeholder: 'BTCPay Server Connection String' |
||||
|
}) |
@ -0,0 +1,7 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
verify_host_title: 'Are you sure you want to connect to', |
||||
|
verify_host_description: 'Please check the hostname carefully.' |
||||
|
}) |
@ -0,0 +1,10 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
hostname_title: 'Host', |
||||
|
hostname_description: 'Hostname and port of the Lnd gRPC interface. Example: localhost:10009', |
||||
|
cert_title: 'TLS Certificate', |
||||
|
cert_description: 'Path to the lnd tls cert. Example: /path/to/tls.cert', |
||||
|
macaroon_description: 'Path to the lnd macaroon file. Example: /path/to/admin.macaroon' |
||||
|
}) |
@ -0,0 +1,14 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
default: 'Default', |
||||
|
default_description: |
||||
|
'By selecting the defualt mode we will do everything for you. Just click and go!', |
||||
|
only: 'only', |
||||
|
custom: 'Custom', |
||||
|
custom_description: |
||||
|
'Connect to your own node. You will need to provide your own connection settings so this is for advanced users only.', |
||||
|
btcpay_description: |
||||
|
'Connect to your own BTCPay Server instance to access your BTCPay Server wallet.' |
||||
|
}) |
@ -0,0 +1,8 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
help: 'Need Help?', |
||||
|
next: 'Next', |
||||
|
back: 'back' |
||||
|
}) |
@ -0,0 +1,7 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
password_placeholder: 'Password', |
||||
|
unlock: 'Unlock' |
||||
|
}) |
@ -0,0 +1,10 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
password_placeholder: 'Password', |
||||
|
password_confirm_placeholder: 'Confirm Password', |
||||
|
password_error_match: 'Passwords do not match', |
||||
|
password_error_length: 'Password must be at least {passwordMinLength} characters long', |
||||
|
unlock: 'Unlock' |
||||
|
}) |
@ -0,0 +1,6 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
word_placeholder: 'word' |
||||
|
}) |
@ -0,0 +1,7 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
signup_create: 'Create new wallet', |
||||
|
signup_import: 'Import existing wallet' |
||||
|
}) |
@ -0,0 +1,17 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
grab_coffee: |
||||
|
'It looks like this could take some time - you might want to grab a coffee or try again later!', |
||||
|
waiting_for_peers: 'Waiting for peers…', |
||||
|
preparing: 'Preparing…', |
||||
|
sync_title: 'Welcome back to your Zap wallet!', |
||||
|
sync_description: |
||||
|
'Please wait a while whilst we fetch all of your latest data from the blockchain.', |
||||
|
fund_title: 'Fund your Zap wallet', |
||||
|
fund_description: 'Might as well fund your wallet while you’re waiting to sync.', |
||||
|
sync_caption: 'Syncing to the blockchain', |
||||
|
block_progress: 'Block {currentBlock} of {totalBlocks}', |
||||
|
filter_progress: 'Commitment Filter {currentFilter} of {totalFilters}' |
||||
|
}) |
@ -0,0 +1,35 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
connection_title: 'How do you want to connect to the Lightning Network?', |
||||
|
connection_description: |
||||
|
'By default Zap will spin up a node for you and handle all the nerdy stuff in the background. However you can also setup a custom node connection and use Zap to control a remote node if you desire (for advanced users).', |
||||
|
connection_details_custom_title: 'Connection details', |
||||
|
connection_details_custom_description: 'Enter the connection details for your Lightning node.', |
||||
|
btcpay_title: 'BTCPay Server', |
||||
|
btcpay_description: 'Enter the connection details for your BTCPay Server node.', |
||||
|
confirm_connection_title: 'Confirm connection', |
||||
|
confirm_connection_description: 'Confirm the connection details for your Lightning node.', |
||||
|
alias_title: 'What should we call you?', |
||||
|
alias_description: 'Set your nickname to help others connect with you on the Lightning Network', |
||||
|
autopilot_title: 'Autopilot', |
||||
|
autopilot_description: |
||||
|
'Autopilot is an automatic network manager. Instead of manually adding people to build your network to make payments, enable autopilot to automatically connect you to the Lightning Network using 60% of your balance.', |
||||
|
create_wallet_password_title: 'Welcome!', |
||||
|
create_wallet_password_description: |
||||
|
'Looks like you are new here. Set a password to encrypt your wallet. This password will be needed to unlock Zap in the future', |
||||
|
signup_title: "Alright, let's get set up", |
||||
|
signup_description: 'Would you like to create a new wallet or import an existing one?', |
||||
|
login_title: 'Welcome back!', |
||||
|
login_description: |
||||
|
'It looks like you already have a wallet (wallet found at: `{walletDir}`). Please enter your wallet password to unlock it.', |
||||
|
import_title: 'Import your seed', |
||||
|
import_description: "Recovering a wallet, nice. You don't need anyone else, you got yourself :)", |
||||
|
save_seed_title: 'Save your wallet seed', |
||||
|
save_seed_description: |
||||
|
'Please save these 24 words securely! This will allow you to recover your wallet in the future', |
||||
|
retype_seed_title: 'Retype your seed', |
||||
|
retype_seed_description: |
||||
|
"Your seed is important! If you lose your seed you'll have no way to recover your wallet. To make sure that you have properly saved your seed, please retype words {word1}, {word2} & {word3}" |
||||
|
}) |
@ -0,0 +1,6 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
title: 'Fiat Currency' |
||||
|
}) |
@ -0,0 +1,49 @@ |
|||||
|
import React from 'react' |
||||
|
import PropTypes from 'prop-types' |
||||
|
import FaAngleLeft from 'react-icons/lib/fa/angle-left' |
||||
|
import ISO6391 from 'iso-639-1' |
||||
|
import Isvg from 'react-inlinesvg' |
||||
|
import checkIcon from 'icons/check.svg' |
||||
|
|
||||
|
import { FormattedMessage } from 'react-intl' |
||||
|
import messages from './messages' |
||||
|
|
||||
|
import styles from './Locale.scss' |
||||
|
|
||||
|
const Translate = ({ locales, disableSubMenu, currentLocale, setLocale }) => { |
||||
|
const changeLocale = lng => { |
||||
|
setLocale(lng) |
||||
|
} |
||||
|
|
||||
|
return ( |
||||
|
<div> |
||||
|
<header className={styles.submenuHeader} onClick={disableSubMenu}> |
||||
|
<FaAngleLeft /> |
||||
|
<FormattedMessage {...messages.title} /> |
||||
|
</header> |
||||
|
<ul className={styles.locales}> |
||||
|
{Object.keys(locales).map(lang => { |
||||
|
return ( |
||||
|
<li |
||||
|
key={lang} |
||||
|
className={currentLocale === lang ? styles.active : ''} |
||||
|
onClick={() => changeLocale(lang)} |
||||
|
> |
||||
|
<span>{ISO6391.getName(lang.split('-')[0])}</span> |
||||
|
{currentLocale === lang && <Isvg src={checkIcon} />} |
||||
|
</li> |
||||
|
) |
||||
|
})} |
||||
|
</ul> |
||||
|
</div> |
||||
|
) |
||||
|
} |
||||
|
|
||||
|
Translate.propTypes = { |
||||
|
locales: PropTypes.object.isRequired, |
||||
|
currentLocale: PropTypes.string.isRequired, |
||||
|
setLocale: PropTypes.func.isRequired, |
||||
|
disableSubMenu: PropTypes.func.isRequired |
||||
|
} |
||||
|
|
||||
|
export default Translate |
@ -0,0 +1,42 @@ |
|||||
|
@import '../../../styles/variables.scss'; |
||||
|
|
||||
|
.submenuHeader { |
||||
|
padding: 20px; |
||||
|
background: lighten(#1d1f27, 20%); |
||||
|
font-size: 10px; |
||||
|
display: flex; |
||||
|
flex-direction: row; |
||||
|
justify-content: end; |
||||
|
align-items: center; |
||||
|
transition: all 0.25s; |
||||
|
|
||||
|
&:hover { |
||||
|
background: lighten(#1d1f27, 10%); |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
.locales { |
||||
|
height: 300px; |
||||
|
overflow-y: scroll; |
||||
|
|
||||
|
li { |
||||
|
background: #191919; |
||||
|
cursor: pointer; |
||||
|
border-bottom: 1px solid #0f0f0f; |
||||
|
transition: 0.25s hover; |
||||
|
|
||||
|
&.active { |
||||
|
background: #0f0f0f; |
||||
|
|
||||
|
svg { |
||||
|
height: 10px; |
||||
|
width: 10px; |
||||
|
color: $green; |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
span:nth-child(1) { |
||||
|
line-height: 12px; |
||||
|
} |
||||
|
} |
||||
|
} |
@ -0,0 +1,3 @@ |
|||||
|
import Locale from './Locale' |
||||
|
|
||||
|
export default Locale |
@ -0,0 +1,6 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
title: 'Language' |
||||
|
}) |
@ -0,0 +1,7 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
fiat: 'Fiat Currency', |
||||
|
locale: 'Language' |
||||
|
}) |
@ -0,0 +1,9 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
export default defineMessages({ |
||||
|
node_public_key: 'Node Public Key', |
||||
|
node_pubkey: 'Node Pubkey', |
||||
|
bitcoin_address: 'Bitcoin Address', |
||||
|
copy_address: 'Copy address', |
||||
|
copy_pubkey: 'Copy Pubkey' |
||||
|
}) |
@ -0,0 +1,10 @@ |
|||||
|
import { defineMessages } from 'react-intl' |
||||
|
|
||||
|
/* eslint-disable max-len */ |
||||
|
export default defineMessages({ |
||||
|
pay: 'Pay', |
||||
|
request: 'Request', |
||||
|
sending_tx: 'Sending your transaction…', |
||||
|
payment_success: 'Successfully sent payment', |
||||
|
transaction_success: 'Successfully sent transaction' |
||||
|
}) |
@ -1,21 +1,32 @@ |
|||||
import React from 'react' |
import React from 'react' |
||||
import { render } from 'react-dom' |
import ReactDOM from 'react-dom' |
||||
import { AppContainer } from 'react-hot-loader' |
import { Provider } from 'react-intl-redux' |
||||
|
import jstz from 'jstimezonedetect' |
||||
|
|
||||
import Root from './containers/Root' |
import Root from './containers/Root' |
||||
import { configureStore, history } from './store/configureStore' |
import { configureStore, history } from './store/configureStore' |
||||
import './styles/app.global.scss' |
import './styles/app.global.scss' |
||||
|
|
||||
const store = configureStore() |
import { translationMessages, DEFAULT_LOCALE } from './lib/utils/i18n' |
||||
|
|
||||
|
const initialState = { |
||||
|
intl: { |
||||
|
locale: DEFAULT_LOCALE, |
||||
|
messages: translationMessages[DEFAULT_LOCALE], |
||||
|
timeZone: jstz.determine().name() |
||||
|
} |
||||
|
} |
||||
|
|
||||
render( |
const store = configureStore(initialState) |
||||
<AppContainer> |
const MOUNT_NODE = document.getElementById('root') |
||||
<Root store={store} history={history} /> |
|
||||
</AppContainer>, |
|
||||
document.getElementById('root') |
|
||||
) |
|
||||
|
|
||||
if (module.hot) { |
const render = () => { |
||||
module.hot.accept('./containers/Root', () => { |
ReactDOM.render( |
||||
render(<Root store={store} history={history} />, document.getElementById('root')) |
<Provider store={store}> |
||||
}) |
<Root history={history} /> |
||||
|
</Provider>, |
||||
|
MOUNT_NODE |
||||
|
) |
||||
} |
} |
||||
|
|
||||
|
render() |
||||
|
@ -0,0 +1,125 @@ |
|||||
|
import { app, remote } from 'electron' |
||||
|
import Store from 'electron-store' |
||||
|
import { addLocaleData } from 'react-intl' |
||||
|
|
||||
|
// Load locale data.
|
||||
|
import bg from 'react-intl/locale-data/bg' |
||||
|
import cs from 'react-intl/locale-data/cs' |
||||
|
import de from 'react-intl/locale-data/de' |
||||
|
import el from 'react-intl/locale-data/el' |
||||
|
import en from 'react-intl/locale-data/en' |
||||
|
import es from 'react-intl/locale-data/es' |
||||
|
import fr from 'react-intl/locale-data/fr' |
||||
|
import hr from 'react-intl/locale-data/hr' |
||||
|
import ja from 'react-intl/locale-data/ja' |
||||
|
import nl from 'react-intl/locale-data/nl' |
||||
|
import pt from 'react-intl/locale-data/pt' |
||||
|
import ro from 'react-intl/locale-data/ro' |
||||
|
import ru from 'react-intl/locale-data/ru' |
||||
|
import sv from 'react-intl/locale-data/sv' |
||||
|
import tr from 'react-intl/locale-data/tr' |
||||
|
import uk from 'react-intl/locale-data/uk' |
||||
|
import zh from 'react-intl/locale-data/zh' |
||||
|
|
||||
|
// Load translation data.
|
||||
|
import bgTranslationMessages from '../../translations/bg-BG.json' |
||||
|
import csTranslationMessages from '../../translations/cs-CZ.json' |
||||
|
import deTranslationMessages from '../../translations/de-DE.json' |
||||
|
import elTranslationMessages from '../../translations/el-GR.json' |
||||
|
import enTranslationMessages from '../../translations/en.json' |
||||
|
import esTranslationMessages from '../../translations/es-ES.json' |
||||
|
import frTranslationMessages from '../../translations/fr-FR.json' |
||||
|
import hrTranslationMessages from '../../translations/hr-HR.json' |
||||
|
import jaTranslationMessages from '../../translations/ja-JP.json' |
||||
|
import nlTranslationMessages from '../../translations/nl-NL.json' |
||||
|
import ptTranslationMessages from '../../translations/pt-BR.json' |
||||
|
import roTranslationMessages from '../../translations/ro-RO.json' |
||||
|
import ruTranslationMessages from '../../translations/ru-RU.json' |
||||
|
import svTranslationMessages from '../../translations/sv-SE.json' |
||||
|
import trTranslationMessages from '../../translations/tr-TR.json' |
||||
|
import ukTranslationMessages from '../../translations/uk-UA.json' |
||||
|
import zhCNTranslationMessages from '../../translations/zh-CN.json' |
||||
|
import zhTWTranslationMessages from '../../translations/zh-TW.json' |
||||
|
|
||||
|
// Add locale data.
|
||||
|
addLocaleData([ |
||||
|
...bg, |
||||
|
...cs, |
||||
|
...de, |
||||
|
...el, |
||||
|
...en, |
||||
|
...es, |
||||
|
...fr, |
||||
|
...hr, |
||||
|
...ja, |
||||
|
...nl, |
||||
|
...pt, |
||||
|
...ro, |
||||
|
...ru, |
||||
|
...sv, |
||||
|
...tr, |
||||
|
...uk, |
||||
|
...zh |
||||
|
]) |
||||
|
|
||||
|
// Defaine list of language that we will support.
|
||||
|
export const locales = [ |
||||
|
'bg', |
||||
|
'cs', |
||||
|
'de', |
||||
|
'el', |
||||
|
'en', |
||||
|
'es', |
||||
|
'fr', |
||||
|
'hr', |
||||
|
'ja', |
||||
|
'nl', |
||||
|
'pt', |
||||
|
'ro', |
||||
|
'ru', |
||||
|
'sv', |
||||
|
'tr', |
||||
|
'uk', |
||||
|
'zh' |
||||
|
] |
||||
|
|
||||
|
function getDefaltLocale() { |
||||
|
const store = new Store({ name: 'settings' }) |
||||
|
|
||||
|
// Detect user language.
|
||||
|
let language = store.get('locale') || (app || remote.app).getLocale() |
||||
|
|
||||
|
// If the detected language is not available, strip out any regional component and check again.
|
||||
|
if (!locales.includes(language)) { |
||||
|
language = language.toLowerCase().split(/[_-]+/)[0] |
||||
|
} |
||||
|
// If we still can't find the users language, default to english.
|
||||
|
if (!locales.includes(language)) { |
||||
|
language = 'en' |
||||
|
} |
||||
|
return language |
||||
|
} |
||||
|
|
||||
|
export const DEFAULT_LOCALE = getDefaltLocale() |
||||
|
|
||||
|
// Collate all translations.
|
||||
|
export const translationMessages = { |
||||
|
en: enTranslationMessages, |
||||
|
bg: bgTranslationMessages, |
||||
|
'zh-CN': zhCNTranslationMessages, |
||||
|
'zh-TW': zhTWTranslationMessages, |
||||
|
hr: hrTranslationMessages, |
||||
|
cs: csTranslationMessages, |
||||
|
nl: nlTranslationMessages, |
||||
|
fr: frTranslationMessages, |
||||
|
de: deTranslationMessages, |
||||
|
el: elTranslationMessages, |
||||
|
ja: jaTranslationMessages, |
||||
|
pt: ptTranslationMessages, |
||||
|
ro: roTranslationMessages, |
||||
|
ru: ruTranslationMessages, |
||||
|
es: esTranslationMessages, |
||||
|
sv: svTranslationMessages, |
||||
|
tr: trTranslationMessages, |
||||
|
uk: ukTranslationMessages |
||||
|
} |
@ -0,0 +1,40 @@ |
|||||
|
import Store from 'electron-store' |
||||
|
import { updateIntl } from 'react-intl-redux' |
||||
|
import { ipcRenderer } from 'electron' |
||||
|
import { translationMessages } from 'lib/utils/i18n' |
||||
|
|
||||
|
// Settings store
|
||||
|
const store = new Store({ name: 'settings' }) |
||||
|
|
||||
|
// ------------------------------------
|
||||
|
// Actions
|
||||
|
// ------------------------------------
|
||||
|
|
||||
|
export const setLocale = locale => (dispatch, getState) => { |
||||
|
const state = getState() |
||||
|
|
||||
|
// Switch the active locale.
|
||||
|
dispatch( |
||||
|
updateIntl({ |
||||
|
locale, |
||||
|
messages: state.locale[locale] |
||||
|
}) |
||||
|
) |
||||
|
|
||||
|
// Save the new locale sa our language preference.
|
||||
|
store.set('locale', locale) |
||||
|
|
||||
|
// Let the main process know the locale has changed.
|
||||
|
ipcRenderer.send('setLocale', locale) |
||||
|
} |
||||
|
|
||||
|
export const receiveLocale = (event, locale) => dispatch => { |
||||
|
dispatch(setLocale(locale)) |
||||
|
} |
||||
|
|
||||
|
// ------------------------------------
|
||||
|
// Reducer
|
||||
|
// ------------------------------------
|
||||
|
export default function localeReducer(state = translationMessages) { |
||||
|
return state |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "Expires in", |
||||
|
"components.Activity.Invoice.amount": "Invoice amount", |
||||
|
"components.Activity.Invoice.received": "Received payment", |
||||
|
"components.Activity.Invoice.requested": "Requested payment", |
||||
|
"components.Activity.Invoice.type_paid": "Lightning invoice (paid)", |
||||
|
"components.Activity.Invoice.type_unpaid": "Lightning invoice (unpaid)", |
||||
|
"components.Activity.InvoiceModal.copy": "Copy Request", |
||||
|
"components.Activity.InvoiceModal.memo": "Memo", |
||||
|
"components.Activity.InvoiceModal.not_paid": "Not Paid", |
||||
|
"components.Activity.InvoiceModal.paid": "Paid", |
||||
|
"components.Activity.InvoiceModal.pay_req": "Payment Request", |
||||
|
"components.Activity.InvoiceModal.request": "Request", |
||||
|
"components.Activity.InvoiceModal.save": "Save as image", |
||||
|
"components.Activity.Payment.amount": "Payment amount", |
||||
|
"components.Activity.Payment.fee": "Payment fee", |
||||
|
"components.Activity.Payment.type": "Lightning payment", |
||||
|
"components.Activity.PaymentModal.fee": "Fee", |
||||
|
"components.Activity.PaymentModal.lightning": "Lightning Network", |
||||
|
"components.Activity.PaymentModal.sent": "Sent", |
||||
|
"components.Activity.Transaction.amount": "Transaction amount", |
||||
|
"components.Activity.Transaction.fee": "Transaction fee", |
||||
|
"components.Activity.Transaction.received": "Received", |
||||
|
"components.Activity.Transaction.sent": "Sent", |
||||
|
"components.Activity.Transaction.type": "On-chain transaction", |
||||
|
"components.Activity.TransactionModal.fee": "Fee", |
||||
|
"components.Activity.TransactionModal.on_chain": "On-Chain", |
||||
|
"components.Activity.TransactionModal.received": "Received", |
||||
|
"components.Activity.TransactionModal.sent": "Sent", |
||||
|
"components.Activity.all": "All", |
||||
|
"components.Activity.hide_expired": "Hide Expired Requests", |
||||
|
"components.Activity.pending": "Pending", |
||||
|
"components.Activity.refresh": "Refresh", |
||||
|
"components.Activity.requested": "Requested", |
||||
|
"components.Activity.search": "Search", |
||||
|
"components.Activity.sent": "Sent", |
||||
|
"components.Activity.show_expired": "Show Expired Requests", |
||||
|
"components.Contacts.AddChannel.manual_button": "Connect Manually", |
||||
|
"components.Contacts.AddChannel.manual_description": "Hm, looks like we can't see that node from here, wanna try to manually connect?", |
||||
|
"components.Contacts.AddChannel.offline": "Offline", |
||||
|
"components.Contacts.AddChannel.online": "Online", |
||||
|
"components.Contacts.AddChannel.pending": "Pending", |
||||
|
"components.Contacts.AddChannel.private": "Private", |
||||
|
"components.Contacts.ConnectManually.description": "Please enter the peer’s pubkey@host", |
||||
|
"components.Contacts.ConnectManually.placeholder": "pubkey@host", |
||||
|
"components.Contacts.ConnectManually.submit": "Submit", |
||||
|
"components.Contacts.ConnectManually.title": "Connect Manually", |
||||
|
"components.Contacts.Network.closing": "closing", |
||||
|
"components.Contacts.Network.loading": "loading", |
||||
|
"components.Contacts.Network.offline": "offline", |
||||
|
"components.Contacts.Network.online": "online", |
||||
|
"components.Contacts.Network.open_channel": "Open a channel", |
||||
|
"components.Contacts.Network.pay_limit": "Pay Limit", |
||||
|
"components.Contacts.Network.pending": "pending", |
||||
|
"components.Contacts.Network.refresh": "Refresh", |
||||
|
"components.Contacts.Network.req_limit": "Request Limit", |
||||
|
"components.Contacts.Network.search_placeholder": "search by alias or pubkey", |
||||
|
"components.Contacts.Network.title": "My Network", |
||||
|
"components.Contacts.SubmitChannelForm.description": "Opening a channel will help you send and receive money on the Lightning Network. You aren't spending any money, rather moving the money you plan to use onto the network.", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "You currently have {activeChannels, plural, zero {no active channels} one {1 active channel} other {{activeChannels} active channels}} open to {aliasMsg, select, this_node {this node} other {{aliasMsg}}} with a capacity of", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "Submit", |
||||
|
"components.Contacts.SubmitChannelForm.title": "Add Funds to Network", |
||||
|
"components.Contacts.SuggestedNodes.connect": "Connect", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "Hmmm, looks like you don't have any channels yet. Here are some suggested nodes to open a channel with to get started", |
||||
|
"components.Form.Pay.amount": "Amount", |
||||
|
"components.Form.Pay.destination": "Destination", |
||||
|
"components.Form.Pay.onchain_description": "On-Chain (~10 minutes)", |
||||
|
"components.Form.Pay.pay": "Pay", |
||||
|
"components.Form.Pay.request_placeholder": "Paste payment request or bitcoin address here", |
||||
|
"components.Form.Pay.title": "Make Payment", |
||||
|
"components.Form.Request.amount": "Amount", |
||||
|
"components.Form.Request.details": "Details about the request", |
||||
|
"components.Form.Request.memo": "Memo", |
||||
|
"components.Form.Request.request": "Request", |
||||
|
"components.Form.Request.title": "Request Payment", |
||||
|
"components.LoadingBolt.loading": "loading", |
||||
|
"components.Onboarding.Autopilot.disable": "Disable", |
||||
|
"components.Onboarding.Autopilot.enable": "Enable", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "Paste the full content of your BTCPay Server connection config file. This can be found by clicking the link entitled 'Click here to open the configuration file' in your BTCPay Server gRPC settings.", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "Invalid connection string.", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "Connection String", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "BTCPay Server Connection String", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "Please check the hostname carefully.", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "Are you sure you want to connect to", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "Path to the lnd tls cert. Example: /path/to/tls.cert", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "TLS Certificate", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "Hostname and port of the Lnd gRPC interface. Example: localhost:10009", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "Host", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "Path to the lnd macaroon file. Example: /path/to/admin.macaroon", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "Connect to your own BTCPay Server instance to access your BTCPay Server wallet.", |
||||
|
"components.Onboarding.ConnectionType.custom": "Custom", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "Connect to your own node. You will need to provide your own connection settings so this is for advanced users only.", |
||||
|
"components.Onboarding.ConnectionType.default": "Default", |
||||
|
"components.Onboarding.ConnectionType.default_description": "By selecting the defualt mode we will do everything for you. Just click and go!", |
||||
|
"components.Onboarding.ConnectionType.only": "only", |
||||
|
"components.Onboarding.FormContainer.back": "back", |
||||
|
"components.Onboarding.FormContainer.help": "Need Help?", |
||||
|
"components.Onboarding.FormContainer.next": "Next", |
||||
|
"components.Onboarding.Login.password_placeholder": "Password", |
||||
|
"components.Onboarding.Login.unlock": "Unlock", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "Confirm Password", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "Password must be at least {passwordMinLength} characters long", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "Passwords do not match", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "Password", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "Unlock", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "word", |
||||
|
"components.Onboarding.Signup.signup_create": "Create new wallet", |
||||
|
"components.Onboarding.Signup.signup_import": "Import existing wallet", |
||||
|
"components.Onboarding.Syncing.block_progress": "Block {currentBlock} of {totalBlocks}", |
||||
|
"components.Onboarding.Syncing.filter_progress": "Commitment Filter {currentFilter} of {totalFilters}", |
||||
|
"components.Onboarding.Syncing.fund_description": "Might as well fund your wallet while you’re waiting to sync.", |
||||
|
"components.Onboarding.Syncing.fund_title": "Fund your Zap wallet", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "It looks like this could take some time - you might want to grab a coffee or try again later!", |
||||
|
"components.Onboarding.Syncing.preparing": "Preparing…", |
||||
|
"components.Onboarding.Syncing.sync_caption": "Syncing to the blockchain", |
||||
|
"components.Onboarding.Syncing.sync_description": "Please wait a while whilst we fetch all of your latest data from the blockchain.", |
||||
|
"components.Onboarding.Syncing.sync_title": "Welcome back to your Zap wallet!", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "Waiting for peers…", |
||||
|
"components.Onboarding.alias_description": "Set your nickname to help others connect with you on the Lightning Network", |
||||
|
"components.Onboarding.alias_title": "What should we call you?", |
||||
|
"components.Onboarding.autopilot_description": "Autopilot is an automatic network manager. Instead of manually adding people to build your network to make payments, enable autopilot to automatically connect you to the Lightning Network using 60% of your balance.", |
||||
|
"components.Onboarding.autopilot_title": "Autopilot", |
||||
|
"components.Onboarding.btcpay_description": "Enter the connection details for your BTCPay Server node.", |
||||
|
"components.Onboarding.btcpay_title": "BTCPay Server", |
||||
|
"components.Onboarding.confirm_connection_description": "Confirm the connection details for your Lightning node.", |
||||
|
"components.Onboarding.confirm_connection_title": "Confirm connection", |
||||
|
"components.Onboarding.connection_description": "By default Zap will spin up a node for you and handle all the nerdy stuff in the background. However you can also setup a custom node connection and use Zap to control a remote node if you desire (for advanced users).", |
||||
|
"components.Onboarding.connection_details_custom_description": "Enter the connection details for your Lightning node.", |
||||
|
"components.Onboarding.connection_details_custom_title": "Connection details", |
||||
|
"components.Onboarding.connection_title": "How do you want to connect to the Lightning Network?", |
||||
|
"components.Onboarding.create_wallet_password_description": "Looks like you are new here. Set a password to encrypt your wallet. This password will be needed to unlock Zap in the future", |
||||
|
"components.Onboarding.create_wallet_password_title": "Welcome!", |
||||
|
"components.Onboarding.import_description": "Recovering a wallet, nice. You don't need anyone else, you got yourself :)", |
||||
|
"components.Onboarding.import_title": "Import your seed", |
||||
|
"components.Onboarding.login_description": "It looks like you already have a wallet (wallet found at: `{walletDir}`). Please enter your wallet password to unlock it.", |
||||
|
"components.Onboarding.login_title": "Welcome back!", |
||||
|
"components.Onboarding.retype_seed_description": "Your seed is important! If you lose your seed you'll have no way to recover your wallet. To make sure that you have properly saved your seed, please retype words {word1}, {word2} & {word3}", |
||||
|
"components.Onboarding.retype_seed_title": "Retype your seed", |
||||
|
"components.Onboarding.save_seed_description": "Please save these 24 words securely! This will allow you to recover your wallet in the future", |
||||
|
"components.Onboarding.save_seed_title": "Save your wallet seed", |
||||
|
"components.Onboarding.signup_description": "Would you like to create a new wallet or import an existing one?", |
||||
|
"components.Onboarding.signup_title": "Alright, let's get set up", |
||||
|
"components.Settings.Fiat.title": "Fiat Currency", |
||||
|
"components.Settings.Locale.title": "Language", |
||||
|
"components.Settings.Menu.fiat": "Fiat Currency", |
||||
|
"components.Settings.Menu.locale": "Language", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "Bitcoin Address", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "Copy address", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "Copy Pubkey", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "Node Pubkey", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "Node Public Key", |
||||
|
"components.Wallet.pay": "Pay", |
||||
|
"components.Wallet.payment_success": "Successfully sent payment", |
||||
|
"components.Wallet.request": "Request", |
||||
|
"components.Wallet.sending_tx": "Sending your transaction…", |
||||
|
"components.Wallet.transaction_success": "Successfully sent transaction" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,157 @@ |
|||||
|
{ |
||||
|
"components.Activity.Countdown.expires": "", |
||||
|
"components.Activity.Invoice.amount": "", |
||||
|
"components.Activity.Invoice.received": "", |
||||
|
"components.Activity.Invoice.requested": "", |
||||
|
"components.Activity.Invoice.type_paid": "", |
||||
|
"components.Activity.Invoice.type_unpaid": "", |
||||
|
"components.Activity.InvoiceModal.copy": "", |
||||
|
"components.Activity.InvoiceModal.memo": "", |
||||
|
"components.Activity.InvoiceModal.not_paid": "", |
||||
|
"components.Activity.InvoiceModal.paid": "", |
||||
|
"components.Activity.InvoiceModal.pay_req": "", |
||||
|
"components.Activity.InvoiceModal.request": "", |
||||
|
"components.Activity.InvoiceModal.save": "", |
||||
|
"components.Activity.Payment.amount": "", |
||||
|
"components.Activity.Payment.fee": "", |
||||
|
"components.Activity.Payment.type": "", |
||||
|
"components.Activity.PaymentModal.fee": "", |
||||
|
"components.Activity.PaymentModal.lightning": "", |
||||
|
"components.Activity.PaymentModal.sent": "", |
||||
|
"components.Activity.Transaction.amount": "", |
||||
|
"components.Activity.Transaction.fee": "", |
||||
|
"components.Activity.Transaction.received": "", |
||||
|
"components.Activity.Transaction.sent": "", |
||||
|
"components.Activity.Transaction.type": "", |
||||
|
"components.Activity.TransactionModal.fee": "", |
||||
|
"components.Activity.TransactionModal.on_chain": "", |
||||
|
"components.Activity.TransactionModal.received": "", |
||||
|
"components.Activity.TransactionModal.sent": "", |
||||
|
"components.Activity.all": "", |
||||
|
"components.Activity.hide_expired": "", |
||||
|
"components.Activity.pending": "", |
||||
|
"components.Activity.refresh": "", |
||||
|
"components.Activity.requested": "", |
||||
|
"components.Activity.search": "", |
||||
|
"components.Activity.sent": "", |
||||
|
"components.Activity.show_expired": "", |
||||
|
"components.Contacts.AddChannel.manual_button": "", |
||||
|
"components.Contacts.AddChannel.manual_description": "", |
||||
|
"components.Contacts.AddChannel.offline": "", |
||||
|
"components.Contacts.AddChannel.online": "", |
||||
|
"components.Contacts.AddChannel.pending": "", |
||||
|
"components.Contacts.AddChannel.private": "", |
||||
|
"components.Contacts.ConnectManually.description": "", |
||||
|
"components.Contacts.ConnectManually.placeholder": "", |
||||
|
"components.Contacts.ConnectManually.submit": "", |
||||
|
"components.Contacts.ConnectManually.title": "", |
||||
|
"components.Contacts.Network.closing": "", |
||||
|
"components.Contacts.Network.loading": "", |
||||
|
"components.Contacts.Network.offline": "", |
||||
|
"components.Contacts.Network.online": "", |
||||
|
"components.Contacts.Network.open_channel": "", |
||||
|
"components.Contacts.Network.pay_limit": "", |
||||
|
"components.Contacts.Network.pending": "", |
||||
|
"components.Contacts.Network.refresh": "", |
||||
|
"components.Contacts.Network.req_limit": "", |
||||
|
"components.Contacts.Network.search_placeholder": "", |
||||
|
"components.Contacts.Network.title": "", |
||||
|
"components.Contacts.SubmitChannelForm.description": "", |
||||
|
"components.Contacts.SubmitChannelForm.duplicate_warnig": "", |
||||
|
"components.Contacts.SubmitChannelForm.submit": "", |
||||
|
"components.Contacts.SubmitChannelForm.title": "", |
||||
|
"components.Contacts.SuggestedNodes.connect": "", |
||||
|
"components.Contacts.SuggestedNodes.empty_description": "", |
||||
|
"components.Form.Pay.amount": "", |
||||
|
"components.Form.Pay.destination": "", |
||||
|
"components.Form.Pay.onchain_description": "", |
||||
|
"components.Form.Pay.pay": "", |
||||
|
"components.Form.Pay.request_placeholder": "", |
||||
|
"components.Form.Pay.title": "", |
||||
|
"components.Form.Request.amount": "", |
||||
|
"components.Form.Request.details": "", |
||||
|
"components.Form.Request.memo": "", |
||||
|
"components.Form.Request.request": "", |
||||
|
"components.Form.Request.title": "", |
||||
|
"components.LoadingBolt.loading": "", |
||||
|
"components.Onboarding.Autopilot.disable": "", |
||||
|
"components.Onboarding.Autopilot.enable": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_description": "", |
||||
|
"components.Onboarding.BtcPayServer.btcpay_error": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_label": "", |
||||
|
"components.Onboarding.BtcPayServer.connection_string_placeholder": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_description": "", |
||||
|
"components.Onboarding.ConnectionConfirm.verify_host_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.cert_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_description": "", |
||||
|
"components.Onboarding.ConnectionDetails.hostname_title": "", |
||||
|
"components.Onboarding.ConnectionDetails.macaroon_description": "", |
||||
|
"components.Onboarding.ConnectionType.btcpay_description": "", |
||||
|
"components.Onboarding.ConnectionType.custom": "", |
||||
|
"components.Onboarding.ConnectionType.custom_description": "", |
||||
|
"components.Onboarding.ConnectionType.default": "", |
||||
|
"components.Onboarding.ConnectionType.default_description": "", |
||||
|
"components.Onboarding.ConnectionType.only": "", |
||||
|
"components.Onboarding.FormContainer.back": "", |
||||
|
"components.Onboarding.FormContainer.help": "", |
||||
|
"components.Onboarding.FormContainer.next": "", |
||||
|
"components.Onboarding.Login.password_placeholder": "", |
||||
|
"components.Onboarding.Login.unlock": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_confirm_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_length": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_error_match": "", |
||||
|
"components.Onboarding.NewWalletPassword.password_placeholder": "", |
||||
|
"components.Onboarding.NewWalletPassword.unlock": "", |
||||
|
"components.Onboarding.RecoverForm.word_placeholder": "", |
||||
|
"components.Onboarding.Signup.signup_create": "", |
||||
|
"components.Onboarding.Signup.signup_import": "", |
||||
|
"components.Onboarding.Syncing.block_progress": "", |
||||
|
"components.Onboarding.Syncing.filter_progress": "", |
||||
|
"components.Onboarding.Syncing.fund_description": "", |
||||
|
"components.Onboarding.Syncing.fund_title": "", |
||||
|
"components.Onboarding.Syncing.grab_coffee": "", |
||||
|
"components.Onboarding.Syncing.preparing": "", |
||||
|
"components.Onboarding.Syncing.sync_caption": "", |
||||
|
"components.Onboarding.Syncing.sync_description": "", |
||||
|
"components.Onboarding.Syncing.sync_title": "", |
||||
|
"components.Onboarding.Syncing.waiting_for_peers": "", |
||||
|
"components.Onboarding.alias_description": "", |
||||
|
"components.Onboarding.alias_title": "", |
||||
|
"components.Onboarding.autopilot_description": "", |
||||
|
"components.Onboarding.autopilot_title": "", |
||||
|
"components.Onboarding.btcpay_description": "", |
||||
|
"components.Onboarding.btcpay_title": "", |
||||
|
"components.Onboarding.confirm_connection_description": "", |
||||
|
"components.Onboarding.confirm_connection_title": "", |
||||
|
"components.Onboarding.connection_description": "", |
||||
|
"components.Onboarding.connection_details_custom_description": "", |
||||
|
"components.Onboarding.connection_details_custom_title": "", |
||||
|
"components.Onboarding.connection_title": "", |
||||
|
"components.Onboarding.create_wallet_password_description": "", |
||||
|
"components.Onboarding.create_wallet_password_title": "", |
||||
|
"components.Onboarding.import_description": "", |
||||
|
"components.Onboarding.import_title": "", |
||||
|
"components.Onboarding.login_description": "", |
||||
|
"components.Onboarding.login_title": "", |
||||
|
"components.Onboarding.retype_seed_description": "", |
||||
|
"components.Onboarding.retype_seed_title": "", |
||||
|
"components.Onboarding.save_seed_description": "", |
||||
|
"components.Onboarding.save_seed_title": "", |
||||
|
"components.Onboarding.signup_description": "", |
||||
|
"components.Onboarding.signup_title": "", |
||||
|
"components.Settings.Fiat.title": "", |
||||
|
"components.Settings.Locale.title": "", |
||||
|
"components.Settings.Menu.fiat": "", |
||||
|
"components.Settings.Menu.locale": "", |
||||
|
"components.Wallet.ReceiveModal.bitcoin_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_address": "", |
||||
|
"components.Wallet.ReceiveModal.copy_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_pubkey": "", |
||||
|
"components.Wallet.ReceiveModal.node_public_key": "", |
||||
|
"components.Wallet.pay": "", |
||||
|
"components.Wallet.payment_success": "", |
||||
|
"components.Wallet.request": "", |
||||
|
"components.Wallet.sending_tx": "", |
||||
|
"components.Wallet.transaction_success": "" |
||||
|
} |
@ -0,0 +1,41 @@ |
|||||
|
// See https://github.com/yahoo/react-intl/wiki/Testing-with-React-Intl#enzyme
|
||||
|
|
||||
|
/** |
||||
|
* Components using the react-intl module require access to the intl context. |
||||
|
* This is not available when mounting single components in Enzyme. |
||||
|
* These helper functions aim to address that and wrap a valid, |
||||
|
* English-locale intl context around them. |
||||
|
*/ |
||||
|
|
||||
|
import React from 'react' |
||||
|
import { IntlProvider, intlShape } from 'react-intl' |
||||
|
import { mount, shallow } from 'enzyme' |
||||
|
|
||||
|
// Ppass default messages to the IntlProvider.
|
||||
|
const messages = require('../../../app/translations/en.json') |
||||
|
|
||||
|
// Create the IntlProvider to retrieve context for wrapping around.
|
||||
|
const intlProvider = new IntlProvider({ locale: 'en', messages }, {}) |
||||
|
const { intl } = intlProvider.getChildContext() |
||||
|
|
||||
|
/** |
||||
|
* When using React-Intl `injectIntl` on components, props.intl is required. |
||||
|
*/ |
||||
|
function nodeWithIntlProp(node) { |
||||
|
return React.cloneElement(node, { intl }) |
||||
|
} |
||||
|
|
||||
|
export function shallowWithIntl(node, { context, ...additionalOptions } = {}) { |
||||
|
return shallow(nodeWithIntlProp(node), { |
||||
|
context: Object.assign({}, context, { intl }), |
||||
|
...additionalOptions |
||||
|
}) |
||||
|
} |
||||
|
|
||||
|
export function mountWithIntl(node, { context, childContextTypes, ...additionalOptions } = {}) { |
||||
|
return mount(nodeWithIntlProp(node), { |
||||
|
context: Object.assign({}, context, { intl }), |
||||
|
childContextTypes: Object.assign({}, { intl: intlShape }, childContextTypes), |
||||
|
...additionalOptions |
||||
|
}) |
||||
|
} |
Some files were not shown because too many files changed in this diff
Loading…
Reference in new issue