mirror of
https://github.com/elyby/accounts-frontend.git
synced 2024-12-27 15:30:37 +05:30
Название сайта вынесено в отдельную строку перевода (а как иначе мы напишем Ёly.by в белорусской версии?)
Исправлен косяк с неимпортнутыми шрифтами при доступе к переменной толстоты шрифта в стилях языковой панели
This commit is contained in:
parent
574ddfd91c
commit
76669dfebd
@ -1,4 +1,5 @@
|
||||
@import "~components/ui/colors.scss";
|
||||
@import "~components/ui/fonts.scss";
|
||||
|
||||
.container {
|
||||
position: relative;
|
||||
|
@ -92,6 +92,7 @@
|
||||
"enterNewEmail": "Then provide your new E-mail address, that you want to use with this account. You will be mailed with confirmation code.",
|
||||
"logout": "Logout",
|
||||
"newEmailPlaceholder": "Enter new E-mail",
|
||||
"pages.root.siteName": "Ely.by",
|
||||
"pleaseEnterPassword": "Please, enter your current password",
|
||||
"pressButtonToStart": "Press the button below to send a message with the code for E-mail change initialization.",
|
||||
"register": "Join",
|
||||
|
@ -92,6 +92,7 @@
|
||||
"enterNewEmail": "Then provide your new E-mail address, that you want to use with this account. You will be mailed with confirmation code.",
|
||||
"logout": "Выход",
|
||||
"newEmailPlaceholder": "Новый E-mail",
|
||||
"pages.root.siteName": "Ely.by",
|
||||
"pleaseEnterPassword": "Пожалуйста, введите пароль от аккаунта",
|
||||
"pressButtonToStart": "Нажмите на кнопку ниже, чтобы отправить письмо с кодом для инициализации процесса смены E-mail адреса.",
|
||||
"register": "Регистрация",
|
||||
|
3
src/pages/root/RootPage.intl.json
Normal file
3
src/pages/root/RootPage.intl.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"siteName": "Ely.by"
|
||||
}
|
@ -1,5 +1,6 @@
|
||||
import React, { PropTypes } from 'react';
|
||||
|
||||
import { FormattedMessage as Message } from 'react-intl';
|
||||
import { Link } from 'react-router';
|
||||
import classNames from 'classnames';
|
||||
|
||||
@ -8,6 +9,8 @@ import PopupStack from 'components/ui/popup/PopupStack';
|
||||
|
||||
import styles from './root.scss';
|
||||
|
||||
import messages from './RootPage.intl.json';
|
||||
|
||||
function RootPage(props) {
|
||||
return (
|
||||
<div className={styles.root}>
|
||||
@ -17,7 +20,7 @@ function RootPage(props) {
|
||||
<div className={styles.header}>
|
||||
<div className={styles.headerContent}>
|
||||
<Link to="/" className={styles.logo}>
|
||||
Ely.by
|
||||
<Message {...messages.siteName} />
|
||||
</Link>
|
||||
<div className={styles.userbar}>
|
||||
<Userbar {...props} onLogout={props.logout} />
|
||||
|
Loading…
Reference in New Issue
Block a user