added texts for description

This commit is contained in:
u-e 2019-04-28 21:31:31 +03:00
parent 30ce2b8d43
commit e1e4958daa
3 changed files with 17 additions and 2 deletions

View File

@ -101,4 +101,5 @@ export default EStyleSheet.create({
scrollContainer: {
flex: 1,
},
});

View File

@ -43,10 +43,17 @@
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!"
"no_activity": "No activity here!",
"post_desc": "You can earn point by posting regularly. Posting gives you 15 points.",
"comment_desc": "Each comment you make helps you to grow your audience and make friendship but also earns you 5 points.",
"checkin_desc": "Checking in on eSteem app gives you 0.25 points and helps you stay connected with your friends and community.",
"vote_desc": "By voting you give reward to other creators and show your appreciation but also earn 0.01 x vote weight points.",
"reblog_desc": " Share what post you like with your friends and earn 1 points.",
"login_desc": "When you login into eSteem app you are entitled to earn 100 points automatically.",
"checkin_extra_desc": "Consistent use of app gives you extra chances to earn more 10 points, be more active and earn more."
},
"messages": {
"comingsoon": "Messages feature is coming soon!"

View File

@ -3,6 +3,7 @@ export default {
icon: 'pencil',
textKey: 'points.post_title',
nameKey: 'points.post',
descriptionKey: 'points.post_desc',
iconType: 'MaterialCommunityIcons',
point: 15,
},
@ -10,6 +11,7 @@ export default {
icon: 'comment-text-outline',
textKey: 'points.comment_title',
nameKey: 'points.comment',
descriptionKey: 'points.comment_desc',
iconType: 'MaterialCommunityIcons',
point: 5,
},
@ -17,6 +19,7 @@ export default {
icon: 'upcircle',
textKey: 'points.vote_title',
nameKey: 'points.vote',
descriptionKey: 'points.vote_desc',
iconType: 'AntDesign',
point: 0.1,
},
@ -24,6 +27,7 @@ export default {
icon: 'repeat',
textKey: 'points.reblog_title',
nameKey: 'points.reblog',
descriptionKey: 'points.reblog_desc',
iconType: 'MaterialIcons',
point: 1,
},
@ -31,6 +35,7 @@ export default {
icon: 'ticket',
textKey: 'points.checkin_title',
nameKey: 'points.checkin',
descriptionKey: 'points.checkin_desc',
iconType: 'MaterialCommunityIcons',
point: 0.2,
},
@ -38,6 +43,7 @@ export default {
icon: 'person',
textKey: 'points.login_title',
nameKey: 'points.login',
descriptionKey: 'points.login_desc',
iconType: 'MaterialIcons',
point: 100,
},
@ -45,6 +51,7 @@ export default {
icon: 'check-decagram',
textKey: 'points.checkin_extra_title',
nameKey: 'points.checkin_extra',
descriptionKey: 'points.checkin_extra_desc',
iconType: 'MaterialCommunityIcons',
point: 10,
},