mirror of
https://github.com/Qortal/Qortal-Hub.git
synced 2025-06-14 20:11:22 +00:00
Merge pull request #72 from nbenaglia/feature/i18n-minor-refactoring
I18N: some improvements
This commit is contained in:
commit
fca90b97aa
@ -2571,7 +2571,7 @@ function App() {
|
|||||||
lineHeight: '15px',
|
lineHeight: '15px',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
The Application <br></br>{' '}
|
The Application <br></br>
|
||||||
<TextItalic>{requestConnection?.hostname}</TextItalic> <br></br>
|
<TextItalic>{requestConnection?.hostname}</TextItalic> <br></br>
|
||||||
<TextSpan>is requestion a connection</TextSpan>
|
<TextSpan>is requestion a connection</TextSpan>
|
||||||
</TextP>
|
</TextP>
|
||||||
@ -2580,8 +2580,8 @@ function App() {
|
|||||||
|
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
display: 'flex',
|
|
||||||
alignItems: 'center',
|
alignItems: 'center',
|
||||||
|
display: 'flex',
|
||||||
gap: '14px',
|
gap: '14px',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@ -2644,7 +2644,7 @@ function App() {
|
|||||||
lineHeight: '15px',
|
lineHeight: '15px',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
The Application <br></br>{' '}
|
The Application <br></br>
|
||||||
<TextItalic>{requestConnection?.hostname}</TextItalic> <br></br>
|
<TextItalic>{requestConnection?.hostname}</TextItalic> <br></br>
|
||||||
<TextSpan>requests authentication</TextSpan>
|
<TextSpan>requests authentication</TextSpan>
|
||||||
</TextP>
|
</TextP>
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
BIN
src/assets/syncStatus/synced.webp
Normal file
BIN
src/assets/syncStatus/synced.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 19 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
BIN
src/assets/syncStatus/synced_minting.webp
Normal file
BIN
src/assets/syncStatus/synced_minting.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 20 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.2 KiB |
BIN
src/assets/syncStatus/syncing.webp
Normal file
BIN
src/assets/syncStatus/syncing.webp
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
@ -140,7 +140,7 @@ export const BoundedNumericTextField = ({
|
|||||||
sx={{
|
sx={{
|
||||||
color: theme.palette.text.primary,
|
color: theme.palette.text.primary,
|
||||||
}}
|
}}
|
||||||
/>{' '}
|
/>
|
||||||
</IconButton>
|
</IconButton>
|
||||||
<IconButton
|
<IconButton
|
||||||
size="small"
|
size="small"
|
||||||
@ -150,7 +150,7 @@ export const BoundedNumericTextField = ({
|
|||||||
sx={{
|
sx={{
|
||||||
color: theme.palette.text.primary,
|
color: theme.palette.text.primary,
|
||||||
}}
|
}}
|
||||||
/>{' '}
|
/>
|
||||||
</IconButton>
|
</IconButton>
|
||||||
</InputAdornment>
|
</InputAdornment>
|
||||||
) : (
|
) : (
|
||||||
|
@ -75,7 +75,7 @@ const linkify = (text) => {
|
|||||||
return processText(textFormatted);
|
return processText(textFormatted);
|
||||||
};
|
};
|
||||||
|
|
||||||
export const MessageDisplay = ({ htmlContent, isReply }) => {
|
export const MessageDisplay = ({ htmlContent, isReply = false }) => {
|
||||||
const theme = useTheme();
|
const theme = useTheme();
|
||||||
|
|
||||||
const sanitizedContent = useMemo(() => {
|
const sanitizedContent = useMemo(() => {
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import syncedImg from '../assets/syncStatus/synced.png';
|
import syncedImg from '../assets/syncStatus/synced.webp';
|
||||||
import syncedMintingImg from '../assets/syncStatus/synced_minting.png';
|
import syncedMintingImg from '../assets/syncStatus/synced_minting.webp';
|
||||||
import syncingImg from '../assets/syncStatus/syncing.png';
|
import syncingImg from '../assets/syncStatus/syncing.webp';
|
||||||
import { getBaseApiReact } from '../App';
|
import { getBaseApiReact } from '../App';
|
||||||
import '../styles/CoreSyncStatus.css';
|
import '../styles/CoreSyncStatus.css';
|
||||||
import { useTheme } from '@mui/material';
|
import { useTheme } from '@mui/material';
|
||||||
|
@ -243,7 +243,6 @@ export const AttachmentCard = ({
|
|||||||
width: '100%',
|
width: '100%',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{' '}
|
|
||||||
<Typography
|
<Typography
|
||||||
sx={{
|
sx={{
|
||||||
fontSize: '14px',
|
fontSize: '14px',
|
||||||
@ -251,7 +250,7 @@ export const AttachmentCard = ({
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{errorMsg}
|
{errorMsg}
|
||||||
</Typography>{' '}
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
)}
|
)}
|
||||||
</Box>
|
</Box>
|
||||||
|
@ -177,7 +177,6 @@ export const ImageCard = ({
|
|||||||
justifyContent: 'center',
|
justifyContent: 'center',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{' '}
|
|
||||||
<Typography
|
<Typography
|
||||||
sx={{
|
sx={{
|
||||||
fontSize: '14px',
|
fontSize: '14px',
|
||||||
|
@ -325,10 +325,8 @@ export const PollCard = ({
|
|||||||
fontStyle: 'italic',
|
fontStyle: 'italic',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{' '}
|
{poll?.votes?.totalVotes}{' '}
|
||||||
{`${poll?.votes?.totalVotes} ${
|
{poll?.votes?.totalVotes === 1 ? ' vote' : ' votes'}
|
||||||
poll?.votes?.totalVotes === 1 ? ' vote' : ' votes'
|
|
||||||
}`}
|
|
||||||
</Typography>
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
|
@ -157,7 +157,7 @@ export const GeneralNotifications = ({ address }) => {
|
|||||||
sx={{
|
sx={{
|
||||||
color: theme.palette.text.primary,
|
color: theme.palette.text.primary,
|
||||||
}}
|
}}
|
||||||
/>{' '}
|
/>
|
||||||
{formatDate(latestTx?.timestamp)}
|
{formatDate(latestTx?.timestamp)}
|
||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
|
@ -65,7 +65,6 @@ export const BlockedUsersModal = () => {
|
|||||||
}, [isOpenBlockedModal]);
|
}, [isOpenBlockedModal]);
|
||||||
|
|
||||||
const getNames = async () => {
|
const getNames = async () => {
|
||||||
// const validApi = await findUsableApi();
|
|
||||||
const addresses = Object.keys(blockedUsers?.addresses);
|
const addresses = Object.keys(blockedUsers?.addresses);
|
||||||
const addressNames = {};
|
const addressNames = {};
|
||||||
|
|
||||||
@ -142,6 +141,10 @@ export const BlockedUsersModal = () => {
|
|||||||
executeEvent('updateChatMessagesWithBlocks', true);
|
executeEvent('updateChatMessagesWithBlocks', true);
|
||||||
}
|
}
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
if (error?.isCanceled) {
|
||||||
|
// user pressed Escape or canceled — do nothing
|
||||||
|
return;
|
||||||
|
}
|
||||||
setOpenSnackGlobal(true);
|
setOpenSnackGlobal(true);
|
||||||
setInfoSnackCustom({
|
setInfoSnackCustom({
|
||||||
type: 'error',
|
type: 'error',
|
||||||
@ -173,20 +176,22 @@ export const BlockedUsersModal = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Dialog
|
<Dialog
|
||||||
open={isOpenBlockedModal}
|
|
||||||
aria-labelledby="alert-dialog-title"
|
|
||||||
aria-describedby="alert-dialog-description"
|
aria-describedby="alert-dialog-description"
|
||||||
|
aria-labelledby="alert-dialog-title"
|
||||||
|
onClose={onCancel}
|
||||||
|
open={isOpenBlockedModal}
|
||||||
>
|
>
|
||||||
<DialogTitle
|
<DialogTitle
|
||||||
sx={{
|
sx={{
|
||||||
textAlign: 'center',
|
|
||||||
color: theme.palette.text.primary,
|
color: theme.palette.text.primary,
|
||||||
fontWeight: 'bold',
|
fontWeight: 'bold',
|
||||||
opacity: 1,
|
opacity: 1,
|
||||||
|
textAlign: 'center',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{t('auth:blocked_users', { postProcess: 'capitalizeFirstChar' })}
|
{t('auth:blocked_users', { postProcess: 'capitalizeAll' })}
|
||||||
</DialogTitle>
|
</DialogTitle>
|
||||||
|
|
||||||
<DialogContent
|
<DialogContent
|
||||||
sx={{
|
sx={{
|
||||||
padding: '20px',
|
padding: '20px',
|
||||||
@ -293,7 +298,7 @@ export const BlockedUsersModal = () => {
|
|||||||
<Spacer height="20px" />
|
<Spacer height="20px" />
|
||||||
|
|
||||||
<DialogContentText id="alert-dialog-description">
|
<DialogContentText id="alert-dialog-description">
|
||||||
{t('core:message.generic.blocked_names', {
|
{t('auth:message.generic.blocked_names', {
|
||||||
postProcess: 'capitalizeFirstChar',
|
postProcess: 'capitalizeFirstChar',
|
||||||
})}
|
})}
|
||||||
</DialogContentText>
|
</DialogContentText>
|
||||||
@ -375,6 +380,7 @@ export const BlockedUsersModal = () => {
|
|||||||
|
|
||||||
<Dialog
|
<Dialog
|
||||||
open={isShow}
|
open={isShow}
|
||||||
|
onClose={onCancel}
|
||||||
aria-labelledby="alert-dialog-title"
|
aria-labelledby="alert-dialog-title"
|
||||||
aria-describedby="alert-dialog-description"
|
aria-describedby="alert-dialog-description"
|
||||||
>
|
>
|
||||||
@ -388,7 +394,7 @@ export const BlockedUsersModal = () => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{t('auth:message.generic.decide_block', {
|
{t('auth:message.generic.decide_block', {
|
||||||
postProcess: 'capitalizeFirstChar',
|
postProcess: 'capitalizeAll',
|
||||||
})}
|
})}
|
||||||
</DialogTitle>
|
</DialogTitle>
|
||||||
|
|
||||||
@ -412,7 +418,7 @@ export const BlockedUsersModal = () => {
|
|||||||
sx={{
|
sx={{
|
||||||
color: theme.palette.text.primary,
|
color: theme.palette.text.primary,
|
||||||
}}
|
}}
|
||||||
/>{' '}
|
/>
|
||||||
<Typography>
|
<Typography>
|
||||||
{t('auth:message.generic.choose_block', {
|
{t('auth:message.generic.choose_block', {
|
||||||
postProcess: 'capitalizeFirstChar',
|
postProcess: 'capitalizeFirstChar',
|
||||||
|
@ -24,7 +24,7 @@ export const ReusableModal: FC<MyModalProps> = ({
|
|||||||
onClose={onClose}
|
onClose={onClose}
|
||||||
aria-labelledby="modal-title"
|
aria-labelledby="modal-title"
|
||||||
aria-describedby="modal-description"
|
aria-describedby="modal-description"
|
||||||
componentsProps={{
|
slotProps={{
|
||||||
backdrop: {
|
backdrop: {
|
||||||
style: {
|
style: {
|
||||||
backdropFilter: 'blur(3px)',
|
backdropFilter: 'blur(3px)',
|
||||||
|
@ -51,8 +51,8 @@ export const ShowMessage = ({ message, openNewPostWithQuote, myName }: any) => {
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<WrapperUserAction
|
<WrapperUserAction
|
||||||
disabled={myName === message?.name}
|
|
||||||
address={undefined}
|
address={undefined}
|
||||||
|
disabled={myName === message?.name}
|
||||||
name={message?.name}
|
name={message?.name}
|
||||||
>
|
>
|
||||||
<Avatar
|
<Avatar
|
||||||
|
@ -2124,7 +2124,6 @@ export const Group = ({
|
|||||||
width: '100%',
|
width: '100%',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{' '}
|
|
||||||
<Typography>
|
<Typography>
|
||||||
{t('group:message.generic.encryption_key', {
|
{t('group:message.generic.encryption_key', {
|
||||||
postProcess: 'capitalizeFirstChar',
|
postProcess: 'capitalizeFirstChar',
|
||||||
|
@ -209,7 +209,7 @@ export const HomeDesktop = ({
|
|||||||
sx={{
|
sx={{
|
||||||
ccolor: theme.palette.text.primary,
|
ccolor: theme.palette.text.primary,
|
||||||
}}
|
}}
|
||||||
/>{' '}
|
/>
|
||||||
<Typography
|
<Typography
|
||||||
sx={{
|
sx={{
|
||||||
fontSize: '1rem',
|
fontSize: '1rem',
|
||||||
@ -218,7 +218,7 @@ export const HomeDesktop = ({
|
|||||||
{t('tutorial:initial.explore', {
|
{t('tutorial:initial.explore', {
|
||||||
postProcess: 'capitalizeFirstChar',
|
postProcess: 'capitalizeFirstChar',
|
||||||
})}
|
})}
|
||||||
</Typography>{' '}
|
</Typography>
|
||||||
</Box>
|
</Box>
|
||||||
</Divider>
|
</Divider>
|
||||||
|
|
||||||
|
@ -307,8 +307,10 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
|
|||||||
{t('core:message.generic.settings', {
|
{t('core:message.generic.settings', {
|
||||||
postProcess: 'capitalizeFirstChar',
|
postProcess: 'capitalizeFirstChar',
|
||||||
})}
|
})}
|
||||||
</Typography>{' '}
|
</Typography>
|
||||||
|
|
||||||
<Spacer height="40px" />
|
<Spacer height="40px" />
|
||||||
|
|
||||||
<Button
|
<Button
|
||||||
size="small"
|
size="small"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
@ -353,10 +355,10 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
|
|||||||
{!myName ? (
|
{!myName ? (
|
||||||
<Box
|
<Box
|
||||||
sx={{
|
sx={{
|
||||||
width: '100%',
|
alignItems: 'center',
|
||||||
display: 'flex',
|
display: 'flex',
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
alignItems: 'center',
|
width: '100%',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Typography
|
<Typography
|
||||||
@ -458,7 +460,6 @@ export const Save = ({ isDesktop, disableWidth, myName }) => {
|
|||||||
fontSize: '14px',
|
fontSize: '14px',
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
{' '}
|
|
||||||
{t('core:message.question.reset_pinned', {
|
{t('core:message.question.reset_pinned', {
|
||||||
postProcess: 'capitalizeFirstChar',
|
postProcess: 'capitalizeFirstChar',
|
||||||
})}
|
})}
|
||||||
|
@ -80,7 +80,7 @@ export const WrapperUserAction = ({ children, address, name, disabled }) => {
|
|||||||
vertical: 'top',
|
vertical: 'top',
|
||||||
horizontal: 'center',
|
horizontal: 'center',
|
||||||
}}
|
}}
|
||||||
componentsProps={{
|
slotProps={{
|
||||||
paper: {
|
paper: {
|
||||||
onClick: (event) => event.stopPropagation(), // Stop propagation inside popover
|
onClick: (event) => event.stopPropagation(), // Stop propagation inside popover
|
||||||
},
|
},
|
||||||
|
@ -35,7 +35,7 @@ export const useModal = () => {
|
|||||||
const onCancel = useCallback(() => {
|
const onCancel = useCallback(() => {
|
||||||
const { reject } = promiseConfig.current || {};
|
const { reject } = promiseConfig.current || {};
|
||||||
hide();
|
hide();
|
||||||
reject?.('Declined');
|
reject?.({ isCanceled: true });
|
||||||
}, [hide]);
|
}, [hide]);
|
||||||
|
|
||||||
return useMemo(
|
return useMemo(
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"account": {
|
"account": {
|
||||||
"your": "ihr Konto",
|
"your": "dein Konto",
|
||||||
"account_many": "Konten",
|
"account_many": "Konten",
|
||||||
"account_one": "Konto",
|
"account_one": "Konto",
|
||||||
"selected": "ausgewähltes Konto"
|
"selected": "ausgewähltes Konto"
|
||||||
@ -8,129 +8,131 @@
|
|||||||
"action": {
|
"action": {
|
||||||
"add": {
|
"add": {
|
||||||
"account": "Konto hinzufügen",
|
"account": "Konto hinzufügen",
|
||||||
"seed_phrase": "saatgut hinzufügen"
|
"seed_phrase": "Seed-Phrase hinzufügen"
|
||||||
},
|
},
|
||||||
"authenticate": "authentifizieren",
|
"authenticate": "authentifizieren",
|
||||||
"block": "block",
|
"block": "blockieren",
|
||||||
"block_all": "block alle",
|
"block_all": "alle blockieren",
|
||||||
"block_data": "blockieren Sie QDN -Daten",
|
"block_data": "QDN-Daten blockieren",
|
||||||
"block_name": "blockname",
|
"block_name": "Name blockieren",
|
||||||
"block_txs": "block TSX",
|
"block_txs": "TXs blockieren",
|
||||||
"fetch_names": "namen holen",
|
"fetch_names": "Namen abrufen",
|
||||||
"copy_address": "adresse kopieren",
|
"copy_address": "Adresse kopieren",
|
||||||
"create_account": "benutzerkonto erstellen",
|
"create_account": "Konto erstellen",
|
||||||
"create_qortal_account": "erstellen Sie Ihr Coral-Konto, indem Sie unten auf <next>NÄCHSTE</next> klicken",
|
"create_qortal_account": "Erstelle dein Qortal-Konto, indem du unten auf <next>WEITER</next> klickst.",
|
||||||
"choose_password": "wählen Sie ein neues Passwort",
|
"choose_password": "neues Passwort wählen",
|
||||||
"download_account": "Konto herunterladen",
|
"download_account": "Konto herunterladen",
|
||||||
"enter_amount": "bitte geben Sie einen Betrag mehr als 0 ein",
|
"enter_amount": "Bitte gib einen Betrag größer als 0 ein",
|
||||||
"enter_recipient": "bitte geben Sie einen Empfänger ein",
|
"enter_recipient": "Bitte gib einen Empfänger ein",
|
||||||
"enter_wallet_password": "bitte geben Sie Ihr Brieftaschenkennwort ein",
|
"enter_wallet_password": "Bitte gib dein Wallet-Passwort ein",
|
||||||
"export_seedphrase": "saatgut exportieren",
|
"export_seedphrase": "Seedphrase exportieren",
|
||||||
"insert_name_address": "bitte geben Sie einen Namen oder eine Adresse ein",
|
"insert_name_address": "Bitte gib einen Namen oder eine Adresse ein",
|
||||||
"publish_admin_secret_key": "veröffentlichen Sie den Administrator -Geheimschlüssel",
|
"publish_admin_secret_key": "Admin-Secret-Key veröffentlichen",
|
||||||
"publish_group_secret_key": "gruppengeheimnis Key veröffentlichen",
|
"publish_group_secret_key": "Gruppen-Secret-Key veröffentlichen",
|
||||||
"reencrypt_key": "taste neu entschlüsseln",
|
"reencrypt_key": "Schlüssel neu verschlüsseln",
|
||||||
"return_to_list": "Kehren Sie zur Liste zurück",
|
"return_to_list": "Zur Liste zurückkehren",
|
||||||
"setup_qortal_account": "richten Sie Ihr Qortal -Konto ein",
|
"setup_qortal_account": "Qortal-Konto einrichten",
|
||||||
"unblock": "entsperren",
|
"unblock": "entsperren",
|
||||||
"unblock_name": "name entsperren"
|
"unblock_name": "Name entsperren"
|
||||||
},
|
},
|
||||||
"address": "adresse",
|
"address": "Adresse",
|
||||||
"address_name": "adresse oder Name",
|
"address_name": "Adresse oder Name",
|
||||||
"advanced_users": "für fortgeschrittene Benutzer",
|
"advanced_users": "für fortgeschrittene Benutzer",
|
||||||
"apikey": {
|
"apikey": {
|
||||||
"alternative": "alternative: Dateiauswahl",
|
"alternative": "Alternative: Datei auswählen",
|
||||||
"change": "apikey ändern",
|
"change": "API-Schlüssel ändern",
|
||||||
"enter": "geben Sie Apikey ein",
|
"enter": "API-Schlüssel eingeben",
|
||||||
"import": "apikey importieren",
|
"import": "API-Schlüssel importieren",
|
||||||
"key": "aPI -Schlüssel",
|
"key": "API-Schlüssel",
|
||||||
"select_valid": "wählen Sie einen gültigen Apikey aus"
|
"select_valid": "Gültigen API-Schlüssel auswählen"
|
||||||
},
|
},
|
||||||
"authentication": "authentifizierung",
|
"authentication": "Authentifizierung",
|
||||||
"blocked_users": "blockierte Benutzer",
|
"blocked_users": "blockierte Benutzer",
|
||||||
"build_version": "version erstellen",
|
"build_version": "Build-Version",
|
||||||
"message": {
|
"message": {
|
||||||
"error": {
|
"error": {
|
||||||
"account_creation": "konnte kein Konto erstellen.",
|
"account_creation": "Konto konnte nicht erstellt werden.",
|
||||||
"address_not_existing": "adresse existiert nicht auf Blockchain",
|
"address_not_existing": "Adresse existiert nicht auf der Blockchain",
|
||||||
"block_user": "benutzer kann nicht blockieren",
|
"block_user": "Benutzer konnte nicht blockiert werden",
|
||||||
"create_simmetric_key": "kann nicht einen symmetrischen Schlüssel erstellen",
|
"create_simmetric_key": "Symmetrischer Schlüssel kann nicht erstellt werden",
|
||||||
"decrypt_data": "konnten keine Daten entschlüsseln",
|
"decrypt_data": "Daten konnten nicht entschlüsselt werden",
|
||||||
"decrypt": "nicht in der Lage zu entschlüsseln",
|
"decrypt": "Entschlüsselung nicht möglich",
|
||||||
"encrypt_content": "inhalte kann nicht verschlüsseln",
|
"encrypt_content": "Inhalt kann nicht verschlüsselt werden",
|
||||||
"fetch_user_account": "benutzerkonto kann nicht abgerufen werden",
|
"fetch_user_account": "Benutzerkonto konnte nicht abgerufen werden",
|
||||||
"field_not_found_json": "{{ field }} in JSON nicht gefunden",
|
"field_not_found_json": "{{ field }} nicht im JSON gefunden",
|
||||||
"find_secret_key": "kann nicht korrekte SecretKey finden",
|
"find_secret_key": "Korrekter SecretKey konnte nicht gefunden werden",
|
||||||
"incorrect_password": "falsches Passwort",
|
"incorrect_password": "falsches Passwort",
|
||||||
"invalid_qortal_link": "ungültiger Qortal -Link",
|
"invalid_qortal_link": "ungültiger Qortal-Link",
|
||||||
"invalid_secret_key": "secretKey ist nicht gültig",
|
"invalid_secret_key": "SecretKey ist ungültig",
|
||||||
"invalid_uint8": "die von Ihnen eingereichte Uint8arrayData ist ungültig",
|
"invalid_uint8": "Das eingereichte Uint8ArrayData ist ungültig",
|
||||||
"name_not_existing": "name existiert nicht",
|
"name_not_existing": "Name existiert nicht",
|
||||||
"name_not_registered": "name nicht registriert",
|
"name_not_registered": "Name nicht registriert",
|
||||||
"read_blob_base64": "es konnte den Blob nicht als Basis 64-kodierter Zeichenfolge gelesen werden",
|
"read_blob_base64": "Blob konnte nicht als base64-codierter String gelesen werden",
|
||||||
"reencrypt_secret_key": "der geheime Schlüssel kann nicht wieder entschlüsselt werden",
|
"reencrypt_secret_key": "Secret Key konnte nicht neu verschlüsselt werden",
|
||||||
"set_apikey": "ich habe den API -Schlüssel nicht festgelegt:"
|
"set_apikey": "API-Schlüssel konnte nicht gesetzt werden:"
|
||||||
},
|
},
|
||||||
"generic": {
|
"generic": {
|
||||||
"blocked_addresses": "blockierte Adressen- Blöcke Verarbeitung von TXS",
|
"blocked_addresses": "Blockierte Adressen – verhindert TX-Verarbeitung",
|
||||||
"blocked_names": "blockierte Namen für QDN",
|
"blocked_names": "Blockierte Namen für QDN",
|
||||||
"blocking": "blocking {{ name }}",
|
"blocking": "{{ name }} wird blockiert",
|
||||||
"choose_block": "wählen Sie 'Block TXS' oder 'All', um Chat -Nachrichten zu blockieren",
|
"choose_block": "Wähle 'TXs blockieren' oder 'alles', um Chat-Nachrichten zu blockieren",
|
||||||
"congrats_setup": "herzlichen Glückwunsch, Sie sind alle eingerichtet!",
|
"congrats_setup": "Glückwunsch, alles ist eingerichtet!",
|
||||||
"decide_block": "entscheiden Sie, was zu blockieren soll",
|
"decide_block": "Entscheide, was blockiert werden soll",
|
||||||
"name_address": "name oder Adresse",
|
"downloading_encryption_keys": "Verschlüsselungsschlüssel werden heruntergeladen",
|
||||||
|
"fetching_admin_secret_key": "Admin-Secret-Key wird abgerufen",
|
||||||
|
"fetching_group_secret_key": "Gruppen-Secret-Key wird veröffentlicht",
|
||||||
|
"keep_secure": "Halte deine Kontodatei sicher",
|
||||||
|
"last_encryption_date": "Letztes Verschlüsselungsdatum: {{ date }} von {{ name }}",
|
||||||
|
"locating_encryption_keys": "Verschlüsselungsschlüssel werden gesucht",
|
||||||
|
"name_address": "Name oder Adresse",
|
||||||
"no_account": "Keine Konten gespeichert",
|
"no_account": "Keine Konten gespeichert",
|
||||||
"no_minimum_length": "es gibt keine Mindestlänge -Anforderung",
|
"no_minimum_length": "Keine Mindestlänge erforderlich",
|
||||||
"no_secret_key_published": "noch kein geheimes Schlüssel veröffentlicht",
|
"no_secret_key_published": "Noch kein Secret Key veröffentlicht",
|
||||||
"fetching_admin_secret_key": "administratoren geheimen Schlüssel holen",
|
"publishing_key": "Hinweis: Nach der Veröffentlichung kann es ein paar Minuten dauern, bis der Schlüssel sichtbar ist. Bitte warte einfach.",
|
||||||
"fetching_group_secret_key": "abrufen von Gruppengeheimnisschlüsselveröffentlichungen abrufen",
|
"seedphrase_notice": "Eine <seed>SEEDPHRASE</seed> wurde im Hintergrund zufällig generiert.",
|
||||||
"last_encryption_date": "datum der letzten Verschlüsselung: {{ date }} nach {{ name }}",
|
"turn_local_node": "Bitte aktiviere deinen lokalen Node",
|
||||||
"keep_secure": "halten Sie Ihre Kontodatei sicher",
|
"type_seed": "Gib deine Seed-Phrase ein oder füge sie ein",
|
||||||
"publishing_key": "erinnerung: Nachdem der Schlüssel veröffentlicht wurde, dauert es ein paar Minuten, bis es angezeigt wird. Bitte warten Sie einfach.",
|
"your_accounts": "deine gespeicherten Konten"
|
||||||
"seedphrase_notice": "eine <seed>SEEDPHRASE</seed> wurde zufällig im Hintergrund generiert",
|
|
||||||
"turn_local_node": "bitte schalten Sie Ihren lokalen Knoten ein",
|
|
||||||
"type_seed": "geben Sie in Ihre Saatgut-Phrase ein oder Einfügen",
|
|
||||||
"your_accounts": "ihre gespeicherten Konten"
|
|
||||||
},
|
},
|
||||||
"success": {
|
"success": {
|
||||||
"reencrypted_secret_key": "erfolgreich neu verdrängte geheime Schlüssel. Es kann ein paar Minuten dauern, bis sich die Änderungen ausbreiten. Aktualisieren Sie die Gruppe in 5 Minuten."
|
"reencrypted_secret_key": "Secret Key erfolgreich neu verschlüsselt. Es kann ein paar Minuten dauern, bis die Änderungen wirksam werden. Aktualisiere die Gruppe in 5 Minuten."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node": {
|
"node": {
|
||||||
"choose": "wählen Sie den benutzerdefinierten Knoten",
|
"choose": "Benutzerdefinierten Node auswählen",
|
||||||
"custom_many": "benutzerdefinierte Knoten",
|
"custom_many": "Benutzerdefinierte Nodes",
|
||||||
"use_custom": "verwenden Sie den benutzerdefinierten Knoten",
|
"use_custom": "Benutzerdefinierten Node verwenden",
|
||||||
"use_local": "verwenden Sie den lokalen Knoten",
|
"use_local": "Lokalen Node verwenden",
|
||||||
"using": "verwenden von Knoten",
|
"using": "Verwendeter Node",
|
||||||
"using_public": "mit öffentlichem Knoten",
|
"using_public": "Öffentlichen Node verwenden",
|
||||||
"using_public_gateway": "öffentlichen Knoten verwenden: {{ gateway }}"
|
"using_public_gateway": "Öffentlichen Node verwenden: {{ gateway }}"
|
||||||
},
|
},
|
||||||
"note": "notiz",
|
"note": "Notiz",
|
||||||
"password": "passwort",
|
"password": "Passwort",
|
||||||
"password_confirmation": "passwort bestätigen",
|
"password_confirmation": "Passwort bestätigen",
|
||||||
"seed_phrase": "samenphrase",
|
"seed_phrase": "Seed-Phrase",
|
||||||
"seed_your": "ihr Saatgut",
|
"seed_your": "deine Seedphrase",
|
||||||
"tips": {
|
"tips": {
|
||||||
"additional_wallet": "verwenden Sie diese Option, um zusätzliche Qortal -Wallets anzuschließen, die Sie bereits erstellt haben, um sich danach bei ihnen anzumelden. Um dies zu tun, benötigen Sie zu Zugriff auf Ihre Sicherungs -JSON -Datei.",
|
"additional_wallet": "Nutze diese Option, um zusätzliche Qortal-Wallets zu verbinden, die du bereits erstellt hast, um dich später damit anzumelden. Du brauchst deine Backup-JSON-Datei dafür.",
|
||||||
"digital_id": "ihre Brieftasche ist wie Ihre digitale ID auf Qortal und wie Sie sich an der Qortal -Benutzeroberfläche anmelden. Es enthält Ihre öffentliche Adresse und den Qortalnamen, den Sie irgendwann auswählen werden. Jede Transaktion, die Sie durchführen, ist mit Ihrer ID verknüpft, und hier verwalten Sie Ihre gesamte Qort- und andere handelbare Kryptowährungen auf Qortal.",
|
"digital_id": "Dein Wallet ist wie dein digitaler Ausweis auf Qortal und dient zur Anmeldung in der Benutzeroberfläche. Es enthält deine öffentliche Adresse und den Qortal-Namen, den du auswählst. Alle Transaktionen sind mit deiner ID verknüpft und du verwaltest hier dein QORT sowie andere Kryptowährungen.",
|
||||||
"existing_account": "haben Sie bereits ein Qortal -Konto? Geben Sie hier Ihre geheime Sicherungsphrase ein, um darauf zuzugreifen. Dieser Satz ist eine der Möglichkeiten, Ihr Konto wiederherzustellen.",
|
"existing_account": "Du hast bereits ein Qortal-Konto? Gib hier deine geheime Backup-Phrase ein, um darauf zuzugreifen. Diese Phrase ist eine Möglichkeit zur Wiederherstellung.",
|
||||||
"key_encrypt_admin": "dieser Schlüssel besteht darin, den Inhalt des administratorischen verwandten Inhalts zu verschlüsseln. Nur Administratoren würden in den Inhalten damit verschlüsselt.",
|
"key_encrypt_admin": "Dieser Schlüssel dient zur Verschlüsselung von ADMIN-Inhalten. Nur Admins können diesen Inhalt sehen.",
|
||||||
"key_encrypt_group": "dieser Schlüssel besteht darin, Gruppeninhalte zu verschlüsseln. Dies ist der einzige, der ab sofort in dieser Benutzeroberfläche verwendet wird. Alle Gruppenmitglieder können inhaltlich mit diesem Schlüssel verschlüsselt werden.",
|
"key_encrypt_group": "Dieser Schlüssel verschlüsselt GRUPPEN-Inhalte. Nur Gruppenmitglieder können den Inhalt sehen. Dieser wird derzeit im UI verwendet.",
|
||||||
"new_account": "das Erstellen eines Kontos bedeutet, eine neue Brieftasche und eine digitale ID für die Verwendung von Qortal zu erstellen. Sobald Sie Ihr Konto erstellt haben, können Sie damit beginnen, Dinge wie ein Qort zu erhalten, einen Namen und Avatar zu kaufen, Videos und Blogs zu veröffentlichen und vieles mehr.",
|
"new_account": "Ein Konto erstellen bedeutet, ein neues Wallet und eine digitale ID zu erstellen, um Qortal zu nutzen. Danach kannst du QORT erhalten, Namen und Avatare kaufen, Videos und Blogs veröffentlichen und mehr.",
|
||||||
"new_users": "neue Benutzer beginnen hier!",
|
"new_users": "Neue Benutzer starten hier!",
|
||||||
"safe_place": "speichern Sie Ihr Konto an einem Ort, an dem Sie sich daran erinnern werden!",
|
"safe_place": "Speichere dein Konto an einem Ort, den du dir merken kannst!",
|
||||||
"view_seedphrase": "wenn Sie die SeedPhrase anzeigen möchten, klicken Sie in diesem Text auf das Wort 'Seedphrase'. Saatgut werden verwendet, um den privaten Schlüssel für Ihr Qortal -Konto zu generieren. Für die Sicherheit standardmäßig werden Seedhrasen nicht angezeigt, wenn sie ausdrücklich ausgewählt werden.",
|
"view_seedphrase": "Wenn du die SEEDPHRASE ansehen möchtest, klicke auf das Wort 'SEEDPHRASE'. Seedphrases generieren den privaten Schlüssel deines Kontos. Aus Sicherheitsgründen werden sie standardmäßig nicht angezeigt.",
|
||||||
"wallet_secure": "halten Sie Ihre Brieftaschenakte sicher."
|
"wallet_secure": "Halte deine Wallet-Datei sicher."
|
||||||
},
|
},
|
||||||
"wallet": {
|
"wallet": {
|
||||||
"password_confirmation": "brieftaschenkennwort bestätigen",
|
"password_confirmation": "Wallet-Passwort bestätigen",
|
||||||
"password": "brieftaschenkennwort",
|
"password": "Wallet-Passwort",
|
||||||
"keep_password": "halten Sie das aktuelle Passwort",
|
"keep_password": "aktuelles Passwort beibehalten",
|
||||||
"new_password": "neues Passwort",
|
"new_password": "neues Passwort",
|
||||||
"error": {
|
"error": {
|
||||||
"missing_new_password": "bitte geben Sie ein neues Passwort ein",
|
"missing_new_password": "Bitte gib ein neues Passwort ein",
|
||||||
"missing_password": "bitte geben Sie Ihr Passwort ein"
|
"missing_password": "Bitte gib dein Passwort ein"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"welcome": "willkommen zu"
|
"welcome": "Willkommen bei"
|
||||||
}
|
}
|
||||||
|
@ -8,131 +8,131 @@
|
|||||||
"action": {
|
"action": {
|
||||||
"add": {
|
"add": {
|
||||||
"account": "agregar cuenta",
|
"account": "agregar cuenta",
|
||||||
"seed_phrase": "agregar frase de semillas"
|
"seed_phrase": "agregar frase semilla"
|
||||||
},
|
},
|
||||||
"authenticate": "autenticar",
|
"authenticate": "autenticar",
|
||||||
"block": "bloquear",
|
"block": "bloquear",
|
||||||
"block_all": "bloquear todo",
|
"block_all": "bloquear todo",
|
||||||
"block_data": "bloquear datos de QDN",
|
"block_data": "bloquear datos QDN",
|
||||||
"block_name": "nombre de bloqueo",
|
"block_name": "bloquear nombre",
|
||||||
"block_txs": "bloquear TSX",
|
"block_txs": "bloquear transacciones",
|
||||||
"fetch_names": "buscar nombres",
|
"fetch_names": "obtener nombres",
|
||||||
"copy_address": "dirección de copia",
|
"copy_address": "copiar dirección",
|
||||||
"create_account": "crear una cuenta",
|
"create_account": "crear cuenta",
|
||||||
"create_qortal_account": "create your Qortal account by clicking <next>NEXT</next> below.",
|
"create_qortal_account": "crea tu cuenta de Qortal haciendo clic en <next>SIGUIENTE</next> abajo.",
|
||||||
"choose_password": "elija una nueva contraseña",
|
"choose_password": "elige nueva contraseña",
|
||||||
"download_account": "cuenta de descarga",
|
"download_account": "descargar cuenta",
|
||||||
"enter_amount": "ingrese una cantidad mayor que 0",
|
"enter_amount": "por favor ingresa una cantidad mayor que 0",
|
||||||
"enter_recipient": "por favor ingrese a un destinatario",
|
"enter_recipient": "por favor ingresa un destinatario",
|
||||||
"enter_wallet_password": "ingrese su contraseña de billetera",
|
"enter_wallet_password": "por favor ingresa la contraseña de tu billetera",
|
||||||
"export_seedphrase": "exportar frase de semillas",
|
"export_seedphrase": "exportar frase semilla",
|
||||||
"insert_name_address": "inserte un nombre o dirección",
|
"insert_name_address": "por favor ingresa un nombre o dirección",
|
||||||
"publish_admin_secret_key": "publicar la clave secreta de administración",
|
"publish_admin_secret_key": "publicar clave secreta de administrador",
|
||||||
"publish_group_secret_key": "publicar la clave secreta del grupo",
|
"publish_group_secret_key": "publicar clave secreta del grupo",
|
||||||
"reencrypt_key": "reencietar la tecla",
|
"reencrypt_key": "reencriptar clave",
|
||||||
"return_to_list": "volver a la lista",
|
"return_to_list": "volver a la lista",
|
||||||
"setup_qortal_account": "configure su cuenta de Qortal",
|
"setup_qortal_account": "configura tu cuenta de Qortal",
|
||||||
"unblock": "desatascar",
|
"unblock": "desbloquear",
|
||||||
"unblock_name": "nombre de desbloqueo"
|
"unblock_name": "desbloquear nombre"
|
||||||
},
|
},
|
||||||
"address": "dIRECCIÓN",
|
"address": "dirección",
|
||||||
"address_name": "dirección o nombre",
|
"address_name": "dirección o nombre",
|
||||||
"advanced_users": "para usuarios avanzados",
|
"advanced_users": "para usuarios avanzados",
|
||||||
"apikey": {
|
"apikey": {
|
||||||
"alternative": "alternativa: Archivo Seleccionar",
|
"alternative": "alternativa: seleccionar archivo",
|
||||||
"change": "cambiar apikey",
|
"change": "cambiar clave API",
|
||||||
"enter": "ingresa apikey",
|
"enter": "ingresar clave API",
|
||||||
"import": "importar apikey",
|
"import": "importar clave API",
|
||||||
"key": "llave de API",
|
"key": "clave API",
|
||||||
"select_valid": "seleccione un apikey válido"
|
"select_valid": "selecciona una clave API válida"
|
||||||
},
|
},
|
||||||
"authentication": "autenticación",
|
"authentication": "autenticación",
|
||||||
"blocked_users": "usuarios bloqueados",
|
"blocked_users": "usuarios bloqueados",
|
||||||
"build_version": "versión de compilación",
|
"build_version": "versión de compilación",
|
||||||
"message": {
|
"message": {
|
||||||
"error": {
|
"error": {
|
||||||
"account_creation": "no pudo crear cuenta.",
|
"account_creation": "no se pudo crear la cuenta.",
|
||||||
"address_not_existing": "la dirección no existe en blockchain",
|
"address_not_existing": "la dirección no existe en la blockchain",
|
||||||
"block_user": "no se puede bloquear el usuario",
|
"block_user": "no se puede bloquear al usuario",
|
||||||
"create_simmetric_key": "no se puede crear una clave simétrica",
|
"create_simmetric_key": "no se puede crear clave simétrica",
|
||||||
"decrypt_data": "no pudo descifrar datos",
|
"decrypt_data": "no se pudieron descifrar los datos",
|
||||||
"decrypt": "incifto de descifrar",
|
"decrypt": "no se puede descifrar",
|
||||||
"encrypt_content": "no se puede cifrar contenido",
|
"encrypt_content": "no se puede cifrar el contenido",
|
||||||
"fetch_user_account": "no se puede obtener una cuenta de usuario",
|
"fetch_user_account": "no se puede obtener la cuenta de usuario",
|
||||||
"field_not_found_json": "{{ field }} not found in JSON",
|
"field_not_found_json": "{{ field }} no encontrado en el JSON",
|
||||||
"find_secret_key": "no puedo encontrar correcto secretkey",
|
"find_secret_key": "no se puede encontrar la clave secreta correcta",
|
||||||
"incorrect_password": "contraseña incorrecta",
|
"incorrect_password": "contraseña incorrecta",
|
||||||
"invalid_qortal_link": "enlace Qortal no válido",
|
"invalid_qortal_link": "enlace Qortal inválido",
|
||||||
"invalid_secret_key": "secretKey no es válido",
|
"invalid_secret_key": "clave secreta no válida",
|
||||||
"invalid_uint8": "el Uint8ArrayData que ha enviado no es válido",
|
"invalid_uint8": "el Uint8ArrayData enviado no es válido",
|
||||||
"name_not_existing": "el nombre no existe",
|
"name_not_existing": "el nombre no existe",
|
||||||
"name_not_registered": "nombre no registrado",
|
"name_not_registered": "nombre no registrado",
|
||||||
"read_blob_base64": "no se pudo leer el blob como una cadena codificada de base64",
|
"read_blob_base64": "fallo al leer el Blob como cadena codificada en base64",
|
||||||
"reencrypt_secret_key": "incapaz de volver a encriptar la clave secreta",
|
"reencrypt_secret_key": "no se pudo reencriptar la clave secreta",
|
||||||
"set_apikey": "no se pudo establecer la tecla API:"
|
"set_apikey": "fallo al establecer la clave API:"
|
||||||
},
|
},
|
||||||
"generic": {
|
"generic": {
|
||||||
"blocked_addresses": "direcciones bloqueadas: procesamiento de bloques de TXS",
|
"blocked_addresses": "direcciones bloqueadas: bloquea procesamiento de transacciones",
|
||||||
"blocked_names": "nombres bloqueados para QDN",
|
"blocked_names": "nombres bloqueados para QDN",
|
||||||
"blocking": "blocking {{ name }}",
|
"blocking": "bloqueando a {{ name }}",
|
||||||
"choose_block": "elija 'Bloquear TXS' o 'Todo' para bloquear los mensajes de chat",
|
"choose_block": "elige 'bloquear transacciones' o 'todo' para bloquear mensajes de chat",
|
||||||
"congrats_setup": "felicidades, ¡estás listo!",
|
"congrats_setup": "¡felicidades, todo está listo!",
|
||||||
"decide_block": "decide qué bloquear",
|
"decide_block": "decide qué bloquear",
|
||||||
"downloading_encryption_keys": "downloading encryption keys",
|
"downloading_encryption_keys": "descargando claves de cifrado",
|
||||||
|
"fetching_admin_secret_key": "obteniendo clave secreta de administrador",
|
||||||
|
"fetching_group_secret_key": "obteniendo publicación de clave secreta de grupo",
|
||||||
|
"keep_secure": "mantén segura tu archivo de cuenta",
|
||||||
|
"last_encryption_date": "última fecha de cifrado: {{ date }} por {{ name }}",
|
||||||
|
"locating_encryption_keys": "localizando claves de cifrado",
|
||||||
"name_address": "nombre o dirección",
|
"name_address": "nombre o dirección",
|
||||||
"no_account": "no hay cuentas guardadas",
|
"no_account": "no hay cuentas guardadas",
|
||||||
"no_minimum_length": "no hay requisito de longitud mínima",
|
"no_minimum_length": "no hay requisito de longitud mínima",
|
||||||
"no_secret_key_published": "no hay clave secreta publicada todavía",
|
"no_secret_key_published": "aún no se ha publicado ninguna clave secreta",
|
||||||
"fetching_admin_secret_key": "llave secreta de los administradores de administradores",
|
"publishing_key": "recordatorio: después de publicar la clave, puede tardar unos minutos en aparecer. Por favor, espera.",
|
||||||
"fetching_group_secret_key": "obtener publicaciones de Key Secret Group Secret",
|
"seedphrase_notice": "una <seed>FRASE SEMILLA</seed> se ha generado aleatoriamente en segundo plano.",
|
||||||
"last_encryption_date": "last encryption date: {{ date }} by {{ name }}",
|
"turn_local_node": "por favor, enciende tu nodo local",
|
||||||
"locating_encryption_keys": "locating encryption keys",
|
"type_seed": "escribe o pega tu frase semilla",
|
||||||
"keep_secure": "mantenga su archivo de cuenta seguro",
|
|
||||||
"publishing_key": "recordatorio: después de publicar la llave, tardará un par de minutos en aparecer. Por favor, solo espera.",
|
|
||||||
"seedphrase_notice": "a <seed>SEEDPHRASE</seed> has been randomly generated in the background.",
|
|
||||||
"turn_local_node": "encienda su nodo local",
|
|
||||||
"type_seed": "escriba o pegue en su frase de semillas",
|
|
||||||
"your_accounts": "tus cuentas guardadas"
|
"your_accounts": "tus cuentas guardadas"
|
||||||
},
|
},
|
||||||
"success": {
|
"success": {
|
||||||
"reencrypted_secret_key": "clave secreta reinscritada con éxito. Puede tomar un par de minutos para que los cambios se propagen. Actualice el grupo en 5 minutos."
|
"reencrypted_secret_key": "clave secreta reencriptada exitosamente. Los cambios pueden tardar unos minutos en propagarse. Actualiza el grupo en 5 minutos."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node": {
|
"node": {
|
||||||
"choose": "elija el nodo personalizado",
|
"choose": "elegir nodo personalizado",
|
||||||
"custom_many": "nodos personalizados",
|
"custom_many": "nodos personalizados",
|
||||||
"use_custom": "usar nodo personalizado",
|
"use_custom": "usar nodo personalizado",
|
||||||
"use_local": "use el nodo local",
|
"use_local": "usar nodo local",
|
||||||
"using": "usando nodo",
|
"using": "usando nodo",
|
||||||
"using_public": "usando el nodo público",
|
"using_public": "usando nodo público",
|
||||||
"using_public_gateway": "using public node: {{ gateway }}"
|
"using_public_gateway": "usando nodo público: {{ gateway }}"
|
||||||
},
|
},
|
||||||
"note": "nota",
|
"note": "nota",
|
||||||
"password": "contraseña",
|
"password": "contraseña",
|
||||||
"password_confirmation": "confirmar Contraseña",
|
"password_confirmation": "confirmar contraseña",
|
||||||
"seed_phrase": "frase de semillas",
|
"seed_phrase": "frase semilla",
|
||||||
"seed_your": "tu frase de semillas",
|
"seed_your": "tu frase semilla",
|
||||||
"tips": {
|
"tips": {
|
||||||
"additional_wallet": "use esta opción para conectar las billeteras de Qortal adicionales que ya ha realizado para iniciar sesión con ellas después. Necesitará acceso a su archivo JSON de copia de seguridad para hacerlo.",
|
"additional_wallet": "usa esta opción para conectar carteras Qortal adicionales que ya has creado, para iniciar sesión más adelante. Necesitarás acceso a tu archivo de respaldo JSON.",
|
||||||
"digital_id": "su billetera es como su ID digital en Qortal, y es cómo iniciará sesión en la interfaz de usuario de Qortal. Sostiene su dirección pública y el nombre Qortal que eventualmente elegirá. Cada transacción que realice está vinculada a su ID, y aquí es donde administra todos sus Qort y otras criptomonedas comercializables en Qortal.",
|
"digital_id": "tu billetera es como tu ID digital en Qortal y es la forma de iniciar sesión en la interfaz de usuario. Contiene tu dirección pública y el nombre Qortal que elijas. Cada transacción que haces está vinculada a tu ID, y aquí gestionas todo tu QORT y otras criptomonedas comerciables en Qortal.",
|
||||||
"existing_account": "¿Ya tienes una cuenta Qortal? Ingrese su frase de copia de seguridad secreta aquí para acceder a ella. Esta frase es una de las formas de recuperar su cuenta.",
|
"existing_account": "¿ya tienes una cuenta de Qortal? Ingresa tu frase de respaldo secreta aquí para acceder. Esta frase es una de las formas de recuperar tu cuenta.",
|
||||||
"key_encrypt_admin": "esta clave es cifrar el contenido relacionado con el administrador. Solo los administradores verían contenido encriptado con él.",
|
"key_encrypt_admin": "esta clave es para cifrar contenido relacionado con ADMIN. Solo los administradores pueden ver el contenido cifrado con esta clave.",
|
||||||
"key_encrypt_group": "esta clave es cifrar contenido relacionado con el grupo. Esta es el única utilizada en esta interfaz de usuario a partir de ahora. Todos los miembros del grupo podrán ver contenido encriptado con esta clave.",
|
"key_encrypt_group": "esta clave es para cifrar contenido de GRUPO. Actualmente es la única que se usa en esta interfaz. Todos los miembros del grupo podrán ver el contenido cifrado con esta clave.",
|
||||||
"new_account": "crear una cuenta significa crear una nueva billetera e ID digital para comenzar a usar Qortal. Una vez que haya hecho su cuenta, puede comenzar a hacer cosas como obtener algo de Qort, comprar un nombre y avatar, publicar videos y blogs, y mucho más.",
|
"new_account": "crear una cuenta significa crear una nueva billetera e ID digital para comenzar a usar Qortal. Una vez creada, podrás obtener QORT, comprar un nombre y avatar, publicar videos y blogs, y mucho más.",
|
||||||
"new_users": "¡Los nuevos usuarios comienzan aquí!",
|
"new_users": "¡los nuevos usuarios comienzan aquí!",
|
||||||
"safe_place": "¡Guarde su cuenta en un lugar donde la recordará!",
|
"safe_place": "¡guarda tu cuenta en un lugar seguro que recuerdes!",
|
||||||
"view_seedphrase": "si desea ver la Phrause de semillas, haga clic en la palabra 'Semilla Phrase' en este texto. Las frases de semillas se utilizan para generar la clave privada para su cuenta de Qortal. Para la seguridad de forma predeterminada, las frases de semillas no se muestran a menos que se elijan específicamente.",
|
"view_seedphrase": "si deseas VER LA FRASE SEMILLA, haz clic en la palabra 'FRASE SEMILLA' en este texto. Las frases semilla se usan para generar la clave privada de tu cuenta Qortal. Por seguridad, no se muestran por defecto.",
|
||||||
"wallet_secure": "mantenga su archivo de billetera seguro."
|
"wallet_secure": "mantén seguro el archivo de tu billetera."
|
||||||
},
|
},
|
||||||
"wallet": {
|
"wallet": {
|
||||||
"password_confirmation": "confirmar contraseña de billetera",
|
"password_confirmation": "confirmar contraseña de billetera",
|
||||||
"password": "contraseña de billetera",
|
"password": "contraseña de billetera",
|
||||||
"keep_password": "mantenga la contraseña actual",
|
"keep_password": "mantener contraseña actual",
|
||||||
"new_password": "nueva contraseña",
|
"new_password": "nueva contraseña",
|
||||||
"error": {
|
"error": {
|
||||||
"missing_new_password": "ingrese una nueva contraseña",
|
"missing_new_password": "por favor ingresa una nueva contraseña",
|
||||||
"missing_password": "ingrese su contraseña"
|
"missing_password": "por favor ingresa tu contraseña"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"welcome": "bienvenido"
|
"welcome": "bienvenido a"
|
||||||
}
|
}
|
||||||
|
@ -8,131 +8,131 @@
|
|||||||
"action": {
|
"action": {
|
||||||
"add": {
|
"add": {
|
||||||
"account": "ajouter un compte",
|
"account": "ajouter un compte",
|
||||||
"seed_phrase": "ajouter la phrase de graines"
|
"seed_phrase": "ajouter une phrase de récupération"
|
||||||
},
|
},
|
||||||
"authenticate": "authentifier",
|
"authenticate": "authentifier",
|
||||||
"block": "bloc",
|
"block": "bloquer",
|
||||||
"block_all": "bloquer tout",
|
"block_all": "tout bloquer",
|
||||||
"block_data": "bloquer les données QDN",
|
"block_data": "bloquer les données QDN",
|
||||||
"block_name": "nom de blocage",
|
"block_name": "bloquer le nom",
|
||||||
"block_txs": "bloquer TSX",
|
"block_txs": "bloquer les transactions",
|
||||||
"fetch_names": "répondre aux noms",
|
"fetch_names": "récupérer les noms",
|
||||||
"copy_address": "copier l'adresse",
|
"copy_address": "copier l'adresse",
|
||||||
"create_account": "créer un compte",
|
"create_account": "créer un compte",
|
||||||
"create_qortal_account": "create your Qortal account by clicking <next>NEXT</next> below.",
|
"create_qortal_account": "créez votre compte Qortal en cliquant sur <next>SUIVANT</next> ci-dessous.",
|
||||||
"choose_password": "choisissez un nouveau mot de passe",
|
"choose_password": "choisir un nouveau mot de passe",
|
||||||
"download_account": "télécharger le compte",
|
"download_account": "télécharger le compte",
|
||||||
"enter_amount": "veuillez saisir un montant supérieur à 0",
|
"enter_amount": "veuillez entrer un montant supérieur à 0",
|
||||||
"enter_recipient": "veuillez entrer un destinataire",
|
"enter_recipient": "veuillez entrer un destinataire",
|
||||||
"enter_wallet_password": "veuillez saisir votre mot de passe de portefeuille",
|
"enter_wallet_password": "veuillez entrer le mot de passe de votre portefeuille",
|
||||||
"export_seedphrase": "exportation de graines",
|
"export_seedphrase": "exporter la phrase de récupération",
|
||||||
"insert_name_address": "veuillez insérer un nom ou une adresse",
|
"insert_name_address": "veuillez entrer un nom ou une adresse",
|
||||||
"publish_admin_secret_key": "publier une clé secrète administrateur",
|
"publish_admin_secret_key": "publier la clé secrète administrateur",
|
||||||
"publish_group_secret_key": "publier la clé secrète de groupe",
|
"publish_group_secret_key": "publier la clé secrète du groupe",
|
||||||
"reencrypt_key": "clé de réencrypt",
|
"reencrypt_key": "re-chiffrer la clé",
|
||||||
"return_to_list": "retour à la liste",
|
"return_to_list": "retourner à la liste",
|
||||||
"setup_qortal_account": "configurez votre compte Qortal",
|
"setup_qortal_account": "configurer votre compte Qortal",
|
||||||
"unblock": "débloquer",
|
"unblock": "débloquer",
|
||||||
"unblock_name": "nom de déblocage"
|
"unblock_name": "débloquer le nom"
|
||||||
},
|
},
|
||||||
"address": "adresse",
|
"address": "adresse",
|
||||||
"address_name": "adresse ou nom",
|
"address_name": "adresse ou nom",
|
||||||
"advanced_users": "pour les utilisateurs avancés",
|
"advanced_users": "pour utilisateurs avancés",
|
||||||
"apikey": {
|
"apikey": {
|
||||||
"alternative": "alternative: sélection de fichiers",
|
"alternative": "alternative : sélection de fichier",
|
||||||
"change": "changer Apikey",
|
"change": "changer la clé API",
|
||||||
"enter": "entrez Apikey",
|
"enter": "entrer la clé API",
|
||||||
"import": "importer apikey",
|
"import": "importer la clé API",
|
||||||
"key": "clé API",
|
"key": "clé API",
|
||||||
"select_valid": "sélectionnez un apikey valide"
|
"select_valid": "sélectionner une clé API valide"
|
||||||
},
|
},
|
||||||
"authentication": "authentification",
|
"authentication": "authentification",
|
||||||
"blocked_users": "utilisateurs bloqués",
|
"blocked_users": "utilisateurs bloqués",
|
||||||
"build_version": "version de construction",
|
"build_version": "version de build",
|
||||||
"message": {
|
"message": {
|
||||||
"error": {
|
"error": {
|
||||||
"account_creation": "impossible de créer un compte.",
|
"account_creation": "impossible de créer le compte.",
|
||||||
"address_not_existing": "l'adresse n'existe pas sur la blockchain",
|
"address_not_existing": "l'adresse n'existe pas sur la blockchain",
|
||||||
"block_user": "impossible de bloquer l'utilisateur",
|
"block_user": "impossible de bloquer l'utilisateur",
|
||||||
"create_simmetric_key": "impossible de créer une clé symétrique",
|
"create_simmetric_key": "impossible de créer une clé symétrique",
|
||||||
"decrypt_data": "Je n'ai pas pu déchiffrer les données",
|
"decrypt_data": "impossible de déchiffrer les données",
|
||||||
"decrypt": "incapable de décrypter",
|
"decrypt": "impossible de déchiffrer",
|
||||||
"encrypt_content": "impossible de crypter le contenu",
|
"encrypt_content": "impossible de chiffrer le contenu",
|
||||||
"fetch_user_account": "impossible de récupérer le compte d'utilisateur",
|
"fetch_user_account": "impossible de récupérer le compte utilisateur",
|
||||||
"field_not_found_json": "{{ field }} not found in JSON",
|
"field_not_found_json": "{{ field }} introuvable dans le JSON",
|
||||||
"find_secret_key": "impossible de trouver Secretkey correct",
|
"find_secret_key": "clé secrète correcte introuvable",
|
||||||
"incorrect_password": "mot de passe incorrect",
|
"incorrect_password": "mot de passe incorrect",
|
||||||
"invalid_qortal_link": "lien Qortal non valide",
|
"invalid_qortal_link": "lien Qortal invalide",
|
||||||
"invalid_secret_key": "secretKey n'est pas valable",
|
"invalid_secret_key": "clé secrète invalide",
|
||||||
"invalid_uint8": "l'Uint8ArrayData que vous avez soumis n'est pas valide",
|
"invalid_uint8": "les données Uint8Array soumises sont invalides",
|
||||||
"name_not_existing": "le nom n'existe pas",
|
"name_not_existing": "le nom n'existe pas",
|
||||||
"name_not_registered": "nom non enregistré",
|
"name_not_registered": "nom non enregistré",
|
||||||
"read_blob_base64": "Échec de la lecture du blob en tant que chaîne codée de base64",
|
"read_blob_base64": "échec de la lecture du Blob en base64",
|
||||||
"reencrypt_secret_key": "impossible de réincrypter la clé secrète",
|
"reencrypt_secret_key": "impossible de re-chiffrer la clé secrète",
|
||||||
"set_apikey": "impossible de définir la clé API:"
|
"set_apikey": "échec de la configuration de la clé API :"
|
||||||
},
|
},
|
||||||
"generic": {
|
"generic": {
|
||||||
"blocked_addresses": "adresses bloquées - Blocs Traitement des TX",
|
"blocked_addresses": "adresses bloquées – bloque le traitement des transactions",
|
||||||
"blocked_names": "noms bloqués pour QDN",
|
"blocked_names": "noms bloqués pour QDN",
|
||||||
"blocking": "blocking {{ name }}",
|
"blocking": "blocage de {{ name }}",
|
||||||
"choose_block": "choisissez «Bloquer TXS» ou «All» pour bloquer les messages de chat",
|
"choose_block": "choisissez 'bloquer les transactions' ou 'tout' pour bloquer les messages de chat",
|
||||||
"congrats_setup": "félicitations, vous êtes tous mis en place!",
|
"congrats_setup": "félicitations, tout est prêt !",
|
||||||
"decide_block": "décider quoi bloquer",
|
"decide_block": "décidez quoi bloquer",
|
||||||
"downloading_encryption_keys": "downloading encryption keys",
|
"downloading_encryption_keys": "téléchargement des clés de chiffrement",
|
||||||
|
"fetching_admin_secret_key": "récupération de la clé secrète administrateur",
|
||||||
|
"fetching_group_secret_key": "récupération de la clé secrète de groupe publiée",
|
||||||
|
"keep_secure": "gardez votre fichier de compte en sécurité",
|
||||||
|
"last_encryption_date": "dernière date de chiffrement : {{ date }} par {{ name }}",
|
||||||
|
"locating_encryption_keys": "localisation des clés de chiffrement",
|
||||||
"name_address": "nom ou adresse",
|
"name_address": "nom ou adresse",
|
||||||
"no_account": "aucun compte enregistré",
|
"no_account": "aucun compte enregistré",
|
||||||
"no_minimum_length": "il n'y a pas de durée minimale",
|
"no_minimum_length": "aucune exigence de longueur minimale",
|
||||||
"no_secret_key_published": "aucune clé secrète publiée encore",
|
"no_secret_key_published": "aucune clé secrète publiée pour l'instant",
|
||||||
"fetching_admin_secret_key": "recherche la clé secrète des administrateurs",
|
"publishing_key": "rappel : après la publication de la clé, cela peut prendre quelques minutes pour qu'elle apparaisse. Veuillez patienter.",
|
||||||
"fetching_group_secret_key": "recherche de clés secrètes de groupe",
|
"seedphrase_notice": "une <seed>PHRASE DE RÉCUPÉRATION</seed> a été générée aléatoirement en arrière-plan.",
|
||||||
"last_encryption_date": "last encryption date: {{ date }} by {{ name }}",
|
"turn_local_node": "veuillez activer votre nœud local",
|
||||||
"locating_encryption_keys": "locating encryption keys",
|
"type_seed": "tapez ou collez votre phrase de récupération",
|
||||||
"keep_secure": "gardez votre fichier de compte sécurisé",
|
|
||||||
"publishing_key": "rappel: Après avoir publié la clé, il faudra quelques minutes pour qu'il apparaisse. Veuillez juste attendre.",
|
|
||||||
"seedphrase_notice": "a <seed>SEEDPHRASE</seed> has been randomly generated in the background.",
|
|
||||||
"turn_local_node": "veuillez allumer votre nœud local",
|
|
||||||
"type_seed": "tapez ou collez dans votre phrase de graines",
|
|
||||||
"your_accounts": "vos comptes enregistrés"
|
"your_accounts": "vos comptes enregistrés"
|
||||||
},
|
},
|
||||||
"success": {
|
"success": {
|
||||||
"reencrypted_secret_key": "réciter avec succès la clé secrète. Il peut prendre quelques minutes pour que les modifications se propagent. Actualiser le groupe en 5 minutes."
|
"reencrypted_secret_key": "clé secrète re-chiffrée avec succès. Les changements peuvent prendre quelques minutes pour se propager. Rafraîchissez le groupe dans 5 minutes."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node": {
|
"node": {
|
||||||
"choose": "choisissez le nœud personnalisé",
|
"choose": "choisir un nœud personnalisé",
|
||||||
"custom_many": "nœuds personnalisés",
|
"custom_many": "nœuds personnalisés",
|
||||||
"use_custom": "utiliser le nœud personnalisé",
|
"use_custom": "utiliser un nœud personnalisé",
|
||||||
"use_local": "utiliser le nœud local",
|
"use_local": "utiliser un nœud local",
|
||||||
"using": "utilisation du nœud",
|
"using": "utilisation du nœud",
|
||||||
"using_public": "utilisation du nœud public",
|
"using_public": "utilisation d'un nœud public",
|
||||||
"using_public_gateway": "using public node: {{ gateway }}"
|
"using_public_gateway": "utilisation du nœud public : {{ gateway }}"
|
||||||
},
|
},
|
||||||
"note": "note",
|
"note": "note",
|
||||||
"password": "mot de passe",
|
"password": "mot de passe",
|
||||||
"password_confirmation": "confirmez le mot de passe",
|
"password_confirmation": "confirmer le mot de passe",
|
||||||
"seed_phrase": "phrase de graines",
|
"seed_phrase": "phrase de récupération",
|
||||||
"seed_your": "votre phrase de graines",
|
"seed_your": "votre phrase de récupération",
|
||||||
"tips": {
|
"tips": {
|
||||||
"additional_wallet": "utilisez cette option pour connecter des portefeuilles Qortal supplémentaires que vous avez déjà fabriqués, afin de vous connecter par la suite. Vous aurez besoin d'accéder à votre fichier JSON de sauvegarde afin de le faire.",
|
"additional_wallet": "utilisez cette option pour connecter d'autres portefeuilles Qortal que vous avez déjà créés, afin de vous connecter plus tard. Vous aurez besoin de votre fichier JSON de sauvegarde.",
|
||||||
"digital_id": "votre portefeuille est comme votre ID numérique sur Qortal, et c'est comment vous vous connectez à l'interface utilisateur Qortal. Il détient votre adresse publique et le nom Qortal que vous allez éventuellement choisir. Chaque transaction que vous effectuez est liée à votre identifiant, et c'est là que vous gérez tous vos Qort et autres crypto-monnaies négociables sur Qortal.",
|
"digital_id": "votre portefeuille est comme votre identifiant numérique sur Qortal, et il vous permet de vous connecter à l’interface utilisateur. Il contient votre adresse publique et le nom Qortal que vous choisirez. Chaque transaction est liée à votre ID, et c’est là que vous gérez votre QORT et d’autres cryptomonnaies échangeables sur Qortal.",
|
||||||
"existing_account": "vous avez déjà un compte Qortal? Entrez ici votre phrase de sauvegarde secrète pour y accéder. Cette phrase est l'une des façons de récupérer votre compte.",
|
"existing_account": "vous avez déjà un compte Qortal ? Entrez votre phrase secrète de sauvegarde ici pour y accéder. Cette phrase est l’un des moyens de récupérer votre compte.",
|
||||||
"key_encrypt_admin": "cette clé est de crypter le contenu lié à l'administrateur. Seuls les administrateurs verraient du contenu chiffré avec.",
|
"key_encrypt_admin": "cette clé sert à chiffrer le contenu ADMIN. Seuls les administrateurs verront ce contenu chiffré.",
|
||||||
"key_encrypt_group": "cette clé est de chiffrer le contenu lié au groupe. C'est la seule utilisée dans cette interface utilisateur pour l'instant. Tous les membres du groupe pourront voir du contenu crypté avec cette clé.",
|
"key_encrypt_group": "cette clé sert à chiffrer le contenu du GROUPE. C’est la seule utilisée actuellement dans cette interface. Tous les membres du groupe pourront voir le contenu chiffré.",
|
||||||
"new_account": "la création d'un compte signifie créer un nouvel portefeuille et un nouvel ID numérique pour commencer à utiliser Qortal. Une fois que vous avez créé votre compte, vous pouvez commencer à faire des choses comme obtenir du Qort, acheter un nom et un avatar, publier des vidéos et des blogs, et bien plus encore.",
|
"new_account": "créer un compte signifie créer un nouveau portefeuille et identifiant numérique pour commencer à utiliser Qortal. Une fois le compte créé, vous pouvez obtenir du QORT, acheter un nom et un avatar, publier des vidéos et blogs, et bien plus encore.",
|
||||||
"new_users": "les nouveaux utilisateurs commencent ici!",
|
"new_users": "les nouveaux utilisateurs commencent ici !",
|
||||||
"safe_place": "enregistrez votre compte dans un endroit où vous vous en souviendrez!",
|
"safe_place": "sauvegardez votre compte dans un endroit sûr que vous retiendrez !",
|
||||||
"view_seedphrase": "si vous souhaitez afficher la phrase de graines, cliquez sur le mot «SeedPhrase» dans ce texte. Les phrases de graines sont utilisées pour générer la clé privée pour votre compte Qortal. Pour la sécurité par défaut, les phrases de graines ne sont affichées que si elles sont spécifiquement choisies.",
|
"view_seedphrase": "si vous souhaitez VOIR LA PHRASE DE RÉCUPÉRATION, cliquez sur le mot 'PHRASE DE RÉCUPÉRATION' dans ce texte. Ces phrases sont utilisées pour générer la clé privée de votre compte Qortal. Pour des raisons de sécurité, elles ne sont PAS affichées par défaut.",
|
||||||
"wallet_secure": "gardez votre fichier de portefeuille sécurisé."
|
"wallet_secure": "gardez le fichier de votre portefeuille en sécurité."
|
||||||
},
|
},
|
||||||
"wallet": {
|
"wallet": {
|
||||||
"password_confirmation": "confirmer le mot de passe du portefeuille",
|
"password_confirmation": "confirmer le mot de passe du portefeuille",
|
||||||
"password": "mot de passe du portefeuille",
|
"password": "mot de passe du portefeuille",
|
||||||
"keep_password": "gardez le mot de passe actuel",
|
"keep_password": "garder le mot de passe actuel",
|
||||||
"new_password": "nouveau mot de passe",
|
"new_password": "nouveau mot de passe",
|
||||||
"error": {
|
"error": {
|
||||||
"missing_new_password": "veuillez saisir un nouveau mot de passe",
|
"missing_new_password": "veuillez entrer un nouveau mot de passe",
|
||||||
"missing_password": "veuillez saisir votre mot de passe"
|
"missing_password": "veuillez entrer votre mot de passe"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"welcome": "bienvenue"
|
"welcome": "bienvenue sur"
|
||||||
}
|
}
|
||||||
|
@ -14,10 +14,10 @@
|
|||||||
"block": "blocca",
|
"block": "blocca",
|
||||||
"block_all": "blocca tutto",
|
"block_all": "blocca tutto",
|
||||||
"block_data": "blocca i dati QDN",
|
"block_data": "blocca i dati QDN",
|
||||||
"block_name": "nome del blocco",
|
"block_name": "blocca nome",
|
||||||
"block_txs": "blocca TSX",
|
"block_txs": "blocca TSX",
|
||||||
"fetch_names": "nomi di recupero",
|
"fetch_names": "recupera nomi",
|
||||||
"copy_address": "indirizzo di copia",
|
"copy_address": "copia indirizzo",
|
||||||
"create_account": "crea un account",
|
"create_account": "crea un account",
|
||||||
"create_qortal_account": "crea il tuo account Qortal cliccando <next>NEXT</next> sotto.",
|
"create_qortal_account": "crea il tuo account Qortal cliccando <next>NEXT</next> sotto.",
|
||||||
"choose_password": "scegli nuova password",
|
"choose_password": "scegli nuova password",
|
||||||
@ -29,7 +29,7 @@
|
|||||||
"insert_name_address": "si prega di inserire un nome o un indirizzo",
|
"insert_name_address": "si prega di inserire un nome o un indirizzo",
|
||||||
"publish_admin_secret_key": "pubblica la chiave segreta dell'amministratore",
|
"publish_admin_secret_key": "pubblica la chiave segreta dell'amministratore",
|
||||||
"publish_group_secret_key": "pubblica chiave segreta di gruppo",
|
"publish_group_secret_key": "pubblica chiave segreta di gruppo",
|
||||||
"reencrypt_key": "chiave di ri-crittografia",
|
"reencrypt_key": "recripta chiave",
|
||||||
"return_to_list": "torna all'elenco",
|
"return_to_list": "torna all'elenco",
|
||||||
"setup_qortal_account": "imposta il tuo account Qortal",
|
"setup_qortal_account": "imposta il tuo account Qortal",
|
||||||
"unblock": "sblocca",
|
"unblock": "sblocca",
|
||||||
@ -51,7 +51,7 @@
|
|||||||
"build_version": "versione build",
|
"build_version": "versione build",
|
||||||
"message": {
|
"message": {
|
||||||
"error": {
|
"error": {
|
||||||
"account_creation": "impossibile creare un account.",
|
"account_creation": "impossibile creare un account",
|
||||||
"address_not_existing": "l'indirizzo non esiste sulla blockchain",
|
"address_not_existing": "l'indirizzo non esiste sulla blockchain",
|
||||||
"block_user": "impossibile bloccare l'utente",
|
"block_user": "impossibile bloccare l'utente",
|
||||||
"create_simmetric_key": "impossibile creare una chiave simmetrica",
|
"create_simmetric_key": "impossibile creare una chiave simmetrica",
|
||||||
@ -59,12 +59,12 @@
|
|||||||
"decrypt": "impossibile decrittografare",
|
"decrypt": "impossibile decrittografare",
|
||||||
"encrypt_content": "impossibile crittografare il contenuto",
|
"encrypt_content": "impossibile crittografare il contenuto",
|
||||||
"fetch_user_account": "impossibile recuperare l'account utente",
|
"fetch_user_account": "impossibile recuperare l'account utente",
|
||||||
"field_not_found_json": "{{ field }} not found in JSON",
|
"field_not_found_json": "{{ field }} non trovato nel JSON",
|
||||||
"find_secret_key": "impossibile trovare secretkey corretta",
|
"find_secret_key": "impossibile trovare secretkey corretta",
|
||||||
"incorrect_password": "password errata",
|
"incorrect_password": "password errata",
|
||||||
"invalid_qortal_link": "collegamento Qortal non valido",
|
"invalid_qortal_link": "collegamento Qortal non valido",
|
||||||
"invalid_secret_key": "la chiave segreta non è valida",
|
"invalid_secret_key": "la chiave segreta non è valida",
|
||||||
"invalid_uint8": "l'uint8arraydata che hai inviato non è valido",
|
"invalid_uint8": "l'uint8arraydata inviato non è valido",
|
||||||
"name_not_existing": "il nome non esiste",
|
"name_not_existing": "il nome non esiste",
|
||||||
"name_not_registered": "nome non registrato",
|
"name_not_registered": "nome non registrato",
|
||||||
"read_blob_base64": "impossibile leggere il BLOB come stringa codificata da base64",
|
"read_blob_base64": "impossibile leggere il BLOB come stringa codificata da base64",
|
||||||
@ -87,8 +87,8 @@
|
|||||||
"fetching_group_secret_key": "recupero chiavi segreta di gruppo pubblicate",
|
"fetching_group_secret_key": "recupero chiavi segreta di gruppo pubblicate",
|
||||||
"last_encryption_date": "ultima data di crittazione: {{ date }} eseguito da {{ name }}",
|
"last_encryption_date": "ultima data di crittazione: {{ date }} eseguito da {{ name }}",
|
||||||
"locating_encryption_keys": "individuazione chiavi di crittazione",
|
"locating_encryption_keys": "individuazione chiavi di crittazione",
|
||||||
"keep_secure": "mantieni il tuo file account sicuro",
|
"keep_secure": "mantieni al sicuro questo file d'account",
|
||||||
"publishing_key": "attenzione: dopo aver pubblicato la chiave, ci vorranno un paio di minuti per apparire. Attendere, per favore.",
|
"publishing_key": "attenzione: dopo aver pubblicato la chiave, occorrono un paio di minuti per la pubblicazione. Attendere, per favore.",
|
||||||
"seedphrase_notice": "È stato generato una <seed>SEED PHRASE</seed> in background.",
|
"seedphrase_notice": "È stato generato una <seed>SEED PHRASE</seed> in background.",
|
||||||
"turn_local_node": "si prega di attivare il nodo locale",
|
"turn_local_node": "si prega di attivare il nodo locale",
|
||||||
"type_seed": "digita o incolla la seed phrase",
|
"type_seed": "digita o incolla la seed phrase",
|
||||||
@ -122,7 +122,7 @@
|
|||||||
"new_users": "i nuovi utenti iniziano qui!",
|
"new_users": "i nuovi utenti iniziano qui!",
|
||||||
"safe_place": "salva il tuo account in un posto da ricordare!",
|
"safe_place": "salva il tuo account in un posto da ricordare!",
|
||||||
"view_seedphrase": "se si desidera visualizzare la seed phrase, fai clic sulla parola \"seed phrase\" in questo testo. Le seed phrase vengono utilizzate per generare la chiave privata per il tuo account Qortal. Per la sicurezza per impostazione predefinita, le seed phrase non vengono visualizzate se non specificamente scelte.",
|
"view_seedphrase": "se si desidera visualizzare la seed phrase, fai clic sulla parola \"seed phrase\" in questo testo. Le seed phrase vengono utilizzate per generare la chiave privata per il tuo account Qortal. Per la sicurezza per impostazione predefinita, le seed phrase non vengono visualizzate se non specificamente scelte.",
|
||||||
"wallet_secure": "mantieni al sicuro il tuo file del wallet."
|
"wallet_secure": "mantieni al sicuro il tuo file del wallet"
|
||||||
},
|
},
|
||||||
"wallet": {
|
"wallet": {
|
||||||
"password_confirmation": "conferma la password del wallet",
|
"password_confirmation": "conferma la password del wallet",
|
||||||
|
@ -84,7 +84,7 @@
|
|||||||
"select_category": "seleziona categoria",
|
"select_category": "seleziona categoria",
|
||||||
"select_name_app": "seleziona nome/app",
|
"select_name_app": "seleziona nome/app",
|
||||||
"send": "invia",
|
"send": "invia",
|
||||||
"send_qort": "i QORT",
|
"send_qort": "invia QORT",
|
||||||
"set_avatar": "imposta Avatar",
|
"set_avatar": "imposta Avatar",
|
||||||
"show": "mostra",
|
"show": "mostra",
|
||||||
"show_poll": "mostra il sondaggio",
|
"show_poll": "mostra il sondaggio",
|
||||||
@ -153,7 +153,7 @@
|
|||||||
"home": "casa",
|
"home": "casa",
|
||||||
"identifier": "identificativo",
|
"identifier": "identificativo",
|
||||||
"image_embed": "immagine incorporata",
|
"image_embed": "immagine incorporata",
|
||||||
"last_height": "ultima altezza",
|
"last_height": "ultimo blocco",
|
||||||
"level": "livello",
|
"level": "livello",
|
||||||
"library": "libreria",
|
"library": "libreria",
|
||||||
"list": {
|
"list": {
|
||||||
@ -249,8 +249,7 @@
|
|||||||
"no_data_image": "nessun dato per l'immagine",
|
"no_data_image": "nessun dato per l'immagine",
|
||||||
"no_description": "nessuna descrizione",
|
"no_description": "nessuna descrizione",
|
||||||
"no_messages": "nessun messaggio",
|
"no_messages": "nessun messaggio",
|
||||||
"no_message": "nessun messaggio",
|
"no_minting_details": "impossibile visualizzare i dettagli di minting sul gateway",
|
||||||
"no_minting_details": "impossibile visualizzare i dettagli di minire sul gateway",
|
|
||||||
"no_notifications": "nessuna nuova notifica",
|
"no_notifications": "nessuna nuova notifica",
|
||||||
"no_payments": "nessun pagamento",
|
"no_payments": "nessun pagamento",
|
||||||
"no_pinned_changes": "per ora non ci sono modifiche alle app bloccate",
|
"no_pinned_changes": "per ora non ci sono modifiche alle app bloccate",
|
||||||
@ -354,7 +353,7 @@
|
|||||||
"sort": {
|
"sort": {
|
||||||
"by_member": "per membro"
|
"by_member": "per membro"
|
||||||
},
|
},
|
||||||
"supply": "fornitura",
|
"supply": "offerta monetaria",
|
||||||
"tags": "tag",
|
"tags": "tag",
|
||||||
"theme": {
|
"theme": {
|
||||||
"dark": "scuro",
|
"dark": "scuro",
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
"leave_group": "lascia il gruppo",
|
"leave_group": "lascia il gruppo",
|
||||||
"load_members": "carica i membri con i nomi",
|
"load_members": "carica i membri con i nomi",
|
||||||
"make_admin": "rendi amministratore",
|
"make_admin": "rendi amministratore",
|
||||||
"manage_members": "gestisci i membri",
|
"manage_members": "gestione dei membri",
|
||||||
"promote_group": "promuovi il gruppo ai non membri",
|
"promote_group": "promuovi il gruppo ai non membri",
|
||||||
"publish_announcement": "pubblica annuncio",
|
"publish_announcement": "pubblica annuncio",
|
||||||
"publish_avatar": "pubblica avatar",
|
"publish_avatar": "pubblica avatar",
|
||||||
@ -85,7 +85,7 @@
|
|||||||
"latest_promotion": "verrà mostrata solo l'ultima promozione della settimana per il tuo gruppo.",
|
"latest_promotion": "verrà mostrata solo l'ultima promozione della settimana per il tuo gruppo.",
|
||||||
"loading_members": "caricamento dell'elenco dei membri con nomi ... Attendere.",
|
"loading_members": "caricamento dell'elenco dei membri con nomi ... Attendere.",
|
||||||
"max_chars": "max 200 caratteri. Commissione",
|
"max_chars": "max 200 caratteri. Commissione",
|
||||||
"manage_minting": "gestisci il minting",
|
"manage_minting": "gestione del minting",
|
||||||
"minter_group": "per ora non fai parte del gruppo Minter",
|
"minter_group": "per ora non fai parte del gruppo Minter",
|
||||||
"mintership_app": "visita l'app Q-Mintership per chiedere di diventare un minter",
|
"mintership_app": "visita l'app Q-Mintership per chiedere di diventare un minter",
|
||||||
"minting_account": "account di minting:",
|
"minting_account": "account di minting:",
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
"message": {
|
"message": {
|
||||||
"error": {
|
"error": {
|
||||||
"add_to_list": "impossibile aggiungere alla lista",
|
"add_to_list": "impossibile aggiungere alla lista",
|
||||||
"at_info": "impossibile trovare informazioni sull'AT.",
|
"at_info": "impossibile trovare informazioni sull'AT",
|
||||||
"buy_order": "invio ordine di scambio fallito",
|
"buy_order": "invio ordine di scambio fallito",
|
||||||
"cancel_sell_order": "annullamento ordine di vendita fallito. Riprova!",
|
"cancel_sell_order": "annullamento ordine di vendita fallito. Riprova!",
|
||||||
"copy_clipboard": "copia negli appunti fallita",
|
"copy_clipboard": "copia negli appunti fallita",
|
||||||
@ -42,17 +42,17 @@
|
|||||||
"fetch_wallet_transactions": "impossibile recuperare transazioni del wallet",
|
"fetch_wallet_transactions": "impossibile recuperare transazioni del wallet",
|
||||||
"fetch_wallet": "recupero wallet fallito. Riprova",
|
"fetch_wallet": "recupero wallet fallito. Riprova",
|
||||||
"file_extension": "impossibile determinare l'estensione del file",
|
"file_extension": "impossibile determinare l'estensione del file",
|
||||||
"gateway_balance_local_node": "non è possibile visualizzare il saldo {{ token }} tramite il gateway. Usa il tuo nodo locale.",
|
"gateway_balance_local_node": "non è possibile visualizzare il saldo {{ token }} tramite il gateway. Utilizzare il nodo locale.",
|
||||||
"gateway_non_qort_local_node": "non è possibile inviare monete non-QORT tramite il gateway. Usa il tuo nodo locale.",
|
"gateway_non_qort_local_node": "non è possibile inviare monete non-QORT tramite il gateway. Utilizzare il nodo locale.",
|
||||||
"gateway_retrieve_balance": "il recupero del saldo {{ token }} non è consentito tramite un gateway",
|
"gateway_retrieve_balance": "il recupero del saldo {{ token }} non è consentito tramite un gateway",
|
||||||
"gateway_wallet_local_node": "non è possibile visualizzare il wallet {{ token }} tramite il gateway. Usa il tuo nodo locale.",
|
"gateway_wallet_local_node": "non è possibile visualizzare il wallet {{ token }} tramite il gateway. Utilizzare il nodo locale.",
|
||||||
"get_foreign_fee": "errore nel recupero delle commissioni estere",
|
"get_foreign_fee": "errore nel recupero delle commissioni estere",
|
||||||
"insufficient_balance_qort": "saldo QORT insufficiente",
|
"insufficient_balance_qort": "saldo QORT insufficiente",
|
||||||
"insufficient_balance": "saldo asset insufficiente",
|
"insufficient_balance": "saldo asset insufficiente",
|
||||||
"insufficient_funds": "fondi insufficienti",
|
"insufficient_funds": "fondi insufficienti",
|
||||||
"invalid_encryption_iv": "iV non valido: AES-GCM richiede un IV di 12 byte",
|
"invalid_encryption_iv": "IV non valido: AES-GCM richiede un IV di 12 byte",
|
||||||
"invalid_encryption_key": "chiave non valida: AES-GCM richiede una chiave di 256 bit",
|
"invalid_encryption_key": "chiave non valida: AES-GCM richiede una chiave di 256 bit",
|
||||||
"invalid_fullcontent": "campo fullContent in formato non valido. Usa stringa, base64 o oggetto",
|
"invalid_fullcontent": "campo fullContent in formato non valido. Utilizzare stringa, base64 o oggetto",
|
||||||
"invalid_receiver": "indirizzo o nome destinatario non valido",
|
"invalid_receiver": "indirizzo o nome destinatario non valido",
|
||||||
"invalid_type": "tipo non valido",
|
"invalid_type": "tipo non valido",
|
||||||
"mime_type": "impossibile determinare il mimeType",
|
"mime_type": "impossibile determinare il mimeType",
|
||||||
@ -80,7 +80,7 @@
|
|||||||
"retrieve_keys": "impossibile recuperare le chiavi",
|
"retrieve_keys": "impossibile recuperare le chiavi",
|
||||||
"retrieve_summary": "recupero sommario fallito",
|
"retrieve_summary": "recupero sommario fallito",
|
||||||
"retrieve_sync_status": "errore nel recupero dello stato di sincronizzazione di {{ token }}",
|
"retrieve_sync_status": "errore nel recupero dello stato di sincronizzazione di {{ token }}",
|
||||||
"same_foreign_blockchain": "tutti gli AT richiesti devono essere della stessa blockchain estera.",
|
"same_foreign_blockchain": "tutti gli AT richiesti devono essere della stessa blockchain esterna",
|
||||||
"send": "invio fallito",
|
"send": "invio fallito",
|
||||||
"server_current_add": "aggiunta server corrente fallita",
|
"server_current_add": "aggiunta server corrente fallita",
|
||||||
"server_current_set": "impostazione server corrente fallita",
|
"server_current_set": "impostazione server corrente fallita",
|
||||||
@ -97,7 +97,7 @@
|
|||||||
"update_tradebot": "impossibile aggiornare tradebot",
|
"update_tradebot": "impossibile aggiornare tradebot",
|
||||||
"upload_encryption": "caricamento fallito a causa della criptazione",
|
"upload_encryption": "caricamento fallito a causa della criptazione",
|
||||||
"upload": "caricamento fallito",
|
"upload": "caricamento fallito",
|
||||||
"use_private_service": "per pubblicare criptato, usa un servizio che termina con _PRIVATE",
|
"use_private_service": "per pubblicare criptato, utilizzare un servizio che termina con _PRIVATE",
|
||||||
"user_qortal_name": "l'utente non ha un nome Qortal",
|
"user_qortal_name": "l'utente non ha un nome Qortal",
|
||||||
"max_size_publish": "dimensione massima consentita per file: {{size}} GB.",
|
"max_size_publish": "dimensione massima consentita per file: {{size}} GB.",
|
||||||
"max_size_publish_public": "dimensione massima consentita sul nodo pubblico: {{size}} MB. Si prega di utilizzare il proprio nodo locale per file più grandi."
|
"max_size_publish_public": "dimensione massima consentita sul nodo pubblico: {{size}} MB. Si prega di utilizzare il proprio nodo locale per file più grandi."
|
||||||
@ -111,7 +111,7 @@
|
|||||||
"no_action_public_node": "questa azione non può essere eseguita tramite un nodo pubblico",
|
"no_action_public_node": "questa azione non può essere eseguita tramite un nodo pubblico",
|
||||||
"private_service": "usa un servizio privato",
|
"private_service": "usa un servizio privato",
|
||||||
"provide_group_id": "fornisci un groupId",
|
"provide_group_id": "fornisci un groupId",
|
||||||
"read_transaction_carefully": "leggi attentamente la transazione prima di accettare!",
|
"read_transaction_carefully": "leggere attentamente la transazione prima di accettare!",
|
||||||
"user_declined_add_list": "l'utente ha rifiutato l'aggiunta alla lista",
|
"user_declined_add_list": "l'utente ha rifiutato l'aggiunta alla lista",
|
||||||
"user_declined_delete_from_list": "l'utente ha rifiutato l'eliminazione dalla lista",
|
"user_declined_delete_from_list": "l'utente ha rifiutato l'eliminazione dalla lista",
|
||||||
"user_declined_delete_hosted_resources": "l'utente ha rifiutato l'eliminazione delle risorse ospitate",
|
"user_declined_delete_hosted_resources": "l'utente ha rifiutato l'eliminazione delle risorse ospitate",
|
||||||
@ -131,7 +131,7 @@
|
|||||||
"add_admin": "consenti a questa applicazione di aggiungere l'utente {{ invitee }} come amministratore?",
|
"add_admin": "consenti a questa applicazione di aggiungere l'utente {{ invitee }} come amministratore?",
|
||||||
"all_item_list": "consenti a questa applicazione di aggiungere i seguenti elementi alla lista {{ name }}:",
|
"all_item_list": "consenti a questa applicazione di aggiungere i seguenti elementi alla lista {{ name }}:",
|
||||||
"authenticate": "consenti a questa applicazione di autenticarti?",
|
"authenticate": "consenti a questa applicazione di autenticarti?",
|
||||||
"ban": "consenti a questa applicazione di bannare {{ partecipant }} dal gruppo?",
|
"ban": "consenti a questa applicazione di escludere {{ partecipant }} dal gruppo?",
|
||||||
"buy_name_detail": "acquisto di {{ name }} per {{ price }} QORT",
|
"buy_name_detail": "acquisto di {{ name }} per {{ price }} QORT",
|
||||||
"buy_name": "consenti a questa applicazione di acquistare un nome?",
|
"buy_name": "consenti a questa applicazione di acquistare un nome?",
|
||||||
"buy_order_fee_estimation_one": "questa commissione è una stima basata su {{ quantity }} ordine, assumendo una dimensione di 300 byte e una tariffa di {{ fee }} {{ ticker }} per KB.",
|
"buy_order_fee_estimation_one": "questa commissione è una stima basata su {{ quantity }} ordine, assumendo una dimensione di 300 byte e una tariffa di {{ fee }} {{ ticker }} per KB.",
|
||||||
@ -180,8 +180,8 @@
|
|||||||
},
|
},
|
||||||
"poll": "sondaggio: {{ name }}",
|
"poll": "sondaggio: {{ name }}",
|
||||||
"provide_recipient_group_id": "fornisci un destinatario o un groupId",
|
"provide_recipient_group_id": "fornisci un destinatario o un groupId",
|
||||||
"request_create_poll": "stai richiedendo di creare il seguente sondaggio:",
|
"request_create_poll": "si sta richiedendo di creare il seguente sondaggio:",
|
||||||
"request_vote_poll": "ti viene richiesto di votare nel seguente sondaggio:",
|
"request_vote_poll": "viene richiesto di votare nel seguente sondaggio:",
|
||||||
"sats_per_kb": "{{ amount }} sats per KB",
|
"sats_per_kb": "{{ amount }} sats per KB",
|
||||||
"sats": "{{ amount }} sats",
|
"sats": "{{ amount }} sats",
|
||||||
"server_host": "host: {{ host }}",
|
"server_host": "host: {{ host }}",
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
"1_getting_started": "1. Iniziare",
|
"1_getting_started": "1. Iniziare",
|
||||||
"2_overview": "2. Panoramica",
|
"2_overview": "2. Panoramica",
|
||||||
"3_groups": "3. Gruppi Qortal",
|
"3_groups": "3. Gruppi Qortal",
|
||||||
"4_obtain_qort": "4. Ottenere i Qort",
|
"4_obtain_qort": "4. Ottenere QORT",
|
||||||
"account_creation": "creazione dell'account",
|
"account_creation": "creazione dell'account",
|
||||||
"important_info": "informazioni importanti",
|
"important_info": "informazioni importanti",
|
||||||
"apps": {
|
"apps": {
|
||||||
|
@ -3,48 +3,48 @@
|
|||||||
"your": "あなたのアカウント",
|
"your": "あなたのアカウント",
|
||||||
"account_many": "アカウント",
|
"account_many": "アカウント",
|
||||||
"account_one": "アカウント",
|
"account_one": "アカウント",
|
||||||
"selected": "選択したアカウント"
|
"selected": "選択されたアカウント"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"add": {
|
"add": {
|
||||||
"account": "アカウントを追加します",
|
"account": "アカウントを追加",
|
||||||
"seed_phrase": "種子を追加します"
|
"seed_phrase": "シードフレーズを追加"
|
||||||
},
|
},
|
||||||
"authenticate": "認証",
|
"authenticate": "認証する",
|
||||||
"block": "ブロック",
|
"block": "ブロック",
|
||||||
"block_all": "すべてをブロックします",
|
"block_all": "すべてブロック",
|
||||||
"block_data": "QDNデータをブロックします",
|
"block_data": "QDNデータをブロック",
|
||||||
"block_name": "ブロック名",
|
"block_name": "名前をブロック",
|
||||||
"block_txs": "ブロックTSX",
|
"block_txs": "取引をブロック",
|
||||||
"fetch_names": "名前を取得します",
|
"fetch_names": "名前を取得",
|
||||||
"copy_address": "アドレスをコピーします",
|
"copy_address": "アドレスをコピー",
|
||||||
"create_account": "アカウントを作成する",
|
"create_account": "アカウントを作成",
|
||||||
"create_qortal_account": "create your Qortal account by clicking <next>NEXT</next> below.",
|
"create_qortal_account": "下の<next>次へ</next>をクリックしてQortalアカウントを作成してください。",
|
||||||
"choose_password": "新しいパスワードを選択します",
|
"choose_password": "新しいパスワードを選択",
|
||||||
"download_account": "アカウントをダウンロードします",
|
"download_account": "アカウントをダウンロード",
|
||||||
"enter_amount": "0を超える金額を入力してください",
|
"enter_amount": "0より大きい金額を入力してください",
|
||||||
"enter_recipient": "受信者を入力してください",
|
"enter_recipient": "受取人を入力してください",
|
||||||
"enter_wallet_password": "ウォレットパスワードを入力してください",
|
"enter_wallet_password": "ウォレットのパスワードを入力してください",
|
||||||
"export_seedphrase": "種の輸出",
|
"export_seedphrase": "シードフレーズをエクスポート",
|
||||||
"insert_name_address": "名前または住所を挿入してください",
|
"insert_name_address": "名前またはアドレスを入力してください",
|
||||||
"publish_admin_secret_key": "管理者シークレットキーを公開します",
|
"publish_admin_secret_key": "管理者の秘密鍵を公開",
|
||||||
"publish_group_secret_key": "グループシークレットキーを公開します",
|
"publish_group_secret_key": "グループの秘密鍵を公開",
|
||||||
"reencrypt_key": "キーを再暗号化します",
|
"reencrypt_key": "キーを再暗号化",
|
||||||
"return_to_list": "リストに戻ります",
|
"return_to_list": "リストに戻る",
|
||||||
"setup_qortal_account": "Qortalアカウントを設定します",
|
"setup_qortal_account": "Qortalアカウントを設定",
|
||||||
"unblock": "ブロックを解除します",
|
"unblock": "ブロック解除",
|
||||||
"unblock_name": "ブロック名を解除します"
|
"unblock_name": "名前のブロック解除"
|
||||||
},
|
},
|
||||||
"address": "住所",
|
"address": "アドレス",
|
||||||
"address_name": "住所または名前",
|
"address_name": "アドレスまたは名前",
|
||||||
"advanced_users": "上級ユーザー向け",
|
"advanced_users": "上級ユーザー向け",
|
||||||
"apikey": {
|
"apikey": {
|
||||||
"alternative": "代替:ファイル選択",
|
"alternative": "代替:ファイル選択",
|
||||||
"change": "apikeyを変更します",
|
"change": "APIキーを変更",
|
||||||
"enter": "apikeyを入力します",
|
"enter": "APIキーを入力",
|
||||||
"import": "apikeyをインポートします",
|
"import": "APIキーをインポート",
|
||||||
"key": "APIキー",
|
"key": "APIキー",
|
||||||
"select_valid": "有効なApikeyを選択します"
|
"select_valid": "有効なAPIキーを選択してください"
|
||||||
},
|
},
|
||||||
"authentication": "認証",
|
"authentication": "認証",
|
||||||
"blocked_users": "ブロックされたユーザー",
|
"blocked_users": "ブロックされたユーザー",
|
||||||
@ -52,82 +52,82 @@
|
|||||||
"message": {
|
"message": {
|
||||||
"error": {
|
"error": {
|
||||||
"account_creation": "アカウントを作成できませんでした。",
|
"account_creation": "アカウントを作成できませんでした。",
|
||||||
"address_not_existing": "アドレスはブロックチェーンには存在しません",
|
"address_not_existing": "アドレスはブロックチェーン上に存在しません",
|
||||||
"block_user": "ユーザーをブロックできません",
|
"block_user": "ユーザーをブロックできません",
|
||||||
"create_simmetric_key": "対称キーを作成できません",
|
"create_simmetric_key": "共通鍵を作成できません",
|
||||||
"decrypt_data": "データを解読できませんでした",
|
"decrypt_data": "データを復号できませんでした",
|
||||||
"decrypt": "復号化できません",
|
"decrypt": "復号に失敗しました",
|
||||||
"encrypt_content": "コンテンツを暗号化できません",
|
"encrypt_content": "コンテンツを暗号化できません",
|
||||||
"fetch_user_account": "ユーザーアカウントを取得できません",
|
"fetch_user_account": "ユーザーアカウントを取得できません",
|
||||||
"field_not_found_json": "{{ field }} not found in JSON",
|
"field_not_found_json": "JSONに{{ field }}が見つかりません",
|
||||||
"find_secret_key": "正しいSecretKeyを見つけることができません",
|
"find_secret_key": "正しい秘密鍵が見つかりません",
|
||||||
"incorrect_password": "パスワードが正しくありません",
|
"incorrect_password": "パスワードが間違っています",
|
||||||
"invalid_qortal_link": "無効なQortalリンク",
|
"invalid_qortal_link": "無効なQortalリンク",
|
||||||
"invalid_secret_key": "secretKeyは無効です",
|
"invalid_secret_key": "無効な秘密鍵です",
|
||||||
"invalid_uint8": "提出したuint8arraydataは無効です",
|
"invalid_uint8": "送信されたUint8ArrayDataは無効です",
|
||||||
"name_not_existing": "名前は存在しません",
|
"name_not_existing": "名前が存在しません",
|
||||||
"name_not_registered": "登録されていない名前",
|
"name_not_registered": "名前が登録されていません",
|
||||||
"read_blob_base64": "bASE64エンコード文字列としてBLOBを読み取れませんでした",
|
"read_blob_base64": "Blobをbase64文字列として読み取れませんでした",
|
||||||
"reencrypt_secret_key": "シークレットキーを再構築することができません",
|
"reencrypt_secret_key": "秘密鍵を再暗号化できませんでした",
|
||||||
"set_apikey": "APIキーの設定に失敗しました:"
|
"set_apikey": "APIキーの設定に失敗しました:"
|
||||||
},
|
},
|
||||||
"generic": {
|
"generic": {
|
||||||
"blocked_addresses": "ブロックされたアドレス - TXSの処理をブロックします",
|
"blocked_addresses": "ブロックされたアドレス - トランザクションの処理をブロックします",
|
||||||
"blocked_names": "QDNのブロックされた名前",
|
"blocked_names": "QDN用のブロックされた名前",
|
||||||
"blocking": "blocking {{ name }}",
|
"blocking": "{{ name }} をブロック中",
|
||||||
"choose_block": "「ブロックTXS」または「ALL」を選択して、チャットメッセージをブロックします",
|
"choose_block": "チャットメッセージをブロックするには「取引をブロック」または「すべて」を選択してください",
|
||||||
"congrats_setup": "おめでとう、あなたはすべてセットアップされています!",
|
"congrats_setup": "おめでとうございます、準備が整いました!",
|
||||||
"decide_block": "ブロックするものを決定します",
|
"decide_block": "何をブロックするか決定してください",
|
||||||
"downloading_encryption_keys": "downloading encryption keys",
|
"downloading_encryption_keys": "暗号鍵をダウンロード中",
|
||||||
"fetching_admin_secret_key": "管理者の秘密の鍵を取得します",
|
"fetching_admin_secret_key": "管理者の秘密鍵を取得中",
|
||||||
"fetching_group_secret_key": "group Secret Keyの出版物を取得します",
|
"fetching_group_secret_key": "グループ秘密鍵の公開を取得中",
|
||||||
"keep_secure": "アカウントファイルを安全に保ちます",
|
"keep_secure": "アカウントファイルを安全に保管してください",
|
||||||
"last_encryption_date": "last encryption date: {{ date }} by {{ name }}",
|
"last_encryption_date": "最終暗号化日: {{ date }}({{ name }} により)",
|
||||||
"locating_encryption_keys": "locating encryption keys",
|
"locating_encryption_keys": "暗号鍵を特定中",
|
||||||
"name_address": "名前または住所",
|
"name_address": "名前またはアドレス",
|
||||||
"no_account": "アカウントは保存されていません",
|
"no_account": "保存されたアカウントがありません",
|
||||||
"no_minimum_length": "最小の長さの要件はありません",
|
"no_minimum_length": "最小文字数の制限はありません",
|
||||||
"no_secret_key_published": "まだ公開されていません",
|
"no_secret_key_published": "まだ秘密鍵が公開されていません",
|
||||||
"publishing_key": "リマインダー:キーを公開した後、表示されるまでに数分かかります。待ってください。",
|
"publishing_key": "注意:キーの公開後、表示されるまで数分かかることがあります。しばらくお待ちください。",
|
||||||
"seedphrase_notice": "a <seed>SEEDPHRASE</seed> has been randomly generated in the background.",
|
"seedphrase_notice": "バックグラウンドで<seed>シードフレーズ</seed>が自動生成されました。",
|
||||||
"turn_local_node": "ローカルノードをオンにしてください",
|
"turn_local_node": "ローカルノードを起動してください",
|
||||||
"type_seed": "種子飼料を入力または貼り付けます",
|
"type_seed": "シードフレーズを入力または貼り付けてください",
|
||||||
"your_accounts": "あなたの保存されたアカウント"
|
"your_accounts": "保存されたあなたのアカウント"
|
||||||
},
|
},
|
||||||
"success": {
|
"success": {
|
||||||
"reencrypted_secret_key": "正常に再クリックされたシークレットキー。変更が伝播するまで数分かかる場合があります。グループを5分で更新します。"
|
"reencrypted_secret_key": "秘密鍵の再暗号化に成功しました。変更が反映されるまで数分かかる場合があります。5分後にグループを更新してください。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node": {
|
"node": {
|
||||||
"choose": "カスタムノードを選択します",
|
"choose": "カスタムノードを選択",
|
||||||
"custom_many": "カスタムノード",
|
"custom_many": "カスタムノード",
|
||||||
"use_custom": "カスタムノードを使用します",
|
"use_custom": "カスタムノードを使用",
|
||||||
"use_local": "ローカルノードを使用します",
|
"use_local": "ローカルノードを使用",
|
||||||
"using": "ノードを使用します",
|
"using": "使用中のノード",
|
||||||
"using_public": "パブリックノードを使用します",
|
"using_public": "パブリックノードを使用",
|
||||||
"using_public_gateway": "using public node: {{ gateway }}"
|
"using_public_gateway": "パブリックノードを使用中: {{ gateway }}"
|
||||||
},
|
},
|
||||||
"note": "注記",
|
"note": "メモ",
|
||||||
"password": "パスワード",
|
"password": "パスワード",
|
||||||
"password_confirmation": "パスワードを認証する",
|
"password_confirmation": "パスワードの確認",
|
||||||
"seed_phrase": "シードフレーズ",
|
"seed_phrase": "シードフレーズ",
|
||||||
"seed_your": "あなたの種子",
|
"seed_your": "あなたのシードフレーズ",
|
||||||
"tips": {
|
"tips": {
|
||||||
"additional_wallet": "このオプションを使用して、すでに作成した追加のQortalウォレットを接続して、後でログインします。そのためには、バックアップJSONファイルへのアクセスが必要です。",
|
"additional_wallet": "すでに作成した他のQortalウォレットを接続するにはこのオプションを使用してください。ログインにはバックアップJSONファイルが必要です。",
|
||||||
"digital_id": "ウォレットは、QortalのデジタルIDのようなものであり、Qortalユーザーインターフェイスへのログイン方法です。それはあなたの公開住所とあなたが最終的に選択するQortal名を保持します。あなたが行うすべてのトランザクションはあなたのIDにリンクされており、これはあなたがあなたのすべてのQORTおよびQORTALの他の取引可能な暗号通貨を管理する場所です。",
|
"digital_id": "あなたのウォレットはQortal上のデジタルIDであり、ユーザーインターフェースにログインする方法です。公開アドレスと選択したQortal名が含まれます。すべての取引はこのIDにリンクされ、ここでQORTおよび他の暗号通貨を管理します。",
|
||||||
"existing_account": "すでにQortalアカウントを持っていますか?ここに秘密のバックアップフレーズを入力して、アクセスしてください。このフレーズは、アカウントを回復する方法の1つです。",
|
"existing_account": "既にQortalアカウントをお持ちですか?ここに秘密のバックアップフレーズを入力してアクセスしてください。このフレーズはアカウントを復元する手段の1つです。",
|
||||||
"key_encrypt_admin": "このキーは、管理関連のコンテンツを暗号化することです。管理者だけがコンテンツを暗号化します。",
|
"key_encrypt_admin": "この鍵はADMIN関連のコンテンツを暗号化するためのものです。管理者のみがこの内容を表示できます。",
|
||||||
"key_encrypt_group": "このキーは、グループ関連のコンテンツを暗号化することです。これは、このUIで現在使用されている唯一のものです。すべてのグループメンバーは、このキーで暗号化されたコンテンツを見ることができます。",
|
"key_encrypt_group": "この鍵はGROUP関連のコンテンツを暗号化します。現在このUIで唯一使用されています。グループの全メンバーがこの鍵で暗号化されたコンテンツを表示できます。",
|
||||||
"new_account": "アカウントを作成するということは、Qortalの使用を開始するために新しいウォレットとデジタルIDを作成することを意味します。アカウントを作成したら、QORTを取得したり、名前とアバターを購入したり、ビデオやブログを公開したりするなどのことを始めることができます。",
|
"new_account": "アカウントを作成すると、新しいウォレットとデジタルIDが作成され、Qortalの利用が始められます。QORTの取得、名前とアバターの購入、動画やブログの公開などが可能になります。",
|
||||||
"new_users": "新しいユーザーはここから始めます!",
|
"new_users": "新規ユーザーはこちらから!",
|
||||||
"safe_place": "あなたがそれを覚えている場所であなたのアカウントを保存してください!",
|
"safe_place": "アカウントは覚えやすい安全な場所に保存してください!",
|
||||||
"view_seedphrase": "seedephraseを表示する場合は、このテキストの「種子」という単語をクリックしてください。種子は、Qortalアカウントの秘密鍵を生成するために使用されます。デフォルトのセキュリティの場合、具体的に選択されない限り、種子は表示されません。",
|
"view_seedphrase": "シードフレーズを表示したい場合は、このテキスト内の「シードフレーズ」という単語をクリックしてください。セキュリティのため、明示的に選択しない限り表示されません。",
|
||||||
"wallet_secure": "ウォレットファイルを安全に保ちます。"
|
"wallet_secure": "ウォレットファイルを安全に保管してください。"
|
||||||
},
|
},
|
||||||
"wallet": {
|
"wallet": {
|
||||||
"password_confirmation": "ウォレットパスワードを確認してください",
|
"password_confirmation": "ウォレットのパスワード確認",
|
||||||
"password": "ウォレットパスワード",
|
"password": "ウォレットのパスワード",
|
||||||
"keep_password": "現在のパスワードを保持します",
|
"keep_password": "現在のパスワードを維持",
|
||||||
"new_password": "新しいパスワード",
|
"new_password": "新しいパスワード",
|
||||||
"error": {
|
"error": {
|
||||||
"missing_new_password": "新しいパスワードを入力してください",
|
"missing_new_password": "新しいパスワードを入力してください",
|
||||||
|
@ -1,138 +1,138 @@
|
|||||||
{
|
{
|
||||||
"account": {
|
"account": {
|
||||||
"your": "Ваш аккаунт",
|
"your": "ваш аккаунт",
|
||||||
"account_many": "счета",
|
"account_many": "аккаунты",
|
||||||
"account_one": "счет",
|
"account_one": "аккаунт",
|
||||||
"selected": "Выбранная учетная запись"
|
"selected": "выбранный аккаунт"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"add": {
|
"add": {
|
||||||
"account": "добавить учетную запись",
|
"account": "добавить аккаунт",
|
||||||
"seed_phrase": "Добавить фразу семян"
|
"seed_phrase": "добавить сид-фразу"
|
||||||
},
|
},
|
||||||
"authenticate": "аутентификация",
|
"authenticate": "аутентификация",
|
||||||
"block": "блокировать",
|
"block": "заблокировать",
|
||||||
"block_all": "блокировать все",
|
"block_all": "заблокировать всё",
|
||||||
"block_data": "Блокируйте данные QDN",
|
"block_data": "блокировать данные QDN",
|
||||||
"block_name": "Имя блока",
|
"block_name": "блокировать имя",
|
||||||
"block_txs": "Блок TSX",
|
"block_txs": "блокировать транзакции",
|
||||||
"fetch_names": "Извлекать имена",
|
"fetch_names": "получить имена",
|
||||||
"copy_address": "копия адрес",
|
"copy_address": "копировать адрес",
|
||||||
"create_account": "зарегистрироваться",
|
"create_account": "создать аккаунт",
|
||||||
"create_qortal_account": "create your Qortal account by clicking <next>NEXT</next> below.",
|
"create_qortal_account": "создайте аккаунт Qortal, нажав <next>ДАЛЕЕ</next> ниже.",
|
||||||
"choose_password": "Выберите новый пароль",
|
"choose_password": "выберите новый пароль",
|
||||||
"download_account": "Скачать учетную запись",
|
"download_account": "скачать аккаунт",
|
||||||
"enter_amount": "Пожалуйста, введите сумму больше 0",
|
"enter_amount": "пожалуйста, введите сумму больше 0",
|
||||||
"enter_recipient": "Пожалуйста, введите получателя",
|
"enter_recipient": "пожалуйста, введите получателя",
|
||||||
"enter_wallet_password": "Пожалуйста, введите пароль кошелька",
|
"enter_wallet_password": "пожалуйста, введите пароль от кошелька",
|
||||||
"export_seedphrase": "Экспорт Seedphrase",
|
"export_seedphrase": "экспорт сид-фразы",
|
||||||
"insert_name_address": "Пожалуйста, вставьте имя или адрес",
|
"insert_name_address": "введите имя или адрес",
|
||||||
"publish_admin_secret_key": "Публикуйте секретный ключ администратора",
|
"publish_admin_secret_key": "опубликовать секретный ключ администратора",
|
||||||
"publish_group_secret_key": "Публикуйте Secret Key Group",
|
"publish_group_secret_key": "опубликовать секретный ключ группы",
|
||||||
"reencrypt_key": "recrypt Key",
|
"reencrypt_key": "повторно зашифровать ключ",
|
||||||
"return_to_list": "вернуться в список",
|
"return_to_list": "вернуться к списку",
|
||||||
"setup_qortal_account": "Настройте свою учетную запись Qortal",
|
"setup_qortal_account": "настроить аккаунт Qortal",
|
||||||
"unblock": "разблокировать",
|
"unblock": "разблокировать",
|
||||||
"unblock_name": "Имя разблокировки"
|
"unblock_name": "разблокировать имя"
|
||||||
},
|
},
|
||||||
"address": "адрес",
|
"address": "адрес",
|
||||||
"address_name": "адрес или имя",
|
"address_name": "адрес или имя",
|
||||||
"advanced_users": "Для продвинутых пользователей",
|
"advanced_users": "для опытных пользователей",
|
||||||
"apikey": {
|
"apikey": {
|
||||||
"alternative": "Альтернатива: Выбор файла",
|
"alternative": "альтернатива: выбор файла",
|
||||||
"change": "Изменить apikey",
|
"change": "изменить API-ключ",
|
||||||
"enter": "Введите Apikey",
|
"enter": "введите API-ключ",
|
||||||
"import": "Импорт Apikey",
|
"import": "импортировать API-ключ",
|
||||||
"key": "API -ключ",
|
"key": "API-ключ",
|
||||||
"select_valid": "Выберите действительный apikey"
|
"select_valid": "выберите допустимый API-ключ"
|
||||||
},
|
},
|
||||||
"authentication": "идентификация",
|
"authentication": "аутентификация",
|
||||||
"blocked_users": "Заблокировали пользователей",
|
"blocked_users": "заблокированные пользователи",
|
||||||
"build_version": "Построить версию",
|
"build_version": "версия сборки",
|
||||||
"message": {
|
"message": {
|
||||||
"error": {
|
"error": {
|
||||||
"account_creation": "Не мог создать учетную запись.",
|
"account_creation": "не удалось создать аккаунт.",
|
||||||
"address_not_existing": "Адрес не существует на блокчейне",
|
"address_not_existing": "адрес не существует в блокчейне",
|
||||||
"block_user": "Невозможно заблокировать пользователя",
|
"block_user": "не удалось заблокировать пользователя",
|
||||||
"create_simmetric_key": "не может создать симметричный ключ",
|
"create_simmetric_key": "невозможно создать симметричный ключ",
|
||||||
"decrypt_data": "не мог расшифровать данные",
|
"decrypt_data": "не удалось расшифровать данные",
|
||||||
"decrypt": "Невозможно расшифровать",
|
"decrypt": "не удалось расшифровать",
|
||||||
"encrypt_content": "не может шифровать контент",
|
"encrypt_content": "невозможно зашифровать содержимое",
|
||||||
"fetch_user_account": "Невозможно получить учетную запись пользователя",
|
"fetch_user_account": "не удалось получить аккаунт пользователя",
|
||||||
"field_not_found_json": "{{ field }} not found in JSON",
|
"field_not_found_json": "{{ field }} не найден в JSON",
|
||||||
"find_secret_key": "Не могу найти правильный секретный клавиш",
|
"find_secret_key": "не удалось найти правильный секретный ключ",
|
||||||
"incorrect_password": "Неправильный пароль",
|
"incorrect_password": "неверный пароль",
|
||||||
"invalid_qortal_link": "Неверная ссылка на кортал",
|
"invalid_qortal_link": "недействительная ссылка Qortal",
|
||||||
"invalid_secret_key": "secretKey не действителен",
|
"invalid_secret_key": "недопустимый секретный ключ",
|
||||||
"invalid_uint8": "uint8ArrayData, которую вы отправили, недействительна",
|
"invalid_uint8": "предоставленные данные Uint8Array недействительны",
|
||||||
"name_not_existing": "Имя не существует",
|
"name_not_existing": "имя не существует",
|
||||||
"name_not_registered": "Имя не зарегистрировано",
|
"name_not_registered": "имя не зарегистрировано",
|
||||||
"read_blob_base64": "Не удалось прочитать каплей в качестве строки, кодированной BASE64",
|
"read_blob_base64": "не удалось прочитать Blob как строку base64",
|
||||||
"reencrypt_secret_key": "Невозможно повторно закипить секретный ключ",
|
"reencrypt_secret_key": "не удалось повторно зашифровать секретный ключ",
|
||||||
"set_apikey": "Не удалось установить ключ API:"
|
"set_apikey": "не удалось установить API-ключ:"
|
||||||
},
|
},
|
||||||
"generic": {
|
"generic": {
|
||||||
"blocked_addresses": "Заблокированные адреса- блокировки обработки TXS",
|
"blocked_addresses": "заблокированные адреса — блокируют обработку транзакций",
|
||||||
"blocked_names": "Заблокированные имена для QDN",
|
"blocked_names": "заблокированные имена для QDN",
|
||||||
"blocking": "blocking {{ name }}",
|
"blocking": "блокировка {{ name }}",
|
||||||
"choose_block": "Выберите «Блок TXS» или «Все», чтобы заблокировать сообщения чата",
|
"choose_block": "выберите 'блокировать транзакции' или 'всё' для блокировки чата",
|
||||||
"congrats_setup": "Поздравляю, вы все настроены!",
|
"congrats_setup": "поздравляем, всё готово!",
|
||||||
"decide_block": "Решите, что заблокировать",
|
"decide_block": "выберите, что блокировать",
|
||||||
"downloading_encryption_keys": "downloading encryption keys",
|
"downloading_encryption_keys": "загрузка ключей шифрования",
|
||||||
"fetching_admin_secret_key": "Принесение секретного ключа администраторов",
|
"fetching_admin_secret_key": "получение секретного ключа администратора",
|
||||||
"fetching_group_secret_key": "Выбрать группу Secret Key публикует",
|
"fetching_group_secret_key": "получение публикаций секретного ключа группы",
|
||||||
"keep_secure": "Держите файл вашей учетной записи в безопасности",
|
"keep_secure": "сохраните файл аккаунта в безопасности",
|
||||||
"last_encryption_date": "last encryption date: {{ date }} by {{ name }}",
|
"last_encryption_date": "последняя дата шифрования: {{ date }} от {{ name }}",
|
||||||
"locating_encryption_keys": "locating encryption keys",
|
"locating_encryption_keys": "поиск ключей шифрования",
|
||||||
"name_address": "имя или адрес",
|
"name_address": "имя или адрес",
|
||||||
"no_account": "Никаких счетов не сохранились",
|
"no_account": "нет сохранённых аккаунтов",
|
||||||
"no_minimum_length": "нет требований к минимальной длине",
|
"no_minimum_length": "нет требования к минимальной длине",
|
||||||
"no_secret_key_published": "пока не публикуется секретный ключ",
|
"no_secret_key_published": "секретный ключ ещё не опубликован",
|
||||||
"publishing_key": "Напоминание: после публикации ключа потребуется пару минут, чтобы появиться. Пожалуйста, просто подождите.",
|
"publishing_key": "напоминание: после публикации ключа его появление может занять несколько минут. Пожалуйста, подождите.",
|
||||||
"seedphrase_notice": "a <seed>SEEDPHRASE</seed> has been randomly generated in the background.",
|
"seedphrase_notice": "<seed>СИД-ФРАЗА</seed> была случайным образом сгенерирована в фоновом режиме.",
|
||||||
"turn_local_node": "Пожалуйста, включите свой местный узел",
|
"turn_local_node": "пожалуйста, включите ваш локальный узел",
|
||||||
"type_seed": "введите или пастут в фразу семян",
|
"type_seed": "введите или вставьте вашу сид-фразу",
|
||||||
"your_accounts": "Ваши сохраненные учетные записи"
|
"your_accounts": "ваши сохранённые аккаунты"
|
||||||
},
|
},
|
||||||
"success": {
|
"success": {
|
||||||
"reencrypted_secret_key": "Успешно повторно зашифровал секретный ключ. Это может занять пару минут для изменений в распространении. Обновить группу за 5 минут."
|
"reencrypted_secret_key": "секретный ключ успешно повторно зашифрован. Изменения вступят в силу через несколько минут. Обновите группу через 5 минут."
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node": {
|
"node": {
|
||||||
"choose": "Выберите пользовательский узел",
|
"choose": "выбрать пользовательский узел",
|
||||||
"custom_many": "Пользовательские узлы",
|
"custom_many": "пользовательские узлы",
|
||||||
"use_custom": "Используйте пользовательский узел",
|
"use_custom": "использовать пользовательский узел",
|
||||||
"use_local": "Используйте локальный узел",
|
"use_local": "использовать локальный узел",
|
||||||
"using": "Использование узла",
|
"using": "используемый узел",
|
||||||
"using_public": "Использование публичного узла",
|
"using_public": "используется публичный узел",
|
||||||
"using_public_gateway": "using public node: {{ gateway }}"
|
"using_public_gateway": "используется публичный узел: {{ gateway }}"
|
||||||
},
|
},
|
||||||
"note": "примечание",
|
"note": "заметка",
|
||||||
"password": "пароль",
|
"password": "пароль",
|
||||||
"password_confirmation": "Подтвердите пароль",
|
"password_confirmation": "подтверждение пароля",
|
||||||
"seed_phrase": "Семена фраза",
|
"seed_phrase": "сид-фраза",
|
||||||
"seed_your": "Ваш Seedphrase",
|
"seed_your": "ваша сид-фраза",
|
||||||
"tips": {
|
"tips": {
|
||||||
"additional_wallet": "Используйте эту опцию, чтобы подключить дополнительные кошельки для Qortal, которые вы уже сделали, чтобы потом войти с ними. Вам понадобится доступ к вашему резервному файлу JSON для этого.",
|
"additional_wallet": "используйте эту опцию, чтобы подключить дополнительные Qortal-кошельки, которые вы уже создали. Для этого потребуется ваш резервный JSON-файл.",
|
||||||
"digital_id": "Ваш кошелек похож на ваш цифровой идентификатор на Qortal, и это то, как вы войдете в пользовательский интерфейс Qortal. Он имеет ваш публичный адрес и имя Qortal, которое вы в конечном итоге выберете. Каждая вами транзакция связана с вашим идентификатором, и именно здесь вы управляете всеми своими Qort и другими торговыми криптовалютами на Qortal.",
|
"digital_id": "ваш кошелёк — это ваш цифровой ID в Qortal, с помощью которого вы входите в интерфейс. Он содержит ваш публичный адрес и выбранное имя Qortal. Все транзакции связаны с этим ID, и здесь вы управляете своим QORT и другими валютами.",
|
||||||
"existing_account": "Уже есть учетная запись Qortal? Введите здесь свою секретную резервную фразу, чтобы получить к ней доступ. Эта фраза является одним из способов восстановления вашей учетной записи.",
|
"existing_account": "уже есть аккаунт Qortal? Введите здесь вашу секретную фразу восстановления, чтобы получить доступ. Это один из способов восстановить аккаунт.",
|
||||||
"key_encrypt_admin": "Этот ключ состоит в том, чтобы зашифровать контент, связанный с администратором. Только администраторы увидят контент, зашифрованный с ним.",
|
"key_encrypt_admin": "этот ключ используется для шифрования содержимого, связанного с АДМИНИСТРАТОРАМИ. Только админы смогут просматривать это содержимое.",
|
||||||
"key_encrypt_group": "Этот ключ состоит в том, чтобы шифровать группы, связанный с группой. Это единственный, используемый в этом пользовательском интерфейсе. Все члены группы смогут увидеть контент, зашифрованный с этим ключом.",
|
"key_encrypt_group": "этот ключ используется для шифрования содержимого ГРУПП. Все члены группы смогут его просматривать. Это единственный используемый ключ в текущем интерфейсе.",
|
||||||
"new_account": "Создание учетной записи означает создание нового кошелька и цифрового идентификатора для начала использования Qortal. После того, как вы сделали свой аккаунт, вы можете начать делать такие вещи, как получение какого -то Qort, покупка имени и аватара, публикация видео и блогов, а также многое другое.",
|
"new_account": "создание аккаунта означает создание нового кошелька и цифрового ID для начала использования Qortal. После создания вы сможете получать QORT, покупать имена и аватары, публиковать видео и блоги и многое другое.",
|
||||||
"new_users": "Новые пользователи начинают здесь!",
|
"new_users": "новые пользователи начинают здесь!",
|
||||||
"safe_place": "Сохраните свою учетную запись в месте, где вы его запомните!",
|
"safe_place": "сохраните ваш аккаунт в безопасном месте, которое вы запомните!",
|
||||||
"view_seedphrase": "Если вы хотите просмотреть SeedPhrase, нажмите слово «SeedPhrase» в этом тексте. SeedPhrases используются для генерации закрытого ключа для вашей учетной записи Qortal. Для безопасности по умолчанию SeedPhrases не отображаются, если не выбрано конкретно.",
|
"view_seedphrase": "если вы хотите ПРОСМОТРЕТЬ СИД-ФРАЗУ, нажмите на слово 'СИД-ФРАЗА' в этом тексте. Сид-фразы используются для создания приватного ключа вашего аккаунта. По умолчанию они скрыты ради безопасности.",
|
||||||
"wallet_secure": "Держите свой файл кошелька в безопасности."
|
"wallet_secure": "храните файл кошелька в безопасности."
|
||||||
},
|
},
|
||||||
"wallet": {
|
"wallet": {
|
||||||
"password_confirmation": "Подтвердите пароль кошелька",
|
"password_confirmation": "подтверждение пароля кошелька",
|
||||||
"password": "кошелек пароль",
|
"password": "пароль кошелька",
|
||||||
"keep_password": "сохранить текущий пароль",
|
"keep_password": "оставить текущий пароль",
|
||||||
"new_password": "Новый пароль",
|
"new_password": "новый пароль",
|
||||||
"error": {
|
"error": {
|
||||||
"missing_new_password": "Пожалуйста, введите новый пароль",
|
"missing_new_password": "пожалуйста, введите новый пароль",
|
||||||
"missing_password": "Пожалуйста, введите свой пароль"
|
"missing_password": "пожалуйста, введите ваш пароль"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"welcome": "Добро пожаловать в"
|
"welcome": "добро пожаловать в"
|
||||||
}
|
}
|
||||||
|
@ -1,101 +1,101 @@
|
|||||||
{
|
{
|
||||||
"account": {
|
"account": {
|
||||||
"your": "您的帐户",
|
"your": "你的账户",
|
||||||
"account_many": "帐户",
|
"account_many": "账户",
|
||||||
"account_one": "帐户",
|
"account_one": "账户",
|
||||||
"selected": "选定帐户"
|
"selected": "已选择的账户"
|
||||||
},
|
},
|
||||||
"action": {
|
"action": {
|
||||||
"add": {
|
"add": {
|
||||||
"account": "添加帐户",
|
"account": "添加账户",
|
||||||
"seed_phrase": "添加种子短语"
|
"seed_phrase": "添加助记词"
|
||||||
},
|
},
|
||||||
"authenticate": "认证",
|
"authenticate": "认证",
|
||||||
"block": "堵塞",
|
"block": "屏蔽",
|
||||||
"block_all": "全部阻止",
|
"block_all": "全部屏蔽",
|
||||||
"block_data": "块QDN数据",
|
"block_data": "屏蔽 QDN 数据",
|
||||||
"block_name": "块名",
|
"block_name": "屏蔽名称",
|
||||||
"block_txs": "块TSX",
|
"block_txs": "屏蔽交易",
|
||||||
"fetch_names": "获取名称",
|
"fetch_names": "获取名称",
|
||||||
"copy_address": "复制地址",
|
"copy_address": "复制地址",
|
||||||
"create_account": "创建账户",
|
"create_account": "创建账户",
|
||||||
"create_qortal_account": "通过单击下面的<next>NEXT</next>创建您的珊瑚帐户。",
|
"create_qortal_account": "点击下方的 <next>下一步</next> 创建你的 Qortal 账户。",
|
||||||
"choose_password": "选择新密码",
|
"choose_password": "选择新密码",
|
||||||
"download_account": "下载帐户",
|
"download_account": "下载账户",
|
||||||
"enter_amount": "请输入大于0的金额",
|
"enter_amount": "请输入大于 0 的金额",
|
||||||
"enter_recipient": "请输入收件人",
|
"enter_recipient": "请输入接收者",
|
||||||
"enter_wallet_password": "请输入您的钱包密码",
|
"enter_wallet_password": "请输入你的钱包密码",
|
||||||
"export_seedphrase": "导出种子形状",
|
"export_seedphrase": "导出助记词",
|
||||||
"insert_name_address": "请插入名称或地址",
|
"insert_name_address": "请输入名称或地址",
|
||||||
"publish_admin_secret_key": "发布管理员密钥",
|
"publish_admin_secret_key": "发布管理员密钥",
|
||||||
"publish_group_secret_key": "发布组秘密键",
|
"publish_group_secret_key": "发布群组密钥",
|
||||||
"reencrypt_key": "重新加入密钥",
|
"reencrypt_key": "重新加密密钥",
|
||||||
"return_to_list": "返回列表",
|
"return_to_list": "返回列表",
|
||||||
"setup_qortal_account": "设置您的Qortal帐户",
|
"setup_qortal_account": "设置你的 Qortal 账户",
|
||||||
"unblock": "解体",
|
"unblock": "取消屏蔽",
|
||||||
"unblock_name": "解冻名称"
|
"unblock_name": "取消名称屏蔽"
|
||||||
},
|
},
|
||||||
"address": "地址",
|
"address": "地址",
|
||||||
"address_name": "地址或名称",
|
"address_name": "地址或名称",
|
||||||
"advanced_users": "适用于高级用户",
|
"advanced_users": "高级用户专用",
|
||||||
"apikey": {
|
"apikey": {
|
||||||
"alternative": "替代方案:选择文件",
|
"alternative": "备选方式:选择文件",
|
||||||
"change": "更改Apikey",
|
"change": "更改 API 密钥",
|
||||||
"enter": "输入Apikey",
|
"enter": "输入 API 密钥",
|
||||||
"import": "导入apikey",
|
"import": "导入 API 密钥",
|
||||||
"key": "API键",
|
"key": "API 密钥",
|
||||||
"select_valid": "选择有效的apikey"
|
"select_valid": "请选择一个有效的 API 密钥"
|
||||||
},
|
},
|
||||||
"authentication": "身份验证",
|
"authentication": "身份验证",
|
||||||
"blocked_users": "阻止用户",
|
"blocked_users": "已屏蔽用户",
|
||||||
"build_version": "构建版本",
|
"build_version": "构建版本",
|
||||||
"message": {
|
"message": {
|
||||||
"error": {
|
"error": {
|
||||||
"account_creation": "无法创建帐户。",
|
"account_creation": "无法创建账户。",
|
||||||
"address_not_existing": "地址不存在在区块链上",
|
"address_not_existing": "区块链中不存在该地址",
|
||||||
"block_user": "无法阻止用户",
|
"block_user": "无法屏蔽用户",
|
||||||
"create_simmetric_key": "无法创建对称键",
|
"create_simmetric_key": "无法创建对称密钥",
|
||||||
"decrypt_data": "无法解密数据",
|
"decrypt_data": "无法解密数据",
|
||||||
"decrypt": "无法解密",
|
"decrypt": "解密失败",
|
||||||
"encrypt_content": "无法加密内容",
|
"encrypt_content": "无法加密内容",
|
||||||
"fetch_user_account": "无法获取用户帐户",
|
"fetch_user_account": "无法获取用户账户",
|
||||||
"field_not_found_json": "{{ field }} not found in JSON",
|
"field_not_found_json": "在 JSON 中未找到 {{ field }}",
|
||||||
"find_secret_key": "找不到正确的SecretKey",
|
"find_secret_key": "找不到正确的密钥",
|
||||||
"incorrect_password": "密码不正确",
|
"incorrect_password": "密码错误",
|
||||||
"invalid_qortal_link": "无效的Qortal链接",
|
"invalid_qortal_link": "无效的 Qortal 链接",
|
||||||
"invalid_secret_key": "secretKey无效",
|
"invalid_secret_key": "密钥无效",
|
||||||
"invalid_uint8": "您提交的Uint8arraydata无效",
|
"invalid_uint8": "提供的 Uint8ArrayData 无效",
|
||||||
"name_not_existing": "名称不存在",
|
"name_not_existing": "名称不存在",
|
||||||
"name_not_registered": "名称未注册",
|
"name_not_registered": "名称未注册",
|
||||||
"read_blob_base64": "无法将斑点读成base64编码的字符串",
|
"read_blob_base64": "无法将 Blob 读取为 base64 编码字符串",
|
||||||
"reencrypt_secret_key": "无法重新加入秘密钥匙",
|
"reencrypt_secret_key": "无法重新加密密钥",
|
||||||
"set_apikey": "无法设置API密钥:"
|
"set_apikey": "设置 API 密钥失败:"
|
||||||
},
|
},
|
||||||
"generic": {
|
"generic": {
|
||||||
"blocked_addresses": "阻止地址 - 块处理TXS",
|
"blocked_addresses": "被屏蔽的地址 - 阻止交易处理",
|
||||||
"blocked_names": "阻止QDN的名称",
|
"blocked_names": "QDN 屏蔽名称",
|
||||||
"blocking": "blocking {{ name }}",
|
"blocking": "正在屏蔽 {{ name }}",
|
||||||
"choose_block": "选择“块TXS”或“所有”来阻止聊天消息",
|
"choose_block": "选择“屏蔽交易”或“全部”来屏蔽聊天消息",
|
||||||
"congrats_setup": "恭喜,你们都设置了!",
|
"congrats_setup": "恭喜,你已完成设置!",
|
||||||
"decide_block": "决定阻止什么",
|
"decide_block": "请选择要屏蔽的内容",
|
||||||
"downloading_encryption_keys": "下载加密密钥",
|
"downloading_encryption_keys": "正在下载加密密钥",
|
||||||
|
"fetching_admin_secret_key": "正在获取管理员密钥",
|
||||||
|
"fetching_group_secret_key": "正在获取群组密钥发布",
|
||||||
|
"keep_secure": "请妥善保管你的账户文件",
|
||||||
|
"last_encryption_date": "最后加密时间:{{ date }},由 {{ name }} 完成",
|
||||||
|
"locating_encryption_keys": "正在定位加密密钥",
|
||||||
"name_address": "名称或地址",
|
"name_address": "名称或地址",
|
||||||
"no_account": "没有保存帐户",
|
"no_account": "没有保存的账户",
|
||||||
"no_minimum_length": "没有最小长度要求",
|
"no_minimum_length": "没有最小长度要求",
|
||||||
"no_secret_key_published": "尚未发布秘密密钥",
|
"no_secret_key_published": "尚未发布密钥",
|
||||||
"fetching_admin_secret_key": "获取管理员秘密钥匙",
|
"publishing_key": "提醒:密钥发布后需要几分钟才能显示,请耐心等待。",
|
||||||
"fetching_group_secret_key": "获取组秘密密钥发布",
|
"seedphrase_notice": "已在后台随机生成 <seed>助记词</seed>。",
|
||||||
"last_encryption_date": "最后加密日期:{{date}}由{{name}}",
|
"turn_local_node": "请启动你的本地节点",
|
||||||
"locating_encryption_keys": "查找加密密钥",
|
"type_seed": "输入或粘贴你的助记词",
|
||||||
"keep_secure": "确保您的帐户文件安全",
|
"your_accounts": "你保存的账户"
|
||||||
"publishing_key": "提醒:发布钥匙后,出现需要几分钟才能出现。请等待。",
|
|
||||||
"seedphrase_notice": "在后台随机生成了一个<seed>种子短语</seed>。",
|
|
||||||
"turn_local_node": "请打开您的本地节点",
|
|
||||||
"type_seed": "在您的种子角度中输入或粘贴",
|
|
||||||
"your_accounts": "您保存的帐户"
|
|
||||||
},
|
},
|
||||||
"success": {
|
"success": {
|
||||||
"reencrypted_secret_key": "成功重新加密秘密钥匙。更改可能需要几分钟才能传播。在5分钟内刷新小组。"
|
"reencrypted_secret_key": "密钥重新加密成功。更改可能需要几分钟传播,请 5 分钟后刷新群组。"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node": {
|
"node": {
|
||||||
@ -103,36 +103,36 @@
|
|||||||
"custom_many": "自定义节点",
|
"custom_many": "自定义节点",
|
||||||
"use_custom": "使用自定义节点",
|
"use_custom": "使用自定义节点",
|
||||||
"use_local": "使用本地节点",
|
"use_local": "使用本地节点",
|
||||||
"using": "使用节点",
|
"using": "使用的节点",
|
||||||
"using_public": "使用公共节点",
|
"using_public": "使用公共节点",
|
||||||
"using_public_gateway": "使用公共节点: {{ gateway }}"
|
"using_public_gateway": "使用公共节点:{{ gateway }}"
|
||||||
},
|
},
|
||||||
"note": "笔记",
|
"note": "备注",
|
||||||
"password": "密码",
|
"password": "密码",
|
||||||
"password_confirmation": "确认密码",
|
"password_confirmation": "确认密码",
|
||||||
"seed_phrase": "种子短语",
|
"seed_phrase": "助记词",
|
||||||
"seed_your": "您的种子晶格",
|
"seed_your": "你的助记词",
|
||||||
"tips": {
|
"tips": {
|
||||||
"additional_wallet": "使用此选项连接您已经制作的其他Qortal钱包,以便随后登录。为了这样做,您将需要访问备份JSON文件。",
|
"additional_wallet": "使用此选项连接你之前创建的其他 Qortal 钱包,以便之后登录。你需要备份的 JSON 文件。",
|
||||||
"digital_id": "您的钱包就像Qortal上的数字ID一样,您将如何登录到Qortal用户界面。它拥有您的公共地址和您最终会选择的Qortal名称。您进行的每笔交易都链接到您的ID,这是您在Qortal上管理所有Qort和其他可交易的加密货币的地方。",
|
"digital_id": "你的钱包是你在 Qortal 上的数字身份,用于登录用户界面。它包含你的公开地址和最终选择的 Qortal 名称。所有交易都与该身份相关,你可以在这里管理 QORT 和其他加密资产。",
|
||||||
"existing_account": "已经有一个Qortal帐户?在此处输入您的秘密备份短语以访问它。该短语是恢复您的帐户的方法之一。",
|
"existing_account": "已有 Qortal 账户?请输入你的备份助记词以访问。这是恢复账户的方式之一。",
|
||||||
"key_encrypt_admin": "此键是加密与管理员相关的内容。只有管理员会看到内容加密。",
|
"key_encrypt_admin": "该密钥用于加密管理员相关内容。只有管理员才能查看。",
|
||||||
"key_encrypt_group": "此键是加密相关内容。这是目前唯一使用的UI中使用的。所有小组成员都将能够看到此密钥加密的内容。",
|
"key_encrypt_group": "该密钥用于加密群组内容。目前这是唯一在此界面中使用的密钥。所有群组成员都可以查看加密内容。",
|
||||||
"new_account": "创建帐户意味着创建一个新的钱包和数字ID,以开始使用Qortal。建立帐户后,您可以开始做一些事情,例如获取一些Qort,购买名称和头像,发布视频和博客等等。",
|
"new_account": "创建账户即创建新的钱包和数字身份,从而开始使用 Qortal。一旦完成,你就可以获取 QORT、购买名称和头像、发布视频和博客等。",
|
||||||
"new_users": "新用户从这里开始!",
|
"new_users": "新用户请从这里开始!",
|
||||||
"safe_place": "将您的帐户保存在您会记住的地方!",
|
"safe_place": "请将你的账户保存在你记得住的安全地方!",
|
||||||
"view_seedphrase": "如果您想查看种子形式,请单击本文中的“种子形式”一词。种子源用于为您的Qortal帐户生成私钥。对于默认情况下,除非有明确选择,否则不会显示种子子弹。",
|
"view_seedphrase": "如需查看助记词,请点击本段文字中的“助记词”一词。助记词用于生成你的私钥,默认情况下为安全起见不显示。",
|
||||||
"wallet_secure": "确保您的钱包文件安全。"
|
"wallet_secure": "请妥善保管你的钱包文件。"
|
||||||
},
|
},
|
||||||
"wallet": {
|
"wallet": {
|
||||||
"password_confirmation": "确认钱包密码",
|
"password_confirmation": "确认钱包密码",
|
||||||
"password": "钱包密码",
|
"password": "钱包密码",
|
||||||
"keep_password": "保留当前密码",
|
"keep_password": "保持当前密码",
|
||||||
"new_password": "新密码",
|
"new_password": "新密码",
|
||||||
"error": {
|
"error": {
|
||||||
"missing_new_password": "请输入新密码",
|
"missing_new_password": "请输入新密码",
|
||||||
"missing_password": "请输入您的密码"
|
"missing_password": "请输入密码"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"welcome": "欢迎来"
|
"welcome": "欢迎来到"
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user