header and tranactionList component translated
This commit is contained in:
parent
972ac78595
commit
1d09f08392
3 changed files with 18 additions and 12 deletions
|
@ -227,5 +227,11 @@
|
|||
"Be the first": "Be the first",
|
||||
"Refreshing the Dewey Decimals": "Refreshing the Dewey Decimals",
|
||||
"This location is unused.": "This location is unused.",
|
||||
"Put something here!": "Put something here!"
|
||||
"Put something here!": "Put something here!",
|
||||
"Transaction History": "Transaction History",
|
||||
"You have no transactions.": "You have no transactions.",
|
||||
"Loading transactions": "Loading transactions",
|
||||
"Amount": "Amount",
|
||||
"Time": "Time",
|
||||
"Transaction": "Transaction"
|
||||
}
|
|
@ -23,7 +23,7 @@ export const Header = (props) => {
|
|||
<Link onClick={() => navigate('/wallet')} button="text" icon="icon-bank" label={balance} ></Link>
|
||||
</div>
|
||||
<div className="header__item">
|
||||
<Link onClick={() => navigate('/publish')} button="primary button--flat" icon="icon-upload" label="Publish" />
|
||||
<Link onClick={() => navigate('/publish')} button="primary button--flat" icon="icon-upload" label={__("Publish")} />
|
||||
</div>
|
||||
<div className="header__item">
|
||||
<Link onClick={() => navigate('/downloaded')} button="alt button--flat" icon="icon-folder" />
|
||||
|
|
|
@ -22,8 +22,8 @@ class TransactionList extends React.Component{
|
|||
rows.push(
|
||||
<tr key={item.id}>
|
||||
<td>{ (item.amount > 0 ? '+' : '' ) + item.amount }</td>
|
||||
<td>{ item.date ? item.date.toLocaleDateString() : <span className="empty">(Transaction pending)</span> }</td>
|
||||
<td>{ item.date ? item.date.toLocaleTimeString() : <span className="empty">(Transaction pending)</span> }</td>
|
||||
<td>{ item.date ? item.date.toLocaleDateString() : <span className="empty">{__("(Transaction pending)")}</span> }</td>
|
||||
<td>{ item.date ? item.date.toLocaleTimeString() : <span className="empty">{__("(Transaction pending)")}</span> }</td>
|
||||
<td>
|
||||
<a className="button-text" href={"https://explorer.lbry.io/#!/transaction?id="+item.id}>{item.id.substr(0, 7)}</a>
|
||||
</td>
|
||||
|
@ -35,19 +35,19 @@ class TransactionList extends React.Component{
|
|||
return (
|
||||
<section className="card">
|
||||
<div className="card__title-primary">
|
||||
<h3>Transaction History</h3>
|
||||
<h3>{__("Transaction History")}</h3>
|
||||
</div>
|
||||
<div className="card__content">
|
||||
{ fetchingTransactions && <BusyMessage message="Loading transactions" /> }
|
||||
{ !fetchingTransactions && rows.length === 0 ? <div className="empty">You have no transactions.</div> : '' }
|
||||
{ fetchingTransactions && <BusyMessage message={__("Loading transactions")} /> }
|
||||
{ !fetchingTransactions && rows.length === 0 ? <div className="empty">{__("You have no transactions.")}</div> : '' }
|
||||
{ rows.length > 0 ?
|
||||
<table className="table-standard table-stretch">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Amount</th>
|
||||
<th>Date</th>
|
||||
<th>Time</th>
|
||||
<th>Transaction</th>
|
||||
<th>{__("Amount")}</th>
|
||||
<th>{__("Date")}</th>
|
||||
<th>{__("Time")}</th>
|
||||
<th>{__("Transaction")}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
@ -62,4 +62,4 @@ class TransactionList extends React.Component{
|
|||
}
|
||||
}
|
||||
|
||||
export default TransactionList
|
||||
export default TransactionList
|
||||
|
|
Loading…
Reference in a new issue