Merge branch 'master' into claim-bug

This commit is contained in:
uğur erdal 2019-02-06 18:24:19 +03:00 committed by GitHub
commit fed675debd
93 changed files with 1685 additions and 1044 deletions

View File

@ -9,133 +9,133 @@
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>7</integer>
<integer>3</integer>
</dict>
<key>CodePush.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>8</integer>
<integer>4</integer>
</dict>
<key>DoubleConversion.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>9</integer>
<integer>5</integer>
</dict>
<key>FLAnimatedImage.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>10</integer>
<integer>6</integer>
</dict>
<key>Folly.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>11</integer>
<integer>7</integer>
</dict>
<key>JWT.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>13</integer>
<integer>9</integer>
</dict>
<key>Pods-eSteem-tvOS.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>15</integer>
<integer>11</integer>
</dict>
<key>Pods-eSteem-tvOSTests.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>16</integer>
<integer>12</integer>
</dict>
<key>Pods-eSteem.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>14</integer>
<integer>10</integer>
</dict>
<key>Pods-eSteemTests.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>17</integer>
<integer>13</integer>
</dict>
<key>QBImagePickerController-QBImagePicker.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>19</integer>
<integer>15</integer>
</dict>
<key>QBImagePickerController.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>18</integer>
<integer>14</integer>
</dict>
<key>RNImageCropPicker.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>22</integer>
<integer>18</integer>
</dict>
<key>RSKImageCropper.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>23</integer>
<integer>19</integer>
</dict>
<key>SDWebImage.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>24</integer>
<integer>20</integer>
</dict>
<key>SSZipArchive.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>25</integer>
<integer>21</integer>
</dict>
<key>glog.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>12</integer>
<integer>8</integer>
</dict>
<key>react-native-fast-image.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>20</integer>
<integer>16</integer>
</dict>
<key>react-native-version-number.xcscheme</key>
<dict>
<key>isShown</key>
<false/>
<key>orderHint</key>
<integer>21</integer>
<integer>17</integer>
</dict>
</dict>
<key>SuppressBuildableAutocreation</key>

View File

@ -1,5 +1,7 @@
import React from 'react';
import { View, Text, TouchableHighlight } from 'react-native';
import {
View, Text, TouchableHighlight, ActivityIndicator,
} from 'react-native';
// External components
import ModalDropdown from 'react-native-modal-dropdown';
@ -49,6 +51,7 @@ const DropdownButtonView = ({
options,
style,
noHighlight,
isLoading,
}) => (
<View style={[styles.container, dropdownButtonStyle]}>
<ModalDropdown
@ -65,7 +68,7 @@ const DropdownButtonView = ({
renderRow={(rowData, rowID, highlighted) => renderDropdownRow(rowData, rowID, highlighted, rowTextStyle, noHighlight)
}
>
{isHasChildIcon && (
{isHasChildIcon && !isLoading ? (
<View style={[styles.iconWrapper, childIconWrapperStyle && childIconWrapperStyle]}>
<Icon
style={[styles.dropdownIcon, iconStyle]}
@ -73,6 +76,8 @@ const DropdownButtonView = ({
name={!iconName ? 'arrow-drop-down' : iconName}
/>
</View>
) : isHasChildIcon && (
<ActivityIndicator />
)}
</ModalDropdown>
{!children && !isHasChildIcon && (

View File

@ -0,0 +1,3 @@
import ErrorBoundary from './view/errorBoundaryView';
export { ErrorBoundary };

View File

@ -0,0 +1,32 @@
import React, { Component, Fragment } from 'react';
import Text from 'react-native';
export default class ErrorBoundary extends Component {
constructor(props) {
super(props);
this.state = { hasError: false };
}
componentDidCatch(error, info) {
if (__DEV__) {
return;
}
this.setState({ hasError: true, info, error });
}
render() {
const { hasError, info, error } = this.state;
const { children } = this.props;
if (hasError) {
return (
<Fragment>
<Text>Something went wrong.</Text>
<Text>{error}</Text>
<Text>{info}</Text>
</Fragment>
);
}
return children;
}
}

View File

@ -40,7 +40,7 @@ class SettingsItemView extends PureComponent {
case 'dropdown':
return (
<DropdownButton
key={actionType}
key={options[selectedOptionIndex]}
defaultText={defaultText || options[selectedOptionIndex]}
dropdownButtonStyle={styles.dropdownButtonStyle}
selectedOptionIndex={selectedOptionIndex}

View File

@ -0,0 +1,3 @@
import ToastNotification from './view/toastNotificaitonView';
export { ToastNotification };

View File

@ -0,0 +1,84 @@
import React, { Component } from 'react';
import { Animated, TouchableOpacity, Text } from 'react-native';
// Styles
import styles from './toastNotificationStyles';
class ToastNotification extends Component {
/* Props
* ------------------------------------------------
* @prop { type } name - Description....
*/
constructor(props) {
super(props);
this.state = {
animatedValue: new Animated.Value(0),
};
}
// Component Life Cycles
componentWillMount() {
this._showToast();
}
// Component Functions
_showToast() {
const { duration } = this.props;
const animatedValue = new Animated.Value(0);
this.setState({ animatedValue });
Animated.timing(animatedValue, { toValue: 1, duration: 350 }).start();
if (duration) {
this.closeTimer = setTimeout(() => {
this._hideToast();
}, duration);
}
}
_hideToast() {
const { animatedValue } = this.state;
const { onHide } = this.props;
Animated.timing(animatedValue, { toValue: 0.0, duration: 350 }).start(() => {
if (onHide) onHide();
});
if (this.closeTimer) {
clearTimeout(this.closeTimer);
}
}
render() {
const {
text, textStyle, style, onPress, isTop,
} = this.props;
const { animatedValue } = this.state;
const outputRange = isTop ? [-50, 0] : [50, 0];
const y = animatedValue.interpolate({
inputRange: [0, 1],
outputRange,
});
const position = isTop ? { top: 100 } : { bottom: 100 };
return (
<TouchableOpacity disabled={!onPress} onPress={() => onPress && onPress()}>
<Animated.View
style={{
...styles.container,
...style,
...position,
opacity: animatedValue,
transform: [{ translateY: y }],
}}
>
<Text style={[styles.text, textStyle]}>{text}</Text>
</Animated.View>
</TouchableOpacity>
);
}
}
export default ToastNotification;

View File

@ -0,0 +1,28 @@
import EStyleSheet from 'react-native-extended-stylesheet';
export default EStyleSheet.create({
container: {
position: 'absolute',
zIndex: 9999,
justifyContent: 'center',
alignItems: 'center',
alignSelf: 'center',
maxWidth: '$deviceWidth',
minWidth: '$deviceWidth / 1.9',
height: 44,
borderRadius: 30,
backgroundColor: '$primaryDarkText',
margin: 5,
shadowOffset: {
height: 5,
},
shadowColor: '#5f5f5fbf',
shadowOpacity: 0.3,
elevation: 3,
},
text: {
color: 'white',
fontWeight: 'bold',
fontSize: 14,
},
});

View File

@ -1,8 +1,9 @@
import React, { Component } from 'react';
import { Alert } from 'react-native';
import { connect } from 'react-redux';
import { injectIntl } from 'react-intl';
import { toastNotification } from '../../../redux/actions/uiAction';
// Dsteem
import { getAccount, claimRewardBalance } from '../../../providers/steem/dsteem';
@ -60,7 +61,9 @@ class WalletContainer extends Component {
|| parseToken(account.reward_vesting_steem) > 0;
_claimRewardBalance = async () => {
const { currentAccount, intl, pinCode } = this.props;
const {
currentAccount, intl, pinCode, dispatch,
} = this.props;
const { isClaiming } = this.state;
let isHasUnclaimedRewards;
@ -86,12 +89,13 @@ class WalletContainer extends Component {
.then(() => getAccount(currentAccount.name))
.then((account) => {
this._getWalletData(account && account[0]);
if (isHasUnclaimedRewards) {
Alert.alert(
intl.formatMessage({
id: 'alert.claim_reward_balance_ok',
}),
dispatch(
toastNotification(
intl.formatMessage({
id: 'alert.claim_reward_balance_ok',
}),
),
);
}
})
@ -99,15 +103,21 @@ class WalletContainer extends Component {
this._getWalletData(account && account[0]);
this.setState({ isClaiming: false });
})
.catch((err) => {
.catch(() => {
this.setState({ isClaiming: false });
Alert.alert(err);
dispatch(
toastNotification(
intl.formatMessage({
id: 'alert.fail',
}),
),
);
});
};
_handleOnWalletRefresh = () => {
const { selectedUser } = this.props;
const { selectedUser, dispatch, intl } = this.props;
this.setState({ isRefreshing: true });
getAccount(selectedUser.name)
@ -115,8 +125,14 @@ class WalletContainer extends Component {
this._getWalletData(account && account[0]);
this.setState({ isRefreshing: false });
})
.catch((err) => {
Alert.alert(err);
.catch(() => {
dispatch(
toastNotification(
intl.formatMessage({
id: 'alert.fail',
}),
),
);
this.setState({ isRefreshing: false });
});
};

View File

@ -1,6 +1,6 @@
{
"wallet": {
"curation_reward": "Hadiah kurasi",
"curation_reward": "Gaji kurasi",
"author_reward": "Upah Keupoe",
"comment_benefactor_reward": "Gaji Komentar Keupoe App",
"claim_reward_balance": "Klèm Gaji Keunubah",
@ -20,7 +20,7 @@
"ignore": "hanapeureumeun dröen",
"reblog": "postingan dröen ka di reblog",
"comingsoon": "Papeun ranking akan seugeura lheuh!",
"notification": "Haba",
"notification": "Bithé",
"leaderboard": "Papeun Rangking",
"leaderboard_title": "Ureung Palèng Lè pakek",
"recent": "Ataban nyoë",
@ -116,7 +116,7 @@
"reply": "Balah"
},
"pincode": {
"enter_text": "Pasöe gunci keu buka",
"enter_text": "Pasöe gunci untuk buka",
"set_new": "Pasöe pin barô",
"write_again": "Tulèh loem",
"forgot_text": "Oh, lôn tuwoe nyan..."
@ -135,7 +135,9 @@
"invalid_pincode": "Salah pin, cie neu test loëm.",
"remove_alert": "Peu yakin neuk sampóh?",
"cancel": "Batai",
"delete": "Sampóh"
"delete": "Sampóh",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Peu yakin neuh, neu neuk reblog?"
@ -158,7 +160,9 @@
"load_error": "Han lëupah peutamoeng ata lam konsep",
"empty_list": "Hana sapëuna",
"deleted": "Pëunanda buku kalhëuh meusampöh",
"search": "Mita lam buku pëunanda"
"search": "Mita lam buku pëunanda",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Palèng galak",
@ -184,10 +188,11 @@
"copy": "copy link",
"reblog": "neukirem ulang blog",
"reply": "balah",
"share": "bagi"
"share": "bagi",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Hana uréung pakék",
"no_existing_post": "Hana haba sapeu"
}
}

View File

@ -74,7 +74,7 @@
"signup": "إنشاء حساب",
"signin_title": "للحصول على جميع فوائد إستخدم esteem",
"username": "إسم المستخدم",
"password": "أدخل دكلمة المرور أو Wif",
"password": "أدخل دكلمة المرور أو WIF",
"description": "يتم الاحتفاظ ببيانات اعتماد المستخدم محليًا على الجهاز. تتم إزالة بيانات الاعتماد عند تسجيل الخروج!",
"cancel": "إلغاء",
"login": "تسجيل الدخول",
@ -135,7 +135,9 @@
"invalid_pincode": "الرقم السري غير صالح، يرجى التحقق والمحاولة مرة أخرى.",
"remove_alert": "هل أنت متأكد تريد الإزالة؟",
"cancel": "إلغاء",
"delete": "حذف"
"delete": "حذف",
"copied": "تم النسخ!",
"no_internet": "لا يوجد اتصال!"
},
"post": {
"reblog_alert": "هل أنت متأكد من رغبتك في إعادة التدوين؟"
@ -158,7 +160,9 @@
"load_error": "لا يمكن تحميل الإشارات المرجعية",
"empty_list": "لا شيء هنا",
"deleted": "تم مسح الإشاراة المرجعية",
"search": "البحث في الإشارات المرجعية"
"search": "البحث في الإشارات المرجعية",
"added": "تمت الإضافة إلى الإشارات المرجعية",
"add": "إضافة إلى الإشارات المرجعية"
},
"favorites": {
"title": "المفضلات",
@ -184,10 +188,11 @@
"copy": "أنسخ الرابط",
"reblog": "إعادة التدوين",
"reply": "الرد",
"share": "شارك"
"share": "شارك",
"bookmarks": "إضافة إلى الإشارات المرجعية"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "لا يوجد أي مستخدم حاليا",
"no_existing_post": "لا يوجد أي منشور حالياً"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -1,8 +1,8 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"curation_reward": "কিউরেটর পুরস্কার",
"author_reward": "Whats up everyone",
"comment_benefactor_reward": "Comment Benefactor Reward",
"comment_benefactor_reward": "মন্তব্য উপকারিতার পুরস্কার",
"claim_reward_balance": "Claim Reward Balance",
"transfer": "Transfer",
"transfer_to_vesting": "Transfer To Vesting",
@ -47,7 +47,7 @@
"voting_power": "Voting power",
"login_to_see": "Login to see",
"havent_commented": "haven't commented anything yet",
"havent_posted": "haven't posted anything yet",
"havent_posted": "আপনি এখনো কিছু পোস্ট করেন নি",
"steem_power": "Steem Power",
"next_power_text": "Next power down is in",
"days": "days",
@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Ungültiger PIN-Code, bitte überprüfen und erneut versuchen.",
"remove_alert": "Bist du sicher, dass du es entfernen möchtest?",
"cancel": "Abbrechen",
"delete": "Entfernen"
"delete": "Entfernen",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Möchtest du diesen Beitrag wirklich teilen?"
@ -158,7 +160,9 @@
"load_error": "Lesezeichen können nicht geladen werden",
"empty_list": "Keine Einträge vorhanden",
"deleted": "Lesezeichen entfernt",
"search": "In Lesezeichen suchen"
"search": "In Lesezeichen suchen",
"add": "zu Lesezeichen hinzufügen",
"added": "Added to bookmars"
},
"favorites": {
"title": "Favoriten",
@ -184,10 +188,11 @@
"copy": "Link kopieren",
"reblog": "Teilen",
"reply": "Antworten",
"share": "Teilen"
"share": "Teilen",
"bookmarks": "zu Lesezeichen hinzufügen"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Kein vorhandener Benutzer",
"no_existing_post": "Kein vorhandener Beitrag"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -5,10 +5,10 @@
"comment_benefactor_reward": "Recompensa de comentario benefactor",
"claim_reward_balance": "Reclamar balance de recompensa",
"transfer": "Transferir",
"transfer_to_vesting": "Transferir a ahorros",
"transfer_to_vesting": "Transferir a Sp (Vesting)",
"transfer_from_savings": "Transferir desde ahorros",
"withdraw_vesting": "Power down",
"fill_order": "Llenar orden"
"fill_order": "Completar orden"
},
"notification": {
"vote": "le gusta tu publicación",
@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Está seguro que quiere borrar?",
"cancel": "Cancelar",
"delete": "Borrar"
"delete": "Borrar",
"copied": "Copiado!",
"no_internet": "Sin conexión!"
},
"post": {
"reblog_alert": "Está seguro que quiere rebloguear?"
@ -158,7 +160,9 @@
"load_error": "No pudo cargar marcadores",
"empty_list": "Nada aquí",
"deleted": "Marcador removido",
"search": "Buscar en marcadores"
"search": "Buscar en marcadores",
"added": "Agregado a favoritos",
"add": "Añadir a favoritos"
},
"favorites": {
"title": "Favoritos",
@ -181,13 +185,14 @@
"payout_date": "Pago"
},
"post_dropdown": {
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"copy": "copiar enlace",
"reblog": "rebloguear",
"reply": "responder",
"share": "compartir",
"bookmarks": "añadir a favoritos"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Usuario no existe",
"no_existing_post": "Publicación no existe"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -1,193 +1,198 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"author_reward": "Author Reward",
"comment_benefactor_reward": "Comment Benefactor Reward",
"claim_reward_balance": "Claim Reward Balance",
"transfer": "Transfer",
"transfer_to_vesting": "Transfer To Vesting",
"transfer_from_savings": "Transfer From Savings",
"withdraw_vesting": "Power Down",
"fill_order": "Fill Order"
"curation_reward": "پاداش جمع آوری شده",
"author_reward": "پاداش نویسنده",
"comment_benefactor_reward": "پاداش متعلق به نویسنده نظر",
"claim_reward_balance": "دریافت پاداش",
"transfer": "انتقال دادن",
"transfer_to_vesting": "انتقال برای سرمایه گذاری",
"transfer_from_savings": "انتقال از پس انداز",
"withdraw_vesting": "کم کردن قدرت",
"fill_order": "سفارش"
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"comingsoon": "Leaderboard feature is coming soon!",
"notification": "Notifications",
"leaderboard": "Leaderboard",
"leaderboard_title": "Daily Top User",
"recent": "Recent",
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"vote": "مطلب شما را پسند کرد",
"unvote": "رأی‌ خود را پس گرفت",
"reply": "به مطلب شما پاسخ داد",
"mention": "شما را خطاب کرد",
"follow": "شما را دنبال میکند",
"unfollow": "شما را دنبال نمیکند",
"ignore": "شما را نادیده گرفته",
"reblog": "مطلب شما را به اشتراک گذاشت",
"comingsoon": "جدول رده بندی به زودی ارائه خواهد شد!",
"notification": "اطلاعیه ها",
"leaderboard": "جدول رده بندی",
"leaderboard_title": "بهترین کاربران روز",
"recent": "اخیر",
"yesterday": "دیروز",
"this_week": "این هفته",
"this_month": "این ماه",
"older_then": "قدیمی تر از 1 ماه"
},
"messages": {
"comingsoon": "Messages feature is coming soon!"
"comingsoon": "قابلیت ارسال پیام به زودی ارائه خواهد شد!"
},
"profile": {
"following": "Following",
"follower": "Follower",
"following": "دنبال میکنید",
"follower": "دنبال کنندگان",
"post": "Post",
"details": "Profile Details",
"comments": "Comments",
"replies": "Replies",
"wallet": "Wallet",
"wallet_details": "Wallet Details",
"unclaimed_rewards": "Unclaimed Rewards",
"full_in": "Full in",
"hours": "hours",
"voting_power": "Voting power",
"login_to_see": "Login to see",
"havent_commented": "haven't commented anything yet",
"havent_posted": "haven't posted anything yet",
"steem_power": "Steem Power",
"next_power_text": "Next power down is in",
"days": "days",
"day": "day",
"steem_dollars": "Steem Dollars",
"savings": "Savings"
"details": "جزئیات نمایه",
"comments": "نظرات",
"replies": "پاسخ‌ها",
"wallet": "کیف پول",
"wallet_details": "جزئیات کیف پول",
"unclaimed_rewards": "جوایز دریافت نشده",
"full_in": "کامل در",
"hours": "ساعت ها",
"voting_power": "قدرت رأی‌ دهی",
"login_to_see": "ورود به سیستم برای دیدن",
"havent_commented": "هنوز نظری نداده",
"havent_posted": "هنوز مطلبی ننوشته اید",
"steem_power": "قدرت استیم",
"next_power_text": "روز باقی مانده تا کاهش قدرت،",
"days": "روزها",
"day": "روز",
"steem_dollars": "دلار استیم",
"savings": "پس انداز"
},
"settings": {
"settings": "Settings",
"currency": "Currency",
"language": "Language",
"server": "Server",
"dark_theme": "Dark Theme",
"push_notification": "Push Notification",
"settings": "تنظیمات",
"currency": "پول در گردش",
"language": "زبان",
"server": "سرور",
"dark_theme": "ظاهر تیره",
"push_notification": "اعلام یادآوری ها",
"pincode": "Pincode",
"reset": "Reset"
"reset": "راه اندازی مجدد"
},
"voters": {
"voters_info": "Voters Info",
"no_user": "No user found."
"voters_info": "اطلاعات رأی دهندگان",
"no_user": "کاربری یافت نشد."
},
"login": {
"signin": "Sign in",
"signup": "Sign up",
"signin_title": "To get all the benefits of using eSteem",
"username": "Username",
"password": "Password or WIF",
"description": "User credentials are kept locally on the device. Credentials are removed upon logout!",
"cancel": "cancel",
"login": "LOGIN",
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect."
"signin": "ورود",
"signup": "ثبت‌نام کنید",
"signin_title": "برای دریافت تمام مزایای استفاده از استیم",
"username": "نام کاربری",
"password": "رمز عبور و یا WIF",
"description": "مدارک کاربر به طور محلی روی دستگاه نگهداری می‌شود. در هنگام خروج، مدارک حذف می‌شود!",
"cancel": "انصراف",
"login": "ورود به سیستم",
"steemconnect_description": "اگر نمی خواهید رمز عبورتان رمزنگاری و در دستگاهتان ذخیره شود، میتوانید از Steemconnect استفاده کنید."
},
"home": {
"feed": "Feed",
"popular": "Popular"
"feed": "خبرنامه",
"popular": "مورد علاقه"
},
"side_menu": {
"profile": "Profile",
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"drafts": "Drafts",
"schedules": "Schedules",
"gallery": "Gallery",
"settings": "Settings",
"add_account": "Add Account",
"logout": "Logout",
"cancel": "Cancel",
"logout_text": "Are you sure you want to logout?"
"profile": "نمایه",
"bookmarks": "صفحات محبوب",
"favorites": "برگزیده‌ها",
"drafts": "پیشنویس ها",
"schedules": "جدول زمانی",
"gallery": "گالری",
"settings": "تنظیمات",
"add_account": "اضافه کردن حساب کاربری",
"logout": "خروج از حساب",
"cancel": "صرف نظر",
"logout_text": "آیا مطمئنید که می‌خواهید خارج شوید؟"
},
"header": {
"title": "Login to customize your feed",
"search": "Search..."
"title": "برای شخصی سازی فید های خود وارد شوید",
"search": "جستجو..."
},
"basic_header": {
"publish": "Publish",
"search": "Search",
"update": "Update",
"reply": "Reply"
"publish": "نشر",
"search": "جستجو",
"update": "به‌روزآوری",
"reply": "پاسخ دادن"
},
"editor": {
"title": "Title",
"tags": "tags",
"default_placeholder": "What would you like to write about today?",
"reply_placeholder": "What would you like to write about above post?",
"publish": "Publish",
"reply": "Reply"
"title": "تیتر",
"tags": "برچسب ها",
"default_placeholder": "امروز می خواهید چه مطلبی بنویسید؟",
"reply_placeholder": "در مورد پست فوق، چه چیزی میخواهید بنویسید؟",
"publish": "نشر",
"reply": "پاسخ دادن"
},
"pincode": {
"enter_text": "Enter pin to unlock",
"set_new": "Set new pin",
"write_again": "Write again",
"forgot_text": "Oh, I forgot it..."
"write_again": "دوباره بنویسید",
"forgot_text": "آه، فراموشش کردم..."
},
"alert": {
"success": "Success!",
"allRead": "Marked all notifications as read",
"claim_reward_balance_ok": "Reward balance claimed",
"fail": "Fail!",
"success_shared": "Your post succesfully shared",
"permission_denied": "Permission denied",
"permission_text": "Please, go to phone Settings and change eSteem app permissions.",
"success": "با موفقیت!",
"allRead": "علامت زدن تمام اعلانات به عنوان خوانده شده",
"claim_reward_balance_ok": "پاداش دریافت شده",
"fail": "ناموفق!",
"success_shared": "مطلب شما با موفقیت منتشر شد",
"permission_denied": "خطای دسترسی",
"permission_text": "لطفا به تنظیمات تلفن خود رفته و دسترسی eSteem را تغییر دهید.",
"success_rebloged": "Rebloged!",
"already_rebloged": "You have already reblogged!",
"warning": "Warning",
"already_rebloged": "شما قبلا به اشتراک گذاشته اید!",
"warning": "اخطار",
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"cancel": "لغو",
"delete": "پاک کردن",
"copied": "کپی شد!",
"no_internet": "اتصال برقرار نیست!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
"reblog_alert": "آیا مطمئن هستید که می‌خواهید به اشتراک بگذارید؟"
},
"drafts": {
"title": "Drafts",
"load_error": "Could not load drafts",
"empty_list": "Nothing here",
"deleted": "Draft deleted"
"title": "پیشنویس ها",
"load_error": "اشکال در بازکردن پیشنویس ها",
"empty_list": "هیچی اینجا نیست",
"deleted": "پیشنویس حذف شده"
},
"schedules": {
"title": "Scheduled Posts",
"empty_list": "Nothing here",
"deleted": "Scheduled post deleted",
"move": "Move to drafts",
"moved": "Moved to drafts"
"title": "مطالب برنامه ریزی شده",
"empty_list": "اینجا چیزی نیست",
"deleted": "پست های برنامه ریزی شده حذف شدند",
"move": "انتقال به پیشنویس",
"moved": "به پیشنویس ها منتقل شده"
},
"bookmarks": {
"title": "Bookmarks",
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"title": "صفحات محبوب",
"load_error": "اشکال در باز کردن صفحات محبوب",
"empty_list": "هیچی اینجا نیست",
"deleted": "از صفحهات محبوب حذف شد",
"search": "جستجوی درصفحات محبوب",
"added": "به صفحات مورد علاقه اضافه شد",
"add": "اضافه کردن به صفحات مورد علاقه"
},
"favorites": {
"title": "Favorites",
"load_error": "Could not load favorites",
"empty_list": "Nothing here",
"search": "Search in favorites"
"title": "برگزیده‌ها",
"load_error": "باز کردن علاقه مندی ها مقدور نیست",
"empty_list": "اینجا چیزی نیست",
"search": "جستجو در علاقمندیها"
},
"auth": {
"invalid_pin": "Invalid pin code, please check and try again",
"invalid_username": "Invalid username, please check and try again",
"already_logged": "You are already logged in, please try to add another account",
"invalid_credentials": "Invalid credentials, please check and try again",
"unknow_error": "Unknown error, please contact us at support@esteem.app"
"invalid_username": "نام کاربری نامعتبر، لطفا چک کنید و دوباره امتحان کنید",
"already_logged": "شما در حال حاظر وارد شده اید، لطفا با یک حساب کاربری دیگر تلاش کنید",
"invalid_credentials": "اعتبار نامه غیر معتبر، لطفا چک کنید و دوباره تلاش کنید",
"unknow_error": "خطای ناشناخته، لطفا با ادرس support@esteem.app با ما تماس بگیرید"
},
"payout": {
"potential_payout": "Potential Payout",
"promoted": "Promoted",
"author_payout": "Author Payout",
"curation_payout": "Curation Payout",
"payout_date": "Payout"
"potential_payout": "پرداخت های بالقوه",
"promoted": "ارتقا داده شده",
"author_payout": "پاداش نویسنده",
"curation_payout": "دستمزد حامیان",
"payout_date": "پرداخت"
},
"post_dropdown": {
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"copy": "کپی لینک",
"reblog": "اشتراک گذاری",
"reply": "پاسخ دادن",
"share": "درمیان گذاری",
"bookmarks": "اضافه کردن به صفحات مورد علاقه"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "کاربری موجود نیست",
"no_existing_post": "پستی موجود نیست"
}
}

View File

@ -1,173 +1,177 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"author_reward": "Author Reward",
"curation_reward": "Tarkastuspalkinto",
"author_reward": "Kirjoittajan palkinto",
"comment_benefactor_reward": "Comment Benefactor Reward",
"claim_reward_balance": "Claim Reward Balance",
"transfer": "Transfer",
"transfer": "Siirto",
"transfer_to_vesting": "Transfer To Vesting",
"transfer_from_savings": "Transfer From Savings",
"withdraw_vesting": "Power Down",
"fill_order": "Fill Order"
},
"notification": {
"vote": "likes your post",
"vote": "tykkää julkaisustasi",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"follow": "followed you",
"unfollow": "unfollowed you",
"reply": "vastasi julkaisuusi",
"mention": "mainitsi sinut",
"follow": "seurasi sinua",
"unfollow": "lopetti seuraamisesi",
"ignore": "ignored you",
"reblog": "reblogged your post",
"comingsoon": "Leaderboard feature is coming soon!",
"notification": "Notifications",
"leaderboard": "Leaderboard",
"leaderboard_title": "Daily Top User",
"recent": "Recent",
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"recent": "Viimeisimmät",
"yesterday": "Eilen",
"this_week": "Tällä viikolla",
"this_month": "Tässä kuussa",
"older_then": "Kuukautta vanhempi"
},
"messages": {
"comingsoon": "Messages feature is coming soon!"
},
"profile": {
"following": "Following",
"follower": "Follower",
"post": "Post",
"details": "Profile Details",
"comments": "Comments",
"replies": "Replies",
"wallet": "Wallet",
"wallet_details": "Wallet Details",
"following": "Seurataan",
"follower": "Seuraaja",
"post": "Julkaisut",
"details": "Profiilin Tiedot",
"comments": "Kommentit",
"replies": "Vastaukset",
"wallet": "Lompakko",
"wallet_details": "Lompakon tiedot",
"unclaimed_rewards": "Unclaimed Rewards",
"full_in": "Full in",
"hours": "hours",
"hours": "tuntia",
"voting_power": "Voting power",
"login_to_see": "Login to see",
"login_to_see": "Kirjaudu sisään nähdäksesi",
"havent_commented": "haven't commented anything yet",
"havent_posted": "haven't posted anything yet",
"steem_power": "Steem Power",
"next_power_text": "Next power down is in",
"days": "days",
"day": "day",
"steem_dollars": "Steem Dollars",
"savings": "Savings"
"days": "päivää",
"day": "päivä",
"steem_dollars": "Steem dollarit",
"savings": "Säästöt"
},
"settings": {
"settings": "Settings",
"currency": "Currency",
"language": "Language",
"server": "Server",
"dark_theme": "Dark Theme",
"push_notification": "Push Notification",
"pincode": "Pincode",
"reset": "Reset"
"settings": "Asetukset",
"currency": "Valuutta",
"language": "Kieli",
"server": "Palvelin",
"dark_theme": "Tumma teema",
"push_notification": "Push-ilmoitus",
"pincode": "PIN-koodi",
"reset": "Nollaa"
},
"voters": {
"voters_info": "Voters Info",
"no_user": "No user found."
"no_user": "Käyttäjää ei löytynyt."
},
"login": {
"signin": "Sign in",
"signup": "Sign up",
"signin": "Kirjaudu sisään",
"signup": "Rekisteröidy",
"signin_title": "To get all the benefits of using eSteem",
"username": "Username",
"username": "Käyttäjänimi",
"password": "Password or WIF",
"description": "User credentials are kept locally on the device. Credentials are removed upon logout!",
"cancel": "cancel",
"login": "LOGIN",
"cancel": "peruuta",
"login": "KIRJAUDU SISÄÄN",
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect."
},
"home": {
"feed": "Feed",
"popular": "Popular"
"feed": "Syöte",
"popular": "Suositut"
},
"side_menu": {
"profile": "Profile",
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"drafts": "Drafts",
"schedules": "Schedules",
"gallery": "Gallery",
"settings": "Settings",
"add_account": "Add Account",
"logout": "Logout",
"cancel": "Cancel",
"profile": "Profiili",
"bookmarks": "Kirjanmerkit",
"favorites": "Suosikit",
"drafts": "Luonnokset",
"schedules": "Aikataulut",
"gallery": "Galleria",
"settings": "Asetukset",
"add_account": "Lisää tili",
"logout": "Kirjaudu ulos",
"cancel": "Peruuta",
"logout_text": "Are you sure you want to logout?"
},
"header": {
"title": "Login to customize your feed",
"search": "Search..."
"title": "Kirjaudu mukauttaaksesi syötettäsi",
"search": "Haku..."
},
"basic_header": {
"publish": "Publish",
"search": "Search",
"update": "Update",
"reply": "Reply"
"publish": "Julkaise",
"search": "Haku",
"update": "Päivitä",
"reply": "Vastaa"
},
"editor": {
"title": "Title",
"tags": "tags",
"title": "Otsikko",
"tags": "tunnisteet",
"default_placeholder": "What would you like to write about today?",
"reply_placeholder": "What would you like to write about above post?",
"publish": "Publish",
"reply": "Reply"
"publish": "Julkaise",
"reply": "Vastaa"
},
"pincode": {
"enter_text": "Enter pin to unlock",
"set_new": "Set new pin",
"write_again": "Write again",
"forgot_text": "Oh, I forgot it..."
"enter_text": "Poista lukitus antamalla PIN-koodi",
"set_new": "Aseta PIN-koodi",
"write_again": "Kirjoita uudelleen",
"forgot_text": "Unohdin sen..."
},
"alert": {
"success": "Success!",
"allRead": "Marked all notifications as read",
"success": "Onnistui!",
"allRead": "Ilmoitukset merkattu luetuiksi",
"claim_reward_balance_ok": "Reward balance claimed",
"fail": "Fail!",
"success_shared": "Your post succesfully shared",
"permission_denied": "Permission denied",
"fail": "Virhe!",
"success_shared": "Julkaisu jaettu onnistuneesti",
"permission_denied": "Käyttö estetty",
"permission_text": "Please, go to phone Settings and change eSteem app permissions.",
"success_rebloged": "Rebloged!",
"success_rebloged": "Re-steemattu!",
"already_rebloged": "You have already reblogged!",
"warning": "Warning",
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"warning": "Varoitus",
"invalid_pincode": "Virheellinen PIN-koodi, tarkista koodi ja yritä uudelleen.",
"remove_alert": "Haluatko varmasti poistaa?",
"cancel": "Peruuta",
"delete": "Poista",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
},
"drafts": {
"title": "Drafts",
"load_error": "Could not load drafts",
"empty_list": "Nothing here",
"deleted": "Draft deleted"
"title": "Luonnokset",
"load_error": "Luonnoksia ei voitu ladata",
"empty_list": "Täällä ei ole mitään",
"deleted": "Luonnos poistettu"
},
"schedules": {
"title": "Scheduled Posts",
"empty_list": "Nothing here",
"deleted": "Scheduled post deleted",
"move": "Move to drafts",
"moved": "Moved to drafts"
"title": "Ajastetut julkaisut",
"empty_list": "Täällä ei ole mitään",
"deleted": "Ajastettu julkaisu poistettu",
"move": "Siirrä luonnoksiin",
"moved": "Siirretty luonnoksiin"
},
"bookmarks": {
"title": "Bookmarks",
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"title": "Kirjanmerkit",
"load_error": "Kirjanmerkkejä ei voitu ladata",
"empty_list": "Täällä ei ole mitään",
"deleted": "Kirjanmerkki poistettu",
"search": "Hae kirjanmerkkejä",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
"load_error": "Could not load favorites",
"empty_list": "Nothing here",
"search": "Search in favorites"
"title": "Suosikit",
"load_error": "Suosikkeja ei voitu ladata",
"empty_list": "Täällä ei ole mitään",
"search": "Hae suosikeista"
},
"auth": {
"invalid_pin": "Invalid pin code, please check and try again",
"invalid_pin": "Virheellinen PIN-koodi, tarkista koodi ja yritä uudelleen",
"invalid_username": "Invalid username, please check and try again",
"already_logged": "You are already logged in, please try to add another account",
"invalid_credentials": "Invalid credentials, please check and try again",
@ -178,13 +182,14 @@
"promoted": "Promoted",
"author_payout": "Author Payout",
"curation_payout": "Curation Payout",
"payout_date": "Payout"
"payout_date": "Palkkio"
},
"post_dropdown": {
"copy": "copy link",
"copy": "kopioi linkki",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"reply": "vastaa",
"share": "jaa",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -1,7 +1,7 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"author_reward": "Author Reward",
"curation_reward": "Curation gantimpala",
"author_reward": "Gantimpala ng may-akda",
"comment_benefactor_reward": "Comment Benefactor Reward",
"claim_reward_balance": "Claim Reward Balance",
"transfer": "Transfer",
@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -2,9 +2,9 @@
"wallet": {
"curation_reward": "Gains de curation",
"author_reward": "Gain de l'Auteur",
"comment_benefactor_reward": "Comment Benefactor Reward",
"comment_benefactor_reward": "Récompense pour Commentaire bienfaiteur",
"claim_reward_balance": "Réclamer le solde de récompense",
"transfer": "Transfer",
"transfer": "Transférer",
"transfer_to_vesting": "Transfer To Vesting",
"transfer_from_savings": "Transférer depuis mes Économies",
"withdraw_vesting": "Diminuer son influence",
@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Êtes-vous sûr de vouloir retirer ?",
"cancel": "Annuler",
"delete": "Supprimer"
"delete": "Supprimer",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Êtes-vous sûr de vouloir rebloguer ?"
@ -158,7 +160,9 @@
"load_error": "Impossible de charger les signets",
"empty_list": "Rien ici",
"deleted": "Signet supprimé",
"search": "Rechercher dans les signets"
"search": "Rechercher dans les signets",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favoris",
@ -184,10 +188,11 @@
"copy": "copier le lien",
"reblog": "rebloguer",
"reply": "répondre",
"share": "partager"
"share": "partager",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Utilisateur inexistant",
"no_existing_post": "Post inexistant"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "क्या आप इसे सच में हटाना चाहते हैं?",
"cancel": "रद्द करें",
"delete": "मिटा दें"
"delete": "मिटा दें",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "क्या आप सच में पुनः प्रसारित करना चाहते हैं?"
@ -158,7 +160,9 @@
"load_error": "पृष्टस्मृतियाँ भर न सका",
"empty_list": "कुछ नहीं है",
"deleted": "पृष्टस्मृतियाँ हट गया",
"search": "पृष्टस्मृतियाँ में खोजें"
"search": "पृष्टस्मृतियाँ में खोजें",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "पसंदीदा",
@ -184,7 +188,8 @@
"copy": "लिंक कापी करें",
"reblog": "reblog",
"reply": "जवाब दें",
"share": "साझा करें"
"share": "साझा करें",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -1,193 +1,198 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"author_reward": "Author Reward",
"comment_benefactor_reward": "Comment Benefactor Reward",
"claim_reward_balance": "Claim Reward Balance",
"transfer": "Transfer",
"transfer_to_vesting": "Transfer To Vesting",
"transfer_from_savings": "Transfer From Savings",
"withdraw_vesting": "Power Down",
"fill_order": "Fill Order"
"curation_reward": "Nagrada za Glasanje",
"author_reward": "Autorova Nagrada",
"comment_benefactor_reward": "Dobročinitelj Nagrada za Komentar",
"claim_reward_balance": "Preuzmi Nagradu",
"transfer": "Pošalji",
"transfer_to_vesting": "Prenesi u Vesting",
"transfer_from_savings": "Prebaci sa štednje",
"withdraw_vesting": "Smanji Moć",
"fill_order": "Ispuni Nalog"
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"comingsoon": "Leaderboard feature is coming soon!",
"notification": "Notifications",
"leaderboard": "Leaderboard",
"leaderboard_title": "Daily Top User",
"recent": "Recent",
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"vote": "se sviđa vaša objava",
"unvote": "je odglasao vašu objavu",
"reply": "je odgovorio na vašu objavu",
"mention": "te spomenuo\/la",
"follow": "te prati",
"unfollow": "te prestao\/la pratiti",
"ignore": "te ignorira",
"reblog": "je podijelio tvoju objavu",
"comingsoon": "Rang lista dolazi uskoro!",
"notification": "Obavijesti",
"leaderboard": "Rang lista",
"leaderboard_title": "Dnevni top korisnik",
"recent": "Nedavno",
"yesterday": "Jučer",
"this_week": "Ovog Tjedna",
"this_month": "Ovaj Mjesec",
"older_then": "Starije od mjesec dana"
},
"messages": {
"comingsoon": "Messages feature is coming soon!"
"comingsoon": "Značajka poruka dolazi uskoro!"
},
"profile": {
"following": "Following",
"follower": "Follower",
"post": "Post",
"details": "Profile Details",
"comments": "Comments",
"replies": "Replies",
"wallet": "Wallet",
"wallet_details": "Wallet Details",
"unclaimed_rewards": "Unclaimed Rewards",
"full_in": "Full in",
"hours": "hours",
"voting_power": "Voting power",
"login_to_see": "Login to see",
"havent_commented": "haven't commented anything yet",
"havent_posted": "haven't posted anything yet",
"steem_power": "Steem Power",
"next_power_text": "Next power down is in",
"days": "days",
"day": "day",
"steem_dollars": "Steem Dollars",
"savings": "Savings"
"following": "Pratim",
"follower": "Pratitelj",
"post": "Objave",
"details": "Detalji o profilu",
"comments": "Komentari",
"replies": "Odgovori",
"wallet": "Novčanik",
"wallet_details": "Detalji novčanika",
"unclaimed_rewards": "Nepreuzete nagrade",
"full_in": "Pun za",
"hours": "sati",
"voting_power": "Snaga glasa",
"login_to_see": "Prijavi se da vidiš",
"havent_commented": "još nije komentirao\/la",
"havent_posted": "još nije ništa objavio\/la",
"steem_power": "Steem Moć",
"next_power_text": "Sljedeće smanjenje snage je za",
"days": "dani",
"day": "dan",
"steem_dollars": "Steem Dolari",
"savings": "Štednja"
},
"settings": {
"settings": "Settings",
"currency": "Currency",
"language": "Language",
"settings": "Postavke",
"currency": "Valuta",
"language": "Jezik",
"server": "Server",
"dark_theme": "Dark Theme",
"push_notification": "Push Notification",
"dark_theme": "Tamna Tema",
"push_notification": "Push obavijesti",
"pincode": "Pincode",
"reset": "Reset"
"reset": "Resetiraj"
},
"voters": {
"voters_info": "Voters Info",
"no_user": "No user found."
"voters_info": "Informacije o glasačima",
"no_user": "Nije pronađen nijedan korisnik."
},
"login": {
"signin": "Sign in",
"signup": "Sign up",
"signin_title": "To get all the benefits of using eSteem",
"username": "Username",
"password": "Password or WIF",
"description": "User credentials are kept locally on the device. Credentials are removed upon logout!",
"cancel": "cancel",
"login": "LOGIN",
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect."
"signin": "Prijavite se",
"signup": "Registriraj se",
"signin_title": "Da bi ste dobili sve beneficije korištenja eSteem-a",
"username": "Korisničko ime",
"password": "Lozinka ili WIF",
"description": "Korisnički podatci se čuvaju lokalno na uređaju. Nakon odjave podatci za prijavu se uklanjaju!",
"cancel": "otkaži",
"login": "PRIJAVA",
"steemconnect_description": "Ako ne želite imati svoju lozinku kriptiranu i spremljenu na vašem uređaju, možete koristiti Steemconnect."
},
"home": {
"feed": "Feed",
"popular": "Popular"
"feed": "Novosti",
"popular": "Popularno"
},
"side_menu": {
"profile": "Profile",
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"drafts": "Drafts",
"schedules": "Schedules",
"gallery": "Gallery",
"settings": "Settings",
"add_account": "Add Account",
"logout": "Logout",
"cancel": "Cancel",
"logout_text": "Are you sure you want to logout?"
"profile": "Profil",
"bookmarks": "Knjižne oznake",
"favorites": "Favoriti",
"drafts": "Skice",
"schedules": "Rasporedi",
"gallery": "Galerija",
"settings": "Postavke",
"add_account": "Dodaj Profil",
"logout": "Odjava",
"cancel": "Poništi",
"logout_text": "Jeste li sigurni da se želite odjaviti?"
},
"header": {
"title": "Login to customize your feed",
"search": "Search..."
"title": "Ulogirajte se kako bi ste konfigurirali obavijesti",
"search": "Pretraži..."
},
"basic_header": {
"publish": "Publish",
"search": "Search",
"update": "Update",
"reply": "Reply"
"publish": "Objavi",
"search": "Pretraži",
"update": "Ažiriraj",
"reply": "Odgovor"
},
"editor": {
"title": "Title",
"tags": "tags",
"default_placeholder": "What would you like to write about today?",
"reply_placeholder": "What would you like to write about above post?",
"publish": "Publish",
"reply": "Reply"
"title": "Naslov",
"tags": "oznake",
"default_placeholder": "O čemu bi ste željeli pisati danas?",
"reply_placeholder": "Što bi ste željeli napisati iznad vaše objave?",
"publish": "Objavi",
"reply": "Odgovor"
},
"pincode": {
"enter_text": "Enter pin to unlock",
"set_new": "Set new pin",
"write_again": "Write again",
"forgot_text": "Oh, I forgot it..."
"set_new": "Postavi novi PIN",
"write_again": "Napiši ponovo",
"forgot_text": "Uh, zaboravio sam..."
},
"alert": {
"success": "Success!",
"allRead": "Marked all notifications as read",
"claim_reward_balance_ok": "Reward balance claimed",
"fail": "Fail!",
"success_shared": "Your post succesfully shared",
"permission_denied": "Permission denied",
"permission_text": "Please, go to phone Settings and change eSteem app permissions.",
"success": "Uspjeh!",
"allRead": "Označi sve obavijesti kao pročitane",
"claim_reward_balance_ok": "Nagrada preuzeta",
"fail": "Nije uspjelo!",
"success_shared": "Vaša objava je uspješno podijeljena",
"permission_denied": "Dopuštenje odbijeno",
"permission_text": "Molim vas, idite na postavke uređaja i promijenite dozvole za eSteem aplikaciju.",
"success_rebloged": "Rebloged!",
"already_rebloged": "You have already reblogged!",
"warning": "Warning",
"already_rebloged": "Već ste ponovo podijelili objavu na svom profilu!",
"warning": "Upozorenje",
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"cancel": "Otkaži",
"delete": "Izbriši",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
"reblog_alert": "Jeste li sigurni da želite ponovo podijeliti objavu na svom profilu?"
},
"drafts": {
"title": "Drafts",
"load_error": "Could not load drafts",
"empty_list": "Nothing here",
"deleted": "Draft deleted"
"title": "Skice",
"load_error": "Nije bilo moguće učitati skice",
"empty_list": "Nema ničeg ovdje",
"deleted": "Skica izbrisana"
},
"schedules": {
"title": "Scheduled Posts",
"empty_list": "Nothing here",
"deleted": "Scheduled post deleted",
"move": "Move to drafts",
"moved": "Moved to drafts"
"title": "Raspored postova",
"empty_list": "Nema ničeg ovdje",
"deleted": "Zakazani post izbrisan",
"move": "Premjesti u skice",
"moved": "Premješteno u skice"
},
"bookmarks": {
"title": "Bookmarks",
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"title": "Knjižne oznake",
"load_error": "Nije bilo moguče učitati knjižne oznake",
"empty_list": "Nema ničeg ovdje",
"deleted": "Knjižna oznaka uklonjena",
"search": "Pretraži u knjižnim oznakama",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
"load_error": "Could not load favorites",
"empty_list": "Nothing here",
"search": "Search in favorites"
"title": "Favoriti",
"load_error": "Nije bilo moguće učitati favorite",
"empty_list": "Nema ničeg ovdje",
"search": "Pretraži favorite"
},
"auth": {
"invalid_pin": "Invalid pin code, please check and try again",
"invalid_username": "Invalid username, please check and try again",
"already_logged": "You are already logged in, please try to add another account",
"invalid_credentials": "Invalid credentials, please check and try again",
"unknow_error": "Unknown error, please contact us at support@esteem.app"
"invalid_username": "Nevaljano korisničko ime. Molimo provjerite unos i pokušajte ponovo",
"already_logged": "Već ste ulogirani, molimo pokušajte dodati drugi račun",
"invalid_credentials": "Neispravni podatci, molimo provjerite unos i pokušajte ponovo",
"unknow_error": "Nepoznata greška, molimo kontaktirajte nas na support@esteem.app"
},
"payout": {
"potential_payout": "Potential Payout",
"promoted": "Promoted",
"author_payout": "Author Payout",
"curation_payout": "Curation Payout",
"payout_date": "Payout"
"potential_payout": "Moguća isplata",
"promoted": "Promovirano",
"author_payout": "Autorova isplata",
"curation_payout": "Kuracijska isplata",
"payout_date": "Isplata"
},
"post_dropdown": {
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"copy": "kopiraj link",
"reblog": "podijeli",
"reply": "odgovor",
"share": "podijeli",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Ne postojeći korisnik",
"no_existing_post": "Ne postojeća objava"
}
}

View File

@ -2,32 +2,32 @@
"wallet": {
"curation_reward": "Kuráció Jutalom",
"author_reward": "Szerzői Jutalom",
"comment_benefactor_reward": "Comment Benefactor Reward",
"claim_reward_balance": "Jutalom egyenleg átvétele",
"comment_benefactor_reward": "Hozzászólás Támogatási Jutalom",
"claim_reward_balance": "Jutalom Egyenleg Átvétele",
"transfer": "Átutalás",
"transfer_to_vesting": "Transfer To Vesting",
"transfer_to_vesting": "Átutalás A Veting-be",
"transfer_from_savings": "Átutalás a megtakarításokhoz",
"withdraw_vesting": "Power Down",
"fill_order": "Fill Order"
"fill_order": "Megrendelés Kitöltése"
},
"notification": {
"vote": "kedvencelte a bejegyzésed",
"unvote": "szavazott a bejegyzésedre",
"unvote": "visszavonta a bejegyzésedre adott szavazatát",
"reply": "válaszolt a bejegyzésedre",
"mention": "megemlített téged",
"follow": "követ téged",
"unfollow": "már nem követ",
"unfollow": "már nem követ téged",
"ignore": "mellőzött téged",
"reblog": "megosztotta a bejegyzésed",
"comingsoon": "Ranglista a funkció hamarosan érkezik!",
"comingsoon": "Ranglista funkció hamarosan érkezik!",
"notification": "Értesítések",
"leaderboard": "Ranglista",
"leaderboard_title": "Napi Top felhasználók",
"leaderboard_title": "Napi Top Felhasználók",
"recent": "Friss",
"yesterday": "Tegnap",
"this_week": "Ezen a héten",
"this_month": "Ebben a hónapban",
"older_then": "Egy hónapnál régebbi"
"older_then": "Egy Hónapnál Régebbi"
},
"messages": {
"comingsoon": "Üzenetek funkció hamarosan érkezik!"
@ -35,13 +35,13 @@
"profile": {
"following": "Követés",
"follower": "Követő",
"post": "Post",
"details": "Profil adataid",
"post": "Bejegyzések",
"details": "Profil Adatok",
"comments": "Hozzászólások",
"replies": "Válaszok",
"wallet": "Tárca",
"wallet_details": "Tárca részletek",
"unclaimed_rewards": "Átvételre váró jutalom",
"wallet_details": "Tárca Részletek",
"unclaimed_rewards": "Átvételre Váró Jutalmak",
"full_in": "Teljes",
"hours": "órák",
"voting_power": "Szavazóerő",
@ -49,7 +49,7 @@
"havent_commented": "még nem szólt hozzá semmihez",
"havent_posted": "még nem tett közzé semmit",
"steem_power": "Steem Power",
"next_power_text": "Next power down is in",
"next_power_text": "A következő Power Down-ig még van",
"days": "napok",
"day": "nap",
"steem_dollars": "Steem Dollár",
@ -61,8 +61,8 @@
"language": "Nyelv",
"server": "Szerver",
"dark_theme": "Sötét téma",
"push_notification": "Értesítések bekapcsolása",
"pincode": "Pincode",
"push_notification": "Értesítések Bekapcsolása",
"pincode": "PIN kód",
"reset": "Visszaállítás"
},
"voters": {
@ -78,7 +78,7 @@
"description": "A felhasználó bejelentkezési adatai helyileg vannak tárolva a készüléken. Kijelentkezéskor a bejelentkezési adatok eltávolítódnak!",
"cancel": "visszavonom",
"login": "BEJELENTKEZÉS",
"steemconnect_description": "Ha nem szeretnéd a jelszavad a gépeden tárolni, akkor használd a Steemconnect-et."
"steemconnect_description": "Ha nem szeretnéd a jelszavad a készülékeden elmentve tárolni, akkor használd a Steemconnect-et."
},
"home": {
"feed": "Hírfolyam",
@ -92,10 +92,10 @@
"schedules": "Időzítések",
"gallery": "Galéria",
"settings": "Beállítások",
"add_account": "Fiók hozzáadása",
"add_account": "Fiók Hozzáadása",
"logout": "Kijelentkezés",
"cancel": "Elvet",
"logout_text": "Biztos, hogy ki szeretnél lépni?"
"logout_text": "Biztos ki szeretnél jelentkezni?"
},
"header": {
"title": "Jelentkezz be a hírfolyam testreszabásához",
@ -111,15 +111,15 @@
"title": "Cím",
"tags": "címkék",
"default_placeholder": "Miről szeretnél írni ma?",
"reply_placeholder": "Miről szeretnél írni ma?",
"reply_placeholder": "Mit szeretnél írni a fenti bejegyzésről?",
"publish": "Közzétesz",
"reply": "Válasz"
},
"pincode": {
"enter_text": "Enter pin to unlock",
"set_new": "Állítson be új PIN-kódot",
"enter_text": "Feloldáshoz írd be a PIN kódot",
"set_new": "Állíts be új PIN kódot",
"write_again": "Írd újra",
"forgot_text": elfelejtettem..."
"forgot_text": , elfelejtettem..."
},
"alert": {
"success": "Sikerült!",
@ -128,21 +128,23 @@
"fail": "Sikertelen!",
"success_shared": "A bejegyzésed sikeresen megosztva",
"permission_denied": "Engedély megtagadva",
"permission_text": "Kérjük menj a beállításokhoz és változtass az eSteem app engedélyezésein.",
"success_rebloged": "Rebloged!",
"permission_text": "Kérjük menj a telefon beállításokhoz és változtass az eSteem app engedélyezésein.",
"success_rebloged": "Megosztva!",
"already_rebloged": "Ezt már megosztottad!",
"warning": "Figyelem",
"invalid_pincode": "Érvénytelen PIN-kód, kérjük ellenőrizd és próbáld újra.",
"warning": "Figyelmeztetés",
"invalid_pincode": "Érvénytelen PIN kód, kérjük ellenőrizd és próbáld újra.",
"remove_alert": "Biztos, hogy törölni akarod?",
"cancel": "Elvet",
"delete": "Törlés"
"delete": "Törlés",
"copied": "Lemásolva!",
"no_internet": "Nincs kapcsolat!"
},
"post": {
"reblog_alert": "Biztos, hogy megosztod?"
},
"drafts": {
"title": "Piszkozatok",
"load_error": "Nem sikerült betölteni a piszkozatot",
"load_error": "Nem sikerült betölteni a piszkozatokat",
"empty_list": "Itt nincs semmi",
"deleted": "Piszkozat törölve"
},
@ -158,18 +160,21 @@
"load_error": "Nem sikerült betölteni a piszkozatokat",
"empty_list": "Itt nincs semmi",
"deleted": "Könyvjelző eltávolítva",
"search": "Keresés a könyvjelzők között"
"search": "Keresés a könyvjelzők között",
"bookmarks": "A könyvjelzők hozzáadásához",
"added": "Hozzáadva a könyvjelzőkhöz",
"add": "Hozzáadás a könyvjelzőkhöz"
},
"favorites": {
"title": "Kedvencek",
"load_error": "Nem sikerült betölteni a Kedvenceket",
"load_error": "Nem sikerült betölteni a kedvenceket",
"empty_list": "Itt nincs semmi",
"search": "Keresés a kedvencekben"
},
"auth": {
"invalid_pin": "Érvénytelen PIN-kód, kérjük ellenőrizd és próbáld újra",
"invalid_pin": "Érvénytelen PIN kód, kérjük ellenőrizd és próbáld újra",
"invalid_username": "Érvénytelen felhasználónév, kérjük ellenőrizd és próbáld újra",
"already_logged": "Már be vagy jelentkezve, kérjük adj hozzá egy másik fiókot",
"already_logged": "Már be vagy jelentkezve, kérjük próbálj meg hozzáadni egy másik fiókot",
"invalid_credentials": "Érvénytelen hitelesítő adatok. Kérjük, ellenőrizd és próbáld újra",
"unknow_error": "Ismeretlen hiba, kérjük vedd fel velünk a kapcsolatot itt support@esteem.app"
},
@ -184,10 +189,11 @@
"copy": "link másolása",
"reblog": "megosztás",
"reply": "válasz",
"share": "megosztás"
"share": "megosztás",
"bookmarks": "hozzáadás a könyvjelzőkhöz"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Nem létező felhasználó",
"no_existing_post": "Nem létező bejegyzés"
}
}

View File

@ -62,7 +62,7 @@
"server": "Server",
"dark_theme": "Dark Theme",
"push_notification": "Push Notification",
"pincode": "Pincode",
"pincode": "PIN code",
"reset": "Reset"
},
"voters": {
@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -1,9 +1,9 @@
{
"wallet": {
"curation_reward": "Hadiah kurasi",
"author_reward": "Hadiah pencipta",
"comment_benefactor_reward": "Pemberian hadiah komentar",
"claim_reward_balance": "Klaim hadiah",
"curation_reward": "Imbalan kurasi",
"author_reward": "Imbalan Penulis",
"comment_benefactor_reward": "Pemberian imbalan komentar",
"claim_reward_balance": "Klaim Imbalan",
"transfer": "Transfer",
"transfer_to_vesting": "Transfer ke vesting",
"transfer_from_savings": "Transfer Dari Tabungan",
@ -116,8 +116,8 @@
"reply": "Balas"
},
"pincode": {
"enter_text": "Enter pin to unlock",
"set_new": "Set new pin",
"enter_text": "Masukkan PIN untuk membuka kunci",
"set_new": "Atur pin baru",
"write_again": "Menulis lagi",
"forgot_text": "Oh, saya lupa..."
},
@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Yakin ingin menghapus?",
"cancel": "Batal",
"delete": "Hapus"
"delete": "Hapus",
"copied": "Disalin!",
"no_internet": "Tidak ada koneksi!"
},
"post": {
"reblog_alert": "Anda yakin ingin menerbitkan ulang?"
@ -158,7 +160,9 @@
"load_error": "Tidak dapat menampilkan yang telah ditandai",
"empty_list": "Disini belum ada apa-apa",
"deleted": "Hapus yang ditandai",
"search": "Cari di dalam halaman yang ditandai"
"search": "Cari di dalam halaman yang ditandai",
"added": "Ditambahkan ke bookmark",
"add": "Ditambahkan ke bookmark"
},
"favorites": {
"title": "Favorit",
@ -184,10 +188,11 @@
"copy": "salin tautan",
"reblog": "menampilkan kembali",
"reply": "balas",
"share": "bagikan"
"share": "bagikan",
"bookmarks": "tambah ke penanda"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Tidak ada pengguna yang ada",
"no_existing_post": "Tidak ada post yang ada"
}
}

View File

@ -1,7 +1,19 @@
export default {
'de-DE': require('./de-DE.json'),
'en-US': require('./en-US.json'),
'hu-HU': require('./hu-HU.json'),
'id-ID': require('./id-ID.json'),
'it-IT': require('./it-IT.json'),
'ru-RU': require('./ru-RU.json'),
'tr-TR': require('./tr-TR.json'),
};
export const locales = [{ id: 'en-US', name: 'English' }, { id: 'ru-RU', name: 'Русский' }, { id: 'tr-TR', name: 'Türkçe' }];
export const locales = [
{ id: 'de-DE', name: 'Deutsche' },
{ id: 'en-US', name: 'English' },
{ id: 'hu-HU', name: 'Hungarian' },
{ id: 'id-ID', name: 'Indonesian' },
{ id: 'iT-IT', name: 'Italian' },
{ id: 'ru-RU', name: 'Русский' },
{ id: 'tr-TR', name: 'Türkçe' },
];

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -1,193 +1,198 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"author_reward": "Author Reward",
"comment_benefactor_reward": "Comment Benefactor Reward",
"claim_reward_balance": "Claim Reward Balance",
"transfer": "Transfer",
"transfer_to_vesting": "Transfer To Vesting",
"transfer_from_savings": "Transfer From Savings",
"curation_reward": "Ricompensa Curatore",
"author_reward": "Ricompensa Autore",
"comment_benefactor_reward": "Ricompensa Commento Benefattore",
"claim_reward_balance": "Richiesta Saldo Ricompense",
"transfer": "Trasferimento",
"transfer_to_vesting": "Traferimento per investimento",
"transfer_from_savings": "Trasferisci Dai Risparmi",
"withdraw_vesting": "Power Down",
"fill_order": "Fill Order"
"fill_order": "Completa L' Ordine"
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"comingsoon": "Leaderboard feature is coming soon!",
"notification": "Notifications",
"leaderboard": "Leaderboard",
"leaderboard_title": "Daily Top User",
"recent": "Recent",
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"vote": "ha messo mi piace al tuo post",
"unvote": "non piace il tuo post",
"reply": "ha risposto al tuo post",
"mention": "ti ha menzionato",
"follow": "ha iniziato a seguirti",
"unfollow": "non ti segue più",
"ignore": "ti ha ignorato",
"reblog": "ha ripostato il tuo post",
"comingsoon": "La feature classifica arriverà presto!",
"notification": "Notifiche",
"leaderboard": "Classifica",
"leaderboard_title": "Top Utenti Giornalieri",
"recent": "Recenti",
"yesterday": "Ieri",
"this_week": "Questa settimana",
"this_month": "Questo Mese",
"older_then": "Più Di Un Mese Fa"
},
"messages": {
"comingsoon": "Messages feature is coming soon!"
"comingsoon": "La feature per i messaggi sta per arrivare!"
},
"profile": {
"following": "Following",
"follower": "Follower",
"following": "Seguito",
"follower": "Seguace",
"post": "Post",
"details": "Profile Details",
"comments": "Comments",
"replies": "Replies",
"wallet": "Wallet",
"wallet_details": "Wallet Details",
"unclaimed_rewards": "Unclaimed Rewards",
"full_in": "Full in",
"hours": "hours",
"voting_power": "Voting power",
"login_to_see": "Login to see",
"havent_commented": "haven't commented anything yet",
"havent_posted": "haven't posted anything yet",
"details": "Dettagli Del Profilo",
"comments": "Commenti",
"replies": "Rispondi",
"wallet": "Portafoglio",
"wallet_details": "Dettagli Portafoglio",
"unclaimed_rewards": "Ricompense Non Reclamate",
"full_in": "Riempi",
"hours": "ore",
"voting_power": "Potere di voto",
"login_to_see": "Logga per vedere",
"havent_commented": "non hai ancora commentato nulla",
"havent_posted": "non hai ancora postato nulla",
"steem_power": "Steem Power",
"next_power_text": "Next power down is in",
"days": "days",
"day": "day",
"next_power_text": "Il prossimo power down è tra",
"days": "giorni",
"day": "giorno",
"steem_dollars": "Steem Dollars",
"savings": "Savings"
"savings": "Risparmi"
},
"settings": {
"settings": "Settings",
"currency": "Currency",
"language": "Language",
"settings": "Impostazioni",
"currency": "Moneta",
"language": "Linguaggio",
"server": "Server",
"dark_theme": "Dark Theme",
"push_notification": "Push Notification",
"dark_theme": "Tema Scuro",
"push_notification": "Notifiche Push",
"pincode": "Pincode",
"reset": "Reset"
"reset": "Resetta"
},
"voters": {
"voters_info": "Voters Info",
"no_user": "No user found."
"voters_info": "Info Votanti",
"no_user": "Nessun utente trovato."
},
"login": {
"signin": "Sign in",
"signup": "Sign up",
"signin_title": "To get all the benefits of using eSteem",
"username": "Username",
"password": "Password or WIF",
"description": "User credentials are kept locally on the device. Credentials are removed upon logout!",
"cancel": "cancel",
"signin": "Accedi",
"signup": "Registrati",
"signin_title": "Per ottenere tutti i vantaggi dall' utilizzo di eSteem",
"username": "Nome Utente",
"password": "Password o WIF",
"description": "Le tue credenziali sono memorizzate localmente sul dispositivo. Se fai il Logout le credenziali verranno rimosse!",
"cancel": "cancella",
"login": "LOGIN",
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect."
"steemconnect_description": "Se non volete mantenere la vostra password crittografata e salvata sul dispositivo, è possibile utilizzare Steemconnect."
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popolare"
},
"side_menu": {
"profile": "Profile",
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"drafts": "Drafts",
"schedules": "Schedules",
"gallery": "Gallery",
"settings": "Settings",
"add_account": "Add Account",
"logout": "Logout",
"cancel": "Cancel",
"logout_text": "Are you sure you want to logout?"
"profile": "Profilo",
"bookmarks": "Segnalibri",
"favorites": "Preferiti",
"drafts": "Bozze",
"schedules": "Programmi",
"gallery": "Galleria",
"settings": "Impostazioni",
"add_account": "Aggiungi Account",
"logout": "Disconnettiti",
"cancel": "Cancella",
"logout_text": "Sei sicuro di voler uscire?"
},
"header": {
"title": "Login to customize your feed",
"search": "Search..."
"title": "Effettua il Login per personalizzare il tuo feed",
"search": "Cerca..."
},
"basic_header": {
"publish": "Publish",
"search": "Search",
"update": "Update",
"reply": "Reply"
"publish": "Pubblica",
"search": "Cerca",
"update": "Aggiorna",
"reply": "Rispondi"
},
"editor": {
"title": "Title",
"title": "Titolo",
"tags": "tags",
"default_placeholder": "What would you like to write about today?",
"reply_placeholder": "What would you like to write about above post?",
"publish": "Publish",
"reply": "Reply"
"default_placeholder": "Che cosa ti piacerebbe scrivere oggi?",
"reply_placeholder": "Che cosa ti piacerebbe scrivere riguardo ai seguenti post?",
"publish": "Pubblica",
"reply": "Rispondi"
},
"pincode": {
"enter_text": "Enter pin to unlock",
"set_new": "Set new pin",
"write_again": "Write again",
"forgot_text": "Oh, I forgot it..."
"write_again": "Scrivi di nuovo",
"forgot_text": "Oh, l'ho dimenticato..."
},
"alert": {
"success": "Success!",
"allRead": "Marked all notifications as read",
"claim_reward_balance_ok": "Reward balance claimed",
"fail": "Fail!",
"success_shared": "Your post succesfully shared",
"permission_denied": "Permission denied",
"permission_text": "Please, go to phone Settings and change eSteem app permissions.",
"success": "Successo!",
"allRead": "Segna tutte le notifiche come lette",
"claim_reward_balance_ok": "Saldo Ricompensa Richiesto",
"fail": "Non riuscito!",
"success_shared": "Il tuo post è stato con successo condiviso",
"permission_denied": "Permesso negato",
"permission_text": "Per favore, vai alle impostazioni del cellulare e modificare le autorizzazioni di eSteem app.",
"success_rebloged": "Rebloged!",
"already_rebloged": "You have already reblogged!",
"warning": "Warning",
"already_rebloged": "Lo hai già condiviso!",
"warning": "Attenzione",
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"cancel": "Cancella",
"delete": "Elimina",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
"reblog_alert": "Sei sicuro di volerlo condividere?"
},
"drafts": {
"title": "Drafts",
"load_error": "Could not load drafts",
"empty_list": "Nothing here",
"deleted": "Draft deleted"
"title": "Bozze",
"load_error": "Impossibile caricare le bozze",
"empty_list": "Non c'è niente qui",
"deleted": "Bozza eliminata"
},
"schedules": {
"title": "Scheduled Posts",
"empty_list": "Nothing here",
"deleted": "Scheduled post deleted",
"move": "Move to drafts",
"moved": "Moved to drafts"
"title": "Pianifica i post",
"empty_list": "Non c'è niente qui",
"deleted": "Pianificazione post eliminata",
"move": "Sposta in bozze",
"moved": "Spostata in bozze"
},
"bookmarks": {
"title": "Bookmarks",
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"title": "Segnalibri",
"load_error": "Impossibile caricare i segnalibri",
"empty_list": "Non c'è niente qui",
"deleted": "Segnalibro rimosso",
"search": "Cerca tra i segnalibri",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
"load_error": "Could not load favorites",
"empty_list": "Nothing here",
"search": "Search in favorites"
"title": "Preferiti",
"load_error": "Impossibile caricare i preferiti",
"empty_list": "Non c'è niente qui",
"search": "Cerca tra i preferiti"
},
"auth": {
"invalid_pin": "Invalid pin code, please check and try again",
"invalid_username": "Invalid username, please check and try again",
"already_logged": "You are already logged in, please try to add another account",
"invalid_credentials": "Invalid credentials, please check and try again",
"unknow_error": "Unknown error, please contact us at support@esteem.app"
"invalid_username": "Username invalido, per favore controlla e riprova",
"already_logged": "Se già connesso, per favore aggiungi un altro account",
"invalid_credentials": "Credenziali invalide, per favore controlla e riprova",
"unknow_error": "Errore sconosciuto, per favore contattaci a support@esteem.app"
},
"payout": {
"potential_payout": "Potential Payout",
"promoted": "Promoted",
"author_payout": "Author Payout",
"curation_payout": "Curation Payout",
"payout_date": "Payout"
"potential_payout": "Pagamento Potenziale",
"promoted": "Sponsorizzati",
"author_payout": "Ricompensa Autore",
"curation_payout": "Ricompensa Curatore",
"payout_date": "Pagamento"
},
"post_dropdown": {
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"copy": "copia il link",
"reblog": "condividi",
"reply": "rispondi",
"share": "condividi",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Utente non esistente",
"no_existing_post": "Post non esistente"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Atšaukti",
"delete": "Ištrinti"
"delete": "Ištrinti",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Ar tikrai norite dalintis?"
@ -158,7 +160,9 @@
"load_error": "Nepavyko užkrauti žymių",
"empty_list": "Nieko nėra",
"deleted": "Žymė panaikinta",
"search": "Ieškoti žymelėse"
"search": "Ieškoti žymelėse",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Mėgstamiausi",
@ -184,7 +188,8 @@
"copy": "kopijuoti nuorodą",
"reblog": "pasidalinti",
"reply": "atsakymas",
"share": "dalintis"
"share": "dalintis",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Adakah anda pasti ingin memadam?",
"cancel": "Batal",
"delete": "Padam"
"delete": "Padam",
"copied": "Disalin!",
"no_internet": "Tiada sambungan!"
},
"post": {
"reblog_alert": "Adakah anda ingin menulang siar?"
@ -158,7 +160,9 @@
"load_error": "Tidak dapat cari tanda halaman",
"empty_list": "Kosong",
"deleted": "Tanda halaman yang dikeluarkan",
"search": "Cari di penanda halaman"
"search": "Cari di penanda halaman",
"added": "Ditambah ke tanda halaman",
"add": "Ditambah ke tanda halaman"
},
"favorites": {
"title": "Kegemaran",
@ -184,10 +188,11 @@
"copy": "salin pautan",
"reblog": "ulang siar",
"reply": "Membalas",
"share": "kongsi"
"share": "kongsi",
"bookmarks": "tambah ke tanda halaman"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Pengguna tidak wujud",
"no_existing_post": "Pos tidak wujud"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Ongeldige PIN-code, controleer en probeer het opnieuw.",
"remove_alert": "Weet je zeker dat je wilt verwijderen?",
"cancel": "Annuleren",
"delete": "Verwijderen"
"delete": "Verwijderen",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Weet je zeker dat je het wilt delen?"
@ -158,7 +160,9 @@
"load_error": "Kon bladwijzers niet laden",
"empty_list": "Niets hier",
"deleted": "Bladwijzer verwijderd",
"search": "Zoek in bladwijzers"
"search": "Zoek in bladwijzers",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorieten",
@ -184,10 +188,11 @@
"copy": "link kopiëren",
"reblog": "delen",
"reply": "reageer",
"share": "deel"
"share": "deel",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Geen bestaande gebruiker",
"no_existing_post": "Geen bestaand artikel"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Your PIN code no correct, abeg check wella and try am again",
"remove_alert": "You sure say you wan remove am?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "You sure say you wan reblog am?"
@ -158,7 +160,9 @@
"load_error": "Bookmarks no gree load",
"empty_list": "Nothing dey here",
"deleted": "Bookmark don komot",
"search": "Find am for bookmark"
"search": "Find am for bookmark",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,10 +188,11 @@
"copy": "copy the link",
"reblog": "reblog am",
"reply": "reply am",
"share": "share am"
"share": "share am",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "The person no exist",
"no_existing_post": "The post no exist"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Código PIN inválido, por favor verifique e tente novamente.",
"remove_alert": "Tem a certeza de que pretende remover?",
"cancel": "Cancelar",
"delete": "Apagar"
"delete": "Apagar",
"copied": "Copiado!",
"no_internet": "Sem ligação!"
},
"post": {
"reblog_alert": "Tem certeza de que deseja reblogar?"
@ -158,7 +160,9 @@
"load_error": "Não foi possível carregar os Marcadores",
"empty_list": "Nada aqui",
"deleted": "Marcador removido",
"search": "Pesquisar marcadores"
"search": "Pesquisar marcadores",
"added": "Adicionado aos marcadores",
"add": "Adicionar aos marcadores"
},
"favorites": {
"title": "Favoritos",
@ -184,10 +188,11 @@
"copy": "copiar ligação",
"reblog": "reblogar",
"reply": "responder",
"share": "partilhar"
"share": "partilhar",
"bookmarks": "adicionar aos marcadores"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Usuário não existe",
"no_existing_post": "Post não existe"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -51,7 +51,7 @@
"steem_power": "Сила голоса",
"next_power_text": "Следующее понижение силы",
"days": "д",
"day": "завтра",
"day": "д",
"steem_dollars": "Доллары Steem",
"savings": "Сейф"
},
@ -137,7 +137,7 @@
"cancel": "Отмена",
"delete": "Удалить",
"copied": "Copied!",
"no_internet": "No internet connection"
"no_internet": "Подключение к Интернету отсутствует"
},
"post": {
"reblog_alert": "Вы уверены, что хотите сделать репост?"
@ -160,7 +160,10 @@
"load_error": "Невозможно загрузить закладки",
"empty_list": "Ничего нет",
"deleted": "Закладка удалена",
"search": "Поиск по закладкам"
"search": "Поиск по закладкам",
"bookmarks": "добавить в закладки",
"added": "Added to bookmarks",
"add": "добавить в закладки"
},
"favorites": {
"title": "Избранное",
@ -186,10 +189,11 @@
"copy": "копировать ссылку",
"reblog": "репост",
"reply": "ответить",
"share": "поделиться"
"share": "поделиться",
"bookmarks": "добавить в закладки"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Несуществующий пользователь",
"no_existing_post": "Несуществующий пост"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -62,7 +62,7 @@
"server": "Server",
"dark_theme": "Dark Theme",
"push_notification": "Push Notification",
"pincode": "Pincode",
"pincode": "PIN code",
"reset": "Reset"
},
"voters": {
@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Otkaži",
"delete": "Izbriši"
"delete": "Izbriši",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Da li ste sigurni da želite da podelite?"
@ -158,7 +160,9 @@
"load_error": "Nije moguće učitati obeleživače",
"empty_list": "Ovde nema ništa",
"deleted": "Obeleživač je uklonjen",
"search": "Pretraži među obeleživačima"
"search": "Pretraži među obeleživačima",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Omiljeno",
@ -184,7 +188,8 @@
"copy": "kopiraj link",
"reblog": "podeli",
"reply": "odgovori",
"share": "podeli"
"share": "podeli",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -1,14 +1,14 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"author_reward": "Author Reward",
"comment_benefactor_reward": "Comment Benefactor Reward",
"claim_reward_balance": "Claim Reward Balance",
"curation_reward": "Küratör Ödülü",
"author_reward": "Yazar Ödülü",
"comment_benefactor_reward": "Yorum Bağış Ödülü",
"claim_reward_balance": "Ödül Bakiyesini Talep Et",
"transfer": "Transfer",
"transfer_to_vesting": "Transfer To Vesting",
"transfer_to_vesting": "Yetkiye Transfer Talep Et",
"transfer_from_savings": "Tasarruflardan Transfer",
"withdraw_vesting": "Withdraw Vesting",
"fill_order": "Fill Order"
"withdraw_vesting": "Güç Düşürme",
"fill_order": "Gerçekleşen emir"
},
"notification": {
"vote": "beğendi",
@ -42,7 +42,7 @@
"wallet": "Cüzdan",
"wallet_details": "Cüzdan Detayları",
"unclaimed_rewards": "Sahipsiz Ödül",
"full_in": "Full in",
"full_in": "Olacak",
"hours": "saat",
"voting_power": "Oylama güçü",
"login_to_see": "Giriş yap ve gör!",
@ -123,57 +123,59 @@
},
"alert": {
"success": "Başarılı!",
"allRead": "Marked all notifications as read",
"claim_reward_balance_ok": "Reward balance claimed",
"fail": "Fail!",
"success_shared": "Your post succesfully shared",
"permission_denied": "Permission denied",
"permission_text": "Please, go to phone Settings and change eSteem app permissions.",
"allRead": "Tüm bildirimleri okundu olarak işaretle",
"claim_reward_balance_ok": "Ödül alındı",
"fail": "Başarısız!",
"success_shared": "Gönderin başarıyla paylaşıldı",
"permission_denied": "İzin reddedildi",
"permission_text": "Lütfen telefon ayarlarına gidin ve eSteem'in izinlerini açın.",
"success_rebloged": "Rebloged!",
"already_rebloged": "You have already reblogged!",
"warning": "Warning",
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No internet connection"
"already_rebloged": "Zaten reblog yapmışsınız.",
"warning": "Uyarı",
"invalid_pincode": "Geçersiz pin gözden geçirip yeniden deneyin.",
"remove_alert": "Kaldırmak istediğine emin misin ?",
"cancel": "Vazgeç",
"delete": "Temizle",
"copied": "Kopyalandı",
"no_internet": "Bağlantı yok."
},
"post": {
"reblog_alert": "Reblog yapma istediginize emin misiniz?"
},
"drafts": {
"title": "Drafts",
"load_error": "Could not load drafts",
"empty_list": "Nothing here",
"deleted": "Draft deleted"
"title": "Taslaklar",
"load_error": "Taslaklar yüklenemedi",
"empty_list": "Burada hiçbir şey yok",
"deleted": "Taslak silindi"
},
"schedules": {
"title": "Scheduled Posts",
"empty_list": "Nothing here",
"deleted": "Scheduled post deleted",
"move": "Move to drafts",
"moved": "Moved to drafts"
"title": "Zamanlanmiş Gönderi",
"empty_list": "Burada hiçbir şey yok",
"deleted": "Zamanlanmiş Gönderi Silindi",
"move": "Taslaklara taşı",
"moved": "Taslaklara taşı"
},
"bookmarks": {
"title": "Bookmarks",
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"title": "Yerimleri",
"load_error": "Yer imleri yüklenemedi",
"empty_list": "Burada hiçbir şey yok",
"deleted": "Yer işareti kaldırıldı",
"search": "Yer imlerinde ara",
"added": "Yerimlerine eklendi",
"add": "Yerimlerine ekle"
},
"favorites": {
"title": "Favorites",
"load_error": "Could not load favorites",
"empty_list": "Nothing here",
"search": "Search in favorites"
"title": "Favoriler",
"load_error": "Beğeniler yüklenemedi",
"empty_list": "Burada hiçbir şey yok",
"search": "Favorilerde ara"
},
"auth": {
"invalid_pin": "Invalid pin code, please check and try again",
"invalid_username": "Invalid username, please check and try again",
"already_logged": "You are already logged in, please try to add another account",
"invalid_credentials": "Invalid credentials, please check and try again",
"unknow_error": "Unknown error, please contact us at support@esteem.app"
"invalid_pin": "Geçersiz pin gözden geçirip yeniden deneyin",
"invalid_username": "Geçersiz Kullanıcı adı gözden geçirip yeniden deneyin",
"already_logged": "Zaten oturum açmış, lütfen başka bir hesaba eklemek deneyin",
"invalid_credentials": "Geçersiz Kullanıcı adı gözden geçirip yeniden deneyin",
"unknow_error": "Bilinmeyen bir hata, lütfen bize ulaşın support@esteem.app"
},
"payout": {
"potential_payout": "Tahmini Ödeme",
@ -184,9 +186,10 @@
},
"post_dropdown": {
"copy": "kopyala",
"reblog": "reblog",
"reblog": "Reblog",
"reply": "cevapla",
"share": "paylaş"
"share": "paylaş",
"bookmarks": "yer imlerine ekle"
},
"deep_link": {
"no_existing_user": "Kullanici Bulunamadi",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid PIN code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid PIN code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"delete": "Delete",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
@ -158,7 +160,9 @@
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"search": "Search in bookmarks",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -1,9 +1,9 @@
{
"wallet": {
"curation_reward": "Phần thưởng cho người quản lý",
"curation_reward": "Phần thưởng curation",
"author_reward": "Phần thưởng cho tác giả",
"comment_benefactor_reward": "Phần thưởng đc chia sẻ từ bình luận",
"claim_reward_balance": "Yêu cầu số dư tiền thưởng",
"claim_reward_balance": "Nhận số dư tiền thưởng",
"transfer": "Chuyển cho",
"transfer_to_vesting": "Chuyển đến Vesting",
"transfer_from_savings": "Chuyển từ tiết kiệm",
@ -41,7 +41,7 @@
"replies": "Trả lời",
"wallet": "Ví",
"wallet_details": "Thông tin chi tiết ví",
"unclaimed_rewards": "Tiền thưởng chưa được yêu cầu",
"unclaimed_rewards": "Tiền thưởng chưa được nhận",
"full_in": "Đầy sau",
"hours": "giờ",
"voting_power": "Voting power",
@ -60,7 +60,7 @@
"currency": "Tiền tệ",
"language": "Ngôn ngữ",
"server": "Máy chủ",
"dark_theme": "Chủ đề tối",
"dark_theme": "Chế độ tối",
"push_notification": "Đẩy thông báo",
"pincode": "Mã PIN",
"reset": "Thiết lập lại"
@ -109,7 +109,7 @@
},
"editor": {
"title": "Tiêu đề",
"tags": "gán thẻ",
"tags": "thẻ",
"default_placeholder": "Bạn muốn viết về gì hôm nay?",
"reply_placeholder": "Bạn muốn viết gì về bài viết trên?",
"publish": "Đăng bài",
@ -124,7 +124,7 @@
"alert": {
"success": "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 yêu cầu",
"claim_reward_balance_ok": "Số dư tiền thưởng đã được nhận",
"fail": "Thất bại!",
"success_shared": "Bài viết của bạn đã được chia sẻ thành công",
"permission_denied": "Quyền truy cập bị từ chối",
@ -135,7 +135,9 @@
"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?",
"cancel": "Huỷ",
"delete": "Xóa"
"delete": "Xóa",
"copied": "Đã sao chép!",
"no_internet": "Không có kết nối!"
},
"post": {
"reblog_alert": "Bạn có chắc chắn muốn đăng lại không?"
@ -154,11 +156,13 @@
"moved": "Được chuyển đến bản nháp"
},
"bookmarks": {
"title": "Trang đánh dấu",
"title": "Các trang đánh dấu",
"load_error": "Không thể tải các trang đánh dấu",
"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"
"search": "Tìm kiếm trong trang đánh dấu",
"added": "Đã thêm vào dấu trang",
"add": "Thêm vào dấu trang"
},
"favorites": {
"title": "Ưa thích",
@ -175,19 +179,20 @@
},
"payout": {
"potential_payout": "Thanh toán dự kiến",
"promoted": "Đã được chia sẻ",
"promoted": "Đã quảng bá",
"author_payout": "Thanh toán cho tác giả",
"curation_payout": "Thanh toán cho quản lý",
"curation_payout": "Thanh toán curation",
"payout_date": "Thanh toán"
},
"post_dropdown": {
"copy": "sao chép liên kết",
"reblog": "đăng lại",
"reply": "trả lời",
"share": "chia sẻ"
"share": "chia sẻ",
"bookmarks": "thêm vào dấu trang"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "Không có người dùng hiện tại",
"no_existing_post": "Hiện tại không có bài viết nào"
}
}

View File

@ -1,193 +1,198 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"author_reward": "Author Reward",
"comment_benefactor_reward": "Comment Benefactor Reward",
"claim_reward_balance": "Claim Reward Balance",
"transfer": "Transfer",
"transfer_to_vesting": "Transfer To Vesting",
"transfer_from_savings": "Transfer From Savings",
"withdraw_vesting": "Power Down",
"fill_order": "Fill Order"
"curation_reward": "Ere lati ara asayan ibo",
"author_reward": "Ere Ako oro",
"comment_benefactor_reward": "Ere eni t'ojere idahun",
"claim_reward_balance": "Gba ere lapapo",
"transfer": "Fi ranse",
"transfer_to_vesting": "Fise afikun eto re",
"transfer_from_savings": "Fi ranse si ipamo",
"withdraw_vesting": "Din agbara ku",
"fill_order": "Gba latira"
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"comingsoon": "Leaderboard feature is coming soon!",
"notification": "Notifications",
"leaderboard": "Leaderboard",
"leaderboard_title": "Daily Top User",
"recent": "Recent",
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"vote": "fe ohun ti o ko",
"unvote": "yo ibo re kuro",
"reply": "dahun si oro re",
"mention": "da oruko re",
"follow": "ti n ba o lo",
"unfollow": "ko ba o lo mo",
"ignore": "ti ko eti ikun",
"reblog": "ti se eda oro re",
"comingsoon": "Eto ifihan awon asiwaju n bo lona!",
"notification": "Awon Akiyesi",
"leaderboard": "Ate asiwaju",
"leaderboard_title": "Olori ojumo",
"recent": "Ai pe",
"yesterday": "Ana",
"this_week": "Ose yi",
"this_month": "Osu yi",
"older_then": "Ti koja osu kan"
},
"messages": {
"comingsoon": "Messages feature is coming soon!"
"comingsoon": "Eto sise ateranse nbo lona!"
},
"profile": {
"following": "Following",
"follower": "Follower",
"following": "Itele",
"follower": "Olutele",
"post": "Post",
"details": "Profile Details",
"comments": "Comments",
"replies": "Replies",
"wallet": "Wallet",
"wallet_details": "Wallet Details",
"unclaimed_rewards": "Unclaimed Rewards",
"full_in": "Full in",
"hours": "hours",
"voting_power": "Voting power",
"login_to_see": "Login to see",
"havent_commented": "haven't commented anything yet",
"havent_posted": "haven't posted anything yet",
"steem_power": "Steem Power",
"next_power_text": "Next power down is in",
"days": "days",
"day": "day",
"steem_dollars": "Steem Dollars",
"savings": "Savings"
"details": "Alaye nipa re",
"comments": "Oro iwoye",
"replies": "Ifesi",
"wallet": "Apamowo",
"wallet_details": "Alaye apamowo",
"unclaimed_rewards": "Ere ti a o ti gba",
"full_in": "Pada kun",
"hours": "wakati",
"voting_power": "Agbara ibo",
"login_to_see": "Wole lati ri",
"havent_commented": "koti si oro iwoye kankan bayi",
"havent_posted": "oti gbe oro kankan kale",
"steem_power": "Agbara steem",
"next_power_text": "Idin agbaraku to kan ku",
"days": "awon ojo",
"day": "ojo",
"steem_dollars": "Dollar ti steem",
"savings": "Ipamo"
},
"settings": {
"settings": "Settings",
"currency": "Currency",
"language": "Language",
"server": "Server",
"dark_theme": "Dark Theme",
"push_notification": "Push Notification",
"settings": "Eto",
"currency": "Owo",
"language": "Èdè",
"server": "Ate ayelujara",
"dark_theme": "Awo dudu",
"push_notification": "Eto gbigba akiyesi",
"pincode": "Pincode",
"reset": "Reset"
"reset": "Tun bere"
},
"voters": {
"voters_info": "Voters Info",
"no_user": "No user found."
"voters_info": "Alaye nipa oludibo",
"no_user": "A ko ri oruko akole yi."
},
"login": {
"signin": "Sign in",
"signup": "Sign up",
"signin_title": "To get all the benefits of using eSteem",
"username": "Username",
"password": "Password or WIF",
"description": "User credentials are kept locally on the device. Credentials are removed upon logout!",
"cancel": "cancel",
"login": "LOGIN",
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect."
"signin": "Atewole",
"signup": "Fi oruko sile",
"signin_title": "Gbigba gbogbobo anfaani to ro mo lilo esteem",
"username": "Oruko olumulo",
"password": "Idanimo asiri",
"description": "Ori ero ilewo re ni gbogbo awon credentials re o wa. Gbogbo credentials re o di yiyo to ba ti jade!",
"cancel": "fa igi le",
"login": "Se atewole",
"steemconnect_description": "Ti o ba fe ki oro atewole asiri re je fifipamo sori ero yi, o le lo steemconnect."
},
"home": {
"feed": "Feed",
"popular": "Popular"
"feed": "Ate gbogbo agbawole",
"popular": "Gbajumo"
},
"side_menu": {
"profile": "Profile",
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"drafts": "Drafts",
"schedules": "Schedules",
"gallery": "Gallery",
"settings": "Settings",
"add_account": "Add Account",
"logout": "Logout",
"cancel": "Cancel",
"logout_text": "Are you sure you want to logout?"
"profile": "Profaili",
"bookmarks": "Awon ifi amin si",
"favorites": "Asayan",
"drafts": "Awon oro akanse",
"schedules": "Awon Iṣeto",
"gallery": "Ibi isafihan aworan",
"settings": "Eto",
"add_account": "Se afikun oruko akọọlẹ",
"logout": "Jade kuro",
"cancel": "Fa igi le",
"logout_text": "Se o da o loju pe o fe jade kuro?"
},
"header": {
"title": "Login to customize your feed",
"search": "Search..."
"title": "Se atewole lati seto ate igbawole re bi ose fe",
"search": "Ṣawari..."
},
"basic_header": {
"publish": "Publish",
"search": "Search",
"update": "Update",
"reply": "Reply"
"publish": "Ṣe atẹjade",
"search": "Ṣawari",
"update": "Se afikun",
"reply": "Fesi"
},
"editor": {
"title": "Title",
"tags": "tags",
"default_placeholder": "What would you like to write about today?",
"reply_placeholder": "What would you like to write about above post?",
"publish": "Publish",
"reply": "Reply"
"title": "Akole",
"tags": "atona",
"default_placeholder": "Kilo fe kosile loni?",
"reply_placeholder": "Kilo fe ko nipe oro akosile towa ni oke?",
"publish": "Ṣe atẹjade",
"reply": "Fesi"
},
"pincode": {
"enter_text": "Enter pin to unlock",
"set_new": "Set new pin",
"write_again": "Write again",
"forgot_text": "Oh, I forgot it..."
"enter_text": "Te PIN re lati si",
"set_new": "Pese PIN tuntun",
"write_again": "Se akole miran",
"forgot_text": "Ah! Motigbgbe re o..."
},
"alert": {
"success": "Success!",
"allRead": "Marked all notifications as read",
"claim_reward_balance_ok": "Reward balance claimed",
"fail": "Fail!",
"success_shared": "Your post succesfully shared",
"permission_denied": "Permission denied",
"permission_text": "Please, go to phone Settings and change eSteem app permissions.",
"success_rebloged": "Rebloged!",
"already_rebloged": "You have already reblogged!",
"warning": "Warning",
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "Are you sure want to remove?",
"cancel": "Cancel",
"delete": "Delete"
"success": "Aseyori!",
"allRead": "Gba pe oti ka gbogbo akiyesi",
"claim_reward_balance_ok": "Awon ere ti di gbigba",
"fail": "Ko yori!",
"success_shared": "Oro akosile re ti di titan ka",
"permission_denied": "Ko ase fun",
"permission_text": "Jowo, Losi ibi iseto ero ilewo re, ki o si se atunse awon ase to fun eSteem app.",
"success_rebloged": "Oti se eda oro yi!",
"already_rebloged": "Oti se eda oro tele!",
"warning": "Ìkìlọ",
"invalid_pincode": "PIN yi o se tewogba, jowo sematuyewo, ki o tun te.",
"remove_alert": "Se o da o loju pe ofe yo kuro?",
"cancel": "Fa igi le",
"delete": "Pa re",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "Are you sure you want to reblog?"
"reblog_alert": "Se o da o loju pe o fe ṣe eda oro yi?"
},
"drafts": {
"title": "Drafts",
"load_error": "Could not load drafts",
"empty_list": "Nothing here",
"deleted": "Draft deleted"
"title": "Oro akanse",
"load_error": "A o ri oro akanse re pese",
"empty_list": "Ko si ohun kan nibi",
"deleted": "Oro akanse ti pare"
},
"schedules": {
"title": "Scheduled Posts",
"empty_list": "Nothing here",
"deleted": "Scheduled post deleted",
"move": "Move to drafts",
"moved": "Moved to drafts"
"title": "Se eto asiko fun oro re",
"empty_list": "Ko si ohun kan nibi",
"deleted": "Eto asiko oro ti ose ti pare",
"move": "Gbe lo si ibi akanse oro",
"moved": "Oti gbelo sibi awon akanse oro"
},
"bookmarks": {
"title": "Bookmarks",
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"deleted": "Bookmark removed",
"search": "Search in bookmarks"
"title": "Fi amin si",
"load_error": "A ko ri ohun ti o fi amin idamo si pese",
"empty_list": "Ko si ohun kan nibi",
"deleted": "O ti yo ohun ti ofi amin idamo si",
"search": "Wa ninu awon amin idamo ti o ti se",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
"load_error": "Could not load favorites",
"empty_list": "Nothing here",
"search": "Search in favorites"
"title": "Awon ohun ti o yan ni aayo",
"load_error": "A kori awon ohun asayan re pese",
"empty_list": "Ko si ohun kan nibi",
"search": "Wa ninu awon ohun aayo re"
},
"auth": {
"invalid_pin": "Invalid pin code, please check and try again",
"invalid_username": "Invalid username, please check and try again",
"already_logged": "You are already logged in, please try to add another account",
"invalid_credentials": "Invalid credentials, please check and try again",
"unknow_error": "Unknown error, please contact us at support@esteem.app"
"invalid_pin": "PIN yi o ri itewogba, jowo se ayewo ki o tun te",
"invalid_username": "Oruko akole yi o ri itewogba, jowo se ayewo ki o tun te",
"already_logged": "Oti wole, jowo se afikun account miran",
"invalid_credentials": "Oruko yi o ri itewogba, jowo se ayewo ki o tun se",
"unknow_error": "Akude yi se ajoji, jowo kan siwa lori support@esteem.app"
},
"payout": {
"potential_payout": "Potential Payout",
"promoted": "Promoted",
"author_payout": "Author Payout",
"curation_payout": "Curation Payout",
"payout_date": "Payout"
"potential_payout": "Owo ti o n reti",
"promoted": "Itanka",
"author_payout": "Owo ti oluko oro nreti",
"curation_payout": "Isanwojade ti o n reti lati ibi idibo",
"payout_date": "Isanwo jade"
},
"post_dropdown": {
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"copy": "se eda link",
"reblog": "se eda oro",
"reply": "se idahun",
"share": "pin pelu",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_user": "A ko ri oruko yi",
"no_existing_post": "A kori oro yi"
}
}

View File

@ -135,7 +135,9 @@
"invalid_pincode": "Invalid pin code, please check and try again.",
"remove_alert": "您确定想要移除?",
"cancel": "取消",
"delete": "删除"
"delete": "删除",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "您确定想要转发?"
@ -158,7 +160,9 @@
"load_error": "无法加载书签",
"empty_list": "此处无内容",
"deleted": "书签已移除",
"search": "搜索书签"
"search": "搜索书签",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "收藏夹",
@ -184,7 +188,8 @@
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share"
"share": "share",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -135,7 +135,9 @@
"invalid_pincode": "無效的PIN碼請核對後再試一次。",
"remove_alert": "確定要刪除嗎?",
"cancel": "取消",
"delete": "刪除"
"delete": "刪除",
"copied": "Copied!",
"no_internet": "No connection!"
},
"post": {
"reblog_alert": "您確定想要轉發嗎?"
@ -158,7 +160,9 @@
"load_error": "無法載入書籤",
"empty_list": "暫無内容!",
"deleted": "已移除書籤",
"search": "搜尋書籤"
"search": "搜尋書籤",
"added": "Added to bookmars",
"add": "Add to bookmarks"
},
"favorites": {
"title": "我的最愛",
@ -184,7 +188,8 @@
"copy": "複製連結",
"reblog": "轉發",
"reply": "回覆",
"share": "分享"
"share": "分享",
"bookmarks": "add to bookmarks"
},
"deep_link": {
"no_existing_user": "No existing user",

View File

@ -1,5 +1,3 @@
// export default ['English', 'Turkish', 'German', 'Spanish', 'Italian', 'Duch', 'Russian'];
export default ['English', 'Turkish', 'Russian'];
export default ['Deutsche', 'English', 'Hungarian', 'Indonesian', 'Russian'];
export const VALUE = ['en-US', 'tr-TR', 'ru-RU'];
// export const VALUE = ['en-US', 'tr-TR', 'gr', 'sp', 'it', 'dc', 'rs'];
export const VALUE = ['de-DE', 'en-US', 'hu-HU', 'id-ID', 'ru-RU'];

View File

@ -1,4 +1,8 @@
import { UPDATE_ACTIVE_BOTTOM_TAB, IS_COLLAPSE_POST_BUTTON } from '../constants/constants';
import {
IS_COLLAPSE_POST_BUTTON,
TOAST_NOTIFICATION,
UPDATE_ACTIVE_BOTTOM_TAB,
} from '../constants/constants';
export const updateActiveBottomTab = payload => ({
payload,
@ -9,3 +13,8 @@ export const isCollapsePostButton = payload => ({
payload,
type: IS_COLLAPSE_POST_BUTTON,
});
export const toastNotification = payload => ({
payload,
type: TOAST_NOTIFICATION,
});

View File

@ -35,3 +35,4 @@ export const FETCH_GLOBAL_PROPS = 'FETCH_GLOBAL_PROPS';
// UI
export const IS_COLLAPSE_POST_BUTTON = 'IS_COLLAPSE_POST_BUTTON';
export const UPDATE_ACTIVE_BOTTOM_TAB = 'UPDATE_ACTIVE_BOTTOM_TAB';
export const TOAST_NOTIFICATION = 'TOAST_NOTIFICATION';

View File

@ -1,8 +1,13 @@
import { UPDATE_ACTIVE_BOTTOM_TAB, IS_COLLAPSE_POST_BUTTON } from '../constants/constants';
import {
UPDATE_ACTIVE_BOTTOM_TAB,
IS_COLLAPSE_POST_BUTTON,
TOAST_NOTIFICATION,
} from '../constants/constants';
const initialState = {
activeBottomTab: 'HomeTabbar',
isCollapsePostButton: false,
toastNotifcaion: '',
};
export default function (state = initialState, action) {
@ -18,6 +23,12 @@ export default function (state = initialState, action) {
...state,
isCollapsePostButton: action.payload,
};
case TOAST_NOTIFICATION:
return {
...state,
toastNotification: action.payload,
};
default:
return state;
}

View File

@ -11,8 +11,12 @@ import { bindActionCreators } from 'redux';
// Constants
import en from 'react-intl/locale-data/en';
import tr from 'react-intl/locale-data/tr';
import id from 'react-intl/locale-data/id';
import ru from 'react-intl/locale-data/ru';
import de from 'react-intl/locale-data/de';
import it from 'react-intl/locale-data/it';
import hu from 'react-intl/locale-data/hu';
import AUTH_TYPE from '../../../constants/authType';
// Services
@ -61,7 +65,7 @@ import {
import ApplicationScreen from '../screen/applicationScreen';
import { Launch } from '../..';
addLocaleData([...en, ...tr, ...ru]);
addLocaleData([...en, ...ru, ...de, ...id, ...it, ...hu]);
class ApplicationContainer extends Component {
constructor() {
@ -315,7 +319,7 @@ class ApplicationContainer extends Component {
};
render() {
const { selectedLanguage, isConnected } = this.props;
const { selectedLanguage, isConnected, toastNotification} = this.props;
const { isRenderRequire, isReady } = this.state;
// For testing It comented out.
@ -326,7 +330,7 @@ class ApplicationContainer extends Component {
if (isRenderRequire && isReady) {
return (
<ApplicationScreen isConnected={isConnected} locale={selectedLanguage} {...this.props} />
<ApplicationScreen isConnected={isConnected} locale={selectedLanguage} toastNotification={toastNotification} {...this.props} />
);
}
return <Launch />;
@ -349,6 +353,9 @@ export default connect(
currentAccount: state.account.currentAccount,
otherAccounts: state.account.otherAccounts,
pinCode: state.account.pin,
// UI
toastNotification: state.ui.toastNotification
}),
(dispatch, props) => ({
dispatch,

View File

@ -8,6 +8,8 @@ import messages from '../../../config/locales';
// Components
import { NoInternetConnection } from '../../../components/basicUIElements';
import { ToastNotification } from '../../../components/toastNotification';
import { toastNotification as toastNotificationAction } from '../../../redux/actions/uiAction';
// Themes (Styles)
import darkTheme from '../../../themes/darkTheme';
@ -16,7 +18,9 @@ import lightTheme from '../../../themes/lightTheme';
class ApplicationScreen extends Component {
constructor(props) {
super(props);
this.state = {};
this.state = {
isShowToastNotification: false,
};
}
componentWillMount() {
@ -24,8 +28,24 @@ class ApplicationScreen extends Component {
EStyleSheet.build(isDarkTheme ? darkTheme : lightTheme);
}
componentWillReceiveProps(nextProps) {
const { toastNotification } = this.props;
if (nextProps.toastNotification && nextProps.toastNotification !== toastNotification) {
this.setState({ isShowToastNotification: true });
}
}
_handleOnHideToastNotification = () => {
const { dispatch } = this.props;
dispatch(toastNotificationAction(''));
this.setState({ isShowToastNotification: false });
};
render() {
const { isConnected, isDarkTheme, locale } = this.props;
const {
isConnected, isDarkTheme, locale, toastNotification,
} = this.props;
const { isShowToastNotification } = this.state;
const barStyle = isDarkTheme ? 'light-content' : 'dark-content';
const barColor = isDarkTheme ? '#1e2835' : '#fff';
@ -46,6 +66,14 @@ class ApplicationScreen extends Component {
<IntlProvider locale={locale} messages={flattenMessages(messages[locale])}>
<ReduxNavigation />
</IntlProvider>
{isShowToastNotification && (
<ToastNotification
text={toastNotification}
duration={2000}
onHide={this._handleOnHideToastNotification}
/>
)}
</Fragment>
);
}

View File

@ -15,6 +15,7 @@ import { getPost, getUser } from '../../../providers/steem/dsteem';
import { Modal } from '../../../components';
import { PinCode } from '../../pinCode';
import PostButtonForAndroid from '../../../components/postButton/view/postButtonsForAndroid';
import { ToastNotificaiton } from '../../../components/toastNotification';
// Constants
import ROUTES from '../../../constants/routeNames';

View File

@ -2,6 +2,7 @@ import React, { Component } from 'react';
import { Platform } from 'react-native';
import { connect } from 'react-redux';
import AppCenter from 'appcenter';
import { Client } from 'dsteem';
// Realm
import {
@ -22,7 +23,8 @@ import {
isDarkTheme,
openPinCodeModal,
} from '../../../redux/actions/applicationActions';
import { setPushToken, getNodes, getCurrencyRate } from '../../../providers/esteem/esteem';
import { toastNotification } from '../../../redux/actions/uiAction';
import { setPushToken, getNodes } from '../../../providers/esteem/esteem';
// Middleware
@ -61,7 +63,6 @@ class SettingsContainer extends Component {
// Component Functions
_handleDropdownSelected = (action, actionType) => {
const { dispatch } = this.props;
const { serverList } = this.state;
switch (actionType) {
case 'currency':
@ -74,8 +75,7 @@ class SettingsContainer extends Component {
break;
case 'api':
dispatch(setApi(serverList[action]));
setServer(serverList[action]);
this._changeApi(action);
break;
default:
@ -83,6 +83,46 @@ class SettingsContainer extends Component {
}
};
_changeApi = async (action) => {
const { dispatch, selectedApi } = this.props;
const { serverList } = this.state;
const server = serverList[action];
let serverResp;
let isError = false;
const client = new Client(server, { timeout: 3000 });
dispatch(setApi(server));
try {
serverResp = await client.database.getDynamicGlobalProperties();
} catch (e) {
isError = true;
dispatch(toastNotification('Connection Failed!'));
} finally {
if (!isError) dispatch(toastNotification('Succesfuly connected!'));
}
if (!isError) {
const localTime = new Date(new Date().toISOString().split('.')[0]);
const serverTime = new Date(serverResp.time);
const isAlive = localTime - serverTime < 15000;
if (!isAlive) {
dispatch(toastNotification('Server not available'));
isError = true;
this.setState({ apiCheck: false });
return;
}
}
if (isError) {
dispatch(setApi(selectedApi));
} else {
setServer(server);
}
};
_currencyChange = (action) => {
const { dispatch } = this.props;

View File

@ -33,14 +33,14 @@ class SettingsScreen extends PureComponent {
render() {
const {
handleOnChange,
selectedLanguage,
intl,
isDarkTheme,
isLoggedIn,
isNotificationSettingsOpen,
selectedApi,
selectedCurrency,
isNotificationSettingsOpen,
isDarkTheme,
selectedLanguage,
serverList,
intl,
isLoggedIn,
} = this.props;
return (