diff --git a/frontend/src/components/BottomBar.js b/frontend/src/components/BottomBar.js index 2daef79d..12a0dc69 100644 --- a/frontend/src/components/BottomBar.js +++ b/frontend/src/components/BottomBar.js @@ -2,6 +2,7 @@ import React, { Component } from 'react' import { withTranslation } from "react-i18next"; import { Badge, Tooltip, ListItemAvatar, Avatar,Paper, Grid, IconButton, Select, MenuItem, ListItemText, ListItem, ListItemIcon, ListItemButton } from "@mui/material"; import MediaQuery from 'react-responsive' +import Flags from 'country-flag-icons/react/3x2' // Icons import SettingsIcon from '@mui/icons-material/Settings'; @@ -255,6 +256,10 @@ bottomBarDesktop =()=>{ LangSelect = () => { const { i18n} = this.props; + const flagProps = { + width: 20, + height: 20, + }; return( ) } diff --git a/frontend/src/components/MakerPage.js b/frontend/src/components/MakerPage.js index 3615a4f1..22efef53 100644 --- a/frontend/src/components/MakerPage.js +++ b/frontend/src/components/MakerPage.js @@ -436,11 +436,17 @@ class MakerPage extends Component { /> - - - {(this.state.is_explicit ? t("Order rate:"): t("Order current rate:"))+" "+pn(this.priceNow())+" "+this.state.currencyCode+"/BTC"} - - +
+
+ +
+
+ + + {(this.state.is_explicit ? t("Order rate:"): t("Order current rate:"))+" "+pn(this.priceNow())+" "+this.state.currencyCode+"/BTC"} + + +
diff --git a/frontend/src/components/i18n.js b/frontend/src/components/i18n.js index 32981737..731cc01c 100644 --- a/frontend/src/components/i18n.js +++ b/frontend/src/components/i18n.js @@ -11,6 +11,7 @@ import translationRU from "../locales/ru.json"; import translationPL from "../locales/pl.json"; import translationFR from "../locales/fr.json"; import translationCA from "../locales/ca.json"; +import translationIT from "../locales/it.json"; i18n .use(HttpApi) @@ -26,6 +27,7 @@ i18n pl: {translations: translationPL}, fr: {translations: translationFR}, ca: {translations: translationCA}, + it: {translations: translationIT}, }, fallbackLng: "en", diff --git a/frontend/src/locales/it.json b/frontend/src/locales/it.json index 0238ed67..8726ade8 100644 --- a/frontend/src/locales/it.json +++ b/frontend/src/locales/it.json @@ -271,8 +271,7 @@ "Learn how to verify":"Impara come verificare", "Your PGP public key. Your peer uses it to encrypt messages only you can read.":"La tua chiave PGP pubblica. Il tuo pari la utilizza per cifrare i messaggi che solo tu puoi leggere.", "Your public key":"La tua chiave pubblica", - "Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.":"La chiave PGP pubblica del tuo pari. La utilizzi per cifrare i messaggi che solo il tuo pari può leggere e per verificare che la firma del tuo pari nei messaggi che ricevi. - ", + "Your peer PGP public key. You use it to encrypt messages only he can read and to verify your peer signed the incoming messages.":"La chiave PGP pubblica del tuo pari. La utilizzi per cifrare i messaggi che solo il tuo pari può leggere e per verificare che la firma del tuo pari nei messaggi che ricevi.", "Peer public key":"La chiave pubblica del tuo pari", "Your encrypted private key. You use it to decrypt the messages that your peer encrypted for you. You also use it to sign the messages you send.":"La tua chiave privata cifrata. La utilizzi per decifrare i messaggi che il tuo pari ha cifrato per te. La usi anche quando firmi i messaggi che invii.", "Your encrypted private key":"La tua chiave privata cifrata",