Merge branch 'development' of https://github.com/esteemapp/esteem-mobile into wallet/button

This commit is contained in:
ue 2019-12-16 23:21:41 +03:00
commit a48ca5f86a
100 changed files with 2250 additions and 1167 deletions

View File

@ -4,6 +4,9 @@
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.CAMERA"/>
<uses-permission android:name="com.android.vending.BILLING" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.DOWNLOAD_WITHOUT_NOTIFICATION" />
<uses-feature android:name="android.hardware.camera" android:required="false" />
<uses-feature android:name="android.hardware.camera.front" android:required="false" />

View File

@ -296,8 +296,6 @@ PODS:
- RSKImageCropper
- RNReanimated (1.3.0):
- React
- RNScreens (2.0.0-alpha.18):
- React
- RNSVG (9.11.1):
- React
- RNVectorIcons (6.6.0):
@ -357,7 +355,6 @@ DEPENDENCIES:
- RNIap (from `../node_modules/react-native-iap`)
- RNImageCropPicker (from `../node_modules/react-native-image-crop-picker`)
- RNReanimated (from `../node_modules/react-native-reanimated`)
- RNScreens (from `../node_modules/react-native-screens`)
- RNSVG (from `../node_modules/react-native-svg`)
- RNVectorIcons (from `../node_modules/react-native-vector-icons`)
- Yoga (from `../node_modules/react-native/ReactCommon/yoga`)
@ -461,8 +458,6 @@ EXTERNAL SOURCES:
:path: "../node_modules/react-native-image-crop-picker"
RNReanimated:
:path: "../node_modules/react-native-reanimated"
RNScreens:
:path: "../node_modules/react-native-screens"
RNSVG:
:path: "../node_modules/react-native-svg"
RNVectorIcons:
@ -520,7 +515,6 @@ SPEC CHECKSUMS:
RNIap: b4c77c8bc4501203f4b743126a05da23f10f40b4
RNImageCropPicker: bfb3ea9c8622f290532e2fe63f369e0d5a52f597
RNReanimated: 6abbbae2e5e72609d85aabd92a982a94566885f1
RNScreens: 5a7b407132e42765bb136932d2a84bdb90c3ef33
RNSVG: be27aa7c58819f97399388ae53d7fa0572f32c7f
RNVectorIcons: 0bb4def82230be1333ddaeee9fcba45f0b288ed4
RSKImageCropper: a446db0e8444a036b34f3c43db01b2373baa4b2a

View File

@ -24,10 +24,9 @@
"dependencies": {
"@babel/runtime": "^7.5.5",
"@esteemapp/esteem-render-helpers": "^1.2.2",
"@ptomasroos/react-native-multi-slider": "^1.0.0",
"@react-native-community/cameraroll": "^1.3.0",
"@esteemapp/react-native-autocomplete-input": "^4.2.1",
"@esteemapp/react-native-multi-slider": "^1.1.0",
"@react-native-community/cameraroll": "^1.3.0",
"@react-native-community/netinfo": "^4.1.3",
"appcenter": "^2.6.0",
"appcenter-analytics": "^2.6.0",
@ -80,14 +79,15 @@
"react-native-webview": "^7.5.2",
"react-navigation": "^4.0.10",
"react-navigation-drawer": "^2.3.3",
"react-navigation-redux-helpers": "^2.0.8",
"react-navigation-stack": "1.10.3",
"react-navigation-redux-helpers": "^4.0.1",
"react-navigation-stack": "^1.10.3",
"react-navigation-tabs": "^2.6.2",
"react-redux": "^7.1.1",
"redux": "^4.0.4",
"redux-persist": "^6.0.0",
"redux-promise": "^0.6.0",
"redux-thunk": "^2.3.0",
"rn-fetch-blob": "^0.11.2",
"rn-placeholder": "^1.3.2",
"speakingurl": "^14.0.1",
"stacktrace-parser": "0.1.4",

View File

@ -10,7 +10,7 @@ export default EStyleSheet.create({
borderColor: '$primaryLightBackground',
marginRight: 0,
marginLeft: 0,
marginTop: 10,
marginTop: 0,
},
textWrapper: {
flexDirection: 'row',

View File

@ -57,7 +57,7 @@ const CommentView = ({
date={getTimeFromNow(comment.created)}
name={comment.author}
reputation={comment.author_reputation}
size={avatarSize || 24}
size={avatarSize || 36}
currentAccountUsername={currentAccountUsername}
isShowOwnerIndicator={mainAuthor === comment.author}
isHideImage={isHideImage}
@ -156,7 +156,7 @@ const CommentView = ({
commentNumber={commentNumber + 1}
marginLeft={20}
isShowSubComments={true}
avatarSize={avatarSize || 16}
avatarSize={avatarSize || 24}
author={comment.author}
permlink={comment.permlink}
commentCount={comment.children}

View File

@ -1,4 +1,4 @@
import React, { Component } from 'react';
import React, { useState, useEffect } from 'react';
import { View } from 'react-native';
import FastImage from 'react-native-fast-image';
@ -13,52 +13,7 @@ import { getResizedAvatar } from '../../../utils/image';
// Styles
import styles from './formInputStyles';
class FormInputView extends Component {
/* Props
* ------------------------------------------------
* @prop { string } placeholder - Place holder text.
* @prop { string } type - Input type.
* @prop { boolean } isFirstImage - Render image from steem.
* @prop { boolean } isEditable - Can permission edit.
* @prop { boolean } isValid - This delegate input valit or not.
* @prop { boolean } secureTextEntry - For hiding password value.
*/
constructor(props) {
super(props);
this.state = {
value: props.value || '',
inputBorderColor: '#e7e7e7',
isValid: true,
};
}
// Component Functions
_handleOnChange = value => {
const { onChange } = this.props;
this.setState({ value });
if (onChange) {
onChange(value);
}
};
_handleOnFocus = () => {
this.setState({ inputBorderColor: '#357ce6' });
};
// Component Life Cycles
UNSAFE_componentWillReceiveProps(nextProps) {
const { isValid } = this.props;
if (nextProps.isValid !== isValid) {
this.setState({ isValid: nextProps.isValid });
}
}
render() {
const { inputBorderColor, isValid, value } = this.state;
const {
const FormInputView = ({
placeholder,
type,
isFirstImage,
@ -70,15 +25,43 @@ class FormInputView extends Component {
wrapperStyle,
height,
inputStyle,
} = this.props;
onChange,
isValid,
value,
}) => {
const [_value, setValue] = useState(value || '');
const [inputBorderColor, setInputBorderColor] = useState('#e7e7e7');
const [_isValid, setIsValid] = useState(true);
const _handleOnChange = text => {
setValue(text);
if (onChange) {
onChange(text);
}
};
const _handleOnFocus = () => {
setInputBorderColor('#357ce6');
};
// TODO: Workaround for android context (copy/paste) menu, check react-navigation library
useEffect(() => {
setValue(' ');
setTimeout(() => {
setValue('');
}, 1);
}, []);
useEffect(() => {
setIsValid(isValid);
}, [isValid]);
return (
<View
style={[
styles.wrapper,
{
borderBottomColor: isValid ? inputBorderColor : 'red',
},
{ borderBottomColor: _isValid ? inputBorderColor : 'red' },
wrapperStyle,
]}
>
@ -103,17 +86,19 @@ class FormInputView extends Component {
{({ isDarkTheme }) => (
<TextInput
style={inputStyle}
onFocus={() => this.setState({ inputBorderColor: '#357ce6' })}
onBlur={() => this.setState({ inputBorderColor: '#e7e7e7' })}
onFocus={_handleOnFocus}
onBlur={() => setInputBorderColor('#e7e7e7')}
autoCapitalize="none"
secureTextEntry={secureTextEntry}
height={height}
placeholder={placeholder}
editable={isEditable || true}
textContentType={type}
onChangeText={this._handleOnChange}
value={value}
onChangeText={_handleOnChange}
value={_value}
placeholderTextColor={isDarkTheme ? '#526d91' : '#788187'}
autoCorrect={false}
contextMenuHidden={false}
/>
)}
</ThemeContainer>
@ -122,14 +107,13 @@ class FormInputView extends Component {
{value && value.length > 0 ? (
<Icon
iconType={iconType || 'MaterialIcons'}
onPress={() => this.setState({ value: '' })}
onPress={() => setValue('')}
name={leftIconName}
style={styles.icon}
/>
) : null}
</View>
);
}
}
};
export default FormInputView;

View File

@ -158,7 +158,7 @@ class NotificationView extends PureComponent {
);
render() {
const { readAllNotification, getActivities, isNotificationRefreshing } = this.props;
const { readAllNotification, getActivities, isNotificationRefreshing, intl } = this.props;
const { filters, selectedFilter, selectedIndex } = this.state;
const _notifications = this._getNotificationsArrays();
@ -166,7 +166,9 @@ class NotificationView extends PureComponent {
<View style={styles.container}>
<FilterBar
dropdownIconName="arrow-drop-down"
options={filters.map(item => item.value)}
options={filters.map(item =>
intl.formatMessage({ id: `notification.${item.key}` }).toUpperCase(),
)}
defaultText="ALL"
onDropdownSelect={this._handleOnDropdownSelect}
rightIconName="playlist-add-check"

View File

@ -41,6 +41,10 @@ export default EStyleSheet.create({
title: {
color: '$primaryDarkGray',
},
moreinfo: {
color: '$primaryBlack',
flex: 1,
},
description: {
color: '$primaryBlack',
fontSize: 12,

View File

@ -15,7 +15,7 @@ const NotificationLineView = ({ notification, handleOnPressNotification }) => {
const intl = useIntl();
let _title;
let titleExtra = '';
let _moreinfo = '';
useEffect(() => {
setIsRead(notification.read);
}, [notification]);
@ -33,7 +33,6 @@ const NotificationLineView = ({ notification, handleOnPressNotification }) => {
titleExtra = notification.amount;
} else if (notification.weight) {
const _percent = `${parseFloat((notification.weight / 100).toFixed(2))}% `;
titleExtra = _percent;
}
@ -41,6 +40,18 @@ const NotificationLineView = ({ notification, handleOnPressNotification }) => {
id: `notification.${notification.type}`,
})}`;
if (
notification.type === 'vote' ||
notification.type === 'reblog' ||
(notification.type === 'mention' && notification.post)
) {
_moreinfo = notification.title || notification.permlink;
}
if (notification.type === 'reply' || (notification.type === 'mention' && !notification.post)) {
_moreinfo = notification.parent_title || notification.parent_permlink || notification.permlink;
}
return (
<TouchableHighlight onPress={_handleOnNotificationPress}>
<View
@ -54,7 +65,10 @@ const NotificationLineView = ({ notification, handleOnPressNotification }) => {
<View style={styles.body}>
<View style={styles.titleWrapper}>
<Text style={styles.name}>{notification.source} </Text>
<Text style={styles.title}>{_title}</Text>
<Text style={styles.title}>{_title} </Text>
<Text style={styles.moreinfo} numberOfLines={1} ellipsizeMode={4}>
{_moreinfo}
</Text>
</View>
{notification.description && (
<Text numberOfLines={1} style={styles.description}>

View File

@ -102,7 +102,7 @@ class PostCardView extends Component {
name={get(content, 'author')}
profileOnPress={this._handleOnUserPress}
reputation={get(content, 'author_reputation')}
size={32}
size={36}
tag={content.category}
rebloggedBy={rebloggedBy}
isPromoted={get(content, 'is_promoted')}

View File

@ -1,5 +1,5 @@
import React, { Fragment, useState } from 'react';
import { Dimensions, Linking, Alert, Modal } from 'react-native';
import { Dimensions, Linking, Alert, Modal, PermissionsAndroid, Platform } from 'react-native';
import CameraRoll from '@react-native-community/cameraroll';
import { withNavigation } from 'react-navigation';
import { useIntl, injectIntl } from 'react-intl';
@ -7,6 +7,7 @@ import AutoHeightWebView from 'react-native-autoheight-webview';
import EStyleSheet from 'react-native-extended-stylesheet';
import get from 'lodash/get';
import ImageViewer from 'react-native-image-zoom-viewer';
import RNFetchBlob from 'rn-fetch-blob';
import script from './config';
import { PostPlaceHolder, CommentPlaceHolder } from '../../../basicUIElements';
@ -34,7 +35,12 @@ const PostBody = ({
}
try {
const data = JSON.parse(get(event, 'nativeEvent.data'));
let data = {};
try {
data = JSON.parse(get(event, 'nativeEvent.data'));
} catch (error) {
data = {};
}
const { type, href, author, category, permlink, tag, proposal, videoHref } = data;
@ -127,9 +133,44 @@ const PostBody = ({
}
};
const _saveImage = uri => {
const checkAndroidPermission = async () => {
try {
const permission = PermissionsAndroid.PERMISSIONS.WRITE_EXTERNAL_STORAGE;
await PermissionsAndroid.request(permission);
Promise.resolve();
} catch (error) {
Promise.reject(error);
}
};
const _downloadImage = async uri => {
return RNFetchBlob.config({
fileCache: true,
appendExt: 'jpg',
})
.fetch('GET', uri)
.then(res => {
let status = res.info().status;
if (status == 200) {
return res.path();
} else {
Promise.reject();
}
})
.catch(errorMessage => {
Promise.reject(errorMessage);
});
};
const _saveImage = async uri => {
try {
if (Platform.OS === 'android') {
await checkAndroidPermission();
uri = `file://${await _downloadImage(uri)}`;
}
CameraRoll.saveToCameraRoll(uri)
.then(() => {
.then(res => {
Alert.alert(
intl.formatMessage({ id: 'alert.success' }),
intl.formatMessage({ id: 'post.image_saved' }),
@ -138,10 +179,25 @@ const PostBody = ({
);
})
.catch(error => {
Alert.alert(intl.formatMessage({ id: 'post.image_saved_error' }), error, [{ text: 'OK' }], {
Alert.alert(
intl.formatMessage({ id: 'post.image_saved_error' }),
error.message,
[{ text: 'OK' }],
{
cancelable: false,
},
);
});
});
} catch (error) {
Alert.alert(
intl.formatMessage({ id: 'post.image_saved_error' }),
error.message,
[{ text: 'OK' }],
{
cancelable: false,
},
);
}
};
const html = body.replace(/<a/g, '<a target="_blank"');

View File

@ -57,7 +57,7 @@ class PostListItemView extends Component {
date={isFormatedDate ? created : getTimeFromNow(created, true)}
name={username}
reputation={reputation}
size={32}
size={36}
tag={mainTag}
/>
<IconButton

View File

@ -202,7 +202,7 @@ class PostDisplayView extends PureComponent {
currentAccountUsername={name}
reputation={post.author_reputation}
tag={post.category}
size={16}
size={36}
/>
<PostBody body={post.body} />
<View style={styles.footer}>

View File

@ -351,7 +351,10 @@ const PostsView = ({
{filterOptions && isShowFilterBar && (
<FilterBar
dropdownIconName="arrow-drop-down"
options={filterOptions}
//options={filterOptions}
options={filterOptions.map(item =>
intl.formatMessage({ id: `home.${item.toLowerCase()}` }).toUpperCase(),
)}
selectedOptionIndex={selectedFilterIndex}
defaultText={filterOptions[selectedOptionIndex]}
rightIconName="view-module"

View File

@ -114,7 +114,7 @@ class ProfileView extends PureComponent {
defaultTitle={intl.formatMessage({
id: 'profile.details',
})}
expanded
expanded={!isOwnProfile}
isExpanded={isSummaryOpen}
handleOnExpanded={this._handleOnSummaryExpanded}
moreHeight={collapsibleMoreHeight}

View File

@ -74,7 +74,12 @@ const SearchModalContainer = ({
getPurePost(author, permlink).then(post => {
if (post.id !== 0) {
const result = {};
const metadata = JSON.parse(get(post, 'json_metadata', ''));
let metadata = {};
try {
metadata = JSON.parse(get(post, 'json_metadata', ''));
} catch (error) {
metadata = {};
}
if (get(metadata, 'image', false) && metadata.image.length > 0) {
[result.image] = metadata.image;
} else {

View File

@ -54,7 +54,7 @@ export default EStyleSheet.create({
alignItems: 'center',
},
searchItemImageWrapper: {
flex: 1,
flex: 2,
},
searchItemTextWrapper: {
flex: 10,

View File

@ -56,7 +56,7 @@ export default EStyleSheet.create({
color: '$iconColor',
fontSize: 20,
marginRight: 5,
width: 25,
width: 20,
},
listItemText: {
color: '$primaryDarkGray',

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "galak post dröen",
"unvote": "hana galak post dröen",
"reply": "balah keu post dröen",
"mention": "seubut dröen",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "ikot dröen",
"unfollow": "piyôh ikut dröen",
"ignore": "hanapeureumeun dröen",
"reblog": "postingan dröen ka di reblog",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Bithé",
"leaderboard": "Papeun Rangking",
@ -117,7 +120,11 @@
"yesterday": "Baroë",
"this_week": "Peukan Nyoë",
"this_month": "Buleuën Nyoë",
"older_then": "Leubéh Lam Sibulëun"
"older_then": "Leubéh Lam Sibulëun",
"activities": "All",
"replies": "Balah",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Umpëun",
"popular": "Meucuhu"
"popular": "Meucuhu",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Konsep",

View File

@ -28,6 +28,9 @@
"reblog_title": "نقاط لإعادة النشر",
"login_title": "نقاط لتسجيل الدخول",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "مكافأة الاستخدام",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "الإعجابات على منشورك",
"unvote": "إزالة التصويت على منشورك",
"reply": "قام بالرد على مشاركتك",
"mention": "قام بذكرك",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "قام بمتابعتك",
"unfollow": "قام بإلغاء متابعتك",
"ignore": "قام بتجاهلك",
"reblog": "إعادة تدوين مشاركتك",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "الإشعارات",
"leaderboard": "المتصدرين",
@ -117,7 +120,11 @@
"yesterday": "يوم أمس",
"this_week": "هذا الأسبوع",
"this_month": "هذا الشهر",
"older_then": "أقدم من شهر"
"older_then": "أقدم من شهر",
"activities": "All",
"replies": "الردود",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "المستجدات",
"popular": "الأكثر شعبية"
"popular": "الأكثر شعبية",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "الملف الشّخصي",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "المسودات",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Təkrar paylaşmaq üçün xal",
"login_title": "Giriş etmək üçün xal",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "İstifadə bonusu",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "göndərişini bəyəndi",
"unvote": "verdiyi səsi götürdü",
"reply": "göndərişə cavab verdi",
"mention": "adını çəkdi",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "səni izlədi",
"unfollow": "səni izləməkdən imtina etdi",
"ignore": "səni əngəllədi",
"reblog": "göndərişini paylaşdı",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Bildirişlər",
"leaderboard": "Liderlər cədvəli",
@ -117,7 +120,11 @@
"yesterday": "Dünən",
"this_week": "Bu Həftə",
"this_month": "Bu Ay",
"older_then": "Bir Aydan Köhnə"
"older_then": "Bir Aydan Köhnə",
"activities": "All",
"replies": "Cavablar",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Axın",
"popular": "Məşhur"
"popular": "Məşhur",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Qaralamalar",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "আপনার পোস্ট পছন্দ করেছে",
"unvote": "পোস্টের ভোট মুছে ফেলেছে",
"reply": "পোস্টে জবাব দিয়েছে",
"mention": "আপনাকে উল্লেখ করেছে",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "আপনাকে অনুসরণ করেছে",
"unfollow": "আপনাকে অননুসরণ করেছে",
"ignore": "আপনাকে উপেক্ষা করেছে",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Punkte für einen ReBlog",
"login_title": "Punkte für den Login",
"checkin_title": "Punkte für den Herzschlag",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Nutzungs-Bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "gefällt dein Beitrag",
"unvote": "gefällt dein Beitrag nicht",
"reply": "antwortete auf deinen Beitrag",
"mention": "hat dich erwähnt",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "folgt dir jetzt",
"unfollow": "folgt dir nicht mehr",
"ignore": "ignoriert dich",
"reblog": "hat deinen Beitrag geteilt",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Benachrichtigungen",
"leaderboard": "Rangliste",
@ -117,7 +120,11 @@
"yesterday": "Gestern",
"this_week": "Diese Woche",
"this_month": "Diesen Monat",
"older_then": "Älter als ein Monat"
"older_then": "Älter als ein Monat",
"activities": "All",
"replies": "Antworten",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Populär"
"popular": "Populär",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -289,7 +300,10 @@
"copy_link": "Link kopieren",
"reblogged": "rebloggt von",
"sponsored": "Gesponsert",
"open_thread": "Thread öffnen"
"open_thread": "Thread öffnen",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Entwürfe",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Puntos por rebloguear",
"login_title": "Puntos por iniciar sesión",
"checkin_title": "Puntos por latido",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Bono de uso",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "le gusta tu publicación",
"unvote": "quitó su voto de tu publicación",
"reply": "contestó tu publicación",
"mention": "te mencionó",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "te siguió",
"unfollow": "dejó de seguirte",
"ignore": "te ignoró",
"reblog": "reblogueó tu publicación",
"reblog": "reblogged",
"transfer": "transferido",
"notification": "Notificaciones",
"leaderboard": "Tabla de posiciones",
@ -117,7 +120,11 @@
"yesterday": "Ayer",
"this_week": "Esta semana",
"this_month": "Este mes",
"older_then": "Más de un mes"
"older_then": "Más de un mes",
"activities": "All",
"replies": "Respuestas",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Inicio",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Perfil",
@ -289,7 +300,10 @@
"copy_link": "Copiar enlace",
"reblogged": "reblogueado por",
"sponsored": "PATROCINADO",
"open_thread": "Hilo abierto"
"open_thread": "Hilo abierto",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Borradores",

View File

@ -28,6 +28,9 @@
"reblog_title": "Punktid taaspostitustest",
"login_title": "Punktid sisselogimisest",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Kasutusboonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "saatis sulle hääle",
"unvote": "eemaldas hääle su postituselt",
"reply": "vastas su postitusele",
"mention": "mainis sind",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "hakkas sind jälgima",
"unfollow": "enam ei jälgi sind",
"ignore": "ignoreeris sind",
"reblog": "taaspostitas sinu postituse",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Teavitused",
"leaderboard": "Edetabel",
@ -117,7 +120,11 @@
"yesterday": "Eile",
"this_week": "Sel nädalal",
"this_month": "Sel kuul",
"older_then": "Vanem kui kuu"
"older_then": "Vanem kui kuu",
"activities": "All",
"replies": "Vastused",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Sein",
"popular": "Populaarne"
"popular": "Populaarne",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profiil",
@ -289,7 +300,10 @@
"copy_link": "Kopeeri aadress",
"reblogged": "jagatud %s poolt",
"sponsored": "SPONSOREERITUD",
"open_thread": "Avatud lõim"
"open_thread": "Avatud lõim",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "امتیاز برای اشتراک گذاری",
"login_title": "امتیاز برای ورود به حساب کاربری",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "استفاده از پاداش",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "مطلب شما را پسند کرد",
"unvote": "رأی‌ خود را پس گرفت",
"reply": "به مطلب شما پاسخ داد",
"mention": "شما را خطاب کرد",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "شما را دنبال میکند",
"unfollow": "شما را دنبال نمیکند",
"ignore": "شما را نادیده گرفته",
"reblog": "مطلب شما را به اشتراک گذاشت",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "اطلاعیه ها",
"leaderboard": "جدول رده بندی",
@ -117,7 +120,11 @@
"yesterday": "دیروز",
"this_week": "این هفته",
"this_month": "این ماه",
"older_then": "قدیمی تر از 1 ماه"
"older_then": "قدیمی تر از 1 ماه",
"activities": "All",
"replies": "پاسخ‌ها",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "خبرنامه",
"popular": "مورد علاقه"
"popular": "مورد علاقه",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "نمایه",
@ -289,7 +300,10 @@
"copy_link": "کپی لینک",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "پیشنویس ها",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "tykkää julkaisustasi",
"unvote": "unvoted your post",
"reply": "vastasi julkaisuusi",
"mention": "mainitsi sinut",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "seurasi sinua",
"unfollow": "lopetti seuraamisesi",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Eilen",
"this_week": "Tällä viikolla",
"this_month": "Tässä kuussa",
"older_then": "Kuukautta vanhempi"
"older_then": "Kuukautta vanhempi",
"activities": "All",
"replies": "Vastaukset",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Syöte",
"popular": "Suositut"
"popular": "Suositut",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profiili",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Luonnokset",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -19,7 +19,7 @@
"outgoing_transfer_title": "Transfert sortant",
"checkin_extra": "Bonus",
"delegation": "Délégation",
"delegations": "Delegations",
"delegations": "Délégations",
"delegation_title": "Récompense de délégation",
"delegation_desc": "Gagnez des ESTM tous les jours pour les délégations",
"post_title": "Points pour vos publications",
@ -28,17 +28,20 @@
"reblog_title": "Points pour vos reblog",
"login_title": "Points pour vos connexions",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Bonus d'utilisation",
"no_activity": "No recent activity",
"no_activity": "Aucune activité récente",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "Vous pouvez gagner des points en publiant régulièrement. Publier vous donne jusqu'a 15 points.",
"comment_desc": "Each comment you make helps you to grow your audience and also earns you upto 5 points.",
"comment_desc": "Chaque commentaire que vous faites vous aide à agrandir votre audience et vous donne également 5 points.",
"checkin_desc": "Checking in regularly gives you 0.25 points.",
"vote_desc": "By voting you give reward to other creators and also earn back upto 0.01 x vote weight points.",
"reblog_desc": "Share what post you like with your friends and earn points.",
"login_desc": "When you login into app first time you earn 100 points.",
"checkin_extra_desc": "Consistent use of app gives you extra chances to earn more points, be more active and earn more.",
"reblog_desc": "Partagez les publication que vous aimez avec vos amis et gagnez des points.",
"login_desc": "Lorsque vous vous connectez à l'application pour la première fois, vous gagnez 100 points.",
"checkin_extra_desc": "Une utilisation regulière de l'application vous donne des chances supplémentaires de gagner plus de points, soyez plus actif et gagnez plus.",
"dropdown_transfer": "Cadeau",
"dropdown_promote": "Promouvoir",
"dropdown_boost": "Accélérer",
@ -66,15 +69,15 @@
"power_down": "Diminuer son influence",
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"transfer_to_savings": "Transfer To Savings",
"convert": "Convert",
"transfer_to_savings": "Transférer vers Épargnes",
"convert": "Convertir",
"escrow_transfer": "Escrow Transfer",
"escrow_dispute": "Escrow Dispute",
"escrow_release": "Escrow Release",
"escrow_approve": "Escrow Approve",
"cancel_transfer_from_savings": "Cancel Transfer from Savings",
"delegate_vesting_shares": "Délégation",
"fill_convert_request": "Convert request executed",
"fill_convert_request": "Requête de conversion exécutée",
"fill_transfer_from_savings": "From Savings executed",
"fill_vesting_withdraw": "Power Down executed",
"estm": {
@ -89,25 +92,25 @@
},
"steem": {
"title": "STEEM",
"buy": "GET STEEM"
"buy": "OBTENIR DES STEEM"
},
"sbd": {
"title": "SBD",
"buy": "GET SBD"
"buy": "OBETNIR DES SBD"
},
"steem_power": {
"title": "STEEM POWER"
}
},
"notification": {
"vote": "ont aimés votre post",
"unvote": "a retiré son vote sur votre publication",
"reply": "a répondu à votre post",
"mention": "vous a mentionné",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "vous a suivi",
"unfollow": "ne vous suit plus",
"ignore": "vous a ignoré",
"reblog": "a reblogué votre post",
"reblog": "reblogged",
"transfer": "transféré",
"notification": "Notifications",
"leaderboard": "Classement",
@ -117,7 +120,11 @@
"yesterday": "Hier",
"this_week": "Cette semaine",
"this_month": "Ce mois",
"older_then": "Vieux de plus de 1 mois"
"older_then": "Vieux de plus de 1 mois",
"activities": "All",
"replies": "Réponses",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "QUOTIDIEN",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Fil d'actualités",
"popular": "Populaires"
"popular": "Populaires",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -280,7 +291,7 @@
"connection_fail": "Échec de la connexion !",
"connection_success": "Connexion réussie!",
"checking": "Vérification...",
"not_existing_post": "The post does not exist! Please check permlink and author.",
"not_existing_post": "Le post n'existe pas ! Veuillez vérifier le lien et l'auteur.",
"google_play_version": "Nous avons remarqué que votre appareil possède une ancienne version de Google Play. Veuillez mettre à jour les services Google Play et réessayez!"
},
"post": {
@ -289,7 +300,10 @@
"copy_link": "Copier le Lien",
"reblogged": "reblogué par",
"sponsored": "SPONSORISÉ",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Enregistrer dans l'album",
"image_saved": "Image sauvegardée dans la Galerie Photo",
"image_saved_error": "Erreur de sauvegarde de l'image"
},
"drafts": {
"title": "Brouillons",
@ -332,8 +346,8 @@
"author_payout": "Gain de l'Auteur",
"curation_payout": "Gain de la Curation",
"payout_date": "Gain",
"beneficiaries": "Beneficiaries",
"warn_zero_payout": "Amount must reach $0.02 for payout",
"beneficiaries": "Bénéficiaires",
"warn_zero_payout": "Le montant doit atteindre 0,02 $ pour le retrait",
"breakdown": "Breakdown"
},
"post_dropdown": {
@ -357,7 +371,7 @@
"trending": "TOP",
"reputation": "RÉPUTATION",
"votes": "VOTE",
"age": "AGE",
"age": "ÂGE",
"top": "TOP",
"time": "HEURE"
},
@ -379,7 +393,7 @@
"withdraw_to_saving": "Withdraw To Saving",
"steemconnect_title": "Transfert Steemconnect",
"estimated_weekly": "Évalué chaque semaine",
"destination_accounts": "Destination Accounts",
"destination_accounts": "Comptes destinataires",
"stop_information": "Êtes-vous sûr de vouloir arrêter ?",
"percent": "Pourcentage",
"auto_vests": "Auto Vests",
@ -391,7 +405,7 @@
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"incoming_funds": "Incoming Funds",
"stop": "Stop"
"stop": "Arrêter"
},
"boost": {
"title": "Get eSteem Points",
@ -399,7 +413,7 @@
"next": "SUIVANT"
},
"free_estm": {
"title": "Free ESTM",
"title": "ESTM Gratuit",
"button": "TOURNER & GAGNER",
"get_spin": "5 TOURS",
"spin_right": "Spin Left",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Stika aftrablauga",
"login_title": "Stika atgagga",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Brukeinais huzd",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "galeikaiþ þein waurd",
"unvote": "usnam stibna þeinis waurdis",
"reply": "andhof þeinamma waurda",
"mention": "haihait þuk",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "afarlaistida þuk",
"unfollow": "unlaistida þuk",
"ignore": "ignored you",
"reblog": "aftrablaugida þein waurd",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Fairnindag",
"this_week": "So dagawiko",
"this_month": "So menoþs",
"older_then": "Fairnizo þau Aina Menoþ"
"older_then": "Fairnizo þau Aina Menoþ",
"activities": "All",
"replies": "Andahafteis",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "נקודות עבור שיתוף",
"login_title": "נקודות עבור כניסה",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "בונוס שימוש",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "אוהב\\ת את הפוסט שלך",
"unvote": "ביטל\\ה את הצבעתו\\ה לפוסט שלך",
"reply": "הגיב\\ה לפוסט שלך",
"mention": "הזכיר\\ה אותך",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "עקב\\ה אחרייך",
"unfollow": "הפסיק\\ה לעקוב אחרייך",
"ignore": "התעלם\\ה ממך",
"reblog": "שיתף/ה את הפוסט שלך",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "התראות",
"leaderboard": "לוח תוצאות",
@ -117,7 +120,11 @@
"yesterday": "אתמול",
"this_week": "השבוע",
"this_month": "החודש הזה",
"older_then": "ישן יותר מחודש"
"older_then": "ישן יותר מחודש",
"activities": "All",
"replies": "תשובות",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "פיד",
"popular": "מקובל"
"popular": "מקובל",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "פרופיל",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "טיוטות",

View File

@ -28,6 +28,9 @@
"reblog_title": "पुनर्प्रेशण के लिए अंक",
"login_title": "लॉगिन के लिए अंक",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "उपयोग बोनस",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "आपकी पोस्ट को पसंद करता है",
"unvote": "आपके पोस्ट को पसंद किया",
"reply": "आपके पोस्ट में जबाब दिया",
"mention": "आपका उल्लेख किया",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "आपके साथ जुड़ा",
"unfollow": "आपका साथ छोड़ा",
"ignore": "आपको अनदेखा किया",
"reblog": "आपका पोस्ट को पुनः प्रसारित किया",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "अधिसूचनाएं",
"leaderboard": "अधिनायकपटल",
@ -117,7 +120,11 @@
"yesterday": "बीता कल",
"this_week": "इस सप्ताह",
"this_month": "इस महीने",
"older_then": "एक महीना से अधिक पुराना"
"older_then": "एक महीना से अधिक पुराना",
"activities": "All",
"replies": "जबाबें",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "संभरण",
"popular": "लोकप्रिय"
"popular": "लोकप्रिय",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "रुपरेखा",
@ -289,7 +300,10 @@
"copy_link": "लिंक कॉपी करें",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "प्रारूप",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "se sviđa vaša objava",
"unvote": "je odglasao vašu objavu",
"reply": "je odgovorio na vašu objavu",
"mention": "te spomenuo/la",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "te prati",
"unfollow": "te prestao/la pratiti",
"ignore": "te ignorira",
"reblog": "je podijelio tvoju objavu",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Obavijesti",
"leaderboard": "Rang lista",
@ -117,7 +120,11 @@
"yesterday": "Jučer",
"this_week": "Ovog Tjedna",
"this_month": "Ovaj Mjesec",
"older_then": "Starije od mjesec dana"
"older_then": "Starije od mjesec dana",
"activities": "All",
"replies": "Odgovori",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Novosti",
"popular": "Popularno"
"popular": "Popularno",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Skice",

View File

@ -19,15 +19,18 @@
"outgoing_transfer_title": "Kimenő átutalás",
"checkin_extra": "Bónusz",
"delegation": "Delegálás",
"delegations": "Delegations",
"delegations": "Delegálások",
"delegation_title": "Delegálási jutalom",
"delegation_desc": "Earn ESTM everyday for delegation",
"delegation_desc": "Nyerj ESTM-t naponta delegálásért",
"post_title": "Bejegyzés pontok",
"comment_title": "Hozzászólás pontok",
"vote_title": "Szavazási pontok",
"reblog_title": "Megosztási pontok",
"login_title": "Bejelentkezés pontok",
"checkin_title": "Életjel pontok",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Használati bónusz",
"no_activity": "Nincs friss tevékenység",
"outgoing_transfer_description": "",
@ -35,18 +38,18 @@
"post_desc": "Pontokat szerezhetsz rendszeres blogolással. Egy bejegyzésért akár 15 pontot kaphatsz.",
"comment_desc": "Minden hozzászólásod segít abban, hogy növeld a táborod és követőket szerezz, továbbá akár 5 pontot is hozhat neked.",
"checkin_desc": "Rendszeres bejelentkezés 0,25 pontot ér.",
"vote_desc": "By voting you give reward to other creators and also earn back upto 0.01 x vote weight points.",
"reblog_desc": "Share what post you like with your friends and earn points.",
"login_desc": "When you login into app first time you earn 100 points.",
"checkin_extra_desc": "Consistent use of app gives you extra chances to earn more points, be more active and earn more.",
"vote_desc": "Szavazás által megjutalmazol más alkotókat és elismerésed fejezed ki, de kaphatsz 0,01 x a szavazás értékéből.",
"reblog_desc": "Ossz meg a barátaiddal bármilyen bejegyzést, ami tetszik és nyerj pontokat.",
"login_desc": "Az alkalmazásba való első bejelentkezéskor 100 pontot kapsz.",
"checkin_extra_desc": "Az alkalmazás következetes használata extra esélyt kínál arra, hogy több pontot nyerj, légy aktívabb és nyerj többet.",
"dropdown_transfer": "Ajándék",
"dropdown_promote": "Hirdetés",
"dropdown_boost": "Felpörgetés",
"from": "Feladó",
"to": "Címzett",
"estimated_value_desc": "Determined by purchase value",
"estimated_value_desc": "Vásárlási érték alapján megállapítva",
"estimated_value": "Becsült érték",
"estimated_amount": "Vote value",
"estimated_amount": "A szavazat értéke",
"amount_information": "A csúszka húzásával állítsd be a mennyiséget",
"amount": "Összeg",
"memo": "Üzenet",
@ -68,46 +71,46 @@
"withdraw_sbd": "Steem Dollár Visszavonás",
"transfer_to_savings": "Átutalás a megtakarításokhoz",
"convert": "Konvertálás",
"escrow_transfer": "Escrow Transfer",
"escrow_dispute": "Escrow Dispute",
"escrow_release": "Escrow Release",
"escrow_approve": "Escrow Approve",
"cancel_transfer_from_savings": "Cancel Transfer from Savings",
"escrow_transfer": "Letéti átutalás",
"escrow_dispute": "Letéti vita",
"escrow_release": "Letéti engedély",
"escrow_approve": "Letéti jóváhagyás",
"cancel_transfer_from_savings": "Töröld az átutalást a megtakarításoktól",
"delegate_vesting_shares": "Delegálás",
"fill_convert_request": "Convert request executed",
"fill_transfer_from_savings": "From Savings executed",
"fill_convert_request": "Konvertálási kérés végrehajtva",
"fill_transfer_from_savings": "A megtakarításoktól végrehajtva",
"fill_vesting_withdraw": "Power Down végrehajtva",
"estm": {
"title": "eSteem Pontok",
"buy": "Vásárolj ESTM-t"
},
"savingsteem": {
"title": "STEEM Savings"
"title": "STEEM Megtakarítások"
},
"savingsbd": {
"title": "SBD Megtakarítás"
},
"steem": {
"title": "STEEM",
"buy": "GET STEEM"
"buy": "STEEM VÁSÁRLÁS"
},
"sbd": {
"title": "SBD",
"buy": "GET SBD"
"buy": "SBD VÁSÁRLÁS"
},
"steem_power": {
"title": "STEEM POWER"
}
},
"notification": {
"vote": "kedvencelte a bejegyzésed",
"unvote": "visszavonta a bejegyzésedre adott szavazatát",
"reply": "válaszolt a bejegyzésedre",
"mention": "megemlített téged",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "követ téged",
"unfollow": "már nem követ téged",
"ignore": "mellőzött téged",
"reblog": "megosztotta a bejegyzésed",
"reblog": "reblogged",
"transfer": "átutalva",
"notification": "Értesítések",
"leaderboard": "Ranglista",
@ -117,7 +120,11 @@
"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",
"activities": "All",
"replies": "Válaszok",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "NAPI",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Hírfolyam",
"popular": "Népszerű"
"popular": "Népszerű",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -281,7 +292,7 @@
"connection_success": "A kapcsolat sikerült!",
"checking": "Ellenőrzés folyamatban...",
"not_existing_post": "A bejegyzés nem létezik! Kérjük ellenőrizd a linket és a szerzőt.",
"google_play_version": "We noticed that your device has old version of Google Play. Please update Google Play services and try again!"
"google_play_version": "Észrevettük, hogy a készülékeden a Google Play régi verziója található. Kérjük frissítsd a Google Play szolgáltatásait és próbáld újra!"
},
"post": {
"reblog_alert": "Biztos, hogy megosztod?",
@ -289,7 +300,10 @@
"copy_link": "Link másolása",
"reblogged": "megosztva általa",
"sponsored": "TÁMOGATOTT",
"open_thread": "Bejegyzés megnyitása"
"open_thread": "Bejegyzés megnyitása",
"save_to_local": "Mentés ebbe a mappába",
"image_saved": "Kép a galériába mentve",
"image_saved_error": "Hiba a kép mentése közben"
},
"drafts": {
"title": "Piszkozatok",
@ -332,9 +346,9 @@
"author_payout": "Szerzői Kifizetés",
"curation_payout": "Kurátori Kifizetés",
"payout_date": "Kifizetés",
"beneficiaries": "Beneficiaries",
"warn_zero_payout": "Amount must reach $0.02 for payout",
"breakdown": "Breakdown"
"beneficiaries": "Kedvezményezettek",
"warn_zero_payout": "Az összegnek el kell érnie a $0.02-t a kifizetéshez",
"breakdown": "Lebontás"
},
"post_dropdown": {
"copy": "link másolása",
@ -355,8 +369,8 @@
},
"comment_filter": {
"trending": "TOP",
"reputation": "REPUTATION",
"votes": "VOTE",
"reputation": "Reputáció",
"votes": "SZAVAZÁS",
"age": "RÉGISÉG",
"top": "TOP",
"time": "IDŐ"
@ -378,20 +392,20 @@
"powerUp": "Power Up",
"withdraw_to_saving": "Átutalás A Megtakarításokhoz",
"steemconnect_title": "Steemconnect átutalás",
"estimated_weekly": "Estimated Weekly",
"destination_accounts": "Destination Accounts",
"stop_information": "Are you sure want to stop?",
"estimated_weekly": "Heti becslés",
"destination_accounts": "Cél Fiókok",
"stop_information": "Bistos megállítod?",
"percent": "Százalék",
"auto_vests": "Auto Vests",
"save": "MENTÉS",
"percent_information": "Percent info",
"percent_information": "Százalék információ",
"next": "KÖVETKEZŐ",
"delegate": "Delegálás",
"power_down": "Power Down",
"withdraw_steem": "Steem Visszavonás",
"withdraw_sbd": "Steem Dollár Visszavonás",
"incoming_funds": "Bejövő tőke",
"stop": "Stop"
"stop": "Megállítás"
},
"boost": {
"title": "Szerezz eSteem pontokat",
@ -399,11 +413,11 @@
"next": "KÖVETKEZŐ"
},
"free_estm": {
"title": "Free ESTM",
"title": "Ingyen ESTM",
"button": "PÖRGESS ÉS NYERJ",
"get_spin": "5 PÖRGETÉS",
"spin_right": "Pörgesd balra",
"timer_text": "Next free spin in"
"timer_text": "Következő ingyenes pörgetésig még van"
},
"promote": {
"title": "Hirdetés",
@ -426,9 +440,9 @@
},
"dsteem": {
"date_error": {
"device_time": "Your device time;",
"current_time": "Pontos idő;",
"information": "We noticed that your device has incorrect date or time. Please fix Date & Time or Set Automatically and try again."
"device_time": "Készüléked ideje;",
"current_time": "Aktuális idő;",
"information": "Észrevettük, hogy a készülékeden a dátum vagy az idő hibás. Javítsd ki a dátumot és az időt, vagy válaszd az automatikus beállítást és próbáld újra."
}
},
"comments": {

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Poin untuk menampilkan kembali",
"login_title": "Poin untuk masuk",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Bonus penggunaan",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "menyukai posting anda",
"unvote": "membatalkan suara posting anda",
"reply": "membalas posting anda",
"mention": "menyebut anda",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "mengikuti anda",
"unfollow": "berhenti mengikuti anda",
"ignore": "mengabaikan anda",
"reblog": "menampilkan kembali post anda",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Pemberitahuan",
"leaderboard": "Papan Peringkat",
@ -117,7 +120,11 @@
"yesterday": "Kemarin",
"this_week": "Minggu ini",
"this_month": "Bulan ini",
"older_then": "Lebih Lama Dari Sebulan"
"older_then": "Lebih Lama Dari Sebulan",
"activities": "All",
"replies": "Balasan",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Umpan",
"popular": "Populer"
"popular": "Populer",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "direblog Oleh",
"sponsored": "DISPONSORI",
"open_thread": "Buka Thread"
"open_thread": "Buka Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Konsep",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "ha messo mi piace al tuo post",
"unvote": "non piace il tuo post",
"reply": "ha risposto al tuo post",
"mention": "ti ha menzionato",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "ha iniziato a seguirti",
"unfollow": "non ti segue più",
"ignore": "ti ha ignorato",
"reblog": "ha ripostato il tuo post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifiche",
"leaderboard": "Classifica",
@ -117,7 +120,11 @@
"yesterday": "Ieri",
"this_week": "Questa settimana",
"this_month": "Questo Mese",
"older_then": "Più Di Un Mese Fa"
"older_then": "Più Di Un Mese Fa",
"activities": "All",
"replies": "Rispondi",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popolare"
"popular": "Popolare",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profilo",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Bozze",

View File

@ -28,6 +28,9 @@
"reblog_title": "リブログによるポイント",
"login_title": "ログインによるポイント",
"checkin_title": "ハートビートによるポイント",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "使用ボーナス",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "あなたの投稿をいいねしました",
"unvote": "あなたの投稿をダウンヴォートしました",
"reply": "あなたの投稿に返信しました",
"mention": "あなたを話題にしました",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "あなたをフォローしました",
"unfollow": "あなたをフォロー解除しました",
"ignore": "あなたをミュートしました",
"reblog": "あなたの投稿をリブログしました",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "通知",
"leaderboard": "ランキング",
@ -117,7 +120,11 @@
"yesterday": "昨日",
"this_week": "今週",
"this_month": "今月",
"older_then": "1ヶ月以上前"
"older_then": "1ヶ月以上前",
"activities": "All",
"replies": "返信",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "フィード",
"popular": "人気"
"popular": "人気",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "プロフィール",
@ -289,7 +300,10 @@
"copy_link": "リンクをコピー",
"reblogged": "リブログしています",
"sponsored": "PR",
"open_thread": "スレッドを開く"
"open_thread": "スレッドを開く",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "下書き",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -1,34 +1,37 @@
{
"wallet": {
"curation_reward": "Curation Reward",
"author_reward": "Author Reward",
"author_reward": "Rrbeḥ n umeskar",
"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",
"post": "Post",
"comment": "Comment",
"fill_order": "Ɛemmeṛ anaḍ",
"post": "Suffeɣ-d",
"comment": "Awennit",
"checkin": "Check-in",
"vote": "Vote",
"reblog": "Reblog",
"login": "Login",
"vote": "Tafrant",
"reblog": "Aɛiwed n usuffeɣ",
"login": "Qqen",
"incoming_transfer_title": "Incoming transfer",
"outgoing_transfer_title": "Outgoing transfer",
"checkin_extra": "Bonus",
"delegation": "Delegation",
"delegations": "Delegations",
"delegation_title": "Delegation reward",
"delegation_desc": "Earn ESTM everyday for delegation",
"post_title": "Points for post",
"comment_title": "Points for comment",
"vote_title": "Points for vote",
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"checkin_extra_title": "Usage bonus",
"delegation": "Timagliwin",
"delegations": "Timagliwin",
"delegation_title": "Tarrazt n tmagliwin",
"delegation_desc": "Rbeḥ ESTM yal ass i tmagliwin",
"post_title": "Tineqqiḍin ɣef tsuffɣin",
"comment_title": "Tineqqiḍin ɣef yiwenniten",
"vote_title": "Tineqqiḍin ɣef tefranin",
"reblog_title": "Tineqqiḍin ɣef uɛawed n usuffeɣ",
"login_title": "Tineqqiḍin ɣef tuqqniwin",
"checkin_title": "Tineqqiḍin ɣef tyitiwin n wul",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Tarrazt n useqdec",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
@ -36,14 +39,14 @@
"comment_desc": "Each comment you make helps you to grow your audience and also earns you upto 5 points.",
"checkin_desc": "Checking in regularly gives you 0.25 points.",
"vote_desc": "By voting you give reward to other creators and also earn back upto 0.01 x vote weight points.",
"reblog_desc": "Share what post you like with your friends and earn points.",
"login_desc": "When you login into app first time you earn 100 points.",
"reblog_desc": "Bḍu tisuffɣin i ak-iɛeǧben gar yimddukkal-ik trebḥeḍ tineqqiḍin.",
"login_desc": "Mi ara teqqneḍ ɣer usnan i tikelt tamenzut, ad trebḥeḍ 100 n tineqqiḍin.",
"checkin_extra_desc": "Consistent use of app gives you extra chances to earn more points, be more active and earn more.",
"dropdown_transfer": "Gift",
"dropdown_transfer": "Asefk",
"dropdown_promote": "Promote",
"dropdown_boost": "Boost",
"from": "From",
"to": "To",
"from": "Sɣur",
"to": "I",
"estimated_value_desc": "Determined by purchase value",
"estimated_value": "Estimated value",
"estimated_amount": "Vote value",
@ -53,7 +56,7 @@
"information": "Are you sure to transfer funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"to_placeholder": "Isem n umseqdac",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Gift ESTM to someone",
@ -67,18 +70,18 @@
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"transfer_to_savings": "Transfer To Savings",
"convert": "Convert",
"convert": "Beddel",
"escrow_transfer": "Escrow Transfer",
"escrow_dispute": "Escrow Dispute",
"escrow_release": "Escrow Release",
"escrow_approve": "Escrow Approve",
"cancel_transfer_from_savings": "Cancel Transfer from Savings",
"delegate_vesting_shares": "Delegation",
"delegate_vesting_shares": "Timagliwin",
"fill_convert_request": "Convert request executed",
"fill_transfer_from_savings": "From Savings executed",
"fill_vesting_withdraw": "Power Down executed",
"estm": {
"title": "eSteem Points",
"title": "tineqqiḍin n eSteem",
"buy": "GET ESTM"
},
"savingsteem": {
@ -100,231 +103,242 @@
}
},
"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",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "yeṭṭafaṛ-ik",
"unfollow": "yeḥbes ur k-yeṭṭafaṛ ara",
"ignore": "yessanef-ik",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
"epoint": "Points",
"leaderboard_title": "Top Users",
"recent": "Recent",
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"notification": "Tilɣa",
"leaderboard": "Amyezwer",
"epoint": "Tineqqiḍin",
"leaderboard_title": "Imseqdacen yufraren",
"recent": "Tineggura",
"yesterday": "Iḍelli",
"this_week": "Imuras-agi",
"this_month": "Ayyur-agi",
"older_then": "D aqdim ktar n wayyur",
"activities": "All",
"replies": "Tiririyin",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
"weekly": "WEEKLY",
"monthly": "MONTHLY"
"daily": "N YAL ASS",
"weekly": "N YAL IMURAS",
"monthly": "N YAL AYYUR"
},
"messages": {
"comingsoon": "Messages feature is coming soon!"
"comingsoon": "Tawuri n yiznan ur tettɛeṭṭil ara ad d-tili!"
},
"profile": {
"following": "Following",
"follower": "Follower",
"post": "Posts",
"details": "Profile Details",
"comments": "Comments",
"replies": "Replies",
"wallet": "Wallet",
"wallet_details": "Wallet Details",
"following": "Aḍfaṛ",
"follower": "Ameḍfaṛ",
"post": "Tisuffɣin",
"details": "Ẓer ugar ɣef umaɣnu",
"comments": "Iwenniten",
"replies": "Tiririyin",
"wallet": "Taxriḍt",
"wallet_details": "Ẓer ugar ɣef texriḍt",
"unclaimed_rewards": "Unclaimed Rewards",
"full_in": "Full in",
"hours": "hours",
"full_in": "Ummid deg",
"hours": "isragen",
"voting_power": "Voting power",
"login_to_see": "Login to see",
"havent_commented": "haven't commented anything yet",
"havent_posted": "haven't posted anything yet",
"login_to_see": "Qqen akken ad teẓreḍ",
"havent_commented": "ur twennteḍ kra ar tura",
"havent_posted": "ur d-tsuffɣeḍ kra ar tura",
"steem_power": "Steem Power",
"next_power_text": "Next power down is in",
"days": "days",
"day": "day",
"steem_dollars": "Steem Dollars",
"days": "ussan",
"day": "ass",
"steem_dollars": "Steem idulaṛen",
"savings": "Savings",
"edit": {
"display_name": "Display Name",
"about": "About",
"location": "Location",
"website": "Website"
"display_name": "Isem ara d-yettwaseknen",
"about": "Ɣef",
"location": "Amḍiq",
"website": "Asmel web"
}
},
"settings": {
"settings": "Settings",
"general": "General",
"settings": "Iɣewwaṛen",
"general": "Amatu",
"currency": "Currency",
"language": "Language",
"server": "Server",
"dark_theme": "Dark Theme",
"push_notification": "Push Notification",
"language": "Tutlayt",
"server": "Aqeddac",
"dark_theme": "Asentel aberkan",
"push_notification": "Talɣut yettudemmren",
"notification": {
"follow": "Follow",
"vote": "Vote",
"comment": "Comment",
"mention": "Mention",
"reblog": "Reblog",
"follow": "Ḍfer",
"vote": "Tafrant",
"comment": "Awennit",
"mention": "Abdar",
"reblog": "Aɛiwed n usuffeɣ",
"transfers": "Transfers"
},
"pincode": "PIN code",
"reset_pin": "Reset Pin Code",
"reset": "Reset",
"pincode": "Tangalt PIN",
"reset_pin": "Aɛawed n tengalt PIN",
"reset": "Aɛawed",
"nsfw_content": "NSFW",
"send_feedback": "Send Feedback",
"send": "Send",
"send": "Azen",
"default_footer": "Default Footer",
"nsfw": {
"always_show": "Always show",
"always_hide": "Always hide",
"always_show": "Skan-d lebda",
"always_hide": "Ffer lebda",
"always_warn": "Always warn"
},
"feedback_success": "Email successfully open",
"feedback_fail": "Email client could not open",
"server_fail": "Server not available"
"server_fail": "Ulac aqeddac"
},
"voters": {
"voters_info": "Voters Info",
"no_user": "User is not found."
"voters_info": "Isallen ɣef yinefranen",
"no_user": "Amseqdac ur t-id-nufi ara."
},
"login": {
"signin": "Sign in",
"signup": "Sign up",
"signin": "Qqen",
"signup": "Jerred",
"signin_title": "To get all the benefits of using eSteem",
"username": "Username",
"password": "Password or WIF",
"username": "Isem n umseqdac",
"password": "Awal uffir neɣ WIF",
"description": "User credentials are kept locally on the device. Credentials are removed upon logout!",
"cancel": "cancel",
"login": "LOGIN",
"cancel": "sefsex",
"login": "TUQQNA",
"steemconnect_description": "If you don't want to keep your password encrypted and saved on your device, you can use Steemconnect.",
"steemconnect_fee_description": "Steemconnect may charge some fees from your reward transactions"
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Mucaɛ",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
"profile": "Amaɣnu",
"bookmarks": "Bookmarks",
"favorites": "Favorites",
"drafts": "Drafts",
"favorites": "Ismenyifen",
"drafts": "Tirwayin",
"schedules": "Schedules",
"gallery": "Gallery",
"settings": "Settings",
"add_account": "Add Account",
"logout": "Logout",
"cancel": "Cancel",
"logout_text": "Are you sure you want to logout?"
"settings": "Iɣewwaṛen",
"add_account": "Rnu amiḍan",
"logout": "Tuffɣa",
"cancel": "Sefsex",
"logout_text": "Tebɣiḍ s tidet ad teffɣeḍ?"
},
"header": {
"title": "Login to customize your feed",
"search": "Search..."
"search": "Nadi..."
},
"basic_header": {
"publish": "Publish",
"search": "Search",
"update": "Update",
"reply": "Reply"
"publish": "Suffeɣ-d",
"search": "Nadi",
"update": "Leqqem",
"reply": "Err"
},
"editor": {
"title": "Title",
"title": "Azwel",
"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": "Ɣef acu tebɣiḍ ad d-taruḍ ass-agi?",
"reply_placeholder": "D acu tebɣiḍ ad d-taruḍ ɣef tsuffeɣt-a n ufella?",
"publish": "Suffeɣ-d",
"reply": "Err",
"open_gallery": "Open Gallery",
"capture_photo": "Capture a photo"
"capture_photo": "Ṭṭef-d tawlaft"
},
"pincode": {
"enter_text": "Enter PIN to unlock",
"enter_text": "Sekcem tangalt PIN i tildin",
"set_new": "Set new PIN",
"write_again": "Write again",
"forgot_text": "Oh, I forgot it..."
"write_again": "Aru-tt i tikelt-nniḍen",
"forgot_text": "Uh, ttuɣ-tt..."
},
"alert": {
"success": "Success!",
"successful": "Successful",
"allRead": "Marked all notifications as read",
"allRead": "Creḍ meṛṛa tilɣa am akken ttwaɣṛant",
"claim_reward_balance_ok": "Reward balance claimed",
"fail": "Fail!",
"fail": "Tuccḍa!",
"move": "Move",
"move_question": "Are you sure to move to drafts?",
"success_shared": "Your post successfully shared",
"success_shared": "Tasuffeɣt-ik tattwabḍa",
"success_moved": "Moved to draft",
"permission_denied": "Permission denied",
"permission_text": "Please, go to phone Settings and change eSteem app permissions.",
"success_rebloged": "Reblogged!",
"already_rebloged": "You have already reblogged!",
"warning": "Warning",
"invalid_pincode": "Invalid PIN code, please check and try again.",
"remove_alert": "Are you sure you want to remove?",
"clear_alert": "Are you sure you want to clear?",
"clear_user_alert": "Are you sure you want to clear all user data?",
"clear": "Clear",
"cancel": "Cancel",
"delete": "Delete",
"success_rebloged": "Tettwasuffeɣ-d tikelt-nniḍen!",
"already_rebloged": "Tɛawdeḍ-as asuffeɣ yakan!",
"warning": "Ɣur-k",
"invalid_pincode": "Tangalt PIN mačči d tameɣtut, sefqed tɛerḍeḍ tikelt-nniḍen.",
"remove_alert": "Tebɣiḍ s tidet tukksa?",
"clear_alert": "Tebɣiḍ s tidet ad t-tsefḍeḍ?",
"clear_user_alert": "Tebɣiḍ s tidet ad tsefḍeḍ akk isefka n umseqdac?",
"clear": "Sfeḍ",
"cancel": "Sefsex",
"delete": "Kkes",
"copied": "Copied!",
"no_internet": "No connection!",
"confirm": "Confirm",
"removed": "Removed",
"same_user": "This user already added to list",
"unknow_error": "An error occurred",
"error": "Error",
"no_internet": "Ulac tuqqna!",
"confirm": "Sentem",
"removed": "Yettwakkes",
"same_user": "Amseqdac-agi yettwarna yakan ɣer tebdart",
"unknow_error": "Tella-d tuccḍa",
"error": "Tuccḍa",
"fetch_error": "Fetching data failed, please try again or notify us at info@esteem.app",
"connection_fail": "Connection Failed!",
"connection_fail": "Tuqqna tecceḍ!",
"connection_success": "Successfully connected!",
"checking": "Checking...",
"checking": "Aselken...",
"not_existing_post": "The post does not exist! Please check permlink and author.",
"google_play_version": "We noticed that your device has old version of Google Play. Please update Google Play services and try again!"
"google_play_version": "Nger tamawt d akken ibenk-ik ɣur-s lqem aqdim n Google Play. Ttxil-k lqem imeẓla n Google Play tɛerḍeḍ tikelt-nniḍen!"
},
"post": {
"reblog_alert": "Are you sure, you want to reblog?",
"removed_hint": "The post was removed by",
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"reblog_alert": "Tebɣiḍ s tidet ad as-tɛawdeḍ asuffeɣ?",
"removed_hint": "Tasuffeɣt-agi tettwakkes sɣur",
"copy_link": "Nɣel aseɣwen",
"reblogged": "tettwasuffeɣ-d tikelt-nniḍen sɣur",
"sponsored": "TETTUNEFK-AS TEDRIMT",
"open_thread": "Open Thread",
"save_to_local": "Sekles deg walbum",
"image_saved": "Tugna tettwasekles deg usqif n tewlafin",
"image_saved_error": "Tuccḍa deg usekles n tugna"
},
"drafts": {
"title": "Drafts",
"load_error": "Could not load drafts",
"empty_list": "Nothing here",
"deleted": "Draft deleted"
"title": "Tirwayin",
"load_error": "Ur zmirent ara ad ttwasalint trewayin",
"empty_list": "Ur yelli kra da",
"deleted": "Tarewayt tettwakkes"
},
"schedules": {
"title": "Schedules",
"empty_list": "Nothing here",
"empty_list": "Ur yelli kra da",
"deleted": "Scheduled post deleted",
"move": "Move to drafts",
"move": "Err ɣer trewayin",
"moved": "Moved to drafts"
},
"bookmarks": {
"title": "Bookmarks",
"load_error": "Could not load bookmarks",
"empty_list": "Nothing here",
"empty_list": "Ur yelli kra da",
"deleted": "Bookmark removed",
"search": "Search in bookmarks",
"added": "Added to bookmarks",
"add": "Add to bookmarks"
},
"favorites": {
"title": "Favorites",
"load_error": "Could not load favorites",
"empty_list": "Nothing here",
"search": "Search in favorites"
"title": "Ismenyifen",
"load_error": "Ur zmiren ara ad ttwasalin yismenyifen",
"empty_list": "Ur yelli kra da",
"search": "Nadi deg yismenyifen"
},
"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_pin": "Tangalt PIN mačči d tameɣtut, sefqed tɛerḍeḍ tikelt-nniḍen",
"invalid_username": "Isem n umseqdac mačči d ameɣtu, sefqed tɛerḍeḍ tikelt-nniḍen",
"already_logged": "Aqla-k teqqneḍ, ɛreḍ ad ternuḍ amiḍan-nniḍen",
"invalid_credentials": "Invalid credentials, please check and try again",
"unknow_error": "Unknown error, please contact us at support@esteem.app"
"unknow_error": "Tuccḍa ur nettwassen, ttxil-k nermes-aɣ-d ɣer support@esteem.app"
},
"payout": {
"potential_payout": "Potential Payout",
@ -332,45 +346,45 @@
"author_payout": "Author Payout",
"curation_payout": "Curation Payout",
"payout_date": "Payout",
"beneficiaries": "Beneficiaries",
"warn_zero_payout": "Amount must reach $0.02 for payout",
"beneficiaries": "Imesfaydiyen",
"warn_zero_payout": "Tadrimt ilaq ad tewweḍ 0.02$ akken ad tezmer ad tettwajbed",
"breakdown": "Breakdown"
},
"post_dropdown": {
"copy": "copy link",
"reblog": "reblog",
"reply": "reply",
"share": "share",
"copy": "nɣel aseɣwen",
"reblog": "aɛiwed n usuffeɣ",
"reply": "err",
"share": "bḍu",
"bookmarks": "add to bookmarks",
"promote": "promote",
"boost": "boost"
},
"deep_link": {
"no_existing_user": "No existing user",
"no_existing_post": "No existing post"
"no_existing_post": "Ulac tasuffeɣt"
},
"search": {
"posts": "Posts",
"comments": "Comments"
"posts": "Tisuffɣin",
"comments": "Iwenniten"
},
"comment_filter": {
"trending": "TOP",
"reputation": "REPUTATION",
"votes": "VOTE",
"age": "AGE",
"age": "Leɛmeṛ",
"top": "TOP",
"time": "TIME"
"time": "AKUD"
},
"transfer": {
"from": "From",
"to": "To",
"from": "Sɣur",
"to": "I",
"amount_information": "Drag the slider to adjust the amount",
"amount": "Amount",
"memo": "Memo",
"information": "Are you sure to transfer funds?",
"amount_desc": "Balance",
"memo_desc": "This memo is public",
"to_placeholder": "Username",
"to_placeholder": "Isem n umseqdac",
"memo_placeholder": "Enter your notes here",
"transfer_token": "Transfer",
"points": "Gift ESTM to someone",
@ -409,7 +423,7 @@
"title": "Promote",
"days": "days",
"user": "User",
"permlink": "Post",
"permlink": "Suffeɣ-d",
"permlinkPlaceholder": "author/permlink",
"information": "Are you sure to promote?"
},
@ -417,9 +431,9 @@
"title": "Boost"
},
"voters_dropdown": {
"rewards": "REWARDS",
"rewards": "TARRAZIN",
"percent": "PERCENT",
"time": "TIME"
"time": "AKUD"
},
"reblog": {
"title": "Reblog Info"
@ -427,11 +441,11 @@
"dsteem": {
"date_error": {
"device_time": "Your device time;",
"current_time": "Current time;",
"current_time": "Akud amiran;",
"information": "We noticed that your device has incorrect date or time. Please fix Date & Time or Set Automatically and try again."
}
},
"comments": {
"title": "Comments"
"title": "Iwenniten"
}
}

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "리블로그 포인트",
"login_title": "로그인 포인트",
"checkin_title": "체크인 포인트",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "체크인 보너스",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "님이 당신 글을 좋아합니다",
"unvote": "님이 당신 글에 대한 투표를 취소했습니다",
"reply": "님이 당신 글에 댓글을 남겼습니다",
"mention": "님이 당신을 언급했습니다",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "님이 팔로우를 시작했습니다",
"unfollow": "님이 팔로우를 취소했습니다",
"ignore": "님이 당신을 차단했습니다",
"reblog": "님이 당신 글을 리블로그했습니다",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "알림",
"leaderboard": "순위표",
@ -117,7 +120,11 @@
"yesterday": "어제",
"this_week": "이번 주",
"this_month": "이번 달",
"older_then": "1 달 이상"
"older_then": "1 달 이상",
"activities": "All",
"replies": "받은 댓글",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "피드",
"popular": "인기 순"
"popular": "인기 순",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "프로필",
@ -289,7 +300,10 @@
"copy_link": "링크 복사",
"reblogged": "리블로그됨",
"sponsored": "투표 후원받음",
"open_thread": "스레드 열기"
"open_thread": "스레드 열기",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "임시 보관함",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -21,20 +21,23 @@
"delegation": "Şande",
"delegations": "Şande",
"delegation_title": "Xelata şandeyê",
"delegation_desc": "Earn ESTM everyday for delegation",
"delegation_desc": "Ji bo şandeyê her roj ESTM qezenc bike",
"post_title": "Puanên ji bo şandiyê",
"comment_title": "Puanên ji bo şîroveyê",
"vote_title": "Puanên ji bo dengdanê",
"reblog_title": "Puanên ji bo dîs-weşandinê",
"login_title": "Puanên ji bo têketinê",
"checkin_title": "Puanên ji bo lêdana dil",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Bonusa bikaranînê",
"no_activity": "No recent activity",
"no_activity": "Çalakiya dawîn tine ye",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "You can earn point by posting regularly. Posting gives you upto 15 points.",
"comment_desc": "Each comment you make helps you to grow your audience and also earns you upto 5 points.",
"checkin_desc": "Checking in regularly gives you 0.25 points.",
"post_desc": "Tu dikarî ji şandina rêkûpêk puanan qezenc bike. Şandin 15 puanan qezencî te dike.",
"comment_desc": "Her şîroveya ku tu dike ji bo mezinkirina girseya bînerên te ji te re dibe alîkar û 5 puanan jî dide qezenckirin.",
"checkin_desc": "Çavpêxistina bi rêkûpêk 0.25 puanan dide qezenckirin.",
"vote_desc": "By voting you give reward to other creators and also earn back upto 0.01 x vote weight points.",
"reblog_desc": "Share what post you like with your friends and earn points.",
"login_desc": "When you login into app first time you earn 100 points.",
@ -47,10 +50,10 @@
"estimated_value_desc": "Determined by purchase value",
"estimated_value": "Estimated value",
"estimated_amount": "Rêjeya dengan",
"amount_information": "Drag the slider to adjust the amount",
"amount_information": "Ji bo sazkirina rêjeyê, pêşekerê biherikîne",
"amount": "Pîvan",
"memo": "Bîrname",
"information": "Are you sure to transfer funds?",
"information": "Tu ji transferkirina pereyan piştrast î?",
"amount_desc": "Balance",
"memo_desc": "Ev bîrname gelemper e",
"to_placeholder": "Navê bikarhêner",
@ -67,14 +70,14 @@
"withdraw_steem": "Withdraw Steem",
"withdraw_sbd": "Withdraw Steem Dollar",
"transfer_to_savings": "Transfer To Savings",
"convert": "Convert",
"escrow_transfer": "Escrow Transfer",
"escrow_dispute": "Escrow Dispute",
"escrow_release": "Escrow Release",
"escrow_approve": "Escrow Approve",
"cancel_transfer_from_savings": "Cancel Transfer from Savings",
"convert": "Veguherîne",
"escrow_transfer": "Transfera Emanetî",
"escrow_dispute": "Gengeşeya Emanetiyê",
"escrow_release": "Belavkirina Emanetî",
"escrow_approve": "Pejirandina Emanetê",
"cancel_transfer_from_savings": "Transfera ji Berhevkirinan Betal Bike",
"delegate_vesting_shares": "Şande",
"fill_convert_request": "Convert request executed",
"fill_convert_request": "Daxwaza veguhertinê pêk hat",
"fill_transfer_from_savings": "From Savings executed",
"fill_vesting_withdraw": "Power Down executed",
"estm": {
@ -82,10 +85,10 @@
"buy": "ESTMê BISTÎNE"
},
"savingsteem": {
"title": "STEEM Savings"
"title": "Berhevkirinên STEEMê"
},
"savingsbd": {
"title": "SBD Savings"
"title": "Berhevkirinên SBDê"
},
"steem": {
"title": "STEEM",
@ -100,15 +103,15 @@
}
},
"notification": {
"vote": "şandiya te ecibandin",
"unvote": "dengê neyênî da şandiyê",
"reply": "bersiv da şandiya te",
"mention": "te etîket kir",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "te şopand",
"unfollow": "ji şopa te derket",
"ignore": "te asteng kir",
"reblog": "şandiya te parve kir",
"transfer": "transferred",
"reblog": "reblogged",
"transfer": "hate transferkirin",
"notification": "Danezan",
"leaderboard": "Tabloya lîderan",
"epoint": "Puan",
@ -117,7 +120,11 @@
"yesterday": "Doh",
"this_week": "Ev Hefteya",
"this_month": "Ev Meha",
"older_then": "Zêdetirî Berî Mehekê"
"older_then": "Zêdetirî Berî Mehekê",
"activities": "All",
"replies": "Bersiv",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "ROJANE",
@ -205,8 +212,12 @@
"steemconnect_fee_description": "Dibe ku Steemconnect ji dayîna xelatan hinek pereyan bîstine"
},
"home": {
"feed": "Feed",
"popular": "Populer"
"feed": "Herik",
"popular": "Populer",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profîl",
@ -273,7 +284,7 @@
"no_internet": "Girêdan tine ye!",
"confirm": "Bipejirîne",
"removed": "Hate rakirin",
"same_user": "This user already added to list",
"same_user": "Ev bikarhêner jixwe li lîsteyê hatiye tevlîkirin",
"unknow_error": "Çêwtiyek çêbû",
"error": "Çewtî",
"fetch_error": "Anîna daneyê biserneket, ji kerema xwe dîsa biceribîne an jî ji ser info@esteem.app me agahdar bike",
@ -284,12 +295,15 @@
"google_play_version": "We noticed that your device has old version of Google Play. Please update Google Play services and try again!"
},
"post": {
"reblog_alert": "Are you sure, you want to reblog?",
"removed_hint": "The post was removed by",
"reblog_alert": "Bi rastî jî tu dixwazî dîs-biweşînî?",
"removed_hint": "Şandî hate rakirin ji aliyê",
"copy_link": "Girêdanê kopî bike",
"reblogged": "reblogged by",
"reblogged": "dîs-weşandin ji aliyê",
"sponsored": "SPONSORKIRÎ",
"open_thread": "Mijara Vekirî"
"open_thread": "Mijara Vekirî",
"save_to_local": "Li albumê tomar bike",
"image_saved": "Wêne li Pêşangeha Wêneyan Hate Tomarkirin",
"image_saved_error": "Wêne tomar nebû"
},
"drafts": {
"title": "Reşnivîs",
@ -298,7 +312,7 @@
"deleted": "Reşnivîs hate jêbirin"
},
"schedules": {
"title": "Schedules",
"title": "Demsazkirinên Te",
"empty_list": "Li vir ti tişt tine ye",
"deleted": "Şandiya demsazkirî hate jêbirin",
"move": "Veguhezîne reşnivîsan",
@ -332,9 +346,9 @@
"author_payout": "Peredayîna Nivîskariyê",
"curation_payout": "Peredayîna Kuratorê",
"payout_date": "Peredayîn",
"beneficiaries": "Beneficiaries",
"warn_zero_payout": "Amount must reach $0.02 for payout",
"breakdown": "Breakdown"
"beneficiaries": "Xwedîmaf",
"warn_zero_payout": "Ji bo peredayînê divê rêje bigihêje $0.02an",
"breakdown": "Hilweşînê"
},
"post_dropdown": {
"copy": "kopî bike",
@ -355,7 +369,7 @@
},
"comment_filter": {
"trending": "SEREKE",
"reputation": "REPUTATION",
"reputation": "NAVDARÎ",
"votes": "DENG",
"age": "TEMEN",
"top": "SEREKE",
@ -364,10 +378,10 @@
"transfer": {
"from": "Ji",
"to": "Bo",
"amount_information": "Drag the slider to adjust the amount",
"amount_information": "Ji bo sazkirina rêjeyê, pêşekerê biherikîne",
"amount": "Pîvan",
"memo": "Bîrname",
"information": "Are you sure to transfer funds?",
"information": "Tu ji transferkirina pereyan piştrast î?",
"amount_desc": "Balance",
"memo_desc": "Ev bîrname gelemper e",
"to_placeholder": "Navê bikarhêner",
@ -380,9 +394,9 @@
"steemconnect_title": "Veguheztina Steemconnectê",
"estimated_weekly": "Texmînkirina Heftane",
"destination_accounts": "Hesabên Armanc",
"stop_information": "Are you sure want to stop?",
"percent": "Percent",
"auto_vests": "Auto Vests",
"stop_information": "Tu dixwazî rawestînî?",
"percent": "Sede",
"auto_vests": "Parastina Otomatîk",
"save": "TOMAR BIKE",
"percent_information": "Agahiya rêjeyê",
"next": "PÊŞVE",
@ -426,9 +440,9 @@
},
"dsteem": {
"date_error": {
"device_time": "Your device time;",
"current_time": "Current time;",
"information": "We noticed that your device has incorrect date or time. Please fix Date & Time or Set Automatically and try again."
"device_time": "Dema amûra te;",
"current_time": "Dema niha;",
"information": "Me ferqkir ku dem û dîroka amûra te çewt e. Ji kerema xwe Dem û Dîrokê serrast bike an jî bi Sazkirina Otomatîkî dîsa biceribîne."
}
},
"comments": {

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Taškai už pasidalinimą",
"login_title": "Taškai už prisijungimą",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Naudojimosi bonusas",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "mėgsta jūsų įrašą",
"unvote": "nebemėgsta jūsų įrašo",
"reply": "atsakė į jūsų įrašą",
"mention": "paminėjo jus",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "jus seka",
"unfollow": "jūsų nebeseka",
"ignore": "jus ignoravo",
"reblog": "pasidalino jūsų įrašu",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Pranešimai",
"leaderboard": "Lyderiai",
@ -117,7 +120,11 @@
"yesterday": "Vakar",
"this_week": "Šią savaitę",
"this_month": "Šį mėnesį",
"older_then": "Senesni nei vieno mėnesio"
"older_then": "Senesni nei vieno mėnesio",
"activities": "All",
"replies": "Atsakymai",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Pagrindinis",
"popular": "Populiarūs"
"popular": "Populiarūs",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profilis",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Ruošiniai",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Mata ganjaran -> reblog_title",
"login_title": "Mata ganjaran log masuk",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Bonus kegunaan",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "menyukai pos anda",
"unvote": "tarik balik undian pos untuk anda",
"reply": "balas pos anda",
"mention": "menyebut anda dalam",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "mengikuti anda",
"unfollow": "berhenti mengikuti anda",
"ignore": "abaikan anda",
"reblog": "ulang siar pos anda",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Pemberitahuan",
"leaderboard": "Papan Pendahulu",
@ -117,7 +120,11 @@
"yesterday": "Semalam",
"this_week": "Minggu ini",
"this_month": "Bulan Ini",
"older_then": "Lebih dari sebulan"
"older_then": "Lebih dari sebulan",
"activities": "All",
"replies": "Balasan",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Suapan",
"popular": "Terkenal"
"popular": "Terkenal",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -289,7 +300,10 @@
"copy_link": "Salin pautan",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Draf",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "vindt je bericht leuk",
"unvote": "vindt je bericht niet meer leuk",
"reply": "heeft op je artikel gereageerd",
"mention": "noemde je",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "volgt je",
"unfollow": "ontvolgt je",
"ignore": "heeft je genegeerd",
"reblog": "deelde je bericht",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notificaties",
"leaderboard": "Scorebord",
@ -117,7 +120,11 @@
"yesterday": "Gisteren",
"this_week": "Deze week",
"this_month": "Deze maand",
"older_then": "Ouder dan een maand"
"older_then": "Ouder dan een maand",
"activities": "All",
"replies": "Reacties",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Populair"
"popular": "Populair",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profiel",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Concepten",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Point for reblog",
"login_title": "Point for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Awoof for using",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "like you tori",
"unvote": "no upvote this post again",
"reply": "reply your tori",
"mention": "holla you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "don dey follow you",
"unfollow": "no follow you again",
"ignore": "don dey ignore you",
"reblog": "reblog your tori",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Alerts",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "E don pass one month"
"older_then": "E don pass one month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Tori",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Your informate",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Draft",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Pontos por reblogue",
"login_title": "Pontos por Login",
"checkin_title": "Pontos por pulsação",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Uso do Bonús",
"no_activity": "Sem actividade recente",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "gosta do seu post",
"unvote": "retirou voto do seu post",
"reply": "respondeu ao seu post",
"mention": "mencionou você",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "seguiu você",
"unfollow": "deixou de seguir você",
"ignore": "ignorou você",
"reblog": "reblogou o seu post",
"reblog": "reblogged",
"transfer": "transferido",
"notification": "Notificações",
"leaderboard": "Quadro de Liderança",
@ -117,7 +120,11 @@
"yesterday": "Ontem",
"this_week": "Esta Semana",
"this_month": "Este Mês",
"older_then": "Com mais de um mês"
"older_then": "Com mais de um mês",
"activities": "All",
"replies": "Respostas",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DIÁRIO",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Conteúdo de notícias",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Perfil",
@ -289,7 +300,10 @@
"copy_link": "Copiar link",
"reblogged": "repostado por",
"sponsored": "Promovido",
"open_thread": "Tópico aberto"
"open_thread": "Tópico aberto",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Rascunhos",

View File

@ -19,34 +19,37 @@
"outgoing_transfer_title": "Transfer în curs",
"checkin_extra": "Bonus",
"delegation": "Delegare",
"delegations": "Delegations",
"delegations": "Delegări",
"delegation_title": "Recompensă delegare",
"delegation_desc": "Earn ESTM everyday for delegation",
"delegation_desc": "Câștigă ESTM in fiecare zi pentru delegare",
"post_title": "Puncte pentru postare",
"comment_title": "Puncte pentru comentariu",
"vote_title": "Puncte pentru vot",
"reblog_title": "Puncte pentru reblog",
"login_title": "Puncte pentru autentificare",
"checkin_title": "Points for heartbeat",
"checkin_title": "Puncte pentru prezență",
"referral": "Referral",
"referral_title": "Recompensă pentru recomandare",
"referral_desc": "Invită-ți prietenii și câștigă ESTM",
"checkin_extra_title": "Bonus de utilizare",
"no_activity": "No recent activity",
"no_activity": "Nicio activitate recentă",
"outgoing_transfer_description": "",
"incoming_transfer_description": "",
"post_desc": "You can earn point by posting regularly. Posting gives you upto 15 points.",
"comment_desc": "Each comment you make helps you to grow your audience and also earns you upto 5 points.",
"checkin_desc": "Checking in regularly gives you 0.25 points.",
"vote_desc": "By voting you give reward to other creators and also earn back upto 0.01 x vote weight points.",
"reblog_desc": "Share what post you like with your friends and earn points.",
"login_desc": "When you login into app first time you earn 100 points.",
"checkin_extra_desc": "Consistent use of app gives you extra chances to earn more points, be more active and earn more.",
"post_desc": "Poți câștiga puncte postând regulat. Fiecare postare îți poate aduce 15 puncte.",
"comment_desc": "Fiecare comentariu te ajută să îți crești audiența și să îți faci prieteni. De asemenea, câștigi 5 puncte.",
"checkin_desc": "Logarea regulată îți aduce 0,25 puncte.",
"vote_desc": "Votând oferi recompense altor creatori de conținut și le arăți aprecierea ta. De asemenea, câștigi 0.01 din valoarea votului în puncte.",
"reblog_desc": "Distribuie postările care îți plac pentru prietenii tăi și câștigă puncte.",
"login_desc": "Când te conectezi la aplicație prima dată câștigi 100 de puncte.",
"checkin_extra_desc": "Utilizarea constantă a aplicației îți oferă șanse în plus pentru câștigarea de puncte. Fii cât mai activ și câștigă mai mult.",
"dropdown_transfer": "Cadou",
"dropdown_promote": "Promovează",
"dropdown_boost": "Boost",
"from": "De la",
"to": "Către",
"estimated_value_desc": "Determined by purchase value",
"estimated_value": "Estimated value",
"estimated_amount": "Vote value",
"estimated_value_desc": "Determinat de valoarea de achiziție",
"estimated_value": "Valoare estimată",
"estimated_amount": "Valoare vot",
"amount_information": "Trage glisorul pentru a ajusta cantitatea",
"amount": "Sumă",
"memo": "Notă",
@ -66,49 +69,49 @@
"power_down": "Power Down",
"withdraw_steem": "Retrage Steem",
"withdraw_sbd": "Retrage Steem Dolar",
"transfer_to_savings": "Transfer To Savings",
"convert": "Convert",
"escrow_transfer": "Escrow Transfer",
"escrow_dispute": "Escrow Dispute",
"escrow_release": "Escrow Release",
"escrow_approve": "Escrow Approve",
"cancel_transfer_from_savings": "Cancel Transfer from Savings",
"transfer_to_savings": "Transfer la economii",
"convert": "Converteşte",
"escrow_transfer": "Transfer Escrow",
"escrow_dispute": "Dispută Escrow",
"escrow_release": "Eliberare Escrow",
"escrow_approve": "Aprobare Escrow",
"cancel_transfer_from_savings": "Anulează transferul de la economii",
"delegate_vesting_shares": "Delegare",
"fill_convert_request": "Convert request executed",
"fill_transfer_from_savings": "From Savings executed",
"fill_vesting_withdraw": "Power Down executed",
"fill_convert_request": "Cererea de conversie executată",
"fill_transfer_from_savings": "Executat de la Economii",
"fill_vesting_withdraw": "Powed Down executat",
"estm": {
"title": "Puncte eSteem",
"buy": "GET ESTM"
},
"savingsteem": {
"title": "STEEM Savings"
"title": "STEEM Economii"
},
"savingsbd": {
"title": "SBD Savings"
"title": "Economii SBD"
},
"steem": {
"title": "STEEM",
"buy": "GET STEEM"
"buy": "OBȚINE STEEM"
},
"sbd": {
"title": "SBD",
"buy": "GET SBD"
"buy": "OBȚINE SBD"
},
"steem_power": {
"title": "STEEM POWER"
}
},
"notification": {
"vote": "a votat postul tău",
"unvote": "a votat postul tău",
"reply": "a răspuns la postul tău",
"mention": "te-a menționat",
"vote": "votat",
"unvote": "vot anulat",
"reply": "ți-a răspuns",
"mention": "te-a menționat în",
"follow": "te urmărește",
"unfollow": "a anulat urmărirea",
"ignore": "te-a ignorat",
"reblog": "a redistribuit postarea ta",
"transfer": "transferred",
"reblog": "redistribuit",
"transfer": "transferat",
"notification": "Notificări",
"leaderboard": "Clasament",
"epoint": "Puncte",
@ -117,12 +120,16 @@
"yesterday": "Ieri",
"this_week": "Săptămâna aceasta",
"this_month": "Luna Aceasta",
"older_then": "Mai vechi de o lună"
"older_then": "Mai vechi de o lună",
"activities": "Toate",
"replies": "Răspunsuri",
"mentions": "Menționări",
"reblogs": "Redistribuiri"
},
"leaderboard": {
"daily": "DAILY",
"weekly": "WEEKLY",
"monthly": "MONTHLY"
"daily": "ZILNIC",
"weekly": "SĂPTĂMÂNAL",
"monthly": "LUNAR"
},
"messages": {
"comingsoon": "Funcția mesaje va fi disponibilă in curând!"
@ -150,9 +157,9 @@
"steem_dollars": "Steem Dolari",
"savings": "Economii",
"edit": {
"display_name": "Display Name",
"about": "About",
"location": "Location",
"display_name": "Numele afișat",
"about": "Despre",
"location": "Locație",
"website": "Website"
}
},
@ -206,7 +213,11 @@
},
"home": {
"feed": "Flux",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Fierbinte",
"new": "Nou",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -276,20 +287,23 @@
"same_user": "Utilizator adăugat deja la listă",
"unknow_error": "A intervenit o eroare",
"error": "Eroare",
"fetch_error": "Fetching data failed, please try again or notify us at info@esteem.app",
"fetch_error": "Preluarea datelor a eșuat, încercă din nou sau trimite o notificare la info@esteem.app",
"connection_fail": "Connectare Eșuată!",
"connection_success": "Conectat cu succes!",
"checking": "Checking...",
"not_existing_post": "The post does not exist! Please check permlink and author.",
"google_play_version": "We noticed that your device has old version of Google Play. Please update Google Play services and try again!"
"checking": "Verificare în curs...",
"not_existing_post": "Postarea nu există! Te rugăm să verifici permlink și autorul.",
"google_play_version": "Am observat că dispozitivul tău are versiunea veche Google Play. Actualiză serviciile Google Play și încearcă din nou!"
},
"post": {
"reblog_alert": "Are you sure, you want to reblog?",
"reblog_alert": "Ești sigur că vrei să redistribui?",
"removed_hint": "Postarea a fost eliminată de către",
"copy_link": "Copiere link",
"reblogged": "redistribuit de",
"sponsored": "SPONSORIZAT",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Salvare în acest album",
"image_saved": "Imagine salvată în Galerie Foto",
"image_saved_error": "Eroare la salvarea imaginii"
},
"drafts": {
"title": "Schițe",
@ -332,9 +346,9 @@
"author_payout": "Plata autorului",
"curation_payout": "Plată de curare",
"payout_date": "Plată",
"beneficiaries": "Beneficiaries",
"warn_zero_payout": "Amount must reach $0.02 for payout",
"breakdown": "Breakdown"
"beneficiaries": "Beneficiari",
"warn_zero_payout": "Suma trebuie sa ajungă la $0.02 să fie plătită",
"breakdown": "Defalcare"
},
"post_dropdown": {
"copy": "copiază link",
@ -355,9 +369,9 @@
},
"comment_filter": {
"trending": "TOP",
"reputation": "REPUTATION",
"votes": "VOTE",
"age": "AGE",
"reputation": "REPUTAȚIE",
"votes": "VOTEAZĂ",
"age": "VECHIME",
"top": "TOP",
"time": "TIME"
},
@ -378,20 +392,20 @@
"powerUp": "Power Up",
"withdraw_to_saving": "Retrage la economii",
"steemconnect_title": "Transfer Steemconnect",
"estimated_weekly": "Estimated Weekly",
"destination_accounts": "Destination Accounts",
"stop_information": "Are you sure want to stop?",
"percent": "Percent",
"estimated_weekly": "Estimare Săptămânală",
"destination_accounts": "Conturi de destinație",
"stop_information": "Ești sigur că vrei să te oprești?",
"percent": "Procent",
"auto_vests": "Auto Vests",
"save": "SAVE",
"percent_information": "Percent info",
"save": "SALVEAZĂ",
"percent_information": "Info procent",
"next": "URMĂTORUL",
"delegate": "Delegare",
"power_down": "Power Down",
"withdraw_steem": "Retrage Steem",
"withdraw_sbd": "Retrage Steem Dolar",
"incoming_funds": "Incoming Funds",
"stop": "Stop"
"incoming_funds": "Fonduri Primite",
"stop": "Oprește"
},
"boost": {
"title": "Câștigă puncte eSteem",
@ -399,11 +413,11 @@
"next": "URMĂTORUL"
},
"free_estm": {
"title": "Free ESTM",
"button": "SPIN & WIN",
"get_spin": "5 SPINS",
"spin_right": "Spin Left",
"timer_text": "Next free spin in"
"title": "ESTM gratuit",
"button": "ÎNVÂRTE ȘI CÂȘTIGĂ",
"get_spin": "5 ROTIRI",
"spin_right": "Rorări rămase",
"timer_text": "Urmăroarea rotare gratuită în"
},
"promote": {
"title": "Promovează",
@ -426,8 +440,8 @@
},
"dsteem": {
"date_error": {
"device_time": "Your device time;",
"current_time": "Current time;",
"device_time": "Timpul pe dispozitivul tău;",
"current_time": "Ora curentă;",
"information": "We noticed that your device has incorrect date or time. Please fix Date & Time or Set Automatically and try again."
}
},

View File

@ -28,6 +28,9 @@
"reblog_title": "Баллы за репост",
"login_title": "Баллы за логин",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Бонус за использование",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "нравится ваш пост",
"unvote": "снял свой голос",
"reply": "ответил",
"mention": "упомянул вас",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "подписан",
"unfollow": "отписан",
"ignore": "игнорирует",
"reblog": "сделал репост",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Уведомления",
"leaderboard": "Лидеры",
@ -117,7 +120,11 @@
"yesterday": "Вчера",
"this_week": "На неделе",
"this_month": "В этом месяце",
"older_then": "Давно"
"older_then": "Давно",
"activities": "All",
"replies": "Ответы",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Лента",
"popular": "Популярное"
"popular": "Популярное",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Профиль",
@ -289,7 +300,10 @@
"copy_link": "Копировать ссылку",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Черновики",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "se sviđa vaš post",
"unvote": "je uklonio glas sa tvog posta",
"reply": "je odgovorio na vaš post",
"mention": "vas je spomenuo",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "vas je zapratio",
"unfollow": "vas ne prati više",
"ignore": "vas je ignorisao",
"reblog": "je podelio vaš post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Obaveštenja",
"leaderboard": "Rang lista",
@ -117,7 +120,11 @@
"yesterday": "Juče",
"this_week": "Ove nedelje",
"this_month": "Ovaj mesec",
"older_then": "Stariji od mesec dana"
"older_then": "Stariji od mesec dana",
"activities": "All",
"replies": "Odgovori",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Novosti",
"popular": "Popularno"
"popular": "Popularno",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Radne verzije",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "This Week"
"older_then": "This Week",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Reb günlüğü için puanlar",
"login_title": "Giriş için puanlar",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Kullanım bonusu",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "beğendi",
"unvote": "gonderini aşaği yönde oyladı",
"reply": "gönderine cevap verdi",
"mention": "seni etiketledi",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "seni takip etti",
"unfollow": "seni takipetmeyi bıraktı",
"ignore": "seni engelledi",
"reblog": "senin postunu paylaştı",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Bildirimler",
"leaderboard": "Liderler Tablosu",
@ -117,7 +120,11 @@
"yesterday": "Dün",
"this_week": "Bu Hafta",
"this_month": "Bu Ay",
"older_then": "Bir Aydan Daha Önce"
"older_then": "Bir Aydan Daha Önce",
"activities": "All",
"replies": "Yorumlar",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Akış",
"popular": "Popüler"
"popular": "Popüler",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profil",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Taslaklar",

View File

@ -28,6 +28,9 @@
"reblog_title": "Бали за рестім",
"login_title": "Бали за авторизацію",
"checkin_title": "Бали за вподобайки",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Бонус за користування",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "сподобалася ваша публікація",
"unvote": "проголосував(-ла) за ваш допис",
"reply": "відповів(-ла) на ваш допис",
"mention": "згадав (-ла) вас",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "підписався(-лась) на вас",
"unfollow": "підписався(-лась) на вас",
"ignore": "ігнорував тебе",
"reblog": "рестімнув ваш допис",
"reblog": "reblogged",
"transfer": "відправлено",
"notification": "Сповіщення",
"leaderboard": "Дошка лідерів",
@ -117,7 +120,11 @@
"yesterday": "Вчора",
"this_week": "Цього тижня",
"this_month": "Цього місяця",
"older_then": "Понад місяць"
"older_then": "Понад місяць",
"activities": "All",
"replies": "Відповіді",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "ЩОДЕННО",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Стрічка",
"popular": "Популярне"
"popular": "Популярне",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Профіль",
@ -289,7 +300,10 @@
"copy_link": "Скопіювати посилання",
"reblogged": "рестімнуто",
"sponsored": "СПОНСОРОВАНО",
"open_thread": "Відкрита тема"
"open_thread": "Відкрита тема",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Чернетки",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "likes your post",
"unvote": "unvoted your post",
"reply": "replied to your post",
"mention": "mentioned you",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "followed you",
"unfollow": "unfollowed you",
"ignore": "ignored you",
"reblog": "reblogged your post",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Notifications",
"leaderboard": "Leaderboard",
@ -117,7 +120,11 @@
"yesterday": "Yesterday",
"this_week": "This Week",
"this_month": "This Month",
"older_then": "Older Than A Month"
"older_then": "Older Than A Month",
"activities": "All",
"replies": "Replies",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "Popular"
"popular": "Popular",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profile",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Drafts",

View File

@ -28,6 +28,9 @@
"reblog_title": "Các điểm cho đăng lại bài viết",
"login_title": "Các điểm thưởng cho đăng nhập",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Phần thưởng cho việc sử dụng",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "thích bài đăng của bạn",
"unvote": "đã unvote bài viết của bạn",
"reply": "đã trả lời bài đăng của bạn",
"mention": "đã nhắc đến bạn",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "đã theo dõi bạn",
"unfollow": "đã bỏ theo dõi bạn",
"ignore": "đã bỏ qua bạn",
"reblog": "đã đăng lại bài viết của bạn",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Thông báo",
"leaderboard": "Bảng xếp hạng",
@ -117,7 +120,11 @@
"yesterday": "Hôm qua",
"this_week": "Tuần này",
"this_month": "Tháng này",
"older_then": "Cách đây hơn 1 tháng"
"older_then": "Cách đây hơn 1 tháng",
"activities": "All",
"replies": "Trả lời",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Nguồn cấp dữ liệu",
"popular": "Phổ biến"
"popular": "Phổ biến",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Hồ sơ",
@ -289,7 +300,10 @@
"copy_link": "Sao chép liên kết",
"reblogged": "đã được đăng lại bởi",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Bản nháp",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "fe ohun ti o ko",
"unvote": "yo ibo re kuro",
"reply": "dahun si oro re",
"mention": "da oruko re",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "ti n ba o lo",
"unfollow": "ko ba o lo mo",
"ignore": "ti ko eti ikun",
"reblog": "ti se eda oro re",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "Awon Akiyesi",
"leaderboard": "Ate asiwaju",
@ -117,7 +120,11 @@
"yesterday": "Ana",
"this_week": "Ose yi",
"this_month": "Osu yi",
"older_then": "Ti koja osu kan"
"older_then": "Ti koja osu kan",
"activities": "All",
"replies": "Ifesi",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Ate gbogbo agbawole",
"popular": "Gbajumo"
"popular": "Gbajumo",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "Profaili",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "Oro akanse",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "赞了您的帖子",
"unvote": "取消点赞您的帖子",
"reply": "回复了您的帖子",
"mention": "提到了您",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "关注了您",
"unfollow": "取消关注了您",
"ignore": "忽视了您",
"reblog": "转发了您的帖子",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "通知",
"leaderboard": "排行榜",
@ -117,7 +120,11 @@
"yesterday": "昨天",
"this_week": "本周",
"this_month": "本月",
"older_then": "一个月前"
"older_then": "一个月前",
"activities": "All",
"replies": "回复",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "Feed",
"popular": "热门"
"popular": "热门",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "个人资料",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "草稿",

View File

@ -28,6 +28,9 @@
"reblog_title": "Points for reblog",
"login_title": "Points for login",
"checkin_title": "Points for heartbeat",
"referral": "Referral",
"referral_title": "Referral rewards",
"referral_desc": "Invite friends and earn ESTM",
"checkin_extra_title": "Usage bonus",
"no_activity": "No recent activity",
"outgoing_transfer_description": "",
@ -100,14 +103,14 @@
}
},
"notification": {
"vote": "贊了您的帖子",
"unvote": "取消點讚您的帖子",
"reply": "回復了您的帖子",
"mention": "提到了您",
"vote": "voted",
"unvote": "unvoted",
"reply": "replied to",
"mention": "mentioned in",
"follow": "關注了您",
"unfollow": "取消關注了您",
"ignore": "忽略了您",
"reblog": "轉發了您的帖子",
"reblog": "reblogged",
"transfer": "transferred",
"notification": "通知",
"leaderboard": "排行榜",
@ -117,7 +120,11 @@
"yesterday": "昨天",
"this_week": "本週",
"this_month": "本月",
"older_then": "一個月前"
"older_then": "一個月前",
"activities": "All",
"replies": "回覆",
"mentions": "Mentions",
"reblogs": "Reblogs"
},
"leaderboard": {
"daily": "DAILY",
@ -206,7 +213,11 @@
},
"home": {
"feed": "動態消息",
"popular": "熱門"
"popular": "熱門",
"top": "Top",
"hot": "Hot",
"new": "New",
"blog": "Blog"
},
"side_menu": {
"profile": "個人檔案",
@ -289,7 +300,10 @@
"copy_link": "Copy Link",
"reblogged": "reblogged by",
"sponsored": "SPONSORED",
"open_thread": "Open Thread"
"open_thread": "Open Thread",
"save_to_local": "Save to the album",
"image_saved": "Image Saved to Photo Gallery",
"image_saved_error": "Error Saving Image"
},
"drafts": {
"title": "草稿",

View File

@ -15,6 +15,14 @@ export default {
iconType: 'MaterialIcons',
point: 0.1,
},
160: {
icon: 'target',
textKey: 'referral_title',
nameKey: 'wallet.referral',
descriptionKey: 'wallet.referral_desc',
iconType: 'MaterialCommunityIcons',
point: 100,
},
150: {
icon: 'arrow-collapse-all',
textKey: 'delegation_title',
@ -82,6 +90,9 @@ export default {
};
export const POINTS_KEYS = [
{
type: 160,
},
{
type: 150,
},

View File

@ -1,83 +0,0 @@
import React from 'react';
import { createBottomTabNavigator } from 'react-navigation-tabs';
// Constants
import ROUTES from '../constants/routeNames';
import scalePx from '../utils/scalePx';
// Components
import { Icon, IconContainer } from '../components/icon';
import { Feed, Notification, Profile, Wallet } from '../screens';
import { PostButton, BottomTabBar } from '../components';
const BaseNavigator = createBottomTabNavigator(
{
[ROUTES.TABBAR.FEED]: {
screen: Feed,
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => (
<Icon iconType="MaterialIcons" name="view-day" color={tintColor} size={scalePx(26)} />
),
}),
},
[ROUTES.TABBAR.NOTIFICATION]: {
screen: Notification,
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => (
<IconContainer
isBadge
badgeType="notification"
iconType="MaterialIcons"
name="notifications"
color={tintColor}
size={scalePx(26)}
/>
),
}),
},
[ROUTES.TABBAR.POST_BUTTON]: {
screen: () => null,
navigationOptions: {
tabBarIcon: ({ tintColor }) => <PostButton />,
},
},
[ROUTES.TABBAR.WALLET]: {
screen: Wallet,
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => (
<Icon
iconType="MaterialIcons"
name="account-balance-wallet"
color={tintColor}
size={scalePx(26)}
/>
),
}),
},
[ROUTES.TABBAR.PROFILE]: {
screen: Profile,
navigationOptions: () => ({
tabBarIcon: ({ tintColor }) => (
<Icon
iconType="MaterialIcons"
name="person-outline"
color={tintColor}
size={scalePx(26)}
/>
),
}),
},
},
{
tabBarComponent: props => <BottomTabBar {...props} />,
tabBarOptions: {
showLabel: false,
activeTintColor: '#f6f6f6',
inactiveTintColor: '#c1c5c7',
style: {},
tabStyle: {},
},
},
);
export { BaseNavigator };

View File

@ -156,7 +156,15 @@ export const getUser = async user => {
get(globalProperties, 'total_vesting_fund_steem'),
);
_account.about = has(_account, 'json_metadata') && JSON.parse(get(_account, 'json_metadata'));
if (has(_account, 'json_metadata')) {
try {
_account.about = JSON.parse(get(_account, 'json_metadata'));
} catch (e) {
//alert(e);
_account.about = {};
}
}
_account.avatar = getAvatar(get(_account, 'about'));
_account.display_name = getName(get(_account, 'about'));

View File

@ -71,18 +71,20 @@ export const catchDraftImage = body => {
};
export const getResizedImage = (url, size = 640) => {
//TODO: implement fallback onError, for steemitimages is down case
if (!url) {
return '';
}
/*
if (url.includes('img.esteem.ws')) {
return `https://img.esteem.ws/${size}x0/${url}`;
return `${url.replace('img.esteem.ws/', `img.esteem.ws/${size}/`)}`;
}
if (url.includes('img.esteem.app')) {
return `https://img.esteem.app/${size}x0/${url}`;
return `${url.replace('img.esteem.app/', `img.esteem.app/${size}/`)}`;
}
*/
return `https://steemitimages.com/${size}x0/${url}`;
};

View File

@ -31,7 +31,11 @@ export const parsePost = async (post, currentUserName, isPromoted) => {
post.markdownBody = post.body;
}
post.is_promoted = isPromoted;
try {
post.json_metadata = JSON.parse(post.json_metadata);
} catch (error) {
post.json_metadata = {};
}
post.image = postImage(post.json_metadata, post.body);
post.active_votes = activeVotes;
post.vote_count = post.active_votes.length;
@ -66,10 +70,9 @@ const postImage = (metaData, body) => {
const urlRegex = /(http|ftp|https):\/\/([\w_-]+(?:(?:\.[\w_-]+)+))([\w.,@?^=%&:/~+#-]*[\w@?^=%&/~+#-])?/gm;
const imageRegex = /(http(s?):)([/|.|\w|\s|-])*\.(?:jpg|gif|png)/g;
let imageLink;
if (metaData && metaData.image && metaData.image[0]) {
[imageLink] = metaData.image;
} else if (body && markdownImageRegex.test(body)) {
} else if (!imageLink && body && markdownImageRegex.test(body)) {
const markdownMatch = body.match(markdownImageRegex);
if (markdownMatch[0]) {
const firstMarkdownMatch = markdownMatch[0];

View File

@ -1319,11 +1319,6 @@
"@types/istanbul-reports" "^1.1.1"
"@types/yargs" "^13.0.0"
"@ptomasroos/react-native-multi-slider@^1.0.0":
version "1.0.0"
resolved "https://registry.yarnpkg.com/@ptomasroos/react-native-multi-slider/-/react-native-multi-slider-1.0.0.tgz#a4ea27b1320b93a1db9f696c24789695df6c9f30"
integrity sha512-NpX22rQLArg9widwMzGf7XsInTDf6mfY/D1XaDVjglNkVphj3NSN37+nF6MofArCxC++1P+jHv0SGWbmJQwy4g==
"@react-native-community/cameraroll@^1.3.0":
version "1.3.0"
resolved "https://registry.yarnpkg.com/@react-native-community/cameraroll/-/cameraroll-1.3.0.tgz#a340334440f4d08280da839130ef51c931b07483"
@ -1359,6 +1354,16 @@
js-yaml "^3.13.1"
xcode "^2.0.0"
"@react-native-community/cli-tools@^2.8.3":
version "2.8.3"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-2.8.3.tgz#0e2249f48cf4603fb8d740a9f0715c31ac131ceb"
integrity sha512-N5Pz+pR+GFq3JApjd0SW4jp9KC7kbKsMH65QLRh30JNsxdPvNkYox6/ZZdkvdXaI5ev3EckR7eqlcwi5gpVTYQ==
dependencies:
chalk "^2.4.2"
lodash "^4.17.5"
mime "^2.4.1"
node-fetch "^2.5.0"
"@react-native-community/cli-tools@^3.0.0":
version "3.0.0"
resolved "https://registry.yarnpkg.com/@react-native-community/cli-tools/-/cli-tools-3.0.0.tgz#fe48b80822ed7e49b8af051f9fe41e22a2a710b1"
@ -2234,6 +2239,11 @@ balanced-match@^1.0.0:
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c=
base-64@0.1.0:
version "0.1.0"
resolved "https://registry.yarnpkg.com/base-64/-/base-64-0.1.0.tgz#780a99c84e7d600260361511c4877613bf24f6bb"
integrity sha1-eAqZyE59YAJgNhURxId2E78k9rs=
base-x@^3.0.2:
version "3.0.7"
resolved "https://registry.yarnpkg.com/base-x/-/base-x-3.0.7.tgz#1c5a7fafe8f66b4114063e8da102799d4e7c408f"
@ -4364,6 +4374,18 @@ glob@5.0.15, glob@^5.0.15:
once "^1.3.0"
path-is-absolute "^1.0.0"
glob@7.0.6:
version "7.0.6"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.0.6.tgz#211bafaf49e525b8cd93260d14ab136152b3f57a"
integrity sha1-IRuvr0nlJbjNkyYNFKsTYVKz9Xo=
dependencies:
fs.realpath "^1.0.0"
inflight "^1.0.4"
inherits "2"
minimatch "^3.0.2"
once "^1.3.0"
path-is-absolute "^1.0.0"
glob@^7.1.1, glob@^7.1.2, glob@^7.1.3:
version "7.1.4"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"
@ -7837,14 +7859,14 @@ react-navigation-drawer@^2.3.3:
resolved "https://registry.yarnpkg.com/react-navigation-drawer/-/react-navigation-drawer-2.3.3.tgz#d7e607d5e10f2b3c40ab7dc9720228ce3f888a0f"
integrity sha512-d/rA8Slqv7HoMfONKVDBQUrRF7YQH796Gzal/KOhaY4VOwUUqIwfxMRJ3WrsdL2OkDPixtkXJE2Fz6KAj658uA==
react-navigation-redux-helpers@^2.0.8:
version "2.0.9"
resolved "https://registry.yarnpkg.com/react-navigation-redux-helpers/-/react-navigation-redux-helpers-2.0.9.tgz#244e7ebbc43481602b1e7948a491b34a312dca06"
integrity sha512-V1eyQ22T1znZeaou38f/JBp5DUV5X2T4hVVSlsjh8dk2unkWhaugzvrgFMF80Mzg1gH4rVE1yADyI9hzuwbbSw==
react-navigation-redux-helpers@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/react-navigation-redux-helpers/-/react-navigation-redux-helpers-4.0.1.tgz#a2da4e403114ddf6438071bba6c2e81dd9ffa269"
integrity sha512-hzReLzBbfVQGyh+FUQvWXhaK8vg2kwcIPM8vztQ21+8VL5JvijCBVRbXox22EfYTKh+AWHNiY8TCQtHbXlqNsA==
dependencies:
invariant "^2.2.2"
react-navigation-stack@1.10.3:
react-navigation-stack@^1.10.3:
version "1.10.3"
resolved "https://registry.yarnpkg.com/react-navigation-stack/-/react-navigation-stack-1.10.3.tgz#e714e442b20427f0d2d3c18fce1f9e8cfe69be0b"
integrity sha512-1gksFi/g/Lg9sBhgLlD0OiEB5xnatHb4C0eNMA5tli9cTVlhq375XNPIqOiTyftibBmjdApAsZFj5srUCoOu/w==
@ -8299,6 +8321,14 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
hash-base "^3.0.0"
inherits "^2.0.1"
rn-fetch-blob@^0.11.2:
version "0.11.2"
resolved "https://registry.yarnpkg.com/rn-fetch-blob/-/rn-fetch-blob-0.11.2.tgz#bdc483bf1b0c3810d457983494a11fbada446679"
integrity sha512-oKszdNtA7vZ56d0Rfr+RDEUexwlZxu/HOqwULa36PRHhQsTO5ia7uKk+va3WzuwYxzhF9e0bY8n3k+GC6Df14A==
dependencies:
base-64 "0.1.0"
glob "7.0.6"
rn-placeholder@^1.3.2:
version "1.3.3"
resolved "https://registry.yarnpkg.com/rn-placeholder/-/rn-placeholder-1.3.3.tgz#205067c1a2f08bcdfe09971b0c48b46afcd9c952"