New filtering and Buy/Sell icons in Book and Maker page

This commit is contained in:
Reckless_Satoshi 2022-04-24 08:18:17 -07:00
parent 433952cbf4
commit acc0db2e96
No known key found for this signature in database
GPG Key ID: 9C4585B561315571
6 changed files with 174 additions and 93 deletions

View File

@ -1,6 +1,6 @@
import React, { Component } from "react"; import React, { Component } from "react";
import { withTranslation, Trans} from "react-i18next"; import { withTranslation, Trans} from "react-i18next";
import { Badge, Tooltip, Paper, Button, ListItemButton, Typography, Grid, Select, MenuItem, FormControl, FormHelperText, ListItemText, ListItemAvatar, IconButton} from "@mui/material"; import { Badge, Tooltip, Stack, Paper, Button, FormControlLabel, Checkbox, RadioGroup, ListItemButton, Typography, Grid, Select, MenuItem, FormControl, FormHelperText, ListItemText, ListItemAvatar, IconButton, CircularProgress} from "@mui/material";
import { Link } from 'react-router-dom' import { Link } from 'react-router-dom'
import { DataGrid } from '@mui/x-data-grid'; import { DataGrid } from '@mui/x-data-grid';
import currencyDict from '../../static/assets/currencies.json'; import currencyDict from '../../static/assets/currencies.json';
@ -8,10 +8,14 @@ import currencyDict from '../../static/assets/currencies.json';
import MediaQuery from 'react-responsive' import MediaQuery from 'react-responsive'
import Image from 'material-ui-image' import Image from 'material-ui-image'
import getFlags from './getFlags' import getFlags from './getFlags'
import { pn } from "../utils/prettyNumbers";
import PaymentText from './PaymentText' import PaymentText from './PaymentText'
// Icons // Icons
import RefreshIcon from '@mui/icons-material/Refresh'; import RefreshIcon from '@mui/icons-material/Refresh';
import DoubleArrowIcon from '@mui/icons-material/DoubleArrow';
import MoveToInboxIcon from '@mui/icons-material/MoveToInbox';
import OutboxIcon from '@mui/icons-material/Outbox';
class BookPage extends Component { class BookPage extends Component {
constructor(props) { constructor(props) {
@ -21,7 +25,7 @@ class BookPage extends Component {
loading: true, loading: true,
pageSize: 6, pageSize: 6,
}; };
this.getOrderDetails(this.props.type, this.props.currency) this.getOrderDetails(2, this.props.currency)
} }
getOrderDetails(type, currency) { getOrderDetails(type, currency) {
@ -38,21 +42,12 @@ class BookPage extends Component {
this.props.history.push('/order/' + e); this.props.history.push('/order/' + e);
} }
handleTypeChange=(e)=>{
this.setState({
loading: true,
});
this.props.setAppState({bookType: e.target.value})
this.getOrderDetails(e.target.value,this.props.currency);
}
handleCurrencyChange=(e)=>{ handleCurrencyChange=(e)=>{
var currency = e.target.value; var currency = e.target.value;
this.setState({loading: true})
this.props.setAppState({ this.props.setAppState({
bookCurrency: currency, bookCurrency: currency,
bookCurrencyCode: this.getCurrencyCode(currency), bookCurrencyCode: this.getCurrencyCode(currency),
}) })
this.getOrderDetails(this.props.type, currency);
} }
getCurrencyCode(val){ getCurrencyCode(val){
@ -64,16 +59,6 @@ class BookPage extends Component {
} }
} }
// pretty numbers
pn(x) {
if(x == null){
return 'null'
}else{
var parts = x.toString().split(".");
parts[0] = parts[0].replace(/\B(?=(\d{3})+(?!\d))/g, ",");
return parts.join(".");
}
}
// Colors for the status badges // Colors for the status badges
statusBadgeColor(status){ statusBadgeColor(status){
@ -81,11 +66,12 @@ class BookPage extends Component {
if(status=='Seen recently'){return("warning")} if(status=='Seen recently'){return("warning")}
if(status=='Inactive'){return('error')} if(status=='Inactive'){return('error')}
} }
amountToString = (amount,has_range,min_amount,max_amount) => { amountToString = (amount,has_range,min_amount,max_amount) => {
if (has_range){ if (has_range){
return this.pn(parseFloat(Number(min_amount).toPrecision(2)))+'-'+this.pn(parseFloat(Number(max_amount).toPrecision(2))) return pn(parseFloat(Number(min_amount).toPrecision(2)))+'-'+pn(parseFloat(Number(max_amount).toPrecision(2)))
}else{ }else{
return this.pn(parseFloat(Number(amount).toPrecision(3))) return pn(parseFloat(Number(amount).toPrecision(3)))
} }
} }
@ -95,7 +81,9 @@ class BookPage extends Component {
<div style={{ height: 422, width: '100%' }}> <div style={{ height: 422, width: '100%' }}>
<DataGrid <DataGrid
rows={ rows={
this.state.orders.map((order) => this.state.orders.filter(order => order.type == this.props.type || this.props.type == 2)
.filter(order => order.currency == this.props.currency || this.props.currency == 0)
.map((order) =>
({id: order.id, ({id: order.id,
avatar: window.location.origin +'/static/assets/avatars/' + order.maker_nick + '.png', avatar: window.location.origin +'/static/assets/avatars/' + order.maker_nick + '.png',
robot: order.maker_nick, robot: order.maker_nick,
@ -120,6 +108,7 @@ class BookPage extends Component {
<ListItemAvatar> <ListItemAvatar>
<Tooltip placement="right" enterTouchDelay="0" title={t(params.row.robot_status)}> <Tooltip placement="right" enterTouchDelay="0" title={t(params.row.robot_status)}>
<Badge variant="dot" overlap="circular" badgeContent="" color={this.statusBadgeColor(params.row.robot_status)}> <Badge variant="dot" overlap="circular" badgeContent="" color={this.statusBadgeColor(params.row.robot_status)}>
<Badge overlap="circular" anchorOrigin={{horizontal: 'right', vertical: 'bottom'}} badgeContent={<div style={{position:"relative", left:"10px"}}> {params.row.type == t("Buyer") ? <DoubleArrowIcon sx={{transform: "scaleX(-1)"}} color="secondary"/> : <DoubleArrowIcon color="primary"/>}</div>}>
<div style={{ width: 45, height: 45 }}> <div style={{ width: 45, height: 45 }}>
<Image className='bookAvatar' <Image className='bookAvatar'
disableError='true' disableError='true'
@ -130,6 +119,7 @@ class BookPage extends Component {
/> />
</div> </div>
</Badge> </Badge>
</Badge>
</Tooltip> </Tooltip>
</ListItemAvatar> </ListItemAvatar>
<ListItemText primary={params.row.robot}/> <ListItemText primary={params.row.robot}/>
@ -151,7 +141,7 @@ class BookPage extends Component {
)} }, )} },
{ field: 'price', headerName: t("Price"), type: 'number', width: 140, { field: 'price', headerName: t("Price"), type: 'number', width: 140,
renderCell: (params) => {return ( renderCell: (params) => {return (
<div style={{ cursor: "pointer" }}>{this.pn(params.row.price) + " " +params.row.currency+ "/BTC" }</div> <div style={{ cursor: "pointer" }}>{pn(params.row.price) + " " +params.row.currency+ "/BTC" }</div>
)} }, )} },
{ field: 'premium', headerName: t("Premium"), type: 'number', width: 100, { field: 'premium', headerName: t("Premium"), type: 'number', width: 100,
renderCell: (params) => {return ( renderCell: (params) => {return (
@ -159,6 +149,19 @@ class BookPage extends Component {
)} }, )} },
]} ]}
components={{
NoRowsOverlay: () => (
<Stack height="100%" alignItems="center" justifyContent="center">
<div style={{ height:"220px"}}/>
<this.NoOrdersFound/>
</Stack>
),
NoResultsOverlay: () => (
<Stack height="100%" alignItems="center" justifyContent="center">
{t("Local filter returns no result")}
</Stack>
)
}}
pageSize={this.state.loading ? 0 : this.state.pageSize} pageSize={this.state.loading ? 0 : this.state.pageSize}
rowsPerPageOptions={[6,20,50]} rowsPerPageOptions={[6,20,50]}
onPageSizeChange={(newPageSize) => this.setState({pageSize:newPageSize})} onPageSizeChange={(newPageSize) => this.setState({pageSize:newPageSize})}
@ -175,7 +178,9 @@ class BookPage extends Component {
<DataGrid <DataGrid
loading={this.state.loading} loading={this.state.loading}
rows={ rows={
this.state.orders.map((order) => this.state.orders.filter(order => order.type == this.props.type || this.props.type == 2)
.filter(order => order.currency == this.props.currency || this.props.currency == 0)
.map((order) =>
({id: order.id, ({id: order.id,
avatar: window.location.origin +'/static/assets/avatars/' + order.maker_nick + '.png', avatar: window.location.origin +'/static/assets/avatars/' + order.maker_nick + '.png',
robot: order.maker_nick, robot: order.maker_nick,
@ -196,8 +201,10 @@ class BookPage extends Component {
// { field: 'id', headerName: 'ID', width: 40 }, // { field: 'id', headerName: 'ID', width: 40 },
{ field: 'robot', headerName: t("Robot"), width: 64, { field: 'robot', headerName: t("Robot"), width: 64,
renderCell: (params) => {return ( renderCell: (params) => {return (
<div style={{ position: "relative", left: "-5px" }}>
<Tooltip placement="right" enterTouchDelay="0" title={params.row.robot+" ("+t(params.row.robot_status)+")"}> <Tooltip placement="right" enterTouchDelay="0" title={params.row.robot+" ("+t(params.row.robot_status)+")"}>
<Badge variant="dot" overlap="circular" badgeContent="" color={this.statusBadgeColor(params.row.robot_status)}> <Badge variant="dot" overlap="circular" badgeContent="" color={this.statusBadgeColor(params.row.robot_status)}>
<Badge overlap="circular" anchorOrigin={{horizontal: 'right', vertical: 'bottom'}} badgeContent={<div style={{position:"relative", left:"10px"}}> {params.row.type == t("Buyer") ? <DoubleArrowIcon sx={{transform: "scaleX(-1)"}} color="secondary"/> : <DoubleArrowIcon color="primary"/>}</div>}>
<div style={{ width: 45, height: 45 }}> <div style={{ width: 45, height: 45 }}>
<Image className='bookAvatar' <Image className='bookAvatar'
disableError='true' disableError='true'
@ -208,7 +215,9 @@ class BookPage extends Component {
/> />
</div> </div>
</Badge> </Badge>
</Badge>
</Tooltip> </Tooltip>
</div>
); );
} }, } },
{ field: 'type', headerName: t("Is"), width: 60, hide:'true'}, { field: 'type', headerName: t("Is"), width: 60, hide:'true'},
@ -231,16 +240,29 @@ class BookPage extends Component {
)} }, )} },
{ field: 'price', headerName: t("Price"), type: 'number', width: 140, hide:'true', { field: 'price', headerName: t("Price"), type: 'number', width: 140, hide:'true',
renderCell: (params) => {return ( renderCell: (params) => {return (
<div style={{ cursor: "pointer" }}>{this.pn(params.row.price) + " " +params.row.currency+ "/BTC" }</div> <div style={{ cursor: "pointer" }}>{pn(params.row.price) + " " +params.row.currency+ "/BTC" }</div>
)} }, )} },
{ field: 'premium', headerName: t("Premium"), type: 'number', width: 85, { field: 'premium', headerName: t("Premium"), type: 'number', width: 85,
renderCell: (params) => {return ( renderCell: (params) => {return (
<Tooltip placement="left" enterTouchDelay="0" title={this.pn(params.row.price) + " " +params.row.currency+ "/BTC" }> <Tooltip placement="left" enterTouchDelay="0" title={pn(params.row.price) + " " +params.row.currency+ "/BTC" }>
<div style={{ cursor: "pointer" }}>{parseFloat(parseFloat(params.row.premium).toFixed(4))+"%" }</div> <div style={{ cursor: "pointer" }}>{parseFloat(parseFloat(params.row.premium).toFixed(4))+"%" }</div>
</Tooltip> </Tooltip>
)} }, )} },
]} ]}
components={{
NoRowsOverlay: () => (
<Stack height="100%" alignItems="center" justifyContent="center">
<div style={{ height:"220px"}}/>
<this.NoOrdersFound/>
</Stack>
),
NoResultsOverlay: () => (
<Stack height="100%" alignItems="center" justifyContent="center">
{t("Local filter returns no result")}
</Stack>
)
}}
pageSize={this.state.loading ? 0 : this.state.pageSize} pageSize={this.state.loading ? 0 : this.state.pageSize}
rowsPerPageOptions={[6,20,50]} rowsPerPageOptions={[6,20,50]}
onPageSizeChange={(newPageSize) => this.setState({pageSize:newPageSize})} onPageSizeChange={(newPageSize) => this.setState({pageSize:newPageSize})}
@ -251,6 +273,56 @@ class BookPage extends Component {
); );
} }
handleTypeChange=(buyChecked, sellChecked)=>{
this.props.setAppState({buyChecked: buyChecked, sellChecked: sellChecked})
if (buyChecked & sellChecked || !buyChecked & !sellChecked) {
var type = 2
} else if (buyChecked) {
var type = 1
} else if (sellChecked) {
var type = 0
}
this.props.setAppState({bookType: type})
}
handleClickBuy=(e)=>{
var buyChecked = e.target.checked
var sellChecked = this.props.sellChecked
this.handleTypeChange(buyChecked, sellChecked);
}
handleClickSell=(e)=>{
var buyChecked = this.props.buyChecked
var sellChecked = e.target.checked
this.handleTypeChange(buyChecked, sellChecked);
}
NoOrdersFound=()=>{
const { t } = this.props;
return(
<Grid item xs={12} align="center">
<Grid item xs={12} align="center">
<Typography component="h5" variant="h5">
{this.props.type == 0 ?
t("No orders found to sell BTC for {{currencyCode}}",{currencyCode:this.props.currencyCode})
:
t("No orders found to buy BTC for {{currencyCode}}",{currencyCode:this.props.currencyCode})
}
</Typography>
</Grid>
<br/>
<Grid item>
<Button size="large" variant="contained" color='primary' to='/make/' component={Link}>{t("Make Order")}</Button>
</Grid>
<Typography color="primary" component="body1" variant="body1">
{t("Be the first one to create an order")}
<br/>
<br/>
</Typography>
</Grid>
)
}
render() { render() {
const { t } = this.props; const { t } = this.props;
return ( return (
@ -263,22 +335,26 @@ class BookPage extends Component {
<Grid item xs={6} align="right"> <Grid item xs={6} align="right">
<FormControl align="center"> <FormControl align="center">
<FormHelperText align="center"> <FormHelperText align="center">
{t("I want to")} <div style={{textAlign:"center"}}>{t("I want to")} </div>
</FormHelperText> </FormHelperText>
<Select <RadioGroup row>
sx={{width:110}} <div style={{position:"relative", left:"20px"}}>
autoWidth={true} <FormControlLabel
label={t("Select Order Type")} control={<Checkbox defaultChecked={true} icon={<MoveToInboxIcon sx={{width:"30px",height:"30px"}} color="inherit"/>} checkedIcon={<MoveToInboxIcon sx={{width:"30px",height:"30px"}} color="primary"/>}/>}
required="true" label={<div style={{position:"relative",top:"-13px"}}><Typography style={{color:"#666666"}} variant="caption">{t("Buy")}</Typography></div>}
value={this.props.type} labelPlacement="bottom"
inputProps={{ checked={this.props.buyChecked}
style: {textAlign:"center"} onChange={this.handleClickBuy}
}} />
onChange={this.handleTypeChange} </div>
> <MenuItem value={2}>{t("ANY_type")}</MenuItem> <FormControlLabel
<MenuItem value={1}>{t("BUY")}</MenuItem> control={<Checkbox defaultChecked={true} icon={<OutboxIcon sx={{width:"30px",height:"30px"}} color="inherit"/>} checkedIcon={<OutboxIcon sx={{width:"30px",height:"30px"}} color="secondary"/>}/>}
<MenuItem value={0}>{t("SELL")}</MenuItem> label={<div style={{position:"relative",top:"-13px"}}><Typography style={{color:"#666666"}} variant="caption">{t("Sell")}</Typography></div>}
</Select> labelPlacement="bottom"
checked={this.props.sellChecked}
onChange={this.handleClickSell}
/>
</RadioGroup>
</FormControl> </FormControl>
</Grid> </Grid>
@ -322,26 +398,7 @@ class BookPage extends Component {
} }
{ this.state.not_found ? { this.state.not_found ?
(<Grid item xs={12} align="center"> <this.NoOrdersFound/>
<Grid item xs={12} align="center">
<Typography component="h5" variant="h5">
{this.props.type == 0 ?
t("No orders found to sell BTC for {{currencyCode}}",{currencyCode:this.props.currencyCode})
:
t("No orders found to buy BTC for {{currencyCode}}",{currencyCode:this.props.currencyCode})
}
</Typography>
</Grid>
<br/>
<Grid item>
<Button size="large" variant="contained" color='primary' to='/make/' component={Link}>{t("Make Order")}</Button>
</Grid>
<Typography color="primary" component="body1" variant="body1">
{t("Be the first one to create an order")}
<br/>
<br/>
</Typography>
</Grid>)
: :
<Grid item xs={12} align="center"> <Grid item xs={12} align="center">
{/* Desktop Book */} {/* Desktop Book */}

View File

@ -14,6 +14,8 @@ export default class HomePage extends Component {
nickname: null, nickname: null,
token: null, token: null,
avatarLoaded: false, avatarLoaded: false,
buyChecked: false,
sellChecked: false,
bookType:2, bookType:2,
bookCurrency:0, bookCurrency:0,
bookCurrencyCode:'ANY', bookCurrencyCode:'ANY',
@ -36,7 +38,7 @@ export default class HomePage extends Component {
<Route exact path='/' render={(props) => <UserGenPage {...props} {...this.state} setAppState={this.setAppState}/>}/> <Route exact path='/' render={(props) => <UserGenPage {...props} {...this.state} setAppState={this.setAppState}/>}/>
<Route path='/ref/:refCode' render={(props) => <UserGenPage {...props} {...this.state} setAppState={this.setAppState}/>}/> <Route path='/ref/:refCode' render={(props) => <UserGenPage {...props} {...this.state} setAppState={this.setAppState}/>}/>
<Route path='/make' component={MakerPage}/> <Route path='/make' component={MakerPage}/>
<Route path='/book' render={(props) => <BookPage {...props} type={this.state.bookType} currencyCode={this.state.bookCurrencyCode} currency={this.state.bookCurrency} setAppState={this.setAppState} />}/> <Route path='/book' render={(props) => <BookPage {...props} buyChecked={this.state.buyChecked} sellChecked={this.state.sellChecked} type={this.state.bookType} currencyCode={this.state.bookCurrencyCode} currency={this.state.bookCurrency} setAppState={this.setAppState} />}/>
<Route path="/order/:orderId" component={OrderPage}/> <Route path="/order/:orderId" component={OrderPage}/>
</Switch> </Switch>
</div> </div>

View File

@ -8,15 +8,17 @@ import { styled } from '@mui/material/styles';
import getFlags from './getFlags'; import getFlags from './getFlags';
import AutocompletePayments from './AutocompletePayments'; import AutocompletePayments from './AutocompletePayments';
import currencyDict from '../../static/assets/currencies.json';
import MoveToInboxIcon from '@mui/icons-material/MoveToInbox';
import OutboxIcon from '@mui/icons-material/Outbox';
import LockIcon from '@mui/icons-material/Lock'; import LockIcon from '@mui/icons-material/Lock';
import HourglassTopIcon from '@mui/icons-material/HourglassTop'; import HourglassTopIcon from '@mui/icons-material/HourglassTop';
import currencyDict from '../../static/assets/currencies.json';
import { getCookie } from "../utils/cookies"; import { getCookie } from "../utils/cookies";
import { pn } from "../utils/prettyNumbers"; import { pn } from "../utils/prettyNumbers";
class MakerPage extends Component { class MakerPage extends Component {
defaultCurrency = 1; defaultCurrency = 1;
defaultCurrencyCode = 'USD'; defaultCurrencyCode = 'USD';
@ -243,18 +245,36 @@ class MakerPage extends Component {
<FormHelperText sx={{align:"center"}}> <FormHelperText sx={{align:"center"}}>
{t("Buy or Sell Bitcoin?")} {t("Buy or Sell Bitcoin?")}
</FormHelperText> </FormHelperText>
{/* <RadioGroup row>
<div style={{position:"relative", left:"20px"}}>
<FormControlLabel
control={<Checkbox defaultChecked={true} icon={<MoveToInboxIcon sx={{width:"30px",height:"30px"}} color="inherit"/>} checkedIcon={<MoveToInboxIcon sx={{width:"30px",height:"30px"}} color="primary"/>}/>}
label={<div style={{position:"relative",top:"-13px"}}><Typography style={{color:"#666666"}} variant="caption">{t("Buy")}</Typography></div>}
labelPlacement="bottom"
checked={this.state.buyChecked}
onChange={this.handleClickBuy}
/>
</div>
<FormControlLabel
control={<Checkbox defaultChecked={true} icon={<OutboxIcon sx={{width:"30px",height:"30px"}} color="inherit"/>} checkedIcon={<OutboxIcon sx={{width:"30px",height:"30px"}} color="secondary"/>}/>}
label={<div style={{position:"relative",top:"-13px"}}><Typography style={{color:"#666666"}} variant="caption">{t("Sell")}</Typography></div>}
labelPlacement="bottom"
checked={this.state.sellChecked}
onChange={this.handleClickSell}
/> */}
<RadioGroup row defaultValue="0" onChange={this.handleTypeChange}> <RadioGroup row defaultValue="0" onChange={this.handleTypeChange}>
<FormControlLabel <FormControlLabel
value="0" value="0"
control={<Radio color="primary"/>} control={<Radio icon={<MoveToInboxIcon sx={{width:"26px",height:"26px"}} color="inherit"/>} checkedIcon={<MoveToInboxIcon sx={{width:"26px",height:"26px"}} color="primary"/>}/>}
label={t("Buy")} label={t("Buy")}
labelPlacement="Top" labelPlacement="end"
/> />
<FormControlLabel <FormControlLabel
value="1" value="1"
control={<Radio color="secondary"/>} control={<Radio icon={<OutboxIcon sx={{width:"26px",height:"26px"}} color="inherit"/>} checkedIcon={<OutboxIcon sx={{width:"26px",height:"26px"}} color="secondary"/>}/>}
label={t("Sell")} label={t("Sell")}
labelPlacement="Top" labelPlacement="end"
/> />
</RadioGroup> </RadioGroup>
</FormControl> </FormControl>
@ -325,7 +345,7 @@ class MakerPage extends Component {
value="relative" value="relative"
control={<Radio color="primary"/>} control={<Radio color="primary"/>}
label={t("Relative")} label={t("Relative")}
labelPlacement="Top" labelPlacement="end"
onClick={this.handleClickRelative} onClick={this.handleClickRelative}
/> />
</Tooltip> </Tooltip>
@ -335,7 +355,7 @@ class MakerPage extends Component {
value="explicit" value="explicit"
control={<Radio color="secondary"/>} control={<Radio color="secondary"/>}
label={t("Explicit")} label={t("Explicit")}
labelPlacement="Top" labelPlacement="end"
onClick={this.handleClickExplicit} onClick={this.handleClickExplicit}
/> />
</Tooltip> </Tooltip>

View File

@ -100,6 +100,7 @@
"You are looking at all":"You are looking at all", "You are looking at all":"You are looking at all",
"No orders found to sell BTC for {{currencyCode}}":"No orders found to sell BTC for {{currencyCode}}", "No orders found to sell BTC for {{currencyCode}}":"No orders found to sell BTC for {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}":"No orders found to buy BTC for {{currencyCode}}", "No orders found to buy BTC for {{currencyCode}}":"No orders found to buy BTC for {{currencyCode}}",
"Filter has no results":"Filter has no results",
"Be the first one to create an order":"Be the first one to create an order", "Be the first one to create an order":"Be the first one to create an order",

View File

@ -78,8 +78,8 @@
"BOOK PAGE - BookPage.js":"The Book Order page", "BOOK PAGE - BookPage.js":"The Book Order page",
"Seller":"Vendedor", "Seller":"Vende",
"Buyer":"Comprador", "Buyer":"Compra",
"I want to":"Quiero", "I want to":"Quiero",
"Select Order Type":"Selecciona tipo de orden", "Select Order Type":"Selecciona tipo de orden",
"ANY_type": "TODO", "ANY_type": "TODO",
@ -97,11 +97,12 @@
"Pay": "Pagar", "Pay": "Pagar",
"Price":"Precio", "Price":"Precio",
"Premium":"Prima", "Premium":"Prima",
"You are SELLING BTC for {{currencyCode}}": "Estás VENDIENDO bitcoin por {{currencyCode}}", "You are SELLING BTC for {{currencyCode}}": "VENDER bitcoin por {{currencyCode}}",
"You are BUYING BTC for {{currencyCode}}": "Estás COMPRANDO bitcoin por {{currencyCode}}", "You are BUYING BTC for {{currencyCode}}": "COMPRAR bitcoin por {{currencyCode}}",
"You are looking at all": "Estás viendo todo", "You are looking at all": "Estás viendo todo",
"No orders found to sell BTC for {{currencyCode}}": "No hay órdenes para vender bitcoin por {{currencyCode}}", "No orders found to sell BTC for {{currencyCode}}": "No hay órdenes para vender bitcoin por {{currencyCode}}",
"No orders found to buy BTC for {{currencyCode}}": "No hay órdenes para comprar bitcoin por {{currencyCode}}", "No orders found to buy BTC for {{currencyCode}}": "No hay órdenes para comprar bitcoin por {{currencyCode}}",
"Filter has no results":"No hay resultados para este filtro",
"Be the first one to create an order":"Sé el primero en crear una orden", "Be the first one to create an order":"Sé el primero en crear una orden",