added iap

This commit is contained in:
u-e 2019-07-17 15:58:01 +03:00
commit 2c9315cd56
118 changed files with 3775 additions and 720 deletions

View File

@ -2,11 +2,8 @@
iOS ![iOS](https://build.appcenter.ms/v0.1/apps/ef80aa2a-d4e1-4f43-a4f8-be12ea72ba9b/branches/master/badge)
Android ![Android](https://build.appcenter.ms/v0.1/apps/12aace32-b58a-49da-bf85-5477f89ae16e/branches/master/badge)
### Production 🚀
[IOS](https://itunes.apple.com/cy/app/esteem-v2/id1451896376?l=tr&mt=8)
[ANDROID](https://play.google.com/store/apps/details?id=app.esteem.mobile)
![images](https://esteem.app/images/07.png)
## Open Beta 🔥
[IOS](https://install.appcenter.ms/orgs/esteem.app/apps/esteem-1/distribution_groups/beta_testers)

View File

@ -153,6 +153,8 @@ configurations.all {
}
dependencies {
implementation project(':react-native-iap')
implementation project(':react-native-navigation-bar-color')
implementation project(':bugsnag-react-native')
implementation project(':react-native-version-number')
implementation project(':react-native-code-push')

View File

@ -3,6 +3,8 @@ package app.esteem.mobile;
import android.app.Application;
import com.facebook.react.ReactApplication;
import com.dooboolab.RNIap.RNIapPackage;
import com.thebylito.navigationbarcolor.NavigationBarColorPackage;
import com.bugsnag.BugsnagReactNative;
import com.apsl.versionnumber.RNVersionNumberPackage;
import com.microsoft.codepush.react.CodePush;
@ -44,6 +46,8 @@ public class MainApplication extends Application implements ReactApplication {
protected List<ReactPackage> getPackages() {
return Arrays.<ReactPackage>asList(
new MainReactPackage(),
new RNIapPackage(),
new NavigationBarColorPackage(),
BugsnagReactNative.getPackage(),
new RNVersionNumberPackage(),
new CodePush(getResources().getString(R.string.reactNativeCodePush_androidDeploymentKey), getApplicationContext(), BuildConfig.DEBUG),

View File

@ -1,4 +1,8 @@
rootProject.name = 'eSteem'
include ':react-native-iap'
project(':react-native-iap').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-iap/android')
include ':react-native-navigation-bar-color'
project(':react-native-navigation-bar-color').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-navigation-bar-color/android')
include ':bugsnag-react-native'
project(':bugsnag-react-native').projectDir = new File(rootProject.projectDir, '../node_modules/bugsnag-react-native/android')
include ':react-native-version-number'

View File

@ -40,6 +40,8 @@ target 'eSteem' do
pod 'BugsnagReactNative', :path => '../node_modules/bugsnag-react-native'
pod 'RNIap', :path => '../node_modules/react-native-iap'
target 'eSteemTests' do
inherit! :search_paths
# Pods for testing

View File

@ -48,11 +48,13 @@
"react-native-datepicker": "^1.7.2",
"react-native-extended-stylesheet": "^0.10.0",
"react-native-fast-image": "^4.0.14",
"react-native-iap": "^3.3.0",
"react-native-image-crop-picker": "^0.21.3",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-linear-gradient": "^2.4.2",
"react-native-modal-dropdown": "^0.6.2",
"react-native-modal-popover": "0.0.12",
"react-native-navigation-bar-color": "^0.1.0",
"react-native-render-html": "^4.1.2",
"react-native-scrollable-tab-view": "^0.10.0",
"react-native-slider": "^0.11.0",
@ -67,7 +69,6 @@
"redux": "^4.0.0",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"remarkable": "^1.7.1",
"rn-placeholder": "^1.3.2",
"speakingurl": "^14.0.1",
"stacktrace-parser": "0.1.4",
@ -107,5 +108,8 @@
"pre-commit": "lint-staged",
"jest": {
"preset": "react-native"
},
"resolutions": {
"underscore.string": "^3.3.5"
}
}

View File

@ -45,6 +45,8 @@ class BasicHeaderView extends Component {
const { isInputVisible } = this.state;
this.setState({ isInputVisible: !isInputVisible });
if (isInputVisible) this._handleOnSearch('');
};
_handleOnSearch = value => {

View File

@ -4,13 +4,13 @@ import { View } from 'react-native';
import Placeholder from 'rn-placeholder';
import styles from './listItemPlaceHolderStyles';
// TODO: make container for place holder wrapper after alpha
const ListItemPlaceHolderView = ({ isDarkTheme }) => {
const color = isDarkTheme ? '#2e3d51' : '#f5f5f5';
return (
<View style={styles.container}>
<Placeholder.Media size={40} hasRadius animate="fade" color={color} />
<Placeholder.Media size={30} hasRadius animate="fade" color={color} />
<View style={styles.paragraphWrapper}>
<Placeholder.Paragraph
color={color}

View File

@ -1,10 +1,29 @@
import React from 'react';
/* eslint-disable radix */
import React, { Fragment } from 'react';
import { connect } from 'react-redux';
import { View } from 'react-native';
import { View, Dimensions } from 'react-native';
import Placeholder from 'rn-placeholder';
import times from 'lodash/times';
import styles from './walletDetailsPlaceHolderStyles';
const HEIGHT = Dimensions.get('window').height;
const listPlaceHolderView = color => {
const ratio = (HEIGHT - 300) / 50;
const listElements = [];
times(parseInt(ratio), i => {
listElements.push(
<View key={i} style={styles.textWrapper}>
<Placeholder.Box animate="fade" height={30} width="100%" radius={5} color={color} />
</View>,
);
});
return <Fragment>{listElements}</Fragment>;
};
const WalletDetailsPlaceHolder = ({ isDarkTheme }) => {
const color = isDarkTheme ? '#2e3d51' : '#f5f5f5';
@ -13,18 +32,7 @@ const WalletDetailsPlaceHolder = ({ isDarkTheme }) => {
<View style={styles.textWrapper}>
<Placeholder.Paragraph lineNumber={1} color={color} />
</View>
<View style={styles.textWrapper}>
<Placeholder.Box animate="fade" height={30} width="100%" radius={5} color={color} />
</View>
<View style={styles.textWrapper}>
<Placeholder.Box animate="fade" height={30} width="100%" radius={5} color={color} />
</View>
<View style={styles.textWrapper}>
<Placeholder.Box animate="fade" height={30} width="100%" radius={5} color={color} />
</View>
<View style={styles.textWrapper}>
<Placeholder.Box animate="fade" height={30} width="100%" radius={5} color={color} />
</View>
{listPlaceHolderView(color)}
</View>
);
};

View File

@ -66,7 +66,7 @@ const WalletLineItem = ({
)}
</View>
</View>
{rightText && (
{!!rightText && (
<View style={styles.rightTextWrapper}>
<Text
style={[

View File

@ -1,5 +1,6 @@
import CircularButton from './views/circularButtonView';
import IconButton from './views/iconButtomView';
import TextButton from './views/textButtonView';
import SquareButton from './views/squareButton';
export { CircularButton, IconButton, TextButton };
export { CircularButton, IconButton, TextButton, SquareButton };

View File

@ -0,0 +1,20 @@
import React from 'react';
import { TouchableOpacity, Text } from 'react-native';
import styles from './squareButtonStyles';
/* Props
*
* @prop { string } text - Text inside of button.
* @prop { func } onPress - When button clicked, this function will call.
* @prop { array } style - It is addionatly syle for button.
* @prop { array } textStyle - It is addionatly syle for text of button.
* @prop { any } value - When button clicked, this value will push with on press func.
*/
const SquareButtonView = ({ text, onPress, style, value, textStyle }) => (
<TouchableOpacity style={[styles.button, style]} onPress={() => onPress && onPress(value)}>
<Text style={[styles.buttonText, textStyle]}>{text}</Text>
</TouchableOpacity>
);
export default SquareButtonView;

View File

@ -0,0 +1,16 @@
import EStyleSheet from 'react-native-extended-stylesheet';
export default EStyleSheet.create({
button: {
borderColor: '$primaryBlue',
borderWidth: 1,
backgroundColor: 'transparent',
alignItems: 'center',
justifyContent: 'center',
},
buttonText: {
color: '$primaryBlue',
fontSize: 24,
fontWeight: '500',
},
});

View File

@ -0,0 +1 @@
export { default } from './view/checkboxView';

View File

@ -0,0 +1,24 @@
import EStyleSheet from 'react-native-extended-stylesheet';
export const getCheckBackground = isCheck =>
EStyleSheet.create({
backgroundColor: isCheck ? '$primaryBlue' : '#FFF',
});
export default EStyleSheet.create({
bigSquare: {
height: 20,
width: 20,
borderWidth: 2,
borderColor: '$primaryBlue',
alignItems: 'center',
justifyContent: 'center',
},
smallSquare: {
height: 10,
width: 10,
},
checked: {
backgroundColor: '$primaryBlue',
},
});

View File

@ -0,0 +1,45 @@
import React, { Component } from 'react';
import { View, TouchableOpacity } from 'react-native';
import styles from './checkboxStyles';
class CheckBoxView extends Component {
constructor(props) {
super(props);
this.state = { isCheck: false };
}
_checkClicked = async () => {
const { clicked, value } = this.props;
await this.setState(prevState => ({
isCheck: !prevState.isCheck,
}));
const { isCheck } = this.state;
if (clicked) clicked(value, isCheck);
};
render() {
const { style, isChecked, locked } = this.props;
const { isCheck } = this.state;
if (locked) {
return (
<View style={styles.bigSquare}>
<View style={[styles.smallSquare, isChecked && styles.checked]} />
</View>
);
}
return (
<TouchableOpacity onPress={this._checkClicked} style={style}>
<View style={styles.bigSquare}>
<View style={[styles.smallSquare, isCheck && styles.checked]} />
</View>
</TouchableOpacity>
);
}
}
export default CheckBoxView;

View File

@ -0,0 +1 @@
export { default } from './view/informationBox';

View File

@ -0,0 +1,11 @@
import React from 'react';
import { View, Text } from 'react-native';
import styles from './informationBoxStyles';
const InformationBox = ({ text, style, textStyle }) => (
<View style={[styles.container, style]}>
<Text style={[styles.text, textStyle]}>{text}</Text>
</View>
);
export default InformationBox;

View File

@ -0,0 +1,12 @@
import EStyleSheet from 'react-native-extended-stylesheet';
export default EStyleSheet.create({
container: {
backgroundColor: '$primaryBlue',
padding: 15,
alignItems: 'center',
},
text: {
color: '$white',
},
});

View File

@ -60,6 +60,6 @@ export default EStyleSheet.create({
backgroundColor: '$primaryBlue',
},
clearIcon: {
color: '$white',
color: '$primaryLightGray',
},
});

View File

@ -65,7 +65,7 @@ class PostsView extends Component {
isLoading: false,
isPostsLoading: false,
isHideImage: false,
selectedFilterIndex: 0,
selectedFilterIndex: 1,
isNoPost: false,
},
() => {
@ -284,8 +284,8 @@ class PostsView extends Component {
initialNumToRender={10}
ListFooterComponent={this._renderFooter}
onScrollBeginDrag={() => this._handleOnScrollStart()}
refreshControl={
<RefreshControl
refreshControl={(
<RefreshControl
refreshing={refreshing}
onRefresh={this._handleOnRefreshPosts}
progressBackgroundColor="#357CE6"
@ -293,7 +293,7 @@ class PostsView extends Component {
titleColor="#fff"
colors={['#fff']}
/>
}
)}
ref={ref => {
this.flatList = ref;
}}

View File

@ -94,7 +94,7 @@ class ProfileSummaryView extends PureComponent {
const isColumn = rowLength && DEVICE_WIDTH / rowLength <= 7.3;
const followButtonIcon = !isFollowing ? 'account-plus' : 'account-minus';
const coverImageUrl = `http://img.esteem.app/400x0/${coverImage}`;
const coverImageUrl = `https://steemitimages.com/400x0/${coverImage}`;
dropdownOpions.push(!isMuted ? 'MUTE' : 'UNMUTE');

View File

@ -1,6 +1,8 @@
/* eslint-disable react/jsx-wrap-multilines */
import React, { PureComponent } from 'react';
import { injectIntl } from 'react-intl';
import { View } from 'react-native';
import get from 'lodash/get';
// Utilities
import { groomingTransactionData } from '../../../utils/wallet';
@ -27,7 +29,7 @@ class TransactionView extends PureComponent {
// Component Life Cycles
// Component Functions
_handleOnDropdownSelect = () => {};
// _handleOnDropdownSelect = () => {};
render() {
const {
@ -69,7 +71,7 @@ class TransactionView extends PureComponent {
id: `wallet.${transactionData.opName}`,
})}
// description={intl.formatRelative(transactionData.transDate)}
description={getTimeFromNow(transactionData.transDate)}
description={getTimeFromNow(get(transactionData, 'transDate'))}
isCircleIcon
isThin
circleIconColor="white"
@ -80,13 +82,13 @@ class TransactionView extends PureComponent {
/>
}
>
{(!!transactionData.details || !!transactionData.memo) && (
{(get(transactionData, 'details') || get(transactionData, 'memo')) && (
<WalletLineItem
key={index.toString()}
text={!!transactionData.details && transactionData.details}
text={get(transactionData, 'details', 'pipi')}
isBlackText
isThin
description={!!transactionData.memo && transactionData.memo}
description={get(transactionData, 'memo')}
/>
)}
</CollapsibleCard>

View File

@ -59,13 +59,13 @@ class WalletView extends PureComponent {
<ScrollView
refreshControl={
<RefreshControl
refreshing={isRefreshing}
onRefresh={handleOnWalletRefresh}
progressBackgroundColor="#357CE6"
tintColor={!isDarkTheme ? '#357ce6' : '#96c0ff'}
titleColor="#fff"
colors={['#fff']}
/>
refreshing={isRefreshing}
onRefresh={handleOnWalletRefresh}
progressBackgroundColor="#357CE6"
tintColor={!isDarkTheme ? '#357ce6' : '#96c0ff'}
titleColor="#fff"
colors={['#fff']}
/>
}
style={styles.scrollView}
>

View File

@ -37,6 +37,12 @@ class WalletContainer extends PureComponent {
case 'SBD':
balance = Math.round(walletData.sbdBalance * 1000) / 1000;
break;
case 'SAVING_STEEM':
balance = Math.round(walletData.savingBalance * 1000) / 1000;
break;
case 'SAVING_SBD':
balance = Math.round(walletData.savingBalanceSbd * 1000) / 1000;
break;
default:
break;
}

View File

@ -1,8 +1,6 @@
import React, { PureComponent } from 'react';
import { View } from 'react-native';
// Constants
// Components
import { GrayWrapper, WalletLineItem } from '../../basicUIElements';
@ -10,20 +8,9 @@ import { GrayWrapper, WalletLineItem } from '../../basicUIElements';
import { vestsToSp } from '../../../utils/conversions';
// Styles
// eslint-disable-next-line
import styles from './walletDetailsStyles';
class WalletDetailsView extends PureComponent {
/* Props
* ------------------------------------------------
* @prop { type } name - Description....
*/
constructor(props) {
super(props);
this.state = {};
}
// Component Life Cycles
// Component Functions
@ -33,6 +20,9 @@ class WalletDetailsView extends PureComponent {
const steemDropdown = ['transfer_token', 'transfer_to_saving', 'powerUp'];
const sbdDropdown = ['transfer_token', 'transfer_to_saving'];
const savingSteemDropdown = ['withdraw_steem'];
const savingSbdDropdown = ['withdraw_sbd'];
const steemPowerDropdown = ['delegate', 'power_down'];
return (
<View style={styles.container}>
@ -59,6 +49,11 @@ class WalletDetailsView extends PureComponent {
vestsToSp(walletData.vestingShares, walletData.steemPerMVests) * 1000,
) / 1000} SP`}
isBoldText
isHasdropdown={isShowDropdowns}
dropdownOptions={steemPowerDropdown.map(item =>
intl.formatMessage({ id: `transfer.${item}` }),
)}
onDropdownSelect={a => navigate(steemPowerDropdown[a], 'STEEM_POWER')}
/>
{walletData.vestingSharesDelegated > 0 && (
@ -98,7 +93,7 @@ class WalletDetailsView extends PureComponent {
isBoldText
isHasdropdown={isShowDropdowns}
dropdownOptions={sbdDropdown.map(item => intl.formatMessage({ id: `transfer.${item}` }))}
onDropdownSelect={a => navigate(steemDropdown[a], 'SBD')}
onDropdownSelect={a => navigate(sbdDropdown[a], 'SBD')}
/>
<GrayWrapper isGray>
<WalletLineItem
@ -109,10 +104,20 @@ class WalletDetailsView extends PureComponent {
iconName="ios-information-circle-outline"
rightText={`${Math.round(walletData.savingBalance * 1000) / 1000} STEEM`}
isBoldText
isHasdropdown={isShowDropdowns}
dropdownOptions={savingSteemDropdown.map(item =>
intl.formatMessage({ id: `transfer.${item}` }),
)}
onDropdownSelect={a => navigate(savingSteemDropdown[a], 'SAVING_STEEM')}
/>
<WalletLineItem
rightText={`$${Math.round(walletData.savingBalanceSbd * 1000) / 1000}`}
style={styles.walletLineDetail}
isHasdropdown={isShowDropdowns}
dropdownOptions={savingSbdDropdown.map(item =>
intl.formatMessage({ id: `transfer.${item}` }),
)}
onDropdownSelect={a => navigate(savingSbdDropdown[a], 'SAVING_SBD')}
/>
</GrayWrapper>
{walletData.showPowerDown && (

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Kalheuh Meusalén!",
"no_internet": "Hana koneksi!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Peu yakin neuh, neu neuk reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "صوت",
"reblog": "إعادة التدوين",
"login": "تسجيل الدخول",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "ربح",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "نقاط للمنشور",
"comment_title": "نقاط للتعليق",
"vote_title": "نقاط للتصويت",
@ -47,6 +52,8 @@
"checkin_title": "نقاط للاستخدام",
"checkin_extra_title": "مكافأة الاستخدام",
"no_activity": "لا يوجد نشاط هنا!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "يمكنك كسب نقطة من خلال نشر بانتظام. النشر يمنحك 15 نقطة.",
"comment_desc": "يساعدك كل تعليق تدلي به على تنمية جمهورك وتكوين صداقات ، ولكنه يكسبك أيضًا 5 نقاط.",
"checkin_desc": "يمنحك تسجيل الوصول على تطبيق eSteem 0.25 نقطة ويساعدك على البقاء على اتصال مع أصدقائك.",
@ -195,7 +202,8 @@
"copied": "تم النسخ!",
"no_internet": "لا يوجد اتصال!",
"confirm": "تأكيد",
"removed": "محذوف"
"removed": "محذوف",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "هل أنت متأكد من رغبتك في إعادة التدوين؟",
@ -275,11 +283,28 @@
"memo_desc": "هذه المذكرة عامة",
"to_placeholder": "إسم المستخدم",
"memo_placeholder": "أدخل ملاحظاتك هنا",
"transfer_token": "تحويل",
"transfer_to_saving": "النقل إلى المدخرات",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "رفع الطاقة",
"withdraw_to_saving": "سحب إلى الادخار",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "نقل Steemconnect",
"next": "التالي"
"next": "التالي",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Səs ver",
"reblog": "Təkrar paylaş",
"login": "Giriş et",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Göndəriş üçün xal",
"comment_title": "Rəy üçün xal",
"vote_title": "Səsvermə üçün xal",
@ -47,6 +52,8 @@
"checkin_title": "İstifadə üçün xal",
"checkin_extra_title": "İstifadə bonusu",
"no_activity": "Fəaliyyət yoxdur!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Kopyalandı!",
"no_internet": "Bağlantı yoxdur!",
"confirm": "Təsdiqlə",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Təkrar paylaşmaq istədiyinizə əminsiniz?",
@ -275,11 +283,28 @@
"memo_desc": "Bu qeyd ictimaidir",
"to_placeholder": "İstifadəçi adı",
"memo_placeholder": "Qeydlərinizi buraya daxil edin",
"transfer_token": "Köçürmə",
"transfer_to_saving": "Yığımlara Köçürmə",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Gücü artır",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Köçürməsi",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Kopiert!",
"no_internet": "Keine Verbindung!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Möchtest du diesen Beitrag wirklich teilen?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -202,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copiado!",
"no_internet": "Sin conexión!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Está seguro que quiere rebloguear?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Hääletus",
"reblog": "Taaspostitus",
"login": "Sisselogimine",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Boonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Punktid postitustest",
"comment_title": "Punktid kommentaaridest",
"vote_title": "Punktid hääletustest",
@ -47,6 +52,8 @@
"checkin_title": "Punktid kasutamisest",
"checkin_extra_title": "Kasutusboonus",
"no_activity": "Siin on vaikus!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "Punkte saab teenida regulaarselt postitades. Iga postitus annab sulle 15 punkti.",
"comment_desc": "Iga kommentaar aitab sul oma publikut suurendada ja sõpru leida, lisaks sellele teenid sa sellega ka 5 punkti.",
"checkin_desc": "eSteem äppi kasutamine annab sulle 0.25 punkti ja aitab sul oma sõpradega ühenduses olla.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -34,11 +34,16 @@
"points": {
"post": "پست",
"comment": "نظر",
"checkin": "Check-in",
"checkin": "حاضری زدن",
"vote": "رأی",
"reblog": "اشتراک گذاری",
"login": "ورود",
"incoming_transfer_title": "تراکنش ورودی",
"outgoing_transfer_title": "تراکنش خروجی",
"checkin_extra": "پاداش",
"delegation": "اجاره",
"delegation_title": "پاداش اجاره دادن",
"delegation_desc": "شما می توانید به ازای هر 100sp اجاره داده شده، یک امتیاز در روز دریافت کنید",
"post_title": "امتیاز برای ایجاد پست",
"comment_title": "امتیاز برای نظر دادن",
"vote_title": "امتیاز برای رای دادن",
@ -47,9 +52,11 @@
"checkin_title": "امتیاز برای استفاده کردن",
"checkin_extra_title": "استفاده از پاداش",
"no_activity": "هیچ فعالیتی اینجا نیست!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "شما میتوانید با ایجاد پست به طور منظم، امتیاز دریافت کنید. ایجاد پست ۱۵ امتیاز به شما میدهد.",
"comment_desc": "هر نظری که ثبت میکنید باعث میشود مخاطبان و دوستان خود را افزایش دهید و همچنین ۵ امتیاز را به همراه دارد.",
"checkin_desc": "Checking in on eSteem app gives you 0.25 points and helps you stay connected with your friends.",
"checkin_desc": "حاضری زدن در اپ eSteem به شما 0.25 امتیاز میدهد و همچنین به شما کمک میکند تا با دوستانتان و در ارتباط باقی بمانید.",
"vote_desc": "شما با رای دادن به آثار دیگران قدردانی خود را نشان میدهید و علاوه بر آن به میزان (0.01 ×میزان رای شما ) امتیاز دریافت می کنید.",
"reblog_desc": " پست های مورد علاقه خود را با دوستانتان به اشتراک بگذارید و 1 امتیاز دریافت کنید.",
"login_desc": "زمانی که شما توسط اپ eSteem وارد حساب کاربری خود شوید به صورت اتوماتیک 100 امتیاز دریافت خواهید کرد.",
@ -161,7 +168,7 @@
"reply_placeholder": "در مورد پست فوق، چه چیزی میخواهید بنویسید؟",
"publish": "نشر",
"reply": "پاسخ دادن",
"open_gallery": "Open Gallery",
"open_gallery": "باز کردن گالری",
"capture_photo": "گرفتن عکس"
},
"pincode": {
@ -172,7 +179,7 @@
},
"alert": {
"success": "با موفقیت!",
"successful": "Successful",
"successful": "موفقیت آمیز",
"allRead": "علامت زدن تمام اعلانات به عنوان خوانده شده",
"claim_reward_balance_ok": "پاداش دریافت شده",
"fail": "ناموفق!",
@ -195,12 +202,13 @@
"copied": "کپی شد!",
"no_internet": "اتصال برقرار نیست!",
"confirm": "تأیید",
"removed": "Removed"
"removed": "حذف شد",
"same_user": "این کاربر قبلا به لیست اضافه شده است"
},
"post": {
"reblog_alert": "آیا مطمئن هستید که می‌خواهید به اشتراک بگذارید؟",
"removed_hint": "The post was removed by",
"copy_link": "Copy Link"
"removed_hint": "این پست حذف شده است توسط",
"copy_link": "کپی لینک"
},
"drafts": {
"title": "پیشنویس ها",
@ -209,7 +217,7 @@
"deleted": "پیشنویس حذف شده"
},
"schedules": {
"title": "Schedules",
"title": "زمان بندی ها",
"empty_list": "اینجا چیزی نیست",
"deleted": "پست های برنامه ریزی شده حذف شدند",
"move": "انتقال به پیشنویس",
@ -276,10 +284,27 @@
"to_placeholder": "نام کاربری",
"memo_placeholder": "یادداشت های خود را در اینجا وارد کنید",
"transfer_token": "انتقال",
"points": "انتقال امتیاز ها",
"transfer_to_saving": "انتقال به پس انداز",
"powerUp": "بالا بردن قدرت",
"withdraw_to_saving": "Withdraw To Saving",
"withdraw_to_saving": "برداشت و انتقال به پس انداز",
"steemconnect_title": "انتقال Steemconnect",
"next": "NEXT"
"next": "بعدی",
"withdraw_steem": "برداشت استیم",
"withdraw_sbd": "برداشت دلار استیم",
"delegate": "اجاره",
"power_down": "کم کردن قدرت",
"account": "حساب کاربری",
"destination_accounts": "اجاره داده شده به حساب (های) کاربری",
"amount_information": "کشیدن لغزنده برای تنظیم مقدار",
"save": "ذخیره",
"percent": "درصد",
"percent_information": "درصد کاهش قدرت برای این حساب کاربری",
"auto_vests": "به صورت خودکار حساب کاربری مورد نظر را افزایش قدرت بده",
"stop": "توقف",
"stop_information": "آیا مطمئن هستید که میخواهید عملیات را متوقف کنید؟",
"incoming_funds": "وجوه دریافتی",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "برآورد هفتگی"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points pour vos publications",
"comment_title": "Points pour vos commentaires",
"vote_title": "Points pour vos votes",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Bonus d'utilisation",
"no_activity": "Aucune activité ici !",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "Vous pouvez gagner des points en publiant régulièrement. Publier vous donne 15 points.",
"comment_desc": "Chaque commentaire que vous faites vous aide à agrandir votre audience et à créer de l'amitié, mais vous donne également 5 points.",
"checkin_desc": "Checking in on eSteem app gives you 0.25 points and helps you stay connected with your friends.",
@ -195,7 +202,8 @@
"copied": "Copié !",
"no_internet": "Pas de connexion !",
"confirm": "Valider",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Êtes-vous sûr de vouloir rebloguer ?",
@ -276,10 +284,27 @@
"to_placeholder": "Nom d'utilisateur",
"memo_placeholder": "Entrez vos notes ici",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Transfert Steemconnect",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Gif stibna",
"reblog": "Aftrablaug",
"login": "Atgagg",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Huzd",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Stika waurda",
"comment_title": "Stika waurda",
"vote_title": "Stika stibnai",
@ -47,6 +52,8 @@
"checkin_title": "Stika brukeinai",
"checkin_extra_title": "Brukeinais huzd",
"no_activity": "Ni waihts her warþ!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Atgagganamo",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "נקודות עבור פוסט",
"comment_title": "נקודות עבור תגובה",
"vote_title": "נקודות עבור הצבעה",
@ -47,6 +52,8 @@
"checkin_title": "נקודות עבור שימוש",
"checkin_extra_title": "בונוס שימוש",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "הועתק!",
"no_internet": "אין חיבור!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "האם את\\ה בטוח\/ה רוצה לשתף ?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "वोट",
"reblog": "पुनर्प्रेशण",
"login": "लॉग इन करें",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "बोनस",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "पद के लिए अंक",
"comment_title": "टिप्पणी के लिए अंक",
"vote_title": "वोट के लिए अंक",
@ -47,6 +52,8 @@
"checkin_title": "उपयोग के लिए अंक",
"checkin_extra_title": "उपयोग बोनस",
"no_activity": "यहां कोई गतिविधि नहीं!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "आप नियमित रूप से पोस्ट करके बिंदु अर्जित कर सकते हैं। पोस्टिंग आपको 15 अंक देती है।",
"comment_desc": "आपके द्वारा की गई प्रत्येक टिप्पणी से आपको अपने दर्शकों को विकसित करने और दोस्ती करने में मदद मिलती है, लेकिन आपको 5 अंक भी मिलते हैं।",
"checkin_desc": "इस्टीम एप्प आपको 0. २५ प्रतिशत अंक देता है जुड़ने पर और मदद करता है दोस्तों के साथ जुड़े रहने में|",
@ -195,7 +202,8 @@
"copied": "प्रतिलिपि हो गयी!",
"no_internet": "संपर्क नहीं",
"confirm": "पुष्टी करें",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "क्या आप सच में पुनः प्रसारित करना चाहते हैं?",
@ -275,11 +283,28 @@
"memo_desc": "यह ज्ञापन सार्वजनिक है",
"to_placeholder": "प्रयोक्ता नाम",
"memo_placeholder": "अपनी टिप्पणी यहाँ लिखें",
"transfer_token": "स्थान्तरण",
"transfer_to_saving": "बचत खाते में स्थान्तरण करें",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "स्टीम क्षमता बढ़ाएं",
"withdraw_to_saving": "बचत खाते से निकालें",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "स्टीमकनेक्ट स्थान्तरण",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Jeste li sigurni da želite ponovo podijeliti objavu na svom profilu?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Szavazás",
"reblog": "Megosztás",
"login": "Bejelentkezés",
"incoming_transfer_title": "Bejövő átutalás",
"outgoing_transfer_title": "Kimenő átutalás",
"checkin_extra": "Bónusz",
"delegation": "Delegálás",
"delegation_title": "Delegálási jutalom",
"delegation_desc": "Minen 100sp delegálásért napi 1 pontot kaphatsz",
"post_title": "Bejegyzés pontok",
"comment_title": "Hozzászólás pontok",
"vote_title": "Szavazási pontok",
@ -47,6 +52,8 @@
"checkin_title": "Használati pontok",
"checkin_extra_title": "Használati bónusz",
"no_activity": "Itt nincs tevékenység!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,12 +202,13 @@
"copied": "Lemásolva!",
"no_internet": "Nincs kapcsolat!",
"confirm": "Megerősítés",
"removed": "Eltávolítva"
"removed": "Eltávolítva",
"same_user": "Ez a felhasználó már szerepel a listán"
},
"post": {
"reblog_alert": "Biztos, hogy megosztod?",
"removed_hint": "A bejegyzést eltávolította",
"copy_link": "Copy Link"
"copy_link": "Link másolása"
},
"drafts": {
"title": "Piszkozatok",
@ -276,10 +284,27 @@
"to_placeholder": "Felhasználónév",
"memo_placeholder": "Megjegyzés ide",
"transfer_token": "Átutalás",
"points": "Pontok Átutalása",
"transfer_to_saving": "Átutalás a megtakarításokhoz",
"powerUp": "Power Up",
"withdraw_to_saving": "Átutalás A Megtakarításokhoz",
"steemconnect_title": "Steemconnect átutalás",
"next": "KÖVETKEZŐ"
"next": "KÖVETKEZŐ",
"withdraw_steem": "Steem Visszavonás",
"withdraw_sbd": "Steem Dollár Visszavonás",
"delegate": "Delegálás",
"power_down": "Power Down",
"account": "Fiók",
"destination_accounts": "Cél Fiók(ok)",
"amount_information": "A csúszka húzásával állítsd be a mennyiséget",
"save": "Mentés",
"percent": "Százalék",
"percent_information": "Power Down százaléka ennek a fióknak",
"auto_vests": "Automatikus power up a megadott fióknak",
"stop": "Megállítás",
"stop_information": "Bistos megállítod?",
"incoming_funds": "Bejövő tőke",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Heti Becslés"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Beri suara",
"reblog": "Menampilkan kembali",
"login": "Masuk",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Poin untuk kiriman",
"comment_title": "Poin untuk komentar",
"vote_title": "Poin untuk suara",
@ -47,6 +52,8 @@
"checkin_title": "Poin untuk penggunaan",
"checkin_extra_title": "Bonus penggunaan",
"no_activity": "Tidak ada aktifitas disini!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "Anda bisa mendapatkan poin dengan memposting secara teratur. Posting memberi Anda 15 poin.",
"comment_desc": "Setiap komentar yang Anda buat membantu Anda untuk menumbuhkan audiens Anda dan menjalin persahabatan tetapi juga memberi Anda 5 poin.",
"checkin_desc": "Memeriksa aplikasi eSteem memberi Anda 0,25 poin dan membantu Anda tetap terhubung dengan teman-teman Anda.",
@ -195,7 +202,8 @@
"copied": "Disalin!",
"no_internet": "Tidak ada koneksi!",
"confirm": "Konfirmasi",
"removed": "Hapus"
"removed": "Hapus",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Anda yakin ingin menerbitkan ulang?",
@ -276,10 +284,27 @@
"to_placeholder": "Nama Pengguna",
"memo_placeholder": "Masukan catatan anda disini",
"transfer_token": "Transfer",
"transfer_to_saving": "Transfer untuk menyimpan",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Tarik untuk menyimpan",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "LANJUT"
"next": "LANJUT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Sei sicuro di volerlo condividere?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -19,11 +19,11 @@
"unfollow": "님이 팔로우를 취소했습니다",
"ignore": "님이 당신을 차단했습니다",
"reblog": "님이 당신 글을 리블로그했습니다",
"transfer": "transfered steem",
"transfer": "스팀 송금",
"comingsoon": "순위표 기능은 곧 출시될 예정입니다!",
"notification": "알림",
"leaderboard": "순위표",
"epoint": "Points",
"epoint": "포인트",
"leaderboard_title": "일별 상위 사용자",
"recent": "최근",
"yesterday": "어제",
@ -32,28 +32,35 @@
"older_then": "1 달 이상"
},
"points": {
"post": "Post",
"comment": "Comment",
"checkin": "Check-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",
"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."
"post": "포스팅",
"comment": "댓글",
"checkin": "체크인",
"vote": "투표",
"reblog": "리블로그",
"login": "로그인",
"incoming_transfer_title": "받은 포인트",
"outgoing_transfer_title": "보낸 포인트",
"checkin_extra": "체크인 보너스",
"delegation": "임대",
"delegation_title": "임대 보상",
"delegation_desc": "100 SP 임대 당 1 포인트가 매일 지급됩니다",
"post_title": "포스팅 포인트",
"comment_title": "댓글 포인트",
"vote_title": "투표 포인트",
"reblog_title": "리블로그 포인트",
"login_title": "로그인 포인트",
"checkin_title": "체크인 포인트",
"checkin_extra_title": "체크인 보너스",
"no_activity": "아직 포인트 관련 활동이 없습니다",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "주기적으로 포스팅하면 포인트를 획득할 수 있습니다. 포스팅 당 15 포인트가 지급됩니다.",
"comment_desc": "댓글을 남기시면 새로운 친구를 늘릴 수 있고 독자와의 소통에도 도움이 될 것이며, 5 포인트도 획득할 수 있습니다",
"checkin_desc": "eSteem 앱에 로그인하면 친구들과 지속적인 관계를 유지할 수 있으며, 0.25 포인트도 획득할 수 있습니다.",
"vote_desc": "보팅을 통해 글 작성자에게 보상을 제공하고 감사 표시를 할 수 있습니다. 또한, 보팅 시 보팅 가중치에 0.01을 곱한 포인트가 지급됩니다.",
"reblog_desc": "좋아하는 글을 친구에게 공유하고 1 포인트를 획득하세요.",
"login_desc": "eSteem 앱에 최초 로그인 시 100 포인트가 자동 지급됩니다.",
"checkin_extra_desc": "꾸준히 앱을 이용한 사용자는 10 포인트 이상의 추가 포인트를 획득할 수 있는 기회가 제공되며 더 열심히 이용할수록 더 많은 포인트를 획득할 수 있습니다."
},
"messages": {
"comingsoon": "메시지 기능은 곧 출시될 예정입니다!"
@ -83,33 +90,33 @@
},
"settings": {
"settings": "설정",
"general": "General",
"general": "일반",
"currency": "화폐",
"language": "언어",
"server": "서버",
"dark_theme": "어두운 테마",
"push_notification": "푸시 알림",
"notification": {
"follow": "Follow",
"vote": "Vote",
"comment": "Comment",
"mention": "Mention",
"reblog": "Reblog",
"transfers": "Transfers"
"follow": "팔로우",
"vote": "투표",
"comment": "댓글",
"mention": "언급",
"reblog": "리블로그",
"transfers": "송금"
},
"pincode": "PIN 코드",
"reset": "초기화",
"nsfw_content": "NSFW 콘텐츠",
"send_feedback": "피드백 보내기",
"send": "Send",
"default_footer": "Default Footer",
"send": "보내기",
"default_footer": "기본 꼬리말",
"nsfw": {
"always_show": "항상 보여주기",
"always_hide": "항상 숨기기",
"always_warn": "항상 경고 표시하기"
},
"feedback_success": "Email successfully open",
"feedback_fail": "Email client could not open"
"feedback_success": "이메일 클라이언트가 성공적으로 열렸습니다",
"feedback_fail": "이메일 클라이언트를 열지 못했습니다"
},
"voters": {
"voters_info": "투표자 정보",
@ -161,7 +168,7 @@
"reply_placeholder": "어떤 댓글을 남기고 싶으신가요?",
"publish": "게시하기",
"reply": "댓글",
"open_gallery": "Open Gallery",
"open_gallery": "갤러리 열기",
"capture_photo": "사진 캡처하기"
},
"pincode": {
@ -172,14 +179,14 @@
},
"alert": {
"success": "성공!",
"successful": "Successful",
"successful": "성공",
"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": "리블로그 완료!",
@ -194,13 +201,14 @@
"delete": "삭제",
"copied": "복사됨!",
"no_internet": "인터넷 연결을 확인하세요!",
"confirm": "Confirm",
"removed": "Removed"
"confirm": "확인",
"removed": "삭제되었습니다",
"same_user": "이 사용자는 목록에 이미 추가되었습니다"
},
"post": {
"reblog_alert": "정말 리블로그 하시겠습니까?",
"removed_hint": "The post was removed by",
"copy_link": "Copy Link"
"removed_hint": "포스팅이 삭제되었습니다",
"copy_link": "링크 복사"
},
"drafts": {
"title": "임시 보관함",
@ -209,7 +217,7 @@
"deleted": "임시 저장된 글이 삭제되었습니다"
},
"schedules": {
"title": "Schedules",
"title": "일정 관리",
"empty_list": "빈 목록입니다",
"deleted": "예약된 글이 삭제되었습니다",
"move": "임시 보관함으로 이동",
@ -266,20 +274,36 @@
"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",
"transfer_token": "Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"to": "받는 사람",
"amount": "수량",
"memo": "메모",
"information": "자금을 송금하시겠습니까?",
"amount_desc": "잔액",
"memo_desc": "이 메모는 누구나 볼 수 있습니다",
"to_placeholder": "사용자 이름",
"memo_placeholder": "메모 내용을 입력하세요",
"transfer_token": "송금",
"points": "포인트 송금",
"transfer_to_saving": "안전 금고로 송금",
"powerUp": "파워업",
"withdraw_to_saving": "안전 금고로 출금",
"steemconnect_title": "Steemconnect 송금",
"next": "다음",
"withdraw_steem": "스팀 출금",
"withdraw_sbd": "스팀 달러 출금",
"delegate": "임대",
"power_down": "파워 다운",
"account": "계정",
"destination_accounts": "대상 계정",
"amount_information": "슬라이드를 드래그해서 수량을 설정할 수 있습니다",
"save": "저장",
"percent": "비율",
"percent_information": "이 계정에 대한 파워 다운 비율",
"auto_vests": "대상 계정에 자동으로 파워 업 하기",
"stop": "중지",
"stop_information": "중지하시겠습니까?",
"incoming_funds": "입금 예정 스팀",
"sc_power_down_error": "steemconnect setWithdrawVestingRoute는 아직 구현되지 않았습니다.",
"estimated_weekly": "주간 예상 수량"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Balsas",
"reblog": "Pasidalinimas",
"login": "Prisijungimas",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonusas",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Taškai už įrašą",
"comment_title": "Taškai už komentarą",
"vote_title": "Taškai už balsą",
@ -47,6 +52,8 @@
"checkin_title": "Taškai už naudojimąsi",
"checkin_extra_title": "Naudojimosi bonusas",
"no_activity": "Jokios veiklos čia!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "Gali gauti taškų keldamas įrašus reguliariai. Įrašas yra vertas 15 taškų.",
"comment_desc": "Komentarai padeda tau augti, galbūt rasti bendraminčių ir apdovanoja 5 taškais už kiekvieną parašytą komentarą.",
"checkin_desc": "Reguliarus tikrinimas ir aktyvumo palaikymas tau duos 0.25 taško už kiekvieną prisijungimą.",
@ -195,7 +202,8 @@
"copied": "Nukopijuota!",
"no_internet": "Nėra ryšio!",
"confirm": "Patvirtinti",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Ar tikrai norite dalintis?",
@ -275,11 +283,28 @@
"memo_desc": "Ši atmintinė yra vieša",
"to_placeholder": "Vartotojo vardas",
"memo_placeholder": "Įveskite savo užrašus čia",
"transfer_token": "Pervesti",
"transfer_to_saving": "Pervesti į Santaupas",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Atsiimti į Santaupas",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Pervedimas",
"next": "TOLIAU"
"next": "TOLIAU",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Ulang siar",
"login": "Log Masuk",
"incoming_transfer_title": "Pindahan masuk",
"outgoing_transfer_title": "Pindahan keluar",
"checkin_extra": "Mata ganjaran",
"delegation": "Delegasi",
"delegation_title": "Ganjaran delegasi",
"delegation_desc": "Bagi delegasi setiap 100SP anda akan menerima 1 mata ganjaran setiap hari",
"post_title": "Mata ganjaran -> post_title",
"comment_title": "Mata ganjaran -> comment_title",
"vote_title": "Mata ganjaran -> vote_title",
@ -47,6 +52,8 @@
"checkin_title": "Mata ganjaran kegunaan",
"checkin_extra_title": "Bonus kegunaan",
"no_activity": "Tiada aktiviti di sini!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Disalin!",
"no_internet": "Tiada sambungan!",
"confirm": "Muktamat",
"removed": "Buang"
"removed": "Buang",
"same_user": "Pengguna telah ditambah ke dalam senarai"
},
"post": {
"reblog_alert": "Adakah anda ingin menulang siar?",
@ -276,10 +284,27 @@
"to_placeholder": "Nama Pengguna",
"memo_placeholder": "Masukkan catatan anda di sini",
"transfer_token": "Pindah",
"points": "Pindahan mata ganjaran",
"transfer_to_saving": "Pindah kepada simpanan",
"powerUp": "Mengekuasai",
"withdraw_to_saving": "Keluarkan kepada penyimpanan",
"steemconnect_title": "Steemconnect Transfer",
"next": "SETERUSNYA"
"next": "SETERUSNYA",
"withdraw_steem": "Keluarkan Steem",
"withdraw_sbd": "Keluarkan Steem Dollar",
"delegate": "Delegasi",
"power_down": "Power Down",
"account": "Akaun",
"destination_accounts": "Kepada Akaun(atau akaun-akaun)",
"amount_information": "Seret penggelongsor untuk menyelaraskan amaun",
"save": "Simpan Perubahan",
"percent": "Peratusan",
"percent_information": "Peratusan daripada Power Down masuk akaun ini",
"auto_vests": "Power up kepada akaun secara otomatik",
"stop": "Berhenti",
"stop_information": "Anda pasti menghentikan?",
"incoming_funds": "Wang masuk",
"sc_power_down_error": "Sambungan Steem dan setWithdrawVestingRoute belum dilaksanakan.",
"estimated_weekly": "Anggaran Mingguan"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Weet je zeker dat je het wilt delen?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog am",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Awoof",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Point for post",
"comment_title": "Point for comment",
"vote_title": "Point for vote",
@ -47,6 +52,8 @@
"checkin_title": "Point for use",
"checkin_extra_title": "Awoof for using",
"no_activity": "Nothing happen here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "You fit get point if you dey post everytime. Na 15 point posting go give you.",
"comment_desc": "Every comment wey you comment go help you dey popular and make friends. e go still help you get 5 point too.",
"checkin_desc": "To dey enter eSteem app everytime go help you get 0.25 point and e go still help dey connected with your paddi dem.",
@ -195,7 +202,8 @@
"copied": "E don copy!",
"no_internet": "Connection no dey!",
"confirm": "Confam",
"removed": "E don remove"
"removed": "E don remove",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "You sure say you wan reblog am?",
@ -276,10 +284,27 @@
"to_placeholder": "Guy-name",
"memo_placeholder": "Write your note for here",
"transfer_token": "Transfer",
"transfer_to_saving": "Transfer go Savings",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw go savings",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Transfer with steemconnect",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Votar",
"reblog": "Republicar",
"login": "Entrar",
"incoming_transfer_title": "Transferência Entrada",
"outgoing_transfer_title": "Transferência de saída",
"checkin_extra": "Bónus",
"delegation": "Delegação",
"delegation_title": "Recompensa da Delegação",
"delegation_desc": "Você pode ganhar 1 ponto por dia por cada delegação 100SP",
"post_title": "Pontos para postar",
"comment_title": "Pontos para comentário",
"vote_title": "Pontos para votar",
@ -47,6 +52,8 @@
"checkin_title": "Pontos para uso",
"checkin_extra_title": "Uso do Bonús",
"no_activity": "Nenhuma atividade aqui!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copiado!",
"no_internet": "Sem ligação!",
"confirm": "Confirmar",
"removed": "Removido"
"removed": "Removido",
"same_user": "Este usuário já foi adicionado à lista"
},
"post": {
"reblog_alert": "Tem certeza de que deseja reblogar?",
@ -276,10 +284,27 @@
"to_placeholder": "Utilizador",
"memo_placeholder": "Insira aqui as suas notas",
"transfer_token": "Transferir",
"points": "Transferência de Pontos",
"transfer_to_saving": "Transferir para Poupanças",
"powerUp": "Carregar Poder",
"withdraw_to_saving": "Levantar para Guradar",
"withdraw_to_saving": "Levantar das poupanças",
"steemconnect_title": "Transferência por Steemconnect",
"next": "SEGUINTE"
"next": "SEGUINTE",
"withdraw_steem": "Levantar Steem",
"withdraw_sbd": "Levantar Steem Dólar",
"delegate": "Delegar",
"power_down": "Decarregar Poder",
"account": "Conta",
"destination_accounts": "Conta(s) de destino",
"amount_information": "Arraste o controle deslizante para ajustar a quantidade",
"save": "Guardar",
"percent": "Percentagem",
"percent_information": "Percentagem de Descarga de Poder para esta conta",
"auto_vests": "Carregar Poder automaticamente para a conta alvo",
"stop": "Parar",
"stop_information": "Tem certeza que deseja parar?",
"incoming_funds": "Fundos recebidos",
"sc_power_down_error": "Steem conecta setWithdrawVestingRoute ainda não implementado.",
"estimated_weekly": "Estimado Semanalmente"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vot",
"reblog": "Redistribuire",
"login": "Autentificare",
"incoming_transfer_title": "Transfer în așteptare",
"outgoing_transfer_title": "Transfer în curs",
"checkin_extra": "Bonus",
"delegation": "Delegare",
"delegation_title": "Recompensă delegare",
"delegation_desc": "Poți câștiga 1 punct zilnic pentru fiecare 100SP delegat",
"post_title": "Puncte pentru postare",
"comment_title": "Puncte pentru comentariu",
"vote_title": "Puncte pentru vot",
@ -47,6 +52,8 @@
"checkin_title": "Puncte pentru utilizare",
"checkin_extra_title": "Bonus de utilizare",
"no_activity": "Nici o activitate aici!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copiat!",
"no_internet": "Nu există conexiune!",
"confirm": "Confirmă",
"removed": "Şters"
"removed": "Şters",
"same_user": "Utilizator adăugat deja la listă"
},
"post": {
"reblog_alert": "Ești sigur că vrei să redistribui?",
@ -275,11 +283,28 @@
"memo_desc": "Această notă este publică",
"to_placeholder": "Nume de utilizator",
"memo_placeholder": "Introdu comentariul tău aici",
"transfer_token": "Transferă",
"transfer_token": "Transfer",
"points": "Transfer Puncte",
"transfer_to_saving": "Tranferă la economii",
"powerUp": "Power Up",
"withdraw_to_saving": "Retrage la economii",
"steemconnect_title": "Transfer Steemconnect",
"next": "URMĂTORUL"
"next": "URMĂTORUL",
"withdraw_steem": "Retrage Steem",
"withdraw_sbd": "Retrage Steem Dolar",
"delegate": "Delegare",
"power_down": "Power Down",
"account": "Cont",
"destination_accounts": "Cont(uri) de Destinație",
"amount_information": "Drag the slider to adjust to amount",
"save": "Salvează",
"percent": "Procentaj",
"percent_information": "Procentul de power down la acest cont",
"auto_vests": "Power up automat contul ţintă",
"stop": "Oprește",
"stop_information": "Ești sigur că vrei să te oprești?",
"incoming_funds": "Fondurile Primite",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -23,7 +23,7 @@
"comingsoon": "Доска Лидерства будет здесь!",
"notification": "Уведомления",
"leaderboard": "Лидеры",
"epoint": "Очки",
"epoint": "Баллы",
"leaderboard_title": "Доска Лидерства",
"recent": "Недавно",
"yesterday": "Вчера",
@ -38,22 +38,29 @@
"vote": "Голос",
"reblog": "Репост",
"login": "Логин",
"incoming_transfer_title": "Входящий перевод",
"outgoing_transfer_title": "Исходящий перевод",
"checkin_extra": "Бонус",
"post_title": "Очки за пост",
"comment_title": "Очки за комментарий",
"vote_title": "Очки за голос",
"reblog_title": "Очки за репост",
"login_title": "Очки за логин",
"checkin_title": "Очки за пользование",
"delegation": "Делегирование",
"delegation_title": "Награда за делегирование",
"delegation_desc": "За каждые делегированные 100SP вы будете получать 1 балл в день",
"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": "Чекин в приложении eSteem даёт 0.25 очков и помогает оставаться на связи с друзьями.",
"vote_desc": "Голосуя вы награждаете других и высказываете своё уважение, а также получаете процент очков в зависимости от силы голоса.",
"reblog_desc": "Делитесь постами с друзьями и получайте по 1 очку.",
"login_desc": "Когда вы логинитесь в приложения eSteem, вы автоматически получаете 100 очков.",
"checkin_extra_desc": "Постоянное использование приложения даёт вам дополнительный шанс получить 10 очков. Чем больше активности, тем больше очков."
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "Зарабатывай баллы за посты. По 15 баллов за каждый.",
"comment_desc": "Каждый коммент помогает набирать аудиторию, завязывает дружбу и приносит 5 баллов.",
"checkin_desc": "Чекин в приложении eSteem даёт 0.25 баллов и помогает оставаться на связи с друзьями.",
"vote_desc": "Голосуя вы награждаете других и высказываете своё уважение, а также получаете процент баллов в зависимости от силы голоса.",
"reblog_desc": "Делитесь постами с друзьями и получайте по 1 баллу.",
"login_desc": "Когда вы логинитесь в приложения eSteem, вы автоматически получаете 100 баллов.",
"checkin_extra_desc": "Постоянное использование приложения даёт вам дополнительный шанс получить 10 баллов. Чем больше активности, тем больше награда."
},
"messages": {
"comingsoon": "Здесь будут сообщения!"
@ -195,12 +202,13 @@
"copied": "Скопировано!",
"no_internet": "No internet connection",
"confirm": "Подтвердить",
"removed": "Удалено"
"removed": "Удалено",
"same_user": "Этот пользователь уже добавлен в список"
},
"post": {
"reblog_alert": "Вы уверены, что хотите сделать репост?",
"removed_hint": "Сообщение удалено",
"copy_link": "Copy Link"
"copy_link": "Копировать ссылку"
},
"drafts": {
"title": "Черновики",
@ -276,10 +284,27 @@
"to_placeholder": "Пользователь",
"memo_placeholder": "Введите свою заметку",
"transfer_token": "Перевод",
"transfer_to_saving": "Отправить в сейф",
"points": "Передача баллов",
"transfer_to_saving": "Перевести в сейф",
"powerUp": "Увеличение силы",
"withdraw_to_saving": "Вывести в сейф",
"withdraw_to_saving": "Снять в сейф",
"steemconnect_title": "Перевод Steemconnect",
"next": "ДАЛЕЕ"
"next": "ДАЛЕЕ",
"withdraw_steem": "Вывести Steem",
"withdraw_sbd": "Вывести Steem Dollar",
"delegate": "Делегировать",
"power_down": "Понижение Силы",
"account": "Aккаунт",
"destination_accounts": "Аккаунт(ы) получателя",
"amount_information": "Drag the slider to adjust to amount",
"save": "Сохранить",
"percent": "Проценты",
"percent_information": "Процент понижения Силы в этот аккаунт",
"auto_vests": "Автоматически переводить в Силу на целевой аккаунт",
"stop": "Остановить",
"stop_information": "Вы уверены, что хотите остановить?",
"incoming_funds": "Входящие средства",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Kopirano!",
"no_internet": "Niste konektovani na internet!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Da li ste sigurni da želite da podelite?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Gönderi için puan",
"comment_title": "Yorum için puanlar",
"vote_title": "Oy için puanlar",
@ -47,6 +52,8 @@
"checkin_title": "Kullanım için puanlar",
"checkin_extra_title": "Kullanım bonusu",
"no_activity": "Burada etkinlik yok!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Kopyalandı",
"no_internet": "Bağlantı yok.",
"confirm": "Onayla",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Reblog yapma istediginize emin misiniz?",
@ -275,11 +283,28 @@
"memo_desc": "Bu not herkese açık",
"to_placeholder": "Kullanıcı Adı",
"memo_placeholder": "Notlarınızı buraya girin",
"transfer_token": "Havale",
"transfer_to_saving": "Tasarrufa Aktar",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Güç yükselt",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Aktarımı",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -19,11 +19,11 @@
"unfollow": "đã bỏ theo dõi bạn",
"ignore": "đã bỏ qua bạn",
"reblog": "đã đăng lại bài viết của bạn",
"transfer": "transfered steem",
"transfer": "steem được chuyển khoản",
"comingsoon": "Sắp có tính năng bảng xếp hạng!",
"notification": "Thông báo",
"leaderboard": "Bảng xếp hạng",
"epoint": "Points",
"epoint": "Các điểm thưởng",
"leaderboard_title": "Người dùng tiêu biểu hàng ngày",
"recent": "Gần đây",
"yesterday": "Hôm qua",
@ -32,28 +32,35 @@
"older_then": "Cách đây hơn 1 tháng"
},
"points": {
"post": "Post",
"comment": "Comment",
"checkin": "Check-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",
"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."
"post": "Bài đăng",
"comment": "Câu bình luận",
"checkin": "Đăng ký vào",
"vote": "Bình chọn",
"reblog": "Đăng lại",
"login": "Đăng nhập",
"incoming_transfer_title": "Chuyển khoản đang được chuyển đến",
"outgoing_transfer_title": "Chuyển khoản đang được chuyển đi",
"checkin_extra": "Thưởng",
"delegation": "Sự ủy thác",
"delegation_title": "Phần thưởng được ủy thác",
"delegation_desc": "Bạn có thể kiếm 1 điểm mỗi ngày cho mỗi 100sp ủy thác",
"post_title": "Các điểm cho bài viết",
"comment_title": "Các điểm cho câu bình luận",
"vote_title": "Các điểm cho bình chọn",
"reblog_title": "Các điểm cho đăng lại bài viết",
"login_title": "Các điểm thưởng cho đăng nhập",
"checkin_title": "Các điểm thưởng cho việc sử dụng",
"checkin_extra_title": "Phần thưởng cho việc sử dụng",
"no_activity": "Không có hoạt động nào ở đây!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "Bạn có thể kiếm điểm thưởng bằng cách đăng bài thường xuyên. Mỗi lần đăng bài bạn được 15 điểm.",
"comment_desc": "Mỗi câu bình luận bạn đưa ra không chỉ giúp bạn tăng lượng khán giả và kết bạn mà còn giúp bạn kiếm được thêm 5 điểm.",
"checkin_desc": "Đăng ký trên ứng dụng eSteem cho bạn 0,25 điểm và giúp bạn kết nối với những người bạn của bạn.",
"vote_desc": "Bằng cách bình chọn, bạn không chỉ trao phần thưởng cho những người sáng tạo nội dung và thể hiện sự đánh giá cao của bạn mà còn kiếm được 0,01 x điểm số bình chọn.",
"reblog_desc": " Chia sẻ bài viết nào bạn thích với bạn bè của bạn và kiếm được 1 điểm.",
"login_desc": "Khi bạn đăng nhập vào ứng dụng eSteem, tự động bạn có được 100 điểm thưởng.",
"checkin_extra_desc": "Việc sử dụng ứng dụng lâu dài sẽ cho bạn thêm nhiều cơ hội kiếm thêm 10 điểm thưởng, hãy tích cực hơn và kiếm thêm nhiều điểm thưởng hơn."
},
"messages": {
"comingsoon": "Tính năng tin nhắn sẽ được cập nhật sớm!"
@ -83,33 +90,33 @@
},
"settings": {
"settings": "Cài đặt",
"general": "General",
"general": "Tổng quan",
"currency": "Tiền tệ",
"language": "Ngôn ngữ",
"server": "Máy chủ",
"dark_theme": "Chế độ tối",
"push_notification": "Đẩy thông báo",
"notification": {
"follow": "Follow",
"vote": "Vote",
"comment": "Comment",
"mention": "Mention",
"reblog": "Reblog",
"transfers": "Transfers"
"follow": "Theo dõi",
"vote": "Bình chọn",
"comment": "Câu bình luận",
"mention": "Nhắc đến",
"reblog": "Đăng lại",
"transfers": "Những phần chuyển khoản"
},
"pincode": "Mã PIN",
"reset": "Thiết lập lại",
"nsfw_content": "NSFW Content",
"send_feedback": "Send Feedback",
"send": "Send",
"default_footer": "Default Footer",
"nsfw_content": "Nội dung NSFW (nội dung không phù hợp để xem trong môi trường làm việc hoặc gần trẻ em)",
"send_feedback": "Gửi phản hồi",
"send": "Gửi",
"default_footer": "Phần mặc định ở cuối trang",
"nsfw": {
"always_show": "Always show",
"always_hide": "Always hide",
"always_warn": "Always warn"
"always_show": "Luôn hiển thị",
"always_hide": "Luôn ẩn",
"always_warn": "Luôn cảnh báo"
},
"feedback_success": "Email successfully open",
"feedback_fail": "Email client could not open"
"feedback_success": "Email đã được mở thành công",
"feedback_fail": "Email mà khách hàng không thể mở"
},
"voters": {
"voters_info": "Thông tin người bình chọn",
@ -125,7 +132,7 @@
"cancel": "huỷ",
"login": "ĐĂNG NHẬP",
"steemconnect_description": "Nếu bạn không muốn giữ mật khẩu của mình được mã hóa và lưu trên thiết bị của mình, bạn có thể sử dụng Steemconnect.",
"steemconnect_fee_description": "Steemconnect may charge some fees from your reward transactions"
"steemconnect_fee_description": "Steemconnect có thể tính một số khoản phí từ các giao dịch phần thưởng của bạn"
},
"home": {
"feed": "Nguồn cấp dữ liệu",
@ -161,8 +168,8 @@
"reply_placeholder": "Bạn muốn viết gì về bài viết trên?",
"publish": "Đăng bài",
"reply": "Trả lời",
"open_gallery": "Open Gallery",
"capture_photo": "Capture a photo"
"open_gallery": "Thư viện mở",
"capture_photo": "Chụp ảnh"
},
"pincode": {
"enter_text": "Nhập mã PIN để mở khóa",
@ -172,14 +179,14 @@
},
"alert": {
"success": "Thành công!",
"successful": "Successful",
"successful": "Thành công",
"allRead": "Đã đánh dấu tất cả các thông báo là đã đọc",
"claim_reward_balance_ok": "Số dư tiền thưởng đã được nhận",
"fail": "Thất bại!",
"move": "Move",
"move_question": "Are you sure to move to drafts?",
"move": "Di chuyển",
"move_question": "Bạn có chắc chắn để chuyển đến những bản dự thảo?",
"success_shared": "Bài viết của bạn đã được chia sẻ thành công",
"success_moved": "Moved to draft",
"success_moved": "Được chuyển đến bản dự thảo",
"permission_denied": "Quyền truy cập bị từ chối",
"permission_text": "Vui lòng mở cài đặt điện thoại và thay đổi quyền truy cập cho ứng dụng eSteem.",
"success_rebloged": "Đã đăng lại bài viết!",
@ -187,20 +194,21 @@
"warning": "Cảnh báo",
"invalid_pincode": "Mã PIN không hợp lệ, vui lòng kiểm tra và thử lại.",
"remove_alert": "Are you sure want to remove?",
"clear_alert": "Are you sure you want to clear?",
"clear_user_alert": "Are you sure you want to clear all user data?",
"clear": "Clear",
"clear_alert": "Bạn có chắc chắn muốn xóa không?",
"clear_user_alert": "Bạn có chắc chắn muốn xóa tất cả dữ liệu của bạn?",
"clear": "Xóa",
"cancel": "Huỷ",
"delete": "Xóa",
"copied": "Đã sao chép!",
"no_internet": "Không có kết nối!",
"confirm": "Confirm",
"removed": "Removed"
"confirm": "Xác nhận",
"removed": "Đã xóa",
"same_user": "Người dùng này đã được thêm vào danh sách"
},
"post": {
"reblog_alert": "Bạn có chắc chắn muốn đăng lại không?",
"removed_hint": "The post was removed by",
"copy_link": "Copy Link"
"removed_hint": "Bài viết đã bị xóa bởi",
"copy_link": "Sao chép liên kết"
},
"drafts": {
"title": "Bản nháp",
@ -209,7 +217,7 @@
"deleted": "Bản nháp đã bị xóa"
},
"schedules": {
"title": "Schedules",
"title": "Những lịch trình",
"empty_list": "Không có gì ở đây",
"deleted": "Các bài viết được hẹn lịch đã bị xóa",
"move": "Di chuyển đến bản nháp",
@ -221,7 +229,7 @@
"empty_list": "Không có gì ở đây",
"deleted": "Trang đánh dấu đã được gỡ bỏ",
"search": "Tìm kiếm trong trang đánh dấu",
"added": "Added to bookmarks",
"added": "Được thêm vào phần đánh dấu trang",
"add": "Thêm vào dấu trang"
},
"favorites": {
@ -256,30 +264,46 @@
"no_existing_post": "Hiện tại không có bài viết nào"
},
"search": {
"posts": "Posts",
"comments": "Comments"
"posts": "Các bài đăng",
"comments": "Các lời bình luận"
},
"comment_filter": {
"trending": "trending",
"reputation": "reputation",
"votes": "votes",
"age": "age"
"trending": "đang thịnh hành",
"reputation": "uy tín",
"votes": "những bình chọn",
"age": "tuổi"
},
"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",
"transfer_token": "Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"to": "Đến",
"amount": "Số lượng",
"memo": "Bản ghi nhớ",
"information": "Bạn có chắc chắn chuyển tiền?",
"amount_desc": "Số dư",
"memo_desc": "Bản ghi nhớ này được công khai",
"to_placeholder": "Tên người dùng",
"memo_placeholder": "Nhập ghi chú của bạn vào đây",
"transfer_token": "Chuyển khoản",
"points": "Chuyển điểm",
"transfer_to_saving": "Chuyển đến phần tiết kiệm",
"powerUp": "Tăng lên",
"withdraw_to_saving": "Rút về phần tiết kiệm",
"steemconnect_title": "Chuyển khoản Steemconnect",
"next": "KẾ TIẾP",
"withdraw_steem": "Rút Steem",
"withdraw_sbd": "Rút đô la Steem",
"delegate": "Ủy thác",
"power_down": "Giảm xuống",
"account": "Tài khoản",
"destination_accounts": "(Những) tài khoản mục tiêu",
"amount_information": "Kéo thanh trượt để điều chỉnh số lượng",
"save": "Lưu lại",
"percent": "Tỷ lệ phần trăm",
"percent_information": "Tỷ lệ phần trăm sự giảm nguồn tiền của tài khoản này",
"auto_vests": "Tự động tăng nguồn tiền cho tài khoản đích",
"stop": "Dừng lại",
"stop_information": "Bạn có chắn muốn dừng lại?",
"incoming_funds": "Các quỹ sắp có",
"sc_power_down_error": "Kết nối Steem để thiết lập LệnhRútCổphần chưa được triển khai.",
"estimated_weekly": "Dự kiến hàng tuần"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "Se o da o loju pe o fe ṣe eda oro yi?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "您确定想要转发?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

View File

@ -38,7 +38,12 @@
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegation_title": "Delegation reward",
"delegation_desc": "You can earn 1 point per day for each 100sp delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
@ -47,6 +52,8 @@
"checkin_title": "Points for usage",
"checkin_extra_title": "Usage bonus",
"no_activity": "No activity here!",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"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.",
@ -195,7 +202,8 @@
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed"
"removed": "Removed",
"same_user": "This user already added to list"
},
"post": {
"reblog_alert": "您確定想要轉發嗎?",
@ -276,10 +284,27 @@
"to_placeholder": "Username",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Points Transfer",
"transfer_to_saving": "Transfer To Saving",
"powerUp": "Power Up",
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Steemconnect Transfer",
"next": "NEXT"
"next": "NEXT",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"delegate": "Delegate",
"power_down": "Power Down",
"account": "Account",
"destination_accounts": "Destination Account(s)",
"amount_information": "Drag the slider to adjust to amount",
"save": "Save",
"percent": "Percentage",
"percent_information": "Percentage of power down to this account",
"auto_vests": "Automatically power up to the target account",
"stop": "Stop",
"stop_information": "Are you sure to stop?",
"incoming_funds": "Incoming Funds",
"sc_power_down_error": "Steem connect setWithdrawVestingRoute not implemented yet.",
"estimated_weekly": "Estimated Weekly"
}
}

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