This commit is contained in:
Mustafa Buyukcelebi 2019-05-05 15:22:48 +03:00
commit 0217bfcc79
110 changed files with 3008 additions and 621 deletions

View File

@ -112,7 +112,7 @@ class CommentView extends PureComponent {
/>
<ActionSheet
ref={o => (this.ActionSheet = o)}
options={['Reblog', intl.formatMessage({ id: 'alert.cancel' })]}
options={[intl.formatMessage({ id: 'alert.delete' }), intl.formatMessage({ id: 'alert.cancel' })]}
title={intl.formatMessage({ id: 'alert.delete' })}
destructiveButtonIndex={0}
cancelButtonIndex={1}

View File

@ -55,7 +55,7 @@ class NotificationLineView extends PureComponent {
});
if (notification.weight) {
const _percent = `${(notification.weight / 100).toFixed(0)}% `;
const _percent = `${parseFloat((notification.weight / 100).toFixed(2))}% `;
_title = _percent + _title;
}

View File

@ -3,25 +3,29 @@ import EStyleSheet from 'react-native-extended-stylesheet';
export default EStyleSheet.create({
pointText: {
color: '$primaryBlue',
fontSize: 24,
fontSize: 26,
marginTop: 24,
justifyContent: 'center',
alignSelf: 'center',
fontWeight: 'bold',
},
subText: {
color: '$tagColor',
color: '$darkIconColor',
fontSize: 8,
justifyContent: 'center',
alignSelf: 'center',
marginTop: 5,
},
iconsWrapper: {
marginVertical: 32,
marginVertical: 24,
marginHorizontal: 32,
justifyContent: 'center',
alignSelf: 'center',
flexDirection: 'row',
},
iconsList: {
height: 55,
},
iconWrapper: {
marginHorizontal: 16,
width: 36,
@ -31,6 +35,10 @@ export default EStyleSheet.create({
justifyContent: 'center',
alignItems: 'center',
},
iconButton: {
marginTop: 1,
marginLeft: 1,
},
activeIconWrapper: {
backgroundColor: '$primaryBlue',
},
@ -43,12 +51,11 @@ export default EStyleSheet.create({
},
badge: {
position: 'absolute',
right: -7,
right: -9,
top: 20,
backgroundColor: '$primaryBlue',
justifyContent: 'center',
alignItems: 'center',
zIndex: 99,
padding: 2,
height: 12,
minWidth: 18,
@ -90,4 +97,30 @@ export default EStyleSheet.create({
width: 24,
height: 24,
},
scrollContainer: {
flex: 1,
},
popoverDetails: {
flexDirection: 'row',
height: 130,
width: '$deviceWidth /2',
borderRadius: 20,
paddingHorizontal: 26,
backgroundColor: '$primaryBackgroundColor',
},
arrow: {
borderTopColor: '$primaryBackgroundColor',
},
popoverWrapper: {
flex: 1,
flexDirection: 'row',
justifyContent: 'space-between',
alignItems: 'center',
},
overlay: {
backgroundColor: '#403c4449',
},
popoverText: {
color: '$primaryDarkText',
},
});

View File

@ -1,8 +1,9 @@
import React, { Component, Fragment } from 'react';
import {
Text, View, FlatList, ScrollView, RefreshControl,
Text, View, FlatList, ScrollView, RefreshControl, TouchableOpacity,
} from 'react-native';
import { injectIntl } from 'react-intl';
import { Popover, PopoverController } from 'react-native-modal-popover';
// Components
import { LineBreak, WalletLineItem } from '../../basicUIElements';
@ -13,6 +14,9 @@ import { MainButton } from '../../mainButton';
// Utils
import { getTimeFromNow } from '../../../utils/time';
// Constants
import POINTS, { POINTS_KEYS } from '../../../constants/options/points';
// Styles
import styles from './pointsStyles';
@ -50,17 +54,19 @@ class PointsView extends Component {
const {
userActivities, userPoints, intl, isClaiming, claimPoints,
} = this.props;
const isActiveIcon = true;
// TODO: this feature temporarily closed.
const isActiveIcon = false;
return (
<Fragment>
<LineBreak height={12} />
<ScrollView
style={styles.scrollContainer}
refreshControl={this.refreshControl()}
>
<Text style={styles.pointText}>{userPoints.points}</Text>
<Text style={styles.subText}>eSteem Points</Text>
{userPoints.unclaimed_points > 0
&& (
<MainButton
@ -81,68 +87,86 @@ class PointsView extends Component {
}
<View style={styles.iconsWrapper}>
<View styles={styles.iconWrapper}>
<View style={styles.iconWrapper}>
<IconButton
iconStyle={styles.icon}
iconType="MaterialCommunityIcons"
name="pencil"
badgeCount={50}
badgeStyle={styles.badge}
badgeTextStyle={styles.badgeText}
/>
</View>
<Text style={styles.subText}>{intl.formatMessage({ id: 'points.post' })}</Text>
</View>
<View styles={styles.iconWrapper}>
<View style={styles.iconWrapper}>
<IconButton
iconStyle={styles.icon}
iconType="MaterialIcons"
name="comment"
badgeCount={15}
badgeStyle={styles.badge}
badgeTextStyle={styles.badgeText}
/>
</View>
<Text style={styles.subText}>{intl.formatMessage({ id: 'points.comment' })}</Text>
</View>
<View styles={styles.iconWrapper}>
<View style={[styles.iconWrapper, isActiveIcon && styles.activeIconWrapper]}>
<IconButton
iconStyle={[styles.icon, isActiveIcon && styles.activeIcon]}
iconType="MaterialCommunityIcons"
name="clock-outline"
badgeCount={50}
badgeStyle={[styles.badge, isActiveIcon && styles.activeBadge]}
badgeTextStyle={styles.badgeText}
/>
</View>
<Text style={styles.subText}>{intl.formatMessage({ id: 'points.checkin' })}</Text>
</View>
</View>
<View style={styles.listWrapper}>
<FlatList
data={userActivities}
renderItem={({ item, index }) => (
<WalletLineItem
key={item.id.toString()}
index={index + 1}
text={intl.formatMessage({ id: item.textKey })}
description={getTimeFromNow(item.created)}
isCircleIcon
isThin
isBlackText
iconName={item.icon}
iconType={item.iconType}
rightText={`${item.amount} ESTEEM`}
/>
style={styles.iconsList}
data={POINTS_KEYS}
horizontal
renderItem={({ item }) => (
<PopoverController key={item.type}>
{({
openPopover, closePopover, popoverVisible, setPopoverAnchor, popoverAnchorRect,
}) => (
<View styles={styles.iconWrapper} key={item.type}>
<View style={styles.iconWrapper}>
<TouchableOpacity
ref={setPopoverAnchor}
onPress={openPopover}
>
<IconButton
iconStyle={styles.icon}
style={styles.iconButton}
iconType={POINTS[item.type].iconType}
name={POINTS[item.type].icon}
badgeCount={POINTS[item.type].point}
badgeStyle={styles.badge}
badgeTextStyle={styles.badgeText}
disabled
/>
</TouchableOpacity>
</View>
<Text style={styles.subText}>{intl.formatMessage({ id: POINTS[item.type].nameKey })}</Text>
<Popover
backgroundStyle={styles.overlay}
contentStyle={styles.popoverDetails}
arrowStyle={styles.arrow}
visible={popoverVisible}
onClose={() => {
closePopover();
}}
fromRect={popoverAnchorRect}
placement="top"
supportedOrientations={['portrait', 'landscape']}
>
<View style={styles.popoverWrapper}>
<Text style={styles.popoverText}>{intl.formatMessage({ id: POINTS[item.type].descriptionKey })}</Text>
</View>
</Popover>
</View>
)}
</PopoverController>
)}
/>
</View>
<View style={styles.listWrapper}>
{userActivities && userActivities.length < 1
? <Text style={styles.subText}>{intl.formatMessage({ id: 'points.no_activity' })}</Text>
: (
<FlatList
data={userActivities}
renderItem={({ item, index }) => (
<WalletLineItem
key={item.id.toString()}
index={index + 1}
text={intl.formatMessage({ id: item.textKey })}
description={getTimeFromNow(item.created)}
isCircleIcon
isThin
isBlackText
iconName={item.icon}
iconType={item.iconType}
rightText={`${item.amount} ESTM`}
/>
)}
/>
)
}
</View>
</ScrollView>
</Fragment>
);
}
}

View File

@ -38,7 +38,7 @@ class PostButtonView extends Component {
if (this.mode._value) {
const { routes, isCollapsePostButtonOpen } = this.props;
const nextRouteName = nextProps.routes[0].routes[nextProps.routes[0].routes.length - 1].routeName;
const routeName = routes[0].routes[routes[0].routes.length - 1].routeName;
const { routeName } = routes[0].routes[routes[0].routes.length - 1];
const { isCollapse } = this.state;
if (

View File

@ -35,7 +35,7 @@ class PostButtonsForAndroid extends Component {
// For closing sub buttons
const { routes, isCollapsePostButtonOpen } = this.props;
const nextRouteName = nextProps.routes[0].routes[nextProps.routes[0].routes.length - 1].routeName;
const routeName = routes[0].routes[routes[0].routes.length - 1].routeName;
const { routeName } = routes[0].routes[routes[0].routes.length - 1];
const { isCollapse } = this.state;
if (

View File

@ -4,6 +4,7 @@ import { withNavigation } from 'react-navigation';
import { injectIntl } from 'react-intl';
import HTML from 'react-native-html-renderer';
import { getParentsTagsRecursively } from 'react-native-html-renderer/src/HTMLUtils';
// Styles
import styles from './postBodyStyles';
@ -159,6 +160,12 @@ class PostBody extends PureComponent {
}
};
_alterData = (node) => {
if (node.type === 'text' && node.data.includes('markdown-author-link') && node.parent && getParentsTagsRecursively(node.parent).includes('code')) {
return node.data.replace(/<[^>]*>/g, '');
}
}
render() {
const { body, isComment } = this.props;
const _initialDimensions = isComment
@ -181,6 +188,7 @@ class PostBody extends PureComponent {
baseFontStyle={styles.text}
imagesMaxWidth={isComment ? WIDTH - 50 : WIDTH}
alterNode={e => this._alterNode(e, isComment)}
alterData={e => this._alterData(e)}
/>
</Fragment>
);

View File

@ -32,7 +32,7 @@ class PostHeaderDescription extends PureComponent {
}
// Component Functions
_handleOnUserPress = username => {
_handleOnUserPress = (username) => {
const { navigation, profileOnPress, reputation } = this.props;
if (profileOnPress) {

View File

@ -43,7 +43,9 @@ class WalletDetailsView extends PureComponent {
rightText={`${Math.round(walletData.balance * 1000) / 1000} STEEM`}
isBoldText
dropdown
dropdownOptions={steemDropdown.map(item => intl.formatMessage({ id: `transfer.${item}` }))}
dropdownOptions={steemDropdown.map(item =>
intl.formatMessage({ id: `transfer.${item}` }),
)}
onDropdownSelect={index => navigate(steemDropdown[index], 'STEEM')}
/>
<GrayWrapper isGray>

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Fitur peusan seugeura lheuh!"
@ -180,7 +192,8 @@
"cancel": "Batai",
"delete": "Sampóh",
"copied": "Kalheuh Meusalén!",
"no_internet": "Hana koneksi!"
"no_internet": "Hana koneksi!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Peu yakin neuh, neu neuk reblog?"
@ -247,5 +260,21 @@
"reputation": "reputasi",
"votes": "pilèh-pilèh",
"age": "umuë"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "منشور",
"comment": "تعليق",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "نقاط للمنشور",
"comment_title": "نقاط للتعليق",
"vote_title": "نقاط للتصويت",
"reblog_title": "نقاط لإعادة النشر",
"login_title": "نقاط لتسجيل الدخول",
"checkin_title": "نقاط للاستخدام",
"checkin_extra_title": "مكافأة الاستخدام"
"checkin_extra_title": "مكافأة الاستخدام",
"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.",
"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": "ميزة الرسائل سوف تأتي قريباً!"
@ -180,7 +192,8 @@
"cancel": "إلغاء",
"delete": "حذف",
"copied": "تم النسخ!",
"no_internet": "لا يوجد اتصال!"
"no_internet": "لا يوجد اتصال!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "هل أنت متأكد من رغبتك في إعادة التدوين؟"
@ -247,5 +260,21 @@
"reputation": "السمعة",
"votes": "الأصوات",
"age": "العمر"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -23,7 +23,7 @@
"comingsoon": "Liderlər Cədvəli tezliklə gəlir!",
"notification": "Bildirişlər",
"leaderboard": "Liderlər cədvəli",
"epoint": "Points",
"epoint": "Xallar",
"leaderboard_title": "Günlük Liderlər",
"recent": "Təzəlikcə",
"yesterday": "Dünən",
@ -32,16 +32,28 @@
"older_then": "Bir Aydan Köhnə"
},
"points": {
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"post": "Göndəriş",
"comment": "Rəy",
"checkin": "Yoxla",
"vote": "Səs ver",
"reblog": "Təkrar paylaş",
"login": "Giriş et",
"checkin_extra": "Bonus",
"post_title": "Göndəriş üçün xal",
"comment_title": "Rəy üçün xal",
"vote_title": "Səsvermə üçün xal",
"reblog_title": "Təkrar paylaşmaq üçün xal",
"login_title": "Giriş etmək üçün xal",
"checkin_title": "İstifadə üçün xal",
"checkin_extra_title": "İstifadə bonusu",
"no_activity": "Fəaliyyət yoxdur!",
"post_desc": "Müntəzəm olaraq paylaşıb xal qazana bilərsiniz. Paylaşım sizə 15 xal verər.",
"comment_desc": "Bildirdiyiniz hər bir rəy əhatənizi genişləndirməyə və dostluqlar qurmağa kömək edər, həmçinin 5 xal qazandırar.",
"checkin_desc": "Checking in on eSteem app gives you 0.25 points and helps you stay connected with your friends.",
"vote_desc": "Səs verərək digər yaradıcılara da mükafat verə və minnətdarlığınızı göstərə bilərsiniz, beləcə 0.01 x səsvermə ağırlıq xal qazanarsınız.",
"reblog_desc": " Bəyəndiyiniz göndərişləri dostlarınızla paylaşın və 1 xal qazanın.",
"login_desc": "eSteem tətbiqinə giriş etdikdə avtomatik olaraqq 100 xal qazanma haqqı əldə edirsiniz.",
"checkin_extra_desc": "Tətbiqin davamlı istifadəsi sizə daha 10 xal qazanma şansı verər, daha çox fəal olun və daha çox qazanın."
},
"messages": {
"comingsoon": "Mesajlar tezliklə gəlir!"
@ -163,10 +175,10 @@
"allRead": "Bütün bildirişləri oxunmuş kimi işarələ",
"claim_reward_balance_ok": "Mükafat alındı",
"fail": "Uğursuz!",
"move": "Move",
"move_question": "Are you sure to move to drafts?",
"move": "Köçürt",
"move_question": "Qaralamalara köçürtmək istədiyinizə əminsiniz?",
"success_shared": "Göndərişin uğurla paylaşıldı",
"success_moved": "Moved to draft",
"success_moved": "Qaralamalara köçürüldü",
"permission_denied": "İcazə verilmədi",
"permission_text": "Zəhmət olmasa telefon tənzimləmələrinə gedərək eSteem tətbiq icazələrini dəyişdirin.",
"success_rebloged": "Təkrar paylaşıldı!",
@ -180,7 +192,8 @@
"cancel": "İmtina",
"delete": "Sil",
"copied": "Kopyalandı!",
"no_internet": "Bağlantı yoxdur!"
"no_internet": "Bağlantı yoxdur!",
"confirm": "Təsdiqlə"
},
"post": {
"reblog_alert": "Təkrar paylaşmaq istədiyinizə əminsiniz?"
@ -247,5 +260,21 @@
"reputation": "nüfuz",
"votes": "səslər",
"age": "yaş"
},
"transfer": {
"from": "Buradan",
"to": "Buraya",
"amount": "Məbləğ",
"memo": "Qeyd",
"information": "Fondlara köçürmə olduğuna əminsiniz?",
"amount_desc": "Balans",
"memo_desc": "Bu qeyd ictimaidir",
"to_placeholder": "İstifadəçi adı",
"memo_placeholder": "Qeydlərinizi buraya daxil edin",
"transferToken": "Köçürmə",
"transferToSaving": "Yığımlara Köçürmə",
"powerUp": "Gücü artır",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Köçürməsi"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Nachrichten-Feature ist bald verfügbar!"
@ -180,7 +192,8 @@
"cancel": "Abbrechen",
"delete": "Entfernen",
"copied": "Kopiert!",
"no_internet": "Keine Verbindung!"
"no_internet": "Keine Verbindung!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Möchtest du diesen Beitrag wirklich teilen?"
@ -247,5 +260,21 @@
"reputation": "ruf",
"votes": "stimmen",
"age": "alter"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"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"
"checkin_extra_title": "Usage bonus",
"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.",
"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

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Pronto mensajería instantánea!"
@ -180,7 +192,8 @@
"cancel": "Cancelar",
"delete": "Borrar",
"copied": "Copiado!",
"no_internet": "Sin conexión!"
"no_internet": "Sin conexión!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Está seguro que quiere rebloguear?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -23,7 +23,7 @@
"comingsoon": "جدول رده بندی به زودی ارائه خواهد شد!",
"notification": "اطلاعیه ها",
"leaderboard": "جدول رده بندی",
"epoint": "Points",
"epoint": "امتیازها",
"leaderboard_title": "بهترین کاربران روز",
"recent": "اخیر",
"yesterday": "دیروز",
@ -32,16 +32,28 @@
"older_then": "قدیمی تر از 1 ماه"
},
"points": {
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"post": "پست",
"comment": "نظر",
"checkin": "حاضری زدن",
"vote": "رأی",
"reblog": "اشتراک گذاری",
"login": "ورود",
"checkin_extra": "پاداش",
"post_title": "امتیاز برای ایجاد پست",
"comment_title": "امتیاز برای نظر دادن",
"vote_title": "امتیاز برای رای دادن",
"reblog_title": "امتیاز برای اشتراک گذاری",
"login_title": "امتیاز برای ورود به حساب کاربری",
"checkin_title": "امتیاز برای استفاده کردن",
"checkin_extra_title": "استفاده از پاداش",
"no_activity": "هیچ فعالیتی اینجا نیست!",
"post_desc": "شما میتوانید با ایجاد پست به طور منظم، امتیاز دریافت کنید. ایجاد پست ۱۵ امتیاز به شما میدهد.",
"comment_desc": "هر نظری که ثبت میکنید باعث میشود مخاطبان و دوستان خود را افزایش دهید و همچنین ۵ امتیاز را به همراه دارد.",
"checkin_desc": "Checking in on eSteem app gives you 0.25 points and helps you stay connected with your friends.",
"vote_desc": "شما با رای دادن به آثار دیگران قدردانی خود را نشان میدهید و علاوه بر آن به میزان (0.01 ×میزان رای شما ) امتیاز دریافت می کنید.",
"reblog_desc": " پست های مورد علاقه خود را با دوستانتان به اشتراک بگذارید و 1 امتیاز دریافت کنید.",
"login_desc": "زمانی که شما توسط اپ eSteem وارد حساب کاربری خود شوید به صورت اتوماتیک 100 امتیاز دریافت خواهید کرد.",
"checkin_extra_desc": "استفاده مداوم از این اپ به شما شانس دریافت 10 امتیاز دیگر را می دهد، بیشتر فعال باشید و امتیازات بیشتری دریافت کنید."
},
"messages": {
"comingsoon": "قابلیت ارسال پیام به زودی ارائه خواهد شد!"
@ -163,10 +175,10 @@
"allRead": "علامت زدن تمام اعلانات به عنوان خوانده شده",
"claim_reward_balance_ok": "پاداش دریافت شده",
"fail": "ناموفق!",
"move": "Move",
"move_question": "Are you sure to move to drafts?",
"move": "انتقال",
"move_question": "آیا مطمئن هستید که می خواهید به پیشنویس ها منتقل کنید؟",
"success_shared": "مطلب شما با موفقیت منتشر شد",
"success_moved": "Moved to draft",
"success_moved": "به پیشنویس ها منتقل شد",
"permission_denied": "خطای دسترسی",
"permission_text": "لطفا به تنظیمات تلفن خود رفته و دسترسی eSteem را تغییر دهید.",
"success_rebloged": "Rebloged!",
@ -180,7 +192,8 @@
"cancel": "لغو",
"delete": "پاک کردن",
"copied": "کپی شد!",
"no_internet": "اتصال برقرار نیست!"
"no_internet": "اتصال برقرار نیست!",
"confirm": "تأیید"
},
"post": {
"reblog_alert": "آیا مطمئن هستید که می‌خواهید به اشتراک بگذارید؟"
@ -247,5 +260,21 @@
"reputation": "شهرت",
"votes": "رأی‌ ها",
"age": "سن"
},
"transfer": {
"from": "از",
"to": "به",
"amount": "مقدار",
"memo": "یادداشت",
"information": "آیا مطمئن هستید که میخواهید به حساب منابع مالی خود انتقال دهید؟",
"amount_desc": "موجودی",
"memo_desc": "این یادداشت عمومی است",
"to_placeholder": "نام کاربری",
"memo_placeholder": "یادداشت های خود را در اینجا وارد کنید",
"transferToken": "انتقال",
"transferToSaving": "انتقال به پس انداز",
"powerUp": "بالا بردن قدرت",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "انتقال Steemconnect"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Peruuta",
"delete": "Poista",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Bonus d'utilisation",
"no_activity": "Aucune activité ici !",
"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.",
"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": "La fonctionnalité Messages arrive bientôt !"
@ -180,7 +192,8 @@
"cancel": "Annuler",
"delete": "Supprimer",
"copied": "Copié !",
"no_internet": "Pas de connexion !"
"no_internet": "Pas de connexion !",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Êtes-vous sûr de vouloir rebloguer ?"
@ -247,5 +260,21 @@
"reputation": "réputation",
"votes": "votes",
"age": "âge"
},
"transfer": {
"from": "De",
"to": "À",
"amount": "Montant",
"memo": "Mémo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Solde",
"memo_desc": "Ce mémo est public",
"to_placeholder": "Nom d'utilisateur",
"memo_placeholder": "Entrez vos notes ici",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Transfert Steemconnect"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -23,7 +23,7 @@
"comingsoon": "מאפיין לוח התוצאות יוצא להשקה בקרוב!",
"notification": "התראות",
"leaderboard": "לוח תוצאות",
"epoint": "Points",
"epoint": "נקודות",
"leaderboard_title": "המשתמשים המובילים היום",
"recent": "לאחרונה",
"yesterday": "אתמול",
@ -32,16 +32,28 @@
"older_then": "ישן יותר מחודש"
},
"points": {
"post": "Post",
"comment": "Comment",
"post": "פוסט",
"comment": "תגובה",
"checkin": "Checki-in",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "נקודות עבור פוסט",
"comment_title": "נקודות עבור תגובה",
"vote_title": "נקודות עבור הצבעה",
"reblog_title": "נקודות עבור שיתוף",
"login_title": "נקודות עבור כניסה",
"checkin_title": "נקודות עבור שימוש",
"checkin_extra_title": "בונוס שימוש",
"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.",
"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": "אפשרות ההודעות יוצאת בקרוב!"
@ -163,10 +175,10 @@
"allRead": "סימון כל ההודעות כנקראו",
"claim_reward_balance_ok": "תגמול יתרה נתקבלה",
"fail": "נכשל!",
"move": "Move",
"move_question": "Are you sure to move to drafts?",
"move": "הזזה",
"move_question": "את\/ה בטוח\/ה להעביר לטיוטות?",
"success_shared": "הפוסט שלך שותף בהצלחה",
"success_moved": "Moved to draft",
"success_moved": "הועבר לטיוטות",
"permission_denied": "הרשאה נדחתה",
"permission_text": "אנא, שנה את ההרשאות לאפליקציית ה eSteem, דרך ההגדרות בטלפון.",
"success_rebloged": "שותף!",
@ -180,7 +192,8 @@
"cancel": "בטל\\י",
"delete": "מחק\\י",
"copied": "הועתק!",
"no_internet": "אין חיבור!"
"no_internet": "אין חיבור!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "האם את\\ה בטוח\/ה רוצה לשתף ?"
@ -247,5 +260,21 @@
"reputation": "מוניטין",
"votes": "הצבעות",
"age": "גיל"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -23,7 +23,7 @@
"comingsoon": "अधिनायक पटल सुविधा जल्द आने वाली है!",
"notification": "अधिसूचनाएं",
"leaderboard": "अधिनायकपटल",
"epoint": "Points",
"epoint": "अंक",
"leaderboard_title": "प्रत्येक दिन का सर्वोच्च प्रयोगकर्ता",
"recent": "ताजा",
"yesterday": "बीता कल",
@ -32,16 +32,28 @@
"older_then": "एक महीना से अधिक पुराना"
},
"points": {
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"post": "लेख",
"comment": "टिप्पणी",
"checkin": "आगमन",
"vote": "वोट",
"reblog": "पुनर्प्रेशण",
"login": "लॉग इन करें",
"checkin_extra": "बोनस",
"post_title": "पद के लिए अंक",
"comment_title": "टिप्पणी के लिए अंक",
"vote_title": "वोट के लिए अंक",
"reblog_title": "पुनर्प्रेशण के लिए अंक",
"login_title": "लॉगिन के लिए अंक",
"checkin_title": "उपयोग के लिए अंक",
"checkin_extra_title": "उपयोग बोनस",
"no_activity": "यहां कोई गतिविधि नहीं!",
"post_desc": "आप नियमित रूप से पोस्ट करके बिंदु अर्जित कर सकते हैं। पोस्टिंग आपको 15 अंक देती है।",
"comment_desc": "आपके द्वारा की गई प्रत्येक टिप्पणी से आपको अपने दर्शकों को विकसित करने और दोस्ती करने में मदद मिलती है, लेकिन आपको 5 अंक भी मिलते हैं।",
"checkin_desc": "इस्टीम एप्प आपको 0. २५ प्रतिशत अंक देता है जुड़ने पर और मदद करता है दोस्तों के साथ जुड़े रहने में|",
"vote_desc": "मतदान करके आप अन्य रचनाकारों को इनाम देते हैं और अपनी प्रशंसा दिखाते हैं, लेकिन 0.01 x वोट वेट अंक भी अर्जित करते हैं।",
"reblog_desc": " जिस पोस्ट को आप पसंद करते हैं उसे पुनर्प्रेशण करें और १ अंक पाएँ|",
"login_desc": "जब आप इस्टीम में लॉगिन करते हैं तो आप १०० अंकों के स्वतः दावेदार हो जाते हैं|",
"checkin_extra_desc": "आपको अतिरिक्त मौका मिलता है १० अंक प्राप्त करने का अगर एप्प को लगातार उपयोग करते हैं, अधिक से अधिक समय तक एप्प में सक्रिय रहें|"
},
"messages": {
"comingsoon": "सन्देश सुविधा जल्द आ रही है!"
@ -82,7 +94,7 @@
"vote": "वोट",
"comment": "टिप्पणी",
"mention": "उल्लेख",
"reblog": "Reblog",
"reblog": "पुनर्प्रेशण",
"transfers": "स्थानांतरण"
},
"pincode": "Pincode",
@ -90,7 +102,7 @@
"nsfw_content": "NSFW सामग्री",
"send_feedback": "प्रतिक्रिया भेजें",
"send": "भेजना",
"default_footer": "Default Footer",
"default_footer": "वितथ पृष्ठ पदांत",
"nsfw": {
"always_show": "हमेशा दिखाएं",
"always_hide": "हमेशा छिपाए",
@ -180,7 +192,8 @@
"cancel": "रद्द करें",
"delete": "मिटा दें",
"copied": "प्रतिलिपि हो गयी!",
"no_internet": "संपर्क नहीं"
"no_internet": "संपर्क नहीं",
"confirm": "पुष्टी करें"
},
"post": {
"reblog_alert": "क्या आप सच में पुनः प्रसारित करना चाहते हैं?"
@ -247,5 +260,21 @@
"reputation": "प्रतिष्ठा",
"votes": "मत",
"age": "उम्र"
},
"transfer": {
"from": "से",
"to": "को",
"amount": "रकम",
"memo": "ज्ञापन",
"information": "क्या आप रकम स्थान्तरित करना चाहते हैं?",
"amount_desc": "शेष रकम",
"memo_desc": "यह ज्ञापन सार्वजनिक है",
"to_placeholder": "प्रयोक्ता नाम",
"memo_placeholder": "अपनी टिप्पणी यहाँ लिखें",
"transferToken": "स्थान्तरण",
"transferToSaving": "बचत खाते में स्थान्तरण करें",
"powerUp": "स्टीम क्षमता बढ़ाएं",
"withdrawToSaving": "बचत खाते से निकालें",
"steemconnect_title": "स्टीमकनेक्ट स्थान्तरण"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Značajka poruka dolazi uskoro!"
@ -180,7 +192,8 @@
"cancel": "Otkaži",
"delete": "Izbriši",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Jeste li sigurni da želite ponovo podijeliti objavu na svom profilu?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Bejegyzés",
"comment": "Hozzászólás",
"checkin": "Checki-in",
"vote": "Szavazás",
"reblog": "Megosztás",
"login": "Bejelentkezés",
"checkin_extra": "Bónusz",
"post_title": "Bejegyzés pontok",
"comment_title": "Hozzászólás pontok",
"vote_title": "Szavazási pontok",
"reblog_title": "Megosztási pontok",
"login_title": "Bejelentkezés pontok",
"checkin_title": "Használati pontok",
"checkin_extra_title": "Használati bónusz"
"checkin_extra_title": "Használati bónusz",
"no_activity": "Itt nincs tevékenység!",
"post_desc": "Pontokat szerezhetsz rendszeres blogolással. Egy bejegyzés 15 pontot ér.",
"comment_desc": "Minden hozzászólásod segít abban, hogy növeld a táborod és követőket szerezz, továbbá 5 pontot hoz neked.",
"checkin_desc": "Az eSteem alkalmazásba történő bejelentkezés 0,25 pontot ér és segít abban, hogy kapcsolatban maradj a barátaiddal.",
"vote_desc": "Szavazás által megjutalmazol más alkotókat és elismerésed fejezed ki, de kaphatsz 0,01 x a szavazás értékéből.",
"reblog_desc": " Ossz meg a barátaiddal pármilyen bejegyzést, ami tetszik és nyerj 1 pontot.",
"login_desc": "Minden eSteem bejelentkezés alkalmával automatikusan 100 pontra vagy jogosult.",
"checkin_extra_desc": "Az alkalmazás következetes használata extra esélyt kínál arra, hogy több 10 pontot nyerj, légy aktívabb és nyerj többet."
},
"messages": {
"comingsoon": "Üzenetek funkció hamarosan érkezik!"
@ -180,7 +192,8 @@
"cancel": "Elvet",
"delete": "Törlés",
"copied": "Lemásolva!",
"no_internet": "Nincs kapcsolat!"
"no_internet": "Nincs kapcsolat!",
"confirm": "Megerősítés"
},
"post": {
"reblog_alert": "Biztos, hogy megosztod?"
@ -247,5 +260,21 @@
"reputation": "reputáció",
"votes": "szavazatok",
"age": "időrend"
},
"transfer": {
"from": "Feladó",
"to": "Címzett",
"amount": "Összeg",
"memo": "Üzenet",
"information": "Bistoz átutalod a megtakarításokhoz?",
"amount_desc": "Egyenleg",
"memo_desc": "Ez az üzenet nyilvános",
"to_placeholder": "Felhasználónév",
"memo_placeholder": "Megjegyzés ide",
"transferToken": "Átutalás",
"transferToSaving": "Átutalás a megtakarításokhoz",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect átutalás"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Fungsi pesan akan segera hadir!"
@ -180,7 +192,8 @@
"cancel": "Batal",
"delete": "Hapus",
"copied": "Disalin!",
"no_internet": "Tidak ada koneksi!"
"no_internet": "Tidak ada koneksi!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Anda yakin ingin menerbitkan ulang?"
@ -247,5 +260,21 @@
"reputation": "reputasi",
"votes": "berikan suara",
"age": "usia"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "La feature per i messaggi sta per arrivare!"
@ -180,7 +192,8 @@
"cancel": "Cancella",
"delete": "Elimina",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Sei sicuro di volerlo condividere?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "메시지 기능은 곧 출시될 예정입니다!"
@ -180,7 +192,8 @@
"cancel": "취소",
"delete": "삭제",
"copied": "복사됨!",
"no_internet": "인터넷 연결을 확인하세요!"
"no_internet": "인터넷 연결을 확인하세요!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "정말 리블로그 하시겠습니까?"
@ -247,5 +260,21 @@
"reputation": "평판",
"votes": "투표 수",
"age": "작성일"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Žinučių funkcija jau greitai!"
@ -180,7 +192,8 @@
"cancel": "Atšaukti",
"delete": "Ištrinti",
"copied": "Nukopijuota!",
"no_internet": "Nėra ryšio!"
"no_internet": "Nėra ryšio!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Ar tikrai norite dalintis?"
@ -247,5 +260,21 @@
"reputation": "reputacija",
"votes": "balsai",
"age": "laikas"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Hantar",
"comment": "Komen",
"checkin": "Mata ganjaran -> dimasukkan",
"vote": "Vote",
"reblog": "Ulang siar",
"login": "Log Masuk",
"checkin_extra": "Mata ganjaran",
"post_title": "Mata ganjaran -> post_title",
"comment_title": "Mata ganjaran -> comment_title",
"vote_title": "Mata ganjaran -> vote_title",
"reblog_title": "Mata ganjaran -> reblog_title",
"login_title": "Mata ganjaran log masuk",
"checkin_title": "Mata ganjaran kegunaan",
"checkin_extra_title": "Bonus kegunaan"
"checkin_extra_title": "Bonus kegunaan",
"no_activity": "Tiada aktiviti di sini!",
"post_desc": "Anda boleh mendapatkan mata ganjaran dengan post. Mengarang post memberikan anda 15 mata.",
"comment_desc": "Setiap komen yang anda membuat membantu anda untuk mengembangkan pengikut anda dan menjadikan sahabat, di samping juga mendapat 5 mata.",
"checkin_desc": "Dengan check in eSteem app, anda akan mendapati 0.25 mata dan anda akan berhubung dengan para pengguna.",
"vote_desc": "Dengan memberi vote kepada para pengarang, anda akan dihargai oleh mereka dan juga mengumpul 0.01 x nisbah tambahan vote.",
"reblog_desc": "Mengulang siar post yang anda sukai kepada kawan, anda juga memgumpul 1 mata.",
"login_desc": "Apabila anda log masuk eSteem, anda akan diberi 100 mata secara otomatik.",
"checkin_extra_desc": "Pengguna app dengan konsisten, anda mungkin akan dapat 10 mata secara percuma. Lebih memgguna, lebih ganjaran."
},
"messages": {
"comingsoon": "Ciri-ciri mesej yang akan datang tidak lama lagi!"
@ -180,7 +192,8 @@
"cancel": "Batal",
"delete": "Padam",
"copied": "Disalin!",
"no_internet": "Tiada sambungan!"
"no_internet": "Tiada sambungan!",
"confirm": "Muktamat"
},
"post": {
"reblog_alert": "Adakah anda ingin menulang siar?"
@ -247,5 +260,21 @@
"reputation": "reputasi",
"votes": "vote",
"age": "usia"
},
"transfer": {
"from": "Daripada",
"to": "Kepada",
"amount": "Jumlah",
"memo": "Memo",
"information": "Adakah awda pasti hendak memindahkan dana?",
"amount_desc": "Baki",
"memo_desc": "Memo ini adalah umum",
"to_placeholder": "Nama Pengguna",
"memo_placeholder": "Masukkan catatan anda di sini",
"transferToken": "Pindah",
"transferToSaving": "Pindah kepada simpanan",
"powerUp": "Mengekuasai",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Berichtfunctie komt binnenkort!"
@ -180,7 +192,8 @@
"cancel": "Annuleren",
"delete": "Verwijderen",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Weet je zeker dat je het wilt delen?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Option for messages go soon come!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "E don copy!",
"no_internet": "Connection no dey!"
"no_internet": "Connection no dey!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "You sure say you wan reblog am?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Votar",
"reblog": "Republicar",
"login": "Entrar",
"checkin_extra": "Bónus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"no_activity": "Nenhuma atividade aqui!",
"post_desc": "Você pode ganhar pontos ao postar regularmente. Postar dá 15 pontos.",
"comment_desc": "Cada comentário que faz ajuda a aumentar seu público e a fazer amizade, mas também ganha 5 pontos.",
"checkin_desc": "Verificando no aplicativo eSteem dá 0,25 pontos e ajuda a permanecer conectado com seus amigos.",
"vote_desc": "Ao votar, recompensa outros criadores e mostra seu apreço, mas também ganha 0,01 x pontos de peso de voto.",
"reblog_desc": " Compartilhe o post que gosta com seus amigos e ganhe 1 ponto.",
"login_desc": "Quando entrar no aplicativo eSteem, você tem o direito de ganhar 100 pontos automaticamente.",
"checkin_extra_desc": "O uso consistente do aplicativo dá mais chances para ganhar mais 10 pontos, seja mais ativo e ganhar mais."
},
"messages": {
"comingsoon": "Recurso de mensagens chega em breve!"
@ -180,7 +192,8 @@
"cancel": "Cancelar",
"delete": "Apagar",
"copied": "Copiado!",
"no_internet": "Sem ligação!"
"no_internet": "Sem ligação!",
"confirm": "Confirmar"
},
"post": {
"reblog_alert": "Tem certeza de que deseja reblogar?"
@ -247,5 +260,21 @@
"reputation": "reputação",
"votes": "votos",
"age": "idade"
},
"transfer": {
"from": "De",
"to": "Para",
"amount": "Quantia",
"memo": "Memo",
"information": "Tem certeza que deseja transferir para fundos?",
"amount_desc": "Balanço",
"memo_desc": "Este memo é público",
"to_placeholder": "Utilizador",
"memo_placeholder": "Insira aqui as suas notas",
"transferToken": "Transferir",
"transferToSaving": "Transferir para Poupanças",
"powerUp": "Carregar Poder",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Transferência por Steemconnect"
}
}

View File

@ -35,13 +35,25 @@
"post": "Postare",
"comment": "Comentariu",
"checkin": "Checki-in",
"vote": "Vot",
"reblog": "Redistribuire",
"login": "Autentificare",
"checkin_extra": "Bonus",
"post_title": "Puncte pentru postare",
"comment_title": "Puncte pentru comentariu",
"vote_title": "Puncte pentru vot",
"reblog_title": "Puncte pentru reblog",
"login_title": "Puncte pentru autentificare",
"checkin_title": "Puncte pentru utilizare",
"checkin_extra_title": "Bonus de utilizare"
"checkin_extra_title": "Bonus de utilizare",
"no_activity": "Nici o activitate aici!",
"post_desc": "Poți câștiga puncte postând regulat. Fiecare postare își aduce 15 puncte.",
"comment_desc": "Fiecare comentariu te ajută să îți crești audiența și să iti faci prieteni. De asemenea, câștigi 5 puncte.",
"checkin_desc": "Autentificarea prin aplicația eSteem îți aduce 0.25 puncte și te ajută să rămâi conectat cu prietenii tăi și comunitatea.",
"vote_desc": "Votând oferi recompense altor creatori de conținut și le arăți aprecierea ta. De asemenea, câștigi 0.01 din valoarea votului în puncte.",
"reblog_desc": " Distribuie postările care îți plac pentru prietenii tăi și câștigă 1 punct.",
"login_desc": "Când te autentifici în aplicația eSteem câștigi 100 de puncte automat.",
"checkin_extra_desc": "Utilizarea constantă a aplicației îți oferă șanse în plus pentru câștigarea a 10 puncte. Fii cât mai activ și câștigă mai mult."
},
"messages": {
"comingsoon": "Funcția mesaje va fi disponibilă in curând!"
@ -180,7 +192,8 @@
"cancel": "Anulează",
"delete": "Șterge",
"copied": "Copiat!",
"no_internet": "Nu există conexiune!"
"no_internet": "Nu există conexiune!",
"confirm": "Confirmă"
},
"post": {
"reblog_alert": "Ești sigur că vrei să redistribui?"
@ -247,5 +260,21 @@
"reputation": "reputație",
"votes": "voturi",
"age": "vechime"
},
"transfer": {
"from": "De la",
"to": "Către",
"amount": "Sumă",
"memo": "Notă",
"information": "Ești sigur că vrei să transferi la fonduri?",
"amount_desc": "Sold",
"memo_desc": "Această notă este publică",
"to_placeholder": "Nume de utilizator",
"memo_placeholder": "Introdu comentariul tău aici",
"transferToken": "Transferă",
"transferToSaving": "Tranferă la economii",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Transfer Steemconnect"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Здесь будут сообщения!"
@ -180,7 +192,8 @@
"cancel": "Отмена",
"delete": "Удалить",
"copied": "Скопировано!",
"no_internet": "No internet connection"
"no_internet": "No internet connection",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Вы уверены, что хотите сделать репост?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Slanje poruka će uskoro biti u funkciji!"
@ -180,7 +192,8 @@
"cancel": "Otkaži",
"delete": "Izbriši",
"copied": "Kopirano!",
"no_internet": "Niste konektovani na internet!"
"no_internet": "Niste konektovani na internet!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Da li ste sigurni da želite da podelite?"
@ -247,5 +260,21 @@
"reputation": "reputacija",
"votes": "glasovi",
"age": "starost"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "விரைவில் வரும் செய்திகளை அம்சம்!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -23,7 +23,7 @@
"comingsoon": "Liderler tablosu yakında burada!",
"notification": "Bildirimler",
"leaderboard": "Liderler Tablosu",
"epoint": "Points",
"epoint": "Puanlar",
"leaderboard_title": "Günlük lider kullanıcılar",
"recent": "Geçen",
"yesterday": "Dün",
@ -32,16 +32,28 @@
"older_then": "Bir Aydan Daha Önce"
},
"points": {
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"post": "Gönderi",
"comment": "Yorum",
"checkin": "Kontrol Et",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Gönderi için puan",
"comment_title": "Yorum için puanlar",
"vote_title": "Oy için puanlar",
"reblog_title": "Reb günlüğü için puanlar",
"login_title": "Giriş için puanlar",
"checkin_title": "Kullanım için puanlar",
"checkin_extra_title": "Kullanım bonusu",
"no_activity": "Burada etkinlik yok!",
"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.",
"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": "Mesajlar yakinda burada!"
@ -180,7 +192,8 @@
"cancel": "Vazgeç",
"delete": "Temizle",
"copied": "Kopyalandı",
"no_internet": "Bağlantı yok."
"no_internet": "Bağlantı yok.",
"confirm": "Onayla"
},
"post": {
"reblog_alert": "Reblog yapma istediginize emin misiniz?"
@ -247,5 +260,21 @@
"reputation": "itibar",
"votes": "oylar",
"age": "yaş"
},
"transfer": {
"from": "Gönderen",
"to": "Kime",
"amount": "Miktar",
"memo": "Notlar",
"information": "Fonlara transfer etmek istediğinize emin misin?",
"amount_desc": "Bakiye",
"memo_desc": "Bu not herkese açık",
"to_placeholder": "Kullanıcı Adı",
"memo_placeholder": "Notlarınızı buraya girin",
"transferToken": "Havale",
"transferToSaving": "Tasarrufa Aktar",
"powerUp": "Güç yükselt",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Aktarımı"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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!"
@ -180,7 +192,8 @@
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Tính năng tin nhắn sẽ được cập nhật sớm!"
@ -180,7 +192,8 @@
"cancel": "Huỷ",
"delete": "Xóa",
"copied": "Đã sao chép!",
"no_internet": "Không có kết nối!"
"no_internet": "Không có kết nối!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Bạn có chắc chắn muốn đăng lại không?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "Eto sise ateranse nbo lona!"
@ -180,7 +192,8 @@
"cancel": "Fa igi le",
"delete": "Pa re",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "Se o da o loju pe o fe ṣe eda oro yi?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "即将推出消息功能!"
@ -180,7 +192,8 @@
"cancel": "取消",
"delete": "删除",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "您确定想要转发?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -35,13 +35,25 @@
"post": "Post",
"comment": "Comment",
"checkin": "Checki-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"checkin_extra": "Bonus",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus"
"checkin_extra_title": "Usage bonus",
"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.",
"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": "即將推出消息功能!"
@ -180,7 +192,8 @@
"cancel": "取消",
"delete": "刪除",
"copied": "Copied!",
"no_internet": "No connection!"
"no_internet": "No connection!",
"confirm": "Confirm"
},
"post": {
"reblog_alert": "您確定想要轉發嗎?"
@ -247,5 +260,21 @@
"reputation": "reputation",
"votes": "votes",
"age": "age"
},
"transfer": {
"from": "From",
"to": "To",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer to funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transferToken": "Transfer",
"transferToSaving": "Transfer To Saving",
"powerUp": "Power Up",
"withdrawToSaving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer"
}
}

View File

@ -1,38 +1,82 @@
export default {
100: {
icon: 'post',
textKey: 'points.post_title',
iconType: 'MaterialIcons',
icon: 'pencil',
textKey: 'points.post_title',
nameKey: 'points.post',
descriptionKey: 'points.post_desc',
iconType: 'MaterialCommunityIcons',
point: 15,
},
110: {
icon: 'comment',
icon: 'comment-text-outline',
textKey: 'points.comment_title',
iconType: 'MaterialIcons',
nameKey: 'points.comment',
descriptionKey: 'points.comment_desc',
iconType: 'MaterialCommunityIcons',
point: 5,
},
120: {
icon: 'upcircle',
textKey: 'points.vote_title',
nameKey: 'points.vote',
descriptionKey: 'points.vote_desc',
iconType: 'AntDesign',
point: 0.1,
},
130: {
icon: 'repeat',
textKey: 'points.reblog_title',
nameKey: 'points.reblog',
descriptionKey: 'points.reblog_desc',
iconType: 'MaterialIcons',
point: 1,
},
10: {
icon: 'check-circle',
icon: 'ticket',
textKey: 'points.checkin_title',
nameKey: 'points.checkin',
descriptionKey: 'points.checkin_desc',
iconType: 'MaterialCommunityIcons',
point: 0.2,
},
20: {
icon: 'person',
textKey: 'points.login_title',
nameKey: 'points.login',
descriptionKey: 'points.login_desc',
iconType: 'MaterialIcons',
point: 100,
},
30: {
icon: 'check-decagram',
textKey: 'points.checkin_extra_title',
nameKey: 'points.checkin_extra',
descriptionKey: 'points.checkin_extra_desc',
iconType: 'MaterialCommunityIcons',
point: 10,
},
};
export const POINTS_KEYS = [
{
type: 100,
},
{
type: 110,
},
{
type: 120,
},
{
type: 130,
},
{
type: 10,
},
{
type: 20,
},
{
type: 30,
},
];

View File

@ -27,7 +27,7 @@ export default {
HOME: `Home${TABBAR_SUFFIX}`,
NOTIFICATION: `Notification${TABBAR_SUFFIX}`,
POSTBUTTON: `PostButton${TABBAR_SUFFIX}`,
MESSAGES: `Messages${TABBAR_SUFFIX}`,
POINTS: `Points${TABBAR_SUFFIX}`,
PROFILE: `Profile${TABBAR_SUFFIX}`,
},
MODAL: {

View File

@ -7,7 +7,7 @@ import ROUTES from '../constants/routeNames';
// Components
import { Icon, IconContainer } from '../components/icon';
import {
Home, Notification, Profile, RootComponent, Messages,
Home, Notification, Profile, RootComponent, Points,
} from '../screens';
import { PostButton } from '../components/postButton';
import { BottomTabBar } from '../components/bottomTabBar';
@ -50,14 +50,14 @@ const BaseNavigator = createBottomTabNavigator(
tabBarIcon: <PostButton />,
}),
},
[ROUTES.TABBAR.MESSAGES]: {
screen: RootComponent()(Messages),
[ROUTES.TABBAR.POINTS]: {
screen: RootComponent()(Points),
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => (
<Icon
iconType="MaterialIcons"
iconType="MaterialCommunityIcons"
style={{ padding: 15 }}
name="mail-outline"
name="gift"
color={tintColor}
size={26}
/>

View File

@ -189,7 +189,7 @@ export const updateUserData = userData => new Promise((resolve, reject) => {
export const removeUserData = username => new Promise((resolve, reject) => {
try {
const account = realm.objects(USER_SCHEMA).filtered('username = $0', username)
const account = realm.objects(USER_SCHEMA).filtered('username = $0', username);
if (Array.from(account).length > 0) {
realm.write(() => {
realm.delete(account);

View File

@ -175,7 +175,7 @@ class ApplicationContainer extends Component {
await getAuthStatus().then((res) => {
({ currentUsername } = res);
if (res) {
getUserData().then(async (userData) => {
if (userData.length > 0) {

View File

@ -42,7 +42,9 @@ class ApplicationScreen extends Component {
};
render() {
const { isConnected, isDarkTheme, locale, toastNotification } = this.props;
const {
isConnected, isDarkTheme, locale, toastNotification,
} = this.props;
const { isShowToastNotification } = this.state;
const barStyle = isDarkTheme ? 'light-content' : 'dark-content';
const barColor = isDarkTheme ? '#1e2835' : '#fff';

View File

@ -2,6 +2,7 @@ import React, { Component } from 'react';
import { injectIntl } from 'react-intl';
import { View, FlatList, Text } from 'react-native';
import ScrollableTabView from '@esteemapp/react-native-scrollable-tab-view';
import ActionSheet from 'react-native-actionsheet';
// Utils
import { getPostSummary } from '../../../utils/formatter';
@ -13,7 +14,6 @@ import { BasicHeader } from '../../../components/basicHeader';
import { PostListItem } from '../../../components/postListItem';
import { PostCardPlaceHolder } from '../../../components/basicUIElements';
import { TabBar } from '../../../components/tabBar';
import ActionSheet from 'react-native-actionsheet';
// Styles
import globalStyles from '../../../globalStyles';
@ -29,7 +29,7 @@ class DraftsScreen extends Component {
super(props);
this.state = {
selectedId: null,
}
};
}
// Component Life Cycles
@ -56,7 +56,7 @@ class DraftsScreen extends Component {
image={image ? { uri: catchDraftImage(item.body) } : null}
username={currentAccount.name}
reputation={currentAccount.reputation}
handleOnPressItem={() => isSchedules ? this.setState({selectedId: item._id}, () => this.ActionSheet.show()) : editDraft}
handleOnPressItem={() => (isSchedules ? this.setState({ selectedId: item._id }, () => this.ActionSheet.show()) : editDraft)}
handleOnRemoveItem={isSchedules ? removeSchedule : removeDraft}
id={item._id}
key={item._id}
@ -97,7 +97,9 @@ class DraftsScreen extends Component {
};
render() {
const { drafts, schedules, intl, moveScheduleToDraft } = this.props;
const {
drafts, schedules, intl, moveScheduleToDraft,
} = this.props;
const { selectedId } = this.state;
return (

View File

@ -5,7 +5,7 @@ import { Follows } from './follows';
import { Home } from './home';
import { Launch } from './launch';
import { Login } from './login';
import { Messages } from './messages';
import { Points } from './points';
import { Notification } from './notification';
import { PinCode } from './pinCode';
import { Post } from './post';
@ -25,7 +25,7 @@ export {
Home,
Launch,
Login,
Messages,
Points,
Notification,
PinCode,
Post,

View File

@ -1,27 +0,0 @@
import React, { PureComponent } from 'react';
// Component
import MessagesScreen from '../screen/messagesScreen';
/*
* Props Name Description Value
*@props --> props name here description here Value Type Here
*
*/
class MessagesContainer extends PureComponent {
constructor(props) {
super(props);
this.state = {};
}
// Component Life Cycle Functions
// Component Functions
render() {
return <MessagesScreen {...this.props} />;
}
}
export default MessagesContainer;

View File

@ -1,5 +0,0 @@
import MessagesScreen from './screen/messagesScreen';
import Messages from './container/messagesContainer';
export { MessagesScreen, Messages };
export default Messages;

View File

@ -1,48 +0,0 @@
import React, { PureComponent, Fragment } from 'react';
import { injectIntl } from 'react-intl';
// Constants
// Components
import { Header } from '../../../components/header';
import { NoPost } from '../../../components/basicUIElements';
// Styles
import styles from './messagesStyle';
import MESSAGES_IMAGE from '../../../assets/keep_calm.png';
class MessagesScreen extends PureComponent {
/* Props
* ------------------------------------------------
* @prop { type } name - Description....
*/
constructor(props) {
super(props);
this.state = {};
}
// Component Life Cycles
// Component Functions
render() {
const { intl } = this.props;
return (
<Fragment>
<Header />
<NoPost
style={styles.container}
imageStyle={styles.image}
source={MESSAGES_IMAGE}
defaultText={intl.formatMessage({
id: 'messages.comingsoon',
})}
/>
</Fragment>
);
}
}
export default injectIntl(MessagesScreen);

View File

@ -1,5 +1,5 @@
import React, { PureComponent } from 'react';
import { View, Text } from 'react-native';
import { View } from 'react-native';
import ScrollableTabView from '@esteemapp/react-native-scrollable-tab-view';
import { injectIntl } from 'react-intl';
@ -9,7 +9,6 @@ import { Notification } from '../../../components/notification';
import { Header } from '../../../components/header';
import { NoPost } from '../../../components/basicUIElements';
import { LeaderBoard } from '../../../components/leaderboard';
import { Points } from '../../../components/points';
// Styles
import styles from './notificationStyles';
@ -70,14 +69,6 @@ class NotificationScreen extends PureComponent {
/>
)}
</View>
<View
tabLabel={intl.formatMessage({
id: 'notification.epoint',
})}
style={styles.tabbarItem}
>
<Points />
</View>
<View
tabLabel={intl.formatMessage({
id: 'notification.leaderboard',

View File

@ -286,7 +286,7 @@ class PinCodeContainer extends Component {
[
{ text: intl.formatMessage({ id: 'alert.clear' }), onPress: () => this._forgotPinCode() },
{ text: intl.formatMessage({ id: 'alert.cancel' }), style: 'destructive' },
]
],
);
};

View File

@ -0,0 +1,41 @@
import React, { PureComponent } from 'react';
import { connect } from 'react-redux';
// Component
import PointsScreen from '../screen/pointsScreen';
// Constants
import ROUTES from '../../../constants/routeNames';
/*
* Props Name Description Value
*@props --> props name here description here Value Type Here
*
*/
class PointsContainer extends PureComponent {
constructor(props) {
super(props);
this.state = {};
}
// Component Life Cycle Functions
// Component Functions
_handleOnPressLogin = () => {
const { navigation } = this.props;
navigation.navigate(ROUTES.SCREENS.LOGIN);
};
render() {
const { isLoggedIn } = this.props;
return <PointsScreen isLoggedIn={isLoggedIn} handleLoginPress={this._handleOnPressLogin} />;
}
}
const matStateToProps = state => ({
isLoggedIn: state.application.isLoggedIn,
});
export default connect(matStateToProps)(PointsContainer);

View File

@ -0,0 +1,5 @@
import PointsScreen from './screen/pointsScreen';
import Points from './container/pointsContainer';
export { PointsScreen, Points };
export default Points;

View File

@ -0,0 +1,52 @@
import React, { PureComponent } from 'react';
import { injectIntl } from 'react-intl';
import { View } from 'react-native';
// Constants
// Components
import { Header } from '../../../components/header';
import { NoPost } from '../../../components/basicUIElements';
import { Points } from '../../../components/points';
// Styles
import styles from './pointsStyles';
class PointsScreen extends PureComponent {
/* Props
* ------------------------------------------------
* @prop { type } name - Description....
*/
constructor(props) {
super(props);
this.state = {};
}
// Component Life Cycles
// Component Functions
render() {
const { intl, isLoggedIn, handleLoginPress } = this.props;
return (
<View style={styles.container}>
<Header />
{isLoggedIn ? (
<Points />
) : (
<NoPost
style={styles.noPostContainer}
isButtonText
defaultText={intl.formatMessage({
id: 'profile.login_to_see',
})}
handleOnButtonPress={handleLoginPress}
/>
)}
</View>
);
}
}
export default injectIntl(PointsScreen);

View File

@ -2,9 +2,8 @@ import EStyleSheet from 'react-native-extended-stylesheet';
export default EStyleSheet.create({
container: {
justifyContent: 'center',
alignItems: 'center',
flex: 1,
backgroundColor: '$primaryBackgroundColor',
},
image: {
width: 193,
@ -14,4 +13,7 @@ export default EStyleSheet.create({
color: '#788187',
fontWeight: 'bold',
},
noPostContainer: {
flex: 1,
},
});

Some files were not shown because too many files have changed in this diff Show More