mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-02 11:15:35 +03:00
Added new information for steemconnect login
This commit is contained in:
parent
25ffaec71e
commit
49f53c6aeb
@ -17,4 +17,7 @@ export default EStyleSheet.create({
|
||||
fontSize: 12,
|
||||
color: '$primaryDarkGray',
|
||||
},
|
||||
bold: {
|
||||
fontWeight: '700',
|
||||
},
|
||||
});
|
||||
|
@ -27,12 +27,12 @@ class FormInputView extends PureComponent {
|
||||
// Component Functions
|
||||
|
||||
render() {
|
||||
const { description, iconName } = this.props;
|
||||
const { description, iconName, bold } = this.props;
|
||||
|
||||
return (
|
||||
<View style={styles.container}>
|
||||
<Ionicons color="#c1c5c7" style={styles.infoIcon} name={iconName} />
|
||||
<Text style={styles.infoText}>{description}</Text>
|
||||
<Text style={[styles.infoText, bold && styles.bold]}>{description}</Text>
|
||||
</View>
|
||||
);
|
||||
}
|
||||
|
@ -78,7 +78,8 @@
|
||||
"description": "User credentials are kept locally on the device. Credentials are removed upon logout!",
|
||||
"cancel": "cancel",
|
||||
"login": "LOGIN",
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect."
|
||||
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect.",
|
||||
"steemconnect_fee_description": "Steemconnect may charge some fees from your reward transactions"
|
||||
},
|
||||
"home": {
|
||||
"feed": "Feed",
|
||||
|
@ -78,7 +78,8 @@
|
||||
"description": "Kullanıçı bilgileri telefonunuz üzeründe şifreli olarak tutulur ve çıkış yaptıgınızda tüm bilgiler silinir.",
|
||||
"cancel": "geç",
|
||||
"login": "GİRİŞ",
|
||||
"steemconnect_description": "Eğer kullanıçı bilgilerini şifreli olarak tutulmasını istemiyorsanız Steemconnect ilede giriş yapabilirsiniz."
|
||||
"steemconnect_description": "Eğer kullanıçı bilgilerini şifreli olarak tutulmasını istemiyorsanız Steemconnect ilede giriş yapabilirsiniz.",
|
||||
"steemconnect_fee_description": "Steemconnect, ödül işlemlerinden bazı ücretler alabilir."
|
||||
},
|
||||
"home": {
|
||||
"feed": "Akış",
|
||||
|
@ -168,6 +168,13 @@ class LoginScreen extends PureComponent {
|
||||
</View>
|
||||
</View>
|
||||
<View tabLabel="SteemConnect" style={styles.tabbarItem}>
|
||||
<InformationArea
|
||||
description={intl.formatMessage({
|
||||
id: 'login.steemconnect_fee_description',
|
||||
})}
|
||||
iconName="ios-information-circle-outline"
|
||||
bold
|
||||
/>
|
||||
<InformationArea
|
||||
description={intl.formatMessage({
|
||||
id: 'login.steemconnect_description',
|
||||
|
Loading…
Reference in New Issue
Block a user